Shell

Tue, 02 Mar 2021 19:49:43 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Tue, 02 Mar 2021 19:49:43 +0100
changeset 8146
db2d19af4675
parent 8144
46082367138c
child 8147
99c7da0ab9d2

Shell
- changed the shell special commands to start with a '%' (e.g. %start)

docs/changelog file | annotate | diff | comparison | revisions
eric6/QScintilla/Shell.py file | annotate | diff | comparison | revisions
eric6/i18n/eric6_cs.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_de.qm file | annotate | diff | comparison | revisions
eric6/i18n/eric6_de.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_empty.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_en.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_es.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_fr.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_it.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_pt.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_ru.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_tr.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_zh_CN.ts file | annotate | diff | comparison | revisions
--- a/docs/changelog	Tue Mar 02 19:22:12 2021 +0100
+++ b/docs/changelog	Tue Mar 02 19:49:43 2021 +0100
@@ -1,5 +1,10 @@
 Change Log
 ----------
+Version 21.4:
+- bug fixes
+- Shell
+  -- changed the shell special commands to start with a '%' (e.g. %start)
+
 Version 21.3:
 - bug fixes
 - General
--- a/eric6/QScintilla/Shell.py	Tue Mar 02 19:22:12 2021 +0100
+++ b/eric6/QScintilla/Shell.py	Tue Mar 02 19:49:43 2021 +0100
@@ -165,18 +165,19 @@
                 """ cursor keys on the Shell page of the configuration"""
                 """ dialog. Pressing these keys after some text has been"""
                 """ entered will start an incremental search.</p>"""
-                """<p>The shell has some special commands. 'restart' kills"""
-                """ the shell and starts a new one. 'clear' clears the"""
-                """ display of the shell window. 'start' is used to start a"""
+                """<p>The shell has some special commands. '%restart' kills"""
+                """ the shell and starts a new one. '%clear' clears the"""
+                """ display of the shell window. '%start' is used to start a"""
                 """ shell for a virtual environment and should be followed"""
-                """ by a virtual environment name. start' without a virtual"""
-                """ environment name starts the default shell. Available"""
-                """ virtual environments may be listed with the 'envs' or"""
-                """ 'environments' commands. The active virtual environment"""
-                """ can be questioned by the 'which' command. 'quit' or"""
-                """ 'exit' is used to exit the application. These commands"""
-                """ (except environments', 'envs' and 'which') are available"""
-                """ through the window menus as well.</p>"""
+                """ by a virtual environment name. '%start' without a"""
+                """ virtual environment name starts the default shell."""
+                """ Available virtual environments may be listed with the"""
+                """ '%envs' or '%environments' commands. The active virtual"""
+                """ environment can be questioned by the '%which' command."""
+                """ '%quit' or '%exit' is used to exit the application."""
+                """ These commands (except '%environments', '%envs' and"""
+                """ '%which') are available through the window menus as"""
+                """ well.</p>"""
                 """<p>Pressing the Tab key after some text has been entered"""
                 """ will show a list of possible completions. The relevant"""
                 """ entry may be selected from this list. If only one entry"""
@@ -196,17 +197,17 @@
                 """ cursor keys on the Shell page of the configuration"""
                 """ dialog. Pressing these keys after some text has been"""
                 """ entered will start an incremental search.</p>"""
-                """<p>The shell has some special commands. 'restart' kills"""
-                """ the shell and starts a new one. 'clear' clears the"""
-                """ display of the shell window. 'start' is used to start a"""
+                """<p>The shell has some special commands. '%restart' kills"""
+                """ the shell and starts a new one. '%clear' clears the"""
+                """ display of the shell window. '%start' is used to start a"""
                 """ shell for a virtual environment and should be followed"""
-                """ by a virtual environment name. start' without a virtual"""
-                """ environment name starts the default shell. Available"""
-                """ virtual environments may be listed with the 'envs' or"""
-                """ 'environments' commands. The active virtual environment"""
-                """ can be questioned by the 'which' command. These commands"""
-                """ (except environments' and 'envs') are available through"""
-                """ the context menu as well.</p>"""
+                """ by a virtual environment name. '%start' without a"""
+                """ virtual environment name starts the default shell."""
+                """ Available virtual environments may be listed with the"""
+                """ '%envs' or '%environments' commands. The active virtual"""
+                """ environment can be questioned by the '%which' command."""
+                """ These commands (except '%environments' and '%envs') are"""
+                """ available through the context menu as well.</p>"""
                 """<p>Pressing the Tab key after some text has been entered"""
                 """ will show a list of possible completions. The relevant"""
                 """ entry may be selected from this list. If only one entry"""
@@ -1810,77 +1811,90 @@
                     else:
                         self.__setHistoryIndex(historyIndex)
             
-            if cmd == 'start' or cmd.startswith('start '):
-                if not self.passive:
-                    cmdList = cmd.split(None, 1)
-                    if len(cmdList) < 2:
-                        self.dbs.startClient(False)  # start default backend
+            if cmd.startswith("%"):
+                if cmd == '%start' or cmd.startswith('%start '):
+                    if not self.passive:
+                        cmdList = cmd.split(None, 1)
+                        if len(cmdList) < 2:
+                            self.dbs.startClient(False)
+                            # start default backend
+                        else:
+                            venvName = cmdList[1]
+                            if venvName == self.tr("Project"):
+                                if self.__project.isOpen():
+                                    self.dbs.startClient(
+                                        False,
+                                        forProject=True,
+                                        workingDir=
+                                        self.__project.getProjectPath()
+                                    )
+                                    self.__currentWorkingDirectory = (
+                                        self.__project.getProjectPath()
+                                    )
+                                else:
+                                    self.dbs.startClient(
+                                        False,
+                                        venvName=self.__currentVenv,
+                                        workingDir=
+                                        self.__currentWorkingDirectory
+                                    )
+                                    # same as reset
+                            else:
+                                self.dbs.startClient(False, venvName=venvName)
+                                self.__currentWorkingDirectory = ""
+                        self.__getBanner()
+                        return
+                elif cmd == '%clear':
+                    # Display the banner.
+                    self.__getBanner()
+                    if not self.passive:
+                        return
                     else:
-                        venvName = cmdList[1]
-                        if venvName == self.tr("Project"):
-                            if self.__project.isOpen():
-                                self.dbs.startClient(
-                                    False, forProject=True,
-                                    workingDir=self.__project.getProjectPath())
-                                self.__currentWorkingDirectory = (
-                                    self.__project.getProjectPath()
-                                )
-                            else:
-                                self.dbs.startClient(
-                                    False, venvName=self.__currentVenv,
-                                    workingDir=self.__currentWorkingDirectory)
-                                # same as reset
-                        else:
-                            self.dbs.startClient(False, venvName=venvName)
-                            self.__currentWorkingDirectory = ""
-                    self.__getBanner()
-                    return
-            elif cmd == 'clear':
-                # Display the banner.
-                self.__getBanner()
-                if not self.passive:
+                        cmd = ''
+                elif cmd in ['%reset', '%restart']:
+                    self.dbs.startClient(
+                        False, venvName=self.__currentVenv,
+                        workingDir=self.__currentWorkingDirectory)
+                    if self.passive:
+                        return
+                    else:
+                        cmd = ''
+                elif cmd in ['%envs', '%environments']:
+                    venvs = (
+                        e5App().getObject("VirtualEnvManager")
+                        .getVirtualenvNames()
+                    )
+                    s = (
+                        self.tr('Available Virtual Environments:\n{0}\n')
+                        .format('\n'.join(
+                            "- {0}".format(venv)
+                            for venv in sorted(venvs)
+                        ))
+                    )
+                    self.__write(s)
+                    self.__clientStatement(False)
                     return
-                else:
-                    cmd = ''
-            elif cmd in ['reset', 'restart']:
-                self.dbs.startClient(False, venvName=self.__currentVenv,
-                                     workingDir=self.__currentWorkingDirectory)
-                if self.passive:
+                elif cmd == '%which':
+                    s = self.tr("Current Virtual Environment: '{0}'\n").format(
+                        self.__currentVenv)
+                    self.__write(s)
+                    self.__clientStatement(False)
                     return
-                else:
-                    cmd = ''
-            elif cmd in ['envs', 'environments']:
-                venvs = (
-                    e5App().getObject("VirtualEnvManager")
-                    .getVirtualenvNames()
-                )
-                s = self.tr('Available Virtual Environments:\n{0}\n').format(
-                    '\n'.join("- {0}".format(venv) for venv in sorted(venvs))
-                )
-                self.__write(s)
-                self.__clientStatement(False)
-                return
-            elif cmd == 'which':
-                s = self.tr("Current Virtual Environment: '{0}'\n").format(
-                    self.__currentVenv)
-                self.__write(s)
-                self.__clientStatement(False)
-                return
-            elif (
-                cmd in ["quit", "quit()", "exit", "exit()"] and
-                self.__windowed
-            ):
-                # call main window quit()
-                self.vm.quit()
-                return
-            
-            self.dbs.remoteStatement(self.__debugUI.getSelectedDebuggerId(),
-                                     cmd)
-            while self.inCommandExecution:
-                try:
-                    QApplication.processEvents()
-                except KeyboardInterrupt:
-                    pass
+                elif (
+                    cmd in ["%quit", "%quit()", "%exit", "%exit()"] and
+                    self.__windowed
+                ):
+                    # call main window quit()
+                    self.vm.quit()
+                    return
+            else:
+                self.dbs.remoteStatement(
+                    self.__debugUI.getSelectedDebuggerId(), cmd)
+                while self.inCommandExecution:
+                    try:
+                        QApplication.processEvents()
+                    except KeyboardInterrupt:
+                        pass
         else:
             if not self.__echoInput:
                 cmd = self.buff
--- a/eric6/i18n/eric6_cs.ts	Tue Mar 02 19:22:12 2021 +0100
+++ b/eric6/i18n/eric6_cs.ts	Tue Mar 02 19:49:43 2021 +0100
@@ -107,22 +107,22 @@
         <translation>Akce</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="166"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="167"/>
         <source>Learn more about writing rules...</source>
         <translation>Další informace o pravidlech psaní...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="159"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="160"/>
         <source>Update Subscription</source>
         <translation>Aktualizovat odběr</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="146"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="147"/>
         <source>Browse Subscriptions...</source>
         <translation>Procházet odběry...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="243"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="244"/>
         <source>Remove Subscription</source>
         <translation>Odebrat odběr</translation>
     </message>
@@ -142,37 +142,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="139"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="140"/>
         <source>Add Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="142"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="143"/>
         <source>Remove Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="154"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="155"/>
         <source>Disable Subscription</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="156"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="157"/>
         <source>Enable Subscription</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="162"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="163"/>
         <source>Update All Subscriptions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="233"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="234"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt; and all subscriptions requiring it?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="240"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="241"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -271,17 +271,17 @@
 <context>
     <name>AdBlockManager</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="232"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="233"/>
         <source>Custom Rules</source>
         <translation>Vlastní pravidla</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="334"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="335"/>
         <source>Subscribe?</source>
         <translation type="unfinished">Odebírat?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="334"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="335"/>
         <source>&lt;p&gt;Subscribe to this AdBlock subscription?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Přihlásit k odběru tento AdBlock?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
@@ -289,22 +289,22 @@
 <context>
     <name>AdBlockSubscription</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="291"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="294"/>
         <source>Load subscription rules</source>
         <translation>Nahrát odebíraná pravidla</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="500"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="503"/>
         <source>Downloading subscription rules</source>
         <translation>Stažení odebíraných pravidel</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="410"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="413"/>
         <source>Got empty subscription rules.</source>
         <translation>Odebíraná pravidla jsou prázdná.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="523"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="527"/>
         <source>Saving subscription rules</source>
         <translation>Ukládání odebíraných pravidel</translation>
     </message>
@@ -314,7 +314,7 @@
         <translation type="obsolete">Nelze otevřít adblock soubor &apos;{0}&apos; pro čtení.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="397"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="400"/>
         <source>&lt;p&gt;Subscription rules could not be downloaded.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Pravidla pro předplatné nelze stáhnout.&lt;/p&gt;&lt;p&gt;Chyba: {0}&lt;/p&gt;</translation>
     </message>
@@ -324,22 +324,22 @@
         <translation type="obsolete">Nelze otevřít adblock soubor &apos;{0}&apos; pro zápis.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="291"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="294"/>
         <source>AdBlock file &apos;{0}&apos; does not start with [Adblock.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="500"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="503"/>
         <source>&lt;p&gt;AdBlock subscription &lt;b&gt;{0}&lt;/b&gt; has a wrong checksum.&lt;br/&gt;Found: {1}&lt;br/&gt;Calculated: {2}&lt;br/&gt;Use it anyway?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="281"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="284"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for reading.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="523"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="527"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for writing.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -347,27 +347,27 @@
 <context>
     <name>AdBlockTreeWidget</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="123"/>
         <source>Add Custom Rule</source>
         <translation type="unfinished">Přidat vlastní pravidlo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="123"/>
         <source>Write your rule here:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="164"/>
-        <source>Add Rule</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="166"/>
+        <source>Add Rule</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="168"/>
         <source>Remove Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="219"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="227"/>
         <source>{0} (recently updated)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1147,7 +1147,7 @@
         <translation>&amp;Popis:</translation>
     </message>
     <message>
-        <location filename="../MultiProject/AddProjectDialog.py" line="64"/>
+        <location filename="../MultiProject/AddProjectDialog.py" line="65"/>
         <source>Project Properties</source>
         <translation>Nastavení projektu</translation>
     </message>
@@ -1617,37 +1617,37 @@
 <context>
     <name>BackgroundService</name>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="134"/>
+        <location filename="../Utilities/BackgroundService.py" line="135"/>
         <source>{0} not configured.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="189"/>
+        <location filename="../Utilities/BackgroundService.py" line="190"/>
         <source>Restart background client?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="444"/>
+        <location filename="../Utilities/BackgroundService.py" line="445"/>
         <source>Eric&apos;s background client disconnected because of an unknown reason.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="450"/>
+        <location filename="../Utilities/BackgroundService.py" line="451"/>
         <source>Background client disconnected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="189"/>
+        <location filename="../Utilities/BackgroundService.py" line="190"/>
         <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It&apos;s used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;&apos;Yes&apos;&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Retry&apos;&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;No&apos;&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="450"/>
+        <location filename="../Utilities/BackgroundService.py" line="451"/>
         <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="215"/>
+        <location filename="../Utilities/BackgroundService.py" line="216"/>
         <source>An error in Eric&apos;s background client stopped the service.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1904,32 +1904,32 @@
         <translation>Přidat s&amp;ložku</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="155"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="156"/>
         <source>&amp;Open</source>
         <translation>&amp;Otevřít</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="157"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="158"/>
         <source>Open in New &amp;Tab</source>
         <translation>Otevřít v novém &amp;tabu</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="168"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="169"/>
         <source>Edit &amp;Name</source>
         <translation>Editovat &amp;název</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="171"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="172"/>
         <source>Edit &amp;Address</source>
         <translation>Editovat &amp;adresu</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="173"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="174"/>
         <source>&amp;Delete</source>
         <translation>&amp;Smazat</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="342"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="355"/>
         <source>New Folder</source>
         <translation>Nová složka</translation>
     </message>
@@ -1939,37 +1939,37 @@
         <translation>Stisknout pro smazání vybraných položek</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="177"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="178"/>
         <source>&amp;Properties...</source>
         <translation type="unfinished">&amp;Natavení...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="162"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="163"/>
         <source>Open in New &amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="164"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="165"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="159"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="160"/>
         <source>Open in New &amp;Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="181"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="182"/>
         <source>New &amp;Folder...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="334"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="347"/>
         <source>New Bookmark Folder</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="334"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="347"/>
         <source>Enter title for new bookmark folder:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2287,72 +2287,72 @@
 <context>
     <name>BreakPointViewer</name>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="52"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="54"/>
         <source>Breakpoints</source>
         <translation>Breakpointy</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="192"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="198"/>
         <source>Add</source>
         <translation>Přidat</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="159"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="165"/>
         <source>Edit...</source>
         <translation>Editovat...</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="161"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="167"/>
         <source>Enable</source>
         <translation>Zapnout</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="196"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="202"/>
         <source>Enable all</source>
         <translation>Zapnout vše</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="164"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="170"/>
         <source>Disable</source>
         <translation>Vypnout</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="201"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="207"/>
         <source>Disable all</source>
         <translation>Vypnout vše</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="168"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="174"/>
         <source>Delete</source>
         <translation>Smazat</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="206"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="212"/>
         <source>Delete all</source>
         <translation>Smazat vše</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="171"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="177"/>
         <source>Goto</source>
         <translation>Jít na</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="194"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="200"/>
         <source>Enable selected</source>
         <translation>Zapnout vybrané</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="199"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="205"/>
         <source>Disable selected</source>
         <translation>Vypnout vybrané</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="204"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="210"/>
         <source>Delete selected</source>
         <translation>Smazat vybrané</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="209"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="215"/>
         <source>Configure...</source>
         <translation>Konfigurovat...</translation>
     </message>
@@ -2365,37 +2365,37 @@
         <translation>Prohlížeč souborů</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="282"/>
+        <location filename="../UI/Browser.py" line="284"/>
         <source>Open</source>
         <translation>Otevřít</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="231"/>
+        <location filename="../UI/Browser.py" line="233"/>
         <source>Run unittest...</source>
         <translation>Spustit unittest...</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="340"/>
+        <location filename="../UI/Browser.py" line="342"/>
         <source>New toplevel directory...</source>
         <translation>Nový adresář toplevel...</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="296"/>
+        <location filename="../UI/Browser.py" line="298"/>
         <source>Add as toplevel directory</source>
         <translation>Přidat jako toplevel adresář</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="299"/>
+        <location filename="../UI/Browser.py" line="301"/>
         <source>Remove from toplevel</source>
         <translation>Odebrat z toplevelu</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="307"/>
+        <location filename="../UI/Browser.py" line="309"/>
         <source>Find in this directory</source>
         <translation>Hledat v tomto adresáři</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="642"/>
+        <location filename="../UI/Browser.py" line="644"/>
         <source>New toplevel directory</source>
         <translation>Nový toplevel adresář</translation>
     </message>
@@ -2410,27 +2410,27 @@
         <translation type="obsolete">Konfigurovat...</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="261"/>
+        <location filename="../UI/Browser.py" line="263"/>
         <source>Open in Icon Editor</source>
         <translation>Otevřit v editoru ikon</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="314"/>
+        <location filename="../UI/Browser.py" line="316"/>
         <source>Copy Path to Clipboard</source>
         <translation>Kopírovat cestu do schránky</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="303"/>
+        <location filename="../UI/Browser.py" line="305"/>
         <source>Refresh directory</source>
         <translation>Obnovit složku</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="326"/>
+        <location filename="../UI/Browser.py" line="328"/>
         <source>Goto</source>
         <translation type="unfinished">Jít na</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="433"/>
+        <location filename="../UI/Browser.py" line="435"/>
         <source>Line {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2440,152 +2440,152 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="553"/>
+        <location filename="../UI/Browser.py" line="555"/>
         <source>Show Mime-Type</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="526"/>
+        <location filename="../UI/Browser.py" line="528"/>
         <source>The mime type of the file could not be determined.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="544"/>
+        <location filename="../UI/Browser.py" line="546"/>
         <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="553"/>
+        <location filename="../UI/Browser.py" line="555"/>
         <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt; Shall it be added to the list of text mime types?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="258"/>
+        <location filename="../UI/Browser.py" line="260"/>
         <source>Open in Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="310"/>
+        <location filename="../UI/Browser.py" line="312"/>
         <source>Find &amp;&amp; Replace in this directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="239"/>
+        <location filename="../UI/Browser.py" line="241"/>
         <source>Refresh Source File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="212"/>
+        <location filename="../UI/Browser.py" line="214"/>
         <source>Show Hidden Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="219"/>
-        <source>New</source>
-        <translation type="unfinished">Nový</translation>
-    </message>
-    <message>
         <location filename="../UI/Browser.py" line="221"/>
+        <source>New</source>
+        <translation type="unfinished">Nový</translation>
+    </message>
+    <message>
+        <location filename="../UI/Browser.py" line="223"/>
         <source>Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="224"/>
+        <location filename="../UI/Browser.py" line="226"/>
         <source>File</source>
         <translation type="unfinished">Soubor</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="321"/>
+        <location filename="../UI/Browser.py" line="323"/>
         <source>Delete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="879"/>
+        <location filename="../UI/Browser.py" line="881"/>
         <source>New Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="861"/>
+        <location filename="../UI/Browser.py" line="863"/>
         <source>Name for new directory:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="902"/>
+        <location filename="../UI/Browser.py" line="904"/>
         <source>A file or directory named &lt;b&gt;{0}&lt;/b&gt; exists already. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="879"/>
+        <location filename="../UI/Browser.py" line="881"/>
         <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="913"/>
+        <location filename="../UI/Browser.py" line="915"/>
         <source>New File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="894"/>
+        <location filename="../UI/Browser.py" line="896"/>
         <source>Name for new file:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="913"/>
+        <location filename="../UI/Browser.py" line="915"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="942"/>
+        <location filename="../UI/Browser.py" line="944"/>
         <source>Do you really want to move this file to the trash?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="946"/>
+        <location filename="../UI/Browser.py" line="948"/>
         <source>Do you really want to delete this file?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1043"/>
+        <location filename="../UI/Browser.py" line="1045"/>
         <source>Delete File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1043"/>
+        <location filename="../UI/Browser.py" line="1045"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="979"/>
+        <location filename="../UI/Browser.py" line="981"/>
         <source>Do you really want to move this directory to the trash?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="983"/>
+        <location filename="../UI/Browser.py" line="985"/>
         <source>Do you really want to delete this directory?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1000"/>
+        <location filename="../UI/Browser.py" line="1002"/>
         <source>Delete Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1000"/>
+        <location filename="../UI/Browser.py" line="1002"/>
         <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1023"/>
+        <location filename="../UI/Browser.py" line="1025"/>
         <source>Do you really want to move these files to the trash?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1027"/>
+        <location filename="../UI/Browser.py" line="1029"/>
         <source>Do you really want to delete these files?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1032"/>
+        <location filename="../UI/Browser.py" line="1034"/>
         <source>Delete Files</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2598,27 +2598,27 @@
         <translation>Jméno</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="759"/>
+        <location filename="../UI/BrowserModel.py" line="766"/>
         <source>Attributes</source>
         <translation>Atributy</translation>
     </message>
     <message>
+        <location filename="../UI/BrowserModel.py" line="667"/>
+        <source>Globals</source>
+        <translation>Globální</translation>
+    </message>
+    <message>
         <location filename="../UI/BrowserModel.py" line="660"/>
-        <source>Globals</source>
-        <translation>Globální</translation>
-    </message>
-    <message>
-        <location filename="../UI/BrowserModel.py" line="653"/>
         <source>Coding: {0}</source>
         <translation>Kódování: {0}</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="769"/>
+        <location filename="../UI/BrowserModel.py" line="776"/>
         <source>Class Attributes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="666"/>
+        <location filename="../UI/BrowserModel.py" line="673"/>
         <source>Imports</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2641,40 +2641,40 @@
         <translation type="unfinished">Uložit</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="71"/>
+        <location filename="../Debugger/CallStackViewer.py" line="72"/>
         <source>File: {0}
 Line: {1}
 {2}{3}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="73"/>
+        <location filename="../Debugger/CallStackViewer.py" line="74"/>
         <source>File: {0}
 Line: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="202"/>
+        <location filename="../Debugger/CallStackViewer.py" line="203"/>
         <source>Save Call Stack Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="188"/>
+        <location filename="../Debugger/CallStackViewer.py" line="189"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished">Textové soubory (*.txt);;Všechny soubory (*)</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="202"/>
+        <location filename="../Debugger/CallStackViewer.py" line="203"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="224"/>
+        <location filename="../Debugger/CallStackViewer.py" line="225"/>
         <source>Error saving Call Stack Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="224"/>
+        <location filename="../Debugger/CallStackViewer.py" line="225"/>
         <source>&lt;p&gt;The call stack info could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2684,7 +2684,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="213"/>
+        <location filename="../Debugger/CallStackViewer.py" line="214"/>
         <source>Call Stack of &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3306,32 +3306,32 @@
 <context>
     <name>CodeDocumentationViewer</name>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="208"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="211"/>
         <source>Code Info Provider:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="221"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="227"/>
         <source>Select the code info provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="223"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="229"/>
         <source>&lt;disabled&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="404"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="410"/>
         <source>No documentation available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="425"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="431"/>
         <source>No source code documentation provider has been registered. This function has been disabled.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="430"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="436"/>
         <source>This function has been disabled.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3437,32 +3437,32 @@
         <translation>Zobrazuje průběh procesu měření metriky kódu</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="193"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="205"/>
         <source>files</source>
         <translation>soubory</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="195"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="207"/>
         <source>lines</source>
         <translation>řádky</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="197"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="209"/>
         <source>bytes</source>
         <translation>bajty</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="199"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="211"/>
         <source>comments</source>
         <translation>komentáře</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="203"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="215"/>
         <source>empty lines</source>
         <translation type="unfinished">řádky dokumentace</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="205"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="217"/>
         <source>non-commentary lines</source>
         <translation>nekomentované řádky</translation>
     </message>
@@ -3497,17 +3497,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="201"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="213"/>
         <source>comment lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="52"/>
-        <source>Collapse All</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../DataViews/CodeMetricsDialog.py" line="54"/>
+        <source>Collapse All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="56"/>
         <source>Expand All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3741,7 +3741,7 @@
         <translation type="unfinished">Stisknout pro zobrazení všech souborů, které obsahují problém</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="244"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="246"/>
         <source>Error: {0}</source>
         <translation type="unfinished">Chyby: {0}</translation>
     </message>
@@ -3751,7 +3751,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1037"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1044"/>
         <source>No issues found.</source>
         <translation type="unfinished">Žádné problémy nenalezeny.</translation>
     </message>
@@ -3776,12 +3776,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="963"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="968"/>
         <source>{0} (ignored)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="856"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="861"/>
         <source>Preparing files...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3791,12 +3791,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="217"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="219"/>
         <source>Errors</source>
         <translation type="unfinished">Chyby</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="895"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="900"/>
         <source>Transferring data...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3901,7 +3901,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1040"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1047"/>
         <source>No files found (check your ignore list).</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4211,12 +4211,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2004"/>
         <source>Commented Code Whitelist Pattern</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2004"/>
         <source>Enter a Commented Code Whitelist Pattern</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5082,7 +5082,7 @@
 <context>
     <name>CondaExecDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="96"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="102"/>
         <source>Conda Execution</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5109,45 +5109,45 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="96"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="102"/>
         <source>The conda executable could not be started. Is it configured correctly?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="103"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="109"/>
         <source>Operation started.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="134"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="143"/>
         <source>Operation finished.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="154"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="163"/>
         <source>Conda command &apos;{0}&apos; did not return success.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="164"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="173"/>
         <source>
 Conda Message: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="203"/>
-        <source>{0} (Size: {1})</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="208"/>
-        <source>Fetching {0} ...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../CondaInterface/CondaExecDialog.py" line="212"/>
+        <source>{0} (Size: {1})</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="217"/>
+        <source>Fetching {0} ...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="221"/>
         <source> Done.
 </source>
         <translation type="unfinished"></translation>
@@ -5156,7 +5156,7 @@
 <context>
     <name>CondaExportDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="209"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="211"/>
         <source>Generate Requirements</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5236,27 +5236,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="209"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="211"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished">Textové soubory (*.txt);;Všechny soubory (*)</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="109"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="111"/>
         <source>The requirements were changed. Do you want to overwrite these changes?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="140"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="142"/>
         <source>No output generated by conda.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="177"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="179"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; already exists. Do you want to overwrite it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="189"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="191"/>
         <source>&lt;p&gt;The requirements could not be written to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5443,7 +5443,7 @@
 <context>
     <name>CondaPackageDetailsDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaPackageDetailsWidget.py" line="91"/>
+        <location filename="../CondaInterface/CondaPackageDetailsWidget.py" line="93"/>
         <source>Package Details</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5654,132 +5654,132 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="123"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="125"/>
         <source>Clean</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="124"/>
-        <source>All</source>
-        <translation type="unfinished">Vše</translation>
-    </message>
-    <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="126"/>
-        <source>Cache</source>
-        <translation type="unfinished"></translation>
+        <source>All</source>
+        <translation type="unfinished">Vše</translation>
     </message>
     <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="128"/>
+        <source>Cache</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="130"/>
         <source>Lock Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="131"/>
-        <source>Packages</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="133"/>
+        <source>Packages</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="135"/>
         <source>Tarballs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="136"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="138"/>
         <source>About Conda...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="139"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="141"/>
         <source>Update Conda</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="575"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="581"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="144"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="146"/>
         <source>Install Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="147"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="149"/>
         <source>Generate Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="150"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="152"/>
         <source>Create Environment from Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="617"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="623"/>
         <source>Clone Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="662"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="668"/>
         <source>Delete Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="160"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="162"/>
         <source>Edit User Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="164"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="166"/>
         <source>Configure...</source>
         <translation type="unfinished">Konfigurovat...</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="221"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="223"/>
         <source>Getting installed packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="234"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="236"/>
         <source>Getting outdated packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="256"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="260"/>
         <source>{0} (Build: {1})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="397"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="403"/>
         <source>Conda Search Package Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="555"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="561"/>
         <source>Package Specifications (separated by whitespace):</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="575"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="581"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished">Textové soubory (*.txt);;Všechny soubory (*)</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="641"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="647"/>
         <source>Create Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="662"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="668"/>
         <source>&lt;p&gt;Shall the environment &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="687"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="693"/>
         <source>Edit Configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="687"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="693"/>
         <source>The configuration file &quot;{0}&quot; does not exist or is not writable.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5975,7 +5975,7 @@
         <translation>Viewmanager</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="661"/>
         <source>Configuration Page Error</source>
         <translation>Chyba na straně konfigurace</translation>
     </message>
@@ -6010,12 +6010,12 @@
         <translation>Nastavení</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="571"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="578"/>
         <source>Preferences</source>
         <translation>Předvolby</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="576"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="584"/>
         <source>Please select an entry of the list 
 to display the configuration page.</source>
         <translation>Pro zobrazení strany s konfigurací vyberte položku ze seznamu.</translation>
@@ -6036,7 +6036,7 @@
         <translation></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
+        <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;Konfigurační stranu &lt;b&gt;{0}&lt;/b&gt; nelze načíst.&lt;/p&gt;</translation>
     </message>
@@ -6269,17 +6269,17 @@
         <translation></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="82"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="87"/>
         <source>Allow</source>
         <translation>Povolit</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="91"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="96"/>
         <source>Block</source>
         <translation>Blokovat</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="100"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="105"/>
         <source>Allow For Session</source>
         <translation>Povolit pro relaci</translation>
     </message>
@@ -6473,7 +6473,7 @@
         <translation type="unfinished">Doména:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="175"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="176"/>
         <source>&lt;no cookie selected&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6518,37 +6518,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="143"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="144"/>
         <source>Remove All Cookies</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="143"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="144"/>
         <source>Do you really want to remove all stored cookies?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="177"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="178"/>
         <source>Remove Cookies</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="186"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="187"/>
         <source>Secure connections only</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="188"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="189"/>
         <source>All connections</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="190"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="191"/>
         <source>Session Cookie</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="197"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="198"/>
         <source>Remove Cookie</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6834,57 +6834,57 @@
         <translation>&amp;Filtr pro:</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="578"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="580"/>
         <source>Code Generation</source>
         <translation>Generování kódu</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="225"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="226"/>
         <source>uic error</source>
         <translation>uic chyba</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="135"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="136"/>
         <source>Create Dialog Code</source>
         <translation>Vytvořit Dialog Code</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="135"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="136"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; exists but does not contain any classes.</source>
         <translation>Soubor &lt;b&gt;{0}&lt;/b&gt; existuje ale neobsahuje žádné třídy.</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="216"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="217"/>
         <source>&lt;p&gt;There was an error loading the form &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Byla nalezena chyba načtená z &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="448"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="449"/>
         <source>&lt;p&gt;Could not open the code template file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Template soubor &lt;b&gt;{0}&lt;/b&gt; nelze otevřít.&lt;/p&gt;&lt;p&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="485"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="486"/>
         <source>&lt;p&gt;Could not open the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Nelze ovevřít source soubor &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="578"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="580"/>
         <source>&lt;p&gt;Could not write the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Nelze zapsat do source souboru &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="225"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="226"/>
         <source>&lt;p&gt;The project specific Python interpreter &lt;b&gt;{0}&lt;/b&gt; could not be started or did not finish within 30 seconds.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="401"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="402"/>
         <source>&lt;p&gt;Code generation for project language &quot;{0}&quot; is not supported.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="437"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="438"/>
         <source>&lt;p&gt;No code template file available for project type &quot;{0}&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6927,12 +6927,12 @@
         <translation>změněno</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="865"/>
+        <location filename="../Debugger/DebugServer.py" line="867"/>
         <source>Connection from illegal host</source>
         <translation>Spojení z ilegálního hosta</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1875"/>
+        <location filename="../Debugger/DebugServer.py" line="1877"/>
         <source>
 Not connected
 </source>
@@ -6941,39 +6941,39 @@
 </translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="865"/>
+        <location filename="../Debugger/DebugServer.py" line="867"/>
         <source>&lt;p&gt;A connection was attempted by the illegal host &lt;b&gt;{0}&lt;/b&gt;. Accept this connection?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Pokus o spojení z ilegálního hosta &lt;b&gt;{0}&lt;/b&gt;. Přijmout toto spojení?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="2144"/>
+        <location filename="../Debugger/DebugServer.py" line="2146"/>
         <source>Passive debug connection received
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="2158"/>
+        <location filename="../Debugger/DebugServer.py" line="2160"/>
         <source>Passive debug connection closed
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="351"/>
+        <location filename="../Debugger/DebugServer.py" line="353"/>
         <source>Register Debugger Interface</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="351"/>
+        <location filename="../Debugger/DebugServer.py" line="353"/>
         <source>&lt;p&gt;The debugger interface &lt;b&gt;{0}&lt;/b&gt; has already been registered. Ignoring this request.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1601"/>
         <source>Start Debugger</source>
         <translation type="unfinished">Spustit debuger</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1601"/>
         <source>&lt;p&gt;The debugger type &lt;b&gt;{0}&lt;/b&gt; is not supported or not configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6981,7 +6981,7 @@
 <context>
     <name>DebugUI</name>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1961"/>
+        <location filename="../Debugger/DebugUI.py" line="1964"/>
         <source>Run Script</source>
         <translation>Spustit skript</translation>
     </message>
@@ -7001,7 +7001,7 @@
         <translation>&lt;b&gt;Spustit skript&lt;/b&gt;&lt;p&gt;Nastavení parametrů příkazové řádky a spuštění skriptu bez debugeru. Pokud jsou v souboru neuložené změny, měly by se nejdříve uložit.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1973"/>
+        <location filename="../Debugger/DebugUI.py" line="1976"/>
         <source>Run Project</source>
         <translation>Spustit projekt</translation>
     </message>
@@ -7011,369 +7011,369 @@
         <translation>Spustit &amp;projekt...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="220"/>
+        <location filename="../Debugger/DebugUI.py" line="221"/>
         <source>Run the current Project</source>
         <translation>Spustit aktuální projekt</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="221"/>
+        <location filename="../Debugger/DebugUI.py" line="222"/>
         <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Spustit projekt&lt;/b&gt;&lt;p&gt;Nastavení parametrů příkazové řádky a spuštění projektu bez debugeru. Pokud jsou v projektu neuložené změny, měly by se nejdříve uložit.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="231"/>
+        <location filename="../Debugger/DebugUI.py" line="232"/>
         <source>Coverage run of Script</source>
         <translation>Spustit skript s kontrolou pokrytí</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="231"/>
+        <location filename="../Debugger/DebugUI.py" line="232"/>
         <source>Coverage run of Script...</source>
         <translation>Spustit skript s kontrolou pokrytí...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="236"/>
+        <location filename="../Debugger/DebugUI.py" line="237"/>
         <source>Perform a coverage run of the current Script</source>
         <translation>Provede se spuštění běhu aktuálního skriptu s kontrolou pokrytí kódu</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="238"/>
+        <location filename="../Debugger/DebugUI.py" line="239"/>
         <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Spustit skript s kontrolou pokrytí&lt;/b&gt;&lt;p&gt;Nastavení parametrů příkazové řádky a spuštění projektu pod kontrolou nástroje analýzy pokrytí kódu. Pokud jsou v souboru neuložené změny, měly by se nejdříve uložit.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="247"/>
+        <location filename="../Debugger/DebugUI.py" line="248"/>
         <source>Coverage run of Project</source>
         <translation>Spustit projekt s kontrolou pokrytí</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="247"/>
+        <location filename="../Debugger/DebugUI.py" line="248"/>
         <source>Coverage run of Project...</source>
         <translation>Spustit projekt s kontrolou pokrytí...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="252"/>
+        <location filename="../Debugger/DebugUI.py" line="253"/>
         <source>Perform a coverage run of the current Project</source>
         <translation>Provede se spuštění běhu aktuálního projektu s kontrolou pokrytí kódu</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="254"/>
+        <location filename="../Debugger/DebugUI.py" line="255"/>
         <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Spustit projekt s kontrolou pokrytí&lt;/b&gt;&lt;p&gt;Nastavení parametrů příkazové řádky a spuštění projektu pod kontrolou nástroje analýzy pokrytí kódu. Pokud jsou v projektu neuložené změny, měly by se nejdříve uložit.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="264"/>
+        <location filename="../Debugger/DebugUI.py" line="265"/>
         <source>Profile Script</source>
         <translation>Profilovat skript</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="264"/>
+        <location filename="../Debugger/DebugUI.py" line="265"/>
         <source>Profile Script...</source>
         <translation>Profilovat skript...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="268"/>
-        <source>Profile the current Script</source>
-        <translation>Profilovat aktuální skript</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="269"/>
+        <source>Profile the current Script</source>
+        <translation>Profilovat aktuální skript</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="270"/>
         <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Profilovat skript&lt;/b&gt;&lt;p&gt;Nastavení parametrů příkazové řádky a spuštění projektu s profilováním kódu. Pokud jsou ve skriptu neuložené změny, měly by se nejdříve uložit.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="277"/>
+        <location filename="../Debugger/DebugUI.py" line="278"/>
         <source>Profile Project</source>
         <translation>Profilovat projekt</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="277"/>
+        <location filename="../Debugger/DebugUI.py" line="278"/>
         <source>Profile Project...</source>
         <translation>Profilovat projekt...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="282"/>
+        <location filename="../Debugger/DebugUI.py" line="283"/>
         <source>Profile the current Project</source>
         <translation>Profilovat aktuální projekt</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="284"/>
+        <location filename="../Debugger/DebugUI.py" line="285"/>
         <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Profilovat projekt&lt;/b&gt;&lt;p&gt;Nastavení parametrů příkazové řádky a spuštění projektu s profilováním kódu. Pokud jsou v projektu neuložené změny, měly by se nejdříve uložit.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2094"/>
+        <location filename="../Debugger/DebugUI.py" line="2097"/>
         <source>Debug Script</source>
         <translation>Debugovat skript</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="293"/>
+        <location filename="../Debugger/DebugUI.py" line="294"/>
         <source>&amp;Debug Script...</source>
         <translation>&amp;Debugovat skript...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="298"/>
-        <source>Debug the current Script</source>
-        <translation>Debugovat aktuální skript</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="299"/>
+        <source>Debug the current Script</source>
+        <translation>Debugovat aktuální skript</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="300"/>
         <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Debugovat skript&lt;/b&gt;&lt;p&gt;Nastavení parametrů příkazové řádky a aktuální řádky jako první python příkaz v aktuálním editačním okně. Pokud jsou ve skriptu neuložené změny, měly by se nejdříve uložit.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2111"/>
+        <location filename="../Debugger/DebugUI.py" line="2114"/>
         <source>Debug Project</source>
         <translation>Debugovat projekt</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="309"/>
+        <location filename="../Debugger/DebugUI.py" line="310"/>
         <source>Debug &amp;Project...</source>
         <translation>Debugovat pro&amp;jekt...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="314"/>
-        <source>Debug the current Project</source>
-        <translation>Debugovat aktuální projekt</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="316"/>
+        <source>Debug the current Project</source>
+        <translation>Debugovat aktuální projekt</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="318"/>
         <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Debugovat projekt&lt;/b&gt;&lt;p&gt;Nastavení parametrů příkazové řádky a nastavení aktuální řádky jako první python příkaz hlavního skriptu v aktuálním projektu. Pokud jsou v projektu neuložené změny, měly by se měly nejdříve uložit.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="330"/>
+        <location filename="../Debugger/DebugUI.py" line="332"/>
         <source>Restart the last debugged script</source>
         <translation>Restartovat posledně debugovaný skript</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="357"/>
+        <location filename="../Debugger/DebugUI.py" line="359"/>
         <source>Continue</source>
         <translation>Pokračovat</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="357"/>
+        <location filename="../Debugger/DebugUI.py" line="359"/>
         <source>&amp;Continue</source>
         <translation>&amp;Pokračovat</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="362"/>
-        <source>Continue running the program from the current line</source>
-        <translation>Pokračovat v běhu programu od aktuální řádky</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="364"/>
+        <source>Continue running the program from the current line</source>
+        <translation>Pokračovat v běhu programu od aktuální řádky</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="366"/>
         <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Pokračovat&lt;/b&gt;&lt;p&gt;Pokračovat v běhu programu od aktuální řádky. Program se zastaví na nejbližším breakpointu nebo běží až do konce.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="373"/>
+        <location filename="../Debugger/DebugUI.py" line="375"/>
         <source>Continue to Cursor</source>
         <translation>Pokračovat až na kurzor</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="373"/>
+        <location filename="../Debugger/DebugUI.py" line="375"/>
         <source>Continue &amp;To Cursor</source>
         <translation>Pokračova&amp;t až na kurzor</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="378"/>
-        <source>Continue running the program from the current line to the current cursor position</source>
-        <translation>Pokračovat v běhu programu od aktuální řádky až na pozici kurzoru</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="381"/>
+        <source>Continue running the program from the current line to the current cursor position</source>
+        <translation>Pokračovat v běhu programu od aktuální řádky až na pozici kurzoru</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="384"/>
         <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Pokračovat až na kurzor&lt;/b&gt;&lt;p&gt;Běh programu pokračuje až na řádek, na kterém se nachází kurzor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="426"/>
+        <location filename="../Debugger/DebugUI.py" line="429"/>
         <source>Single Step</source>
         <translation>Krok dovnitř</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="426"/>
+        <location filename="../Debugger/DebugUI.py" line="429"/>
         <source>Sin&amp;gle Step</source>
         <translation>&amp;Krok dovnitř</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="431"/>
+        <location filename="../Debugger/DebugUI.py" line="434"/>
         <source>Execute a single Python statement</source>
         <translation>Vykonat jen jeden python příkaz</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="432"/>
+        <location filename="../Debugger/DebugUI.py" line="435"/>
         <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Krok dovnitř&lt;/b&gt;&lt;p&gt;Vykoná se jen jeden python příkaz. Pokud je příkaz &lt;tt&gt;import&lt;/tt&gt;, konstruktor třídy, metoda nebo funkce, tak debuger vstoupí dovnitř funkce a zastaví se na prvním příkazu v těle funkce.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="442"/>
+        <location filename="../Debugger/DebugUI.py" line="445"/>
         <source>Step Over</source>
         <translation>Krok přes</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="442"/>
+        <location filename="../Debugger/DebugUI.py" line="445"/>
         <source>Step &amp;Over</source>
         <translation>Kr&amp;ok přes</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="447"/>
-        <source>Execute a single Python statement staying in the current frame</source>
-        <translation>Vykonat jeden python příkaz ale nevstupovat do něj</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="450"/>
+        <source>Execute a single Python statement staying in the current frame</source>
+        <translation>Vykonat jeden python příkaz ale nevstupovat do něj</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="453"/>
         <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Krok přes&lt;/b&gt;&lt;p&gt;Vykoná se jeden python příkaz. Pokud je příkaz &lt;tt&gt;import&lt;/tt&gt;, konstruktor třídy, metoda nebo funkce, tak debuger nevstupuje dovnitř funkce, ale vykoná ji celou a zastaví se až na následujícím příkazu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="461"/>
+        <location filename="../Debugger/DebugUI.py" line="464"/>
         <source>Step Out</source>
         <translation>Krok ven</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="461"/>
+        <location filename="../Debugger/DebugUI.py" line="464"/>
         <source>Step Ou&amp;t</source>
         <translation>Krok &amp;ven</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="466"/>
-        <source>Execute Python statements until leaving the current frame</source>
-        <translation>Vykonávat python příkazy tak dlouho, dokud nedojde k opuštění těla kódu</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="469"/>
+        <source>Execute Python statements until leaving the current frame</source>
+        <translation>Vykonávat python příkazy tak dlouho, dokud nedojde k opuštění těla kódu</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="472"/>
         <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Krok ven&lt;/b&gt;&lt;p&gt;Provádí se python příkazy tak dlouho, dokud nedojde k opuštění těla aktuálního bloku kódu. Pokud je příkaz &lt;tt&gt;import&lt;/tt&gt;, konstruktor třídy, metoda nebo funkce, tak debuger provádí příkazy tak dlouho, dokud z daného bloku nevystoupí. Zastaví se až na příkazu následujícím za daným blokem.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="480"/>
+        <location filename="../Debugger/DebugUI.py" line="483"/>
         <source>Stop</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="480"/>
+        <location filename="../Debugger/DebugUI.py" line="483"/>
         <source>&amp;Stop</source>
         <translation>&amp;Stop</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="485"/>
+        <location filename="../Debugger/DebugUI.py" line="488"/>
         <source>Stop debugging</source>
         <translation>Stop debugování</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="486"/>
+        <location filename="../Debugger/DebugUI.py" line="489"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop běhu aktuální debug relace.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="493"/>
+        <location filename="../Debugger/DebugUI.py" line="496"/>
         <source>Variables Type Filter</source>
         <translation>Filtr typů proměnných</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="493"/>
+        <location filename="../Debugger/DebugUI.py" line="496"/>
         <source>Varia&amp;bles Type Filter...</source>
         <translation>&amp;Filtr typů proměnných...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="497"/>
+        <location filename="../Debugger/DebugUI.py" line="500"/>
         <source>Configure variables type filter</source>
         <translation>Nastavit filtr typů proměnných</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="499"/>
+        <location filename="../Debugger/DebugUI.py" line="502"/>
         <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Filtr typů proměnných&lt;/b&gt;&lt;p&gt;Nastavení filtru typů proměnných. Během debugování jsou v okně globálních nebo lokálních proměnných zobrazovány jen ty typy proměnných, které nebyly vybrány.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="509"/>
+        <location filename="../Debugger/DebugUI.py" line="512"/>
         <source>Exceptions Filter</source>
         <translation>Filtr výjimek</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="509"/>
+        <location filename="../Debugger/DebugUI.py" line="512"/>
         <source>&amp;Exceptions Filter...</source>
         <translation>Filtr výjim&amp;ek...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="513"/>
+        <location filename="../Debugger/DebugUI.py" line="516"/>
         <source>Configure exceptions filter</source>
         <translation>Konfigurace filtru výjimek</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="515"/>
+        <location filename="../Debugger/DebugUI.py" line="518"/>
         <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Filtr výjimek&lt;/b&gt;&lt;p&gt;Nastavení filtru výjimek. Během debugování jsou zvýrazněny jen ty výjimky, které jsou uvedeny v seznamu.&lt;/p&gt;&lt;p&gt;Všimněte si, že neošetřené výjimky jsou zvýrazněny nezávisle na seznamu filtru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="551"/>
+        <location filename="../Debugger/DebugUI.py" line="554"/>
         <source>Toggle Breakpoint</source>
         <translation>Přepnout breakpoint</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="552"/>
+        <location filename="../Debugger/DebugUI.py" line="555"/>
         <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Přepnout breakpoint&lt;/b&gt;&lt;p&gt;Zapíná/vypíná breakpoint na aktuální řádce v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="566"/>
+        <location filename="../Debugger/DebugUI.py" line="569"/>
         <source>Edit Breakpoint</source>
         <translation>Editovat breakpoint</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="560"/>
+        <location filename="../Debugger/DebugUI.py" line="563"/>
         <source>Edit Breakpoint...</source>
         <translation>Editovat breakpoint...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="567"/>
+        <location filename="../Debugger/DebugUI.py" line="570"/>
         <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Editovat breakpoint&lt;/b&gt;&lt;p&gt;Otevře dialog s editací vlastností breakpointů. Zpracovává aktuální řádku v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="582"/>
+        <location filename="../Debugger/DebugUI.py" line="585"/>
         <source>Next Breakpoint</source>
         <translation>Následující breakpoint</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="575"/>
+        <location filename="../Debugger/DebugUI.py" line="578"/>
         <source>Ctrl+Shift+PgDown</source>
         <comment>Debug|Next Breakpoint</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="583"/>
+        <location filename="../Debugger/DebugUI.py" line="586"/>
         <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Následující breakpoint&lt;/b&gt;&lt;p&gt;Jít na následující breakpoint v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="597"/>
+        <location filename="../Debugger/DebugUI.py" line="600"/>
         <source>Previous Breakpoint</source>
         <translation>Předchozí breakpoint</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="590"/>
+        <location filename="../Debugger/DebugUI.py" line="593"/>
         <source>Ctrl+Shift+PgUp</source>
         <comment>Debug|Previous Breakpoint</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="598"/>
+        <location filename="../Debugger/DebugUI.py" line="601"/>
         <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Předchozí breakpoint&lt;/b&gt;&lt;p&gt;Jít na předchozí brakpoint v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="610"/>
+        <location filename="../Debugger/DebugUI.py" line="613"/>
         <source>Clear Breakpoints</source>
         <translation>Zrušit breakpointy</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="611"/>
+        <location filename="../Debugger/DebugUI.py" line="614"/>
         <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zrušit breakpointy&lt;/b&gt;&lt;p&gt;Zrušení breakpointů ve všech editorech.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="637"/>
+        <location filename="../Debugger/DebugUI.py" line="640"/>
         <source>&amp;Debug</source>
         <translation>&amp;Debugování</translation>
     </message>
@@ -7383,209 +7383,209 @@
         <translation type="obsolete">&amp;Start</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="641"/>
+        <location filename="../Debugger/DebugUI.py" line="644"/>
         <source>&amp;Breakpoints</source>
         <translation>&amp;Breakpointy</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="684"/>
+        <location filename="../Debugger/DebugUI.py" line="687"/>
         <source>Start</source>
         <translation>Start</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="698"/>
+        <location filename="../Debugger/DebugUI.py" line="701"/>
         <source>Debug</source>
         <translation>Debug</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1169"/>
+        <location filename="../Debugger/DebugUI.py" line="1172"/>
         <source>The program being debugged contains an unspecified syntax error.</source>
         <translation>Program, který je právě debugován, obsahuje nespecifikovanou syntaktickou chybu.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1212"/>
+        <location filename="../Debugger/DebugUI.py" line="1215"/>
         <source>An unhandled exception occured. See the shell window for details.</source>
         <translation>Objevila se neošetřená výjimka. Detaily naleznete v shell okně.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1345"/>
+        <location filename="../Debugger/DebugUI.py" line="1348"/>
         <source>The program being debugged has terminated unexpectedly.</source>
         <translation>Debugovaný program byl neočekávaně ukončen.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1452"/>
+        <location filename="../Debugger/DebugUI.py" line="1455"/>
         <source>Breakpoint Condition Error</source>
         <translation>Chyba v podmíněném breakpointu</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1700"/>
+        <location filename="../Debugger/DebugUI.py" line="1703"/>
         <source>Coverage of Project</source>
         <translation>Pokrytí projektu</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1687"/>
+        <location filename="../Debugger/DebugUI.py" line="1690"/>
         <source>Coverage of Script</source>
         <translation>Pokrytí skriptu</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1973"/>
+        <location filename="../Debugger/DebugUI.py" line="1976"/>
         <source>There is no main script defined for the current project. Aborting</source>
         <translation>V aktuálním projektu není definován hlavní skript. Zrušeno</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1837"/>
+        <location filename="../Debugger/DebugUI.py" line="1840"/>
         <source>Profile of Project</source>
         <translation>Profilovat projekt</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1824"/>
+        <location filename="../Debugger/DebugUI.py" line="1827"/>
         <source>Profile of Script</source>
         <translation>Profilovat skript</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2111"/>
+        <location filename="../Debugger/DebugUI.py" line="2114"/>
         <source>There is no main script defined for the current project. No debugging possible.</source>
         <translation>V aktuálním projektu není definován hlavní skript. Debugování není možné.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="347"/>
+        <location filename="../Debugger/DebugUI.py" line="349"/>
         <source>Stop the running script.</source>
         <translation>Zastavit běžící skript.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1491"/>
+        <location filename="../Debugger/DebugUI.py" line="1494"/>
         <source>Watch Expression Error</source>
         <translation>Chyba sledovacího bodu</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1531"/>
+        <location filename="../Debugger/DebugUI.py" line="1534"/>
         <source>Watch expression already exists</source>
         <translation>Sledovací bod již existuje</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="526"/>
+        <location filename="../Debugger/DebugUI.py" line="529"/>
         <source>Ignored Exceptions</source>
         <translation>Ignorované výjimky</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="526"/>
+        <location filename="../Debugger/DebugUI.py" line="529"/>
         <source>&amp;Ignored Exceptions...</source>
         <translation>&amp;Ignorované výjimky...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="530"/>
+        <location filename="../Debugger/DebugUI.py" line="533"/>
         <source>Configure ignored exceptions</source>
         <translation>Konfigurovat ignorované výjimky</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="532"/>
+        <location filename="../Debugger/DebugUI.py" line="535"/>
         <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ignorované výjimky&lt;/b&gt;&lt;p&gt;Seznam ignorovaných výjimek. Během debugování jsou zvýrazněny jen ty typy výjimek, které nejsou uvedeny v tomto seznamu.&lt;/p&gt;&lt;p&gt;Všimněte si prosím, že výjimky typu unhalted nelze ignorovat.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="545"/>
+        <location filename="../Debugger/DebugUI.py" line="548"/>
         <source>Shift+F11</source>
         <comment>Debug|Toggle Breakpoint</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="560"/>
+        <location filename="../Debugger/DebugUI.py" line="563"/>
         <source>Shift+F12</source>
         <comment>Debug|Edit Breakpoint</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1188"/>
+        <location filename="../Debugger/DebugUI.py" line="1191"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; na řádce &lt;b&gt;{1}&lt;/b&gt;, písmeno &lt;b&gt;{2}&lt;/b&gt;, obsahuje syntaktickou chybu &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1262"/>
+        <location filename="../Debugger/DebugUI.py" line="1265"/>
         <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Debugovaný program vyvolal výjimku  &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;br&gt;Soubor: &lt;b&gt;{2}&lt;/b&gt;, řádek: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Zastavit zde?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1277"/>
+        <location filename="../Debugger/DebugUI.py" line="1280"/>
         <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;/p&gt;</source>
         <translation>&lt;p&gt;Debugovaný program vyvolal výjimku  &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1452"/>
+        <location filename="../Debugger/DebugUI.py" line="1455"/>
         <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Podmínka breakpointu &lt;b&gt;{0}, {1}&lt;/b&gt; obsahuje syntaktickou chybu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1491"/>
+        <location filename="../Debugger/DebugUI.py" line="1494"/>
         <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Sledovací bod &lt;b&gt;{0}&lt;/b&gt; obsahuje syntaktickou chybu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1521"/>
+        <location filename="../Debugger/DebugUI.py" line="1524"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; already exists.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Sledovací bod &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; již existuje.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1526"/>
+        <location filename="../Debugger/DebugUI.py" line="1529"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Sledovací bod &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; pro proměnnou &lt;b&gt;{1}&lt;/b&gt; již existuje.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1141"/>
+        <location filename="../Debugger/DebugUI.py" line="1144"/>
         <source>Program terminated</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="326"/>
+        <location filename="../Debugger/DebugUI.py" line="328"/>
         <source>Restart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="332"/>
+        <location filename="../Debugger/DebugUI.py" line="334"/>
         <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="348"/>
+        <location filename="../Debugger/DebugUI.py" line="350"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1331"/>
+        <location filename="../Debugger/DebugUI.py" line="1334"/>
         <source>&lt;p&gt;The program generate the signal &quot;{0}&quot;.&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1122"/>
+        <location filename="../Debugger/DebugUI.py" line="1125"/>
         <source>Message: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="406"/>
+        <location filename="../Debugger/DebugUI.py" line="409"/>
         <source>Move Instruction Pointer to Cursor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="406"/>
+        <location filename="../Debugger/DebugUI.py" line="409"/>
         <source>&amp;Jump To Cursor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="411"/>
-        <source>Skip the code from the current line to the current cursor position</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="414"/>
+        <source>Skip the code from the current line to the current cursor position</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="417"/>
         <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It&apos;s not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1409"/>
+        <location filename="../Debugger/DebugUI.py" line="1412"/>
         <source>No locals available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="639"/>
+        <location filename="../Debugger/DebugUI.py" line="642"/>
         <source>Sta&amp;rt</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7595,32 +7595,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="389"/>
+        <location filename="../Debugger/DebugUI.py" line="392"/>
         <source>Continue Until</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="389"/>
+        <location filename="../Debugger/DebugUI.py" line="392"/>
         <source>Continue &amp;Until</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="394"/>
-        <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="397"/>
+        <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="400"/>
         <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1127"/>
+        <location filename="../Debugger/DebugUI.py" line="1130"/>
         <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1131"/>
+        <location filename="../Debugger/DebugUI.py" line="1134"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7964,17 +7964,17 @@
         <translation>Automatické ukládání změn ve skriptech</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="282"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="283"/>
         <source>Add allowed host</source>
         <translation>Přidat povoleného hosta</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305"/>
         <source>Enter the IP address of an allowed host</source>
         <translation>Zadání IP adresy povoleného hosta</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="316"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318"/>
         <source>Edit allowed host</source>
         <translation>Editovat povolené hosty</translation>
     </message>
@@ -8049,7 +8049,7 @@
         <translation>Vždy zastavit na výjimkách</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="316"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318"/>
         <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Zadaná adresa &lt;b&gt;{0}&lt;/b&gt; není validní IP v4 nebo IP v6. Zrušeno...&lt;/p&gt;</translation>
     </message>
@@ -8380,7 +8380,7 @@
         <translation>Nenastavovat kódování debug klienta</translation>
     </message>
     <message>
-        <location filename="../Project/DebuggerPropertiesDialog.py" line="129"/>
+        <location filename="../Project/DebuggerPropertiesDialog.py" line="130"/>
         <source>All Files (*)</source>
         <translation>Všechny soubory (*)</translation>
     </message>
@@ -9254,7 +9254,7 @@
 <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="316"/>
         <source>.desktop Wizard</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9589,22 +9589,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>FreeDesktop Standard .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>KDE Plasma MetaData .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>Ubuntu Unity QuickList .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="316"/>
         <source>Only one of &apos;Only Show In&apos; or  &apos;Not Show In&apos; allowed.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9690,17 +9690,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="220"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="223"/>
         <source>Download canceled: {0}</source>
         <translation type="unfinished">Download zrušen: {0}</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="210"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="213"/>
         <source>Save File</source>
         <translation type="unfinished">Uložit soubor</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="249"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="252"/>
         <source>Download directory ({0}) couldn&apos;t be created.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9720,17 +9720,17 @@
         <translation type="obsolete">Chyba sítě: {0}</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="439"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="442"/>
         <source>?</source>
         <translation type="unfinished">?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="452"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="455"/>
         <source>{0} of {1} - Stopped</source>
         <translation type="unfinished">{0} z {1} - zastaveno</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="193"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="196"/>
         <source>VirusTotal scan scheduled: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9740,7 +9740,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="448"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="451"/>
         <source>{0} downloaded</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9750,7 +9750,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="437"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="440"/>
         <source>{0} of {1} ({2}/sec) {3}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9763,7 +9763,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="168"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="169"/>
         <source>There are %n downloads in progress.
 Do you want to quit anyway?</source>
         <translation type="unfinished">
@@ -9783,67 +9783,67 @@
         <translation type="obsolete">Vrátit</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="107"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="108"/>
         <source>Open</source>
         <translation type="unfinished">Otevřít</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="111"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="112"/>
         <source>Cancel</source>
         <translation type="unfinished">Zrušit</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="115"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="116"/>
         <source>Open Containing Folder</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="119"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="120"/>
         <source>Go to Download Page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="122"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="123"/>
         <source>Copy Download Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="126"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="127"/>
         <source>Select All</source>
         <translation type="unfinished">Vybrat vše</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="135"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="136"/>
         <source>Remove From List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="257"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="258"/>
         <source>Suspicuous URL detected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="257"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="258"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="588"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="589"/>
         <source>Download Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="500"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="501"/>
         <source>Downloads finished</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="500"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="501"/>
         <source>All files have been downloaded.</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="622"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="623"/>
         <source>{0}% of %n file(s) ({1}) {2}</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -9852,7 +9852,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="629"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="630"/>
         <source>{0}% - Download Manager</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9987,27 +9987,27 @@
 <context>
     <name>E5GoogleMail</name>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="159"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="160"/>
         <source>The client secrets file is not present. Has the Gmail API been enabled?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="196"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="197"/>
         <source>OAuth2 Authorization Code</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="196"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="197"/>
         <source>Enter the OAuth2 authorization code:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="240"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="241"/>
         <source>No authorized session available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="258"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="259"/>
         <source>Message #{0} sent.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10015,7 +10015,7 @@
 <context>
     <name>E5GraphicsView</name>
     <message>
-        <location filename="../E5Graphics/E5GraphicsView.py" line="57"/>
+        <location filename="../E5Graphics/E5GraphicsView.py" line="59"/>
         <source>&lt;b&gt;Graphics View&lt;/b&gt;
 &lt;p&gt;This graphics view is used to show a diagram. 
 There are various actions available to manipulate the 
@@ -10045,7 +10045,7 @@
 &lt;/ul&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Graphics/E5GraphicsView.py" line="415"/>
+        <location filename="../E5Graphics/E5GraphicsView.py" line="417"/>
         <source>{0}, Page {1}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10536,7 +10536,7 @@
 <context>
     <name>E5NetworkProxyFactory</name>
     <message>
-        <location filename="../E5Network/E5NetworkProxyFactory.py" line="227"/>
+        <location filename="../E5Network/E5NetworkProxyFactory.py" line="229"/>
         <source>Proxy Configuration Error</source>
         <translation>Chyba proxy konfigurace</translation>
     </message>
@@ -10546,7 +10546,7 @@
         <translation type="unfinished">&lt;b&gt;Připojit k proxy &apos;{0}&apos; za použití:&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5NetworkProxyFactory.py" line="227"/>
+        <location filename="../E5Network/E5NetworkProxyFactory.py" line="229"/>
         <source>Proxy usage was activated but no proxy host for protocol &apos;{0}&apos; configured.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10554,32 +10554,32 @@
 <context>
     <name>E5PathPickerBase</name>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="161"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="162"/>
         <source>Enter Path Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="158"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="159"/>
         <source>Enter Path Names separated by &apos;;&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="499"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="500"/>
         <source>Choose a file to open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="501"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="502"/>
         <source>Choose files to open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="506"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="507"/>
         <source>Choose a file to save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="508"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="509"/>
         <source>Choose a directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10645,32 +10645,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="107"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="117"/>
         <source>Process canceled.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="121"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="134"/>
         <source>Process finished successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="123"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="136"/>
         <source>Process crashed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="125"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="138"/>
         <source>Process finished with exit code {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="179"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="192"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="179"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="192"/>
         <source>&lt;p&gt;The process &lt;b&gt;{0}&lt;/b&gt; could not be started.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10759,12 +10759,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="80"/>
+        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="82"/>
         <source>(Unknown)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="82"/>
+        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="84"/>
         <source>(Unknown common name)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10852,72 +10852,72 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="300"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="305"/>
         <source>(Unknown)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="302"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="307"/>
         <source>(Unknown common name)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="150"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="152"/>
         <source>Delete Server Certificate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="150"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="152"/>
         <source>&lt;p&gt;Shall the server certificate really be deleted?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;&lt;p&gt;If the server certificate is deleted, the normal security checks will be reinstantiated and the server has to present a valid certificate.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="489"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="495"/>
         <source>Import Certificate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="399"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="405"/>
         <source>&lt;p&gt;The certificate &lt;b&gt;{0}&lt;/b&gt; already exists. Skipping.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="354"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="359"/>
         <source>Delete CA Certificate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="354"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="359"/>
         <source>&lt;p&gt;Shall the CA certificate really be deleted?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;&lt;p&gt;If the CA certificate is deleted, the browser will not trust any certificate issued by this CA.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="499"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="505"/>
         <source>Export Certificate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="440"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="446"/>
         <source>Certificate File (PEM) (*.pem);;Certificate File (DER) (*.der)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="456"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="462"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="467"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="473"/>
         <source>&lt;p&gt;The certificate could not be written to file &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="489"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="495"/>
         <source>Certificate Files (*.pem *.crt *.der *.cer *.ca);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="499"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="505"/>
         <source>&lt;p&gt;The certificate could not be read from file &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11013,7 +11013,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesInfoWidget.py" line="151"/>
+        <location filename="../E5Network/E5SslCertificatesInfoWidget.py" line="156"/>
         <source>&lt;not part of the certificate&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11021,42 +11021,42 @@
 <context>
     <name>E5SslErrorHandler</name>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="141"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="142"/>
         <source>SSL Errors</source>
         <translation type="unfinished">SSL chyby</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="141"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="142"/>
         <source>&lt;p&gt;SSL Errors for &lt;br /&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Do you want to ignore these errors?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;SSL chyby pro &lt;br /&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Chcete tyto chyby ignorovat?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="156"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="157"/>
         <source>Certificates</source>
         <translation type="unfinished">Certifikáty</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="156"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="157"/>
         <source>&lt;p&gt;Certificates:&lt;br/&gt;{0}&lt;br/&gt;Do you want to accept all these certificates?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Certifikáty:&lt;br/&gt;{0}&lt;br/&gt;Chcete akceptovat všechny certifikáty?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="210"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="212"/>
         <source>Name: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="220"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="223"/>
         <source>&lt;br/&gt;Organization: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="230"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="234"/>
         <source>&lt;br/&gt;Issuer: {0}</source>
         <translation type="unfinished">&lt;br/&gt;Vydatavel: {0}</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="239"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="244"/>
         <source>&lt;br/&gt;Not valid before: {0}&lt;br/&gt;Valid Until: {1}</source>
         <translation type="unfinished">&lt;br/&gt;Neplatný před: {0}&lt;br/&gt;Platný do: {1}</translation>
     </message>
@@ -11064,61 +11064,61 @@
 <context>
     <name>E5SslInfoWidget</name>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="55"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="56"/>
         <source>Identity</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="65"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="66"/>
         <source>Warning: this site is NOT carrying a certificate.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="73"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="74"/>
         <source>The certificate for this site is valid and has been verified by:
 {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="89"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="90"/>
         <source>Certificate Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="104"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="105"/>
         <source>Encryption</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="115"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="116"/>
         <source>Your connection to &quot;{0}&quot; is NOT encrypted.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="124"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="125"/>
         <source>Your connection to &quot;{0}&quot; is encrypted.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="143"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="144"/>
         <source>unknown</source>
         <translation type="unfinished">neznámý</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="166"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="167"/>
         <source>It uses protocol: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="173"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="174"/>
         <source>It is encrypted using {0} at {1} bits, with {2} for message authentication and {3} as key exchange mechanism.
 
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="80"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="81"/>
         <source>The certificate for this site is NOT valid.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11161,12 +11161,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5StringListEditWidget.py" line="99"/>
+        <location filename="../E5Gui/E5StringListEditWidget.py" line="100"/>
         <source>Add Entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5StringListEditWidget.py" line="99"/>
+        <location filename="../E5Gui/E5StringListEditWidget.py" line="100"/>
         <source>Enter the entry to add to the list:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11184,32 +11184,32 @@
 <context>
     <name>E5TextEditSearchWidget</name>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="81"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="83"/>
         <source>Find:</source>
         <translation type="unfinished">Hledat:</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="104"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="107"/>
         <source>Match case</source>
         <translation type="unfinished">Rozlišit velké a malé znaky</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="109"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="112"/>
         <source>Whole word</source>
         <translation type="unfinished">Celé slovo</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="119"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="122"/>
         <source>Press to find the previous occurrence</source>
         <translation type="unfinished">Stisknout pro vyhledání předchozího výskytu</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="126"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="129"/>
         <source>Press to find the next occurrence</source>
         <translation type="unfinished">Stisknout pro vyhledání následujícího výskytu</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="341"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="347"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished">&apos;{0}&apos; nebyl nalezen.</translation>
     </message>
@@ -11325,42 +11325,42 @@
         <translation>Stisknout pro posun vybrané akce dolů.</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="84"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="85"/>
         <source>--Separator--</source>
         <translation>--Oddělovač--</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="145"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="151"/>
         <source>New Toolbar</source>
         <translation>Nová lišta nástrojů</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="137"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="143"/>
         <source>Toolbar Name:</source>
         <translation>Jméno nástrojové lišty:</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="208"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="214"/>
         <source>A toolbar with the name &lt;b&gt;{0}&lt;/b&gt; already exists.</source>
         <translation>Nástrojová lišta jména &lt;b&gt;{0}&lt;/b&gt; již existuje.</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="170"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="176"/>
         <source>Remove Toolbar</source>
         <translation>Odebrat nástrojovou lištu</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="170"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="176"/>
         <source>Should the toolbar &lt;b&gt;{0}&lt;/b&gt; really be removed?</source>
         <translation>Má se nástrojová lišta &lt;b&gt;{0}&lt;/b&gt; opravdu odebrat?</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="208"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="214"/>
         <source>Rename Toolbar</source>
         <translation>Přejmenovat lištu</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="197"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="203"/>
         <source>New Toolbar Name:</source>
         <translation>Nové jméno nástrojové lišty:</translation>
     </message>
@@ -11368,7 +11368,7 @@
 <context>
     <name>E5XmlRpcClient</name>
     <message>
-        <location filename="../E5Network/E5XmlRpcClient.py" line="108"/>
+        <location filename="../E5Network/E5XmlRpcClient.py" line="111"/>
         <source>SSL Error</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11464,7 +11464,7 @@
         <translation>Ignorovat počet:</translation>
     </message>
     <message>
-        <location filename="../Debugger/EditBreakpointDialog.py" line="86"/>
+        <location filename="../Debugger/EditBreakpointDialog.py" line="87"/>
         <source>Add Breakpoint</source>
         <translation>Přidat breakpoint</translation>
     </message>
@@ -11545,812 +11545,812 @@
 <context>
     <name>Editor</name>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3146"/>
+        <location filename="../QScintilla/Editor.py" line="3153"/>
         <source>Open File</source>
         <translation>Otevřít soubor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="795"/>
+        <location filename="../QScintilla/Editor.py" line="797"/>
         <source>Undo</source>
         <translation>Vrátit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="798"/>
+        <location filename="../QScintilla/Editor.py" line="800"/>
         <source>Redo</source>
         <translation>Znovu použít</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="801"/>
+        <location filename="../QScintilla/Editor.py" line="803"/>
         <source>Revert to last saved state</source>
         <translation>Vrátit k poslednímu uloženému stavu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="805"/>
+        <location filename="../QScintilla/Editor.py" line="807"/>
         <source>Cut</source>
         <translation>Vyjmout</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="808"/>
+        <location filename="../QScintilla/Editor.py" line="810"/>
         <source>Copy</source>
         <translation>Kopírovat</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="811"/>
+        <location filename="../QScintilla/Editor.py" line="813"/>
         <source>Paste</source>
         <translation>Vložit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="819"/>
+        <location filename="../QScintilla/Editor.py" line="821"/>
         <source>Indent</source>
         <translation>Odsadit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="822"/>
+        <location filename="../QScintilla/Editor.py" line="824"/>
         <source>Unindent</source>
         <translation>Zrušit odsazení</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="825"/>
+        <location filename="../QScintilla/Editor.py" line="827"/>
         <source>Comment</source>
         <translation>Vytvořit komentář</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="828"/>
+        <location filename="../QScintilla/Editor.py" line="830"/>
         <source>Uncomment</source>
         <translation>Zrušit komentář</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="831"/>
+        <location filename="../QScintilla/Editor.py" line="833"/>
         <source>Stream Comment</source>
         <translation>Proudový komentář</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="834"/>
+        <location filename="../QScintilla/Editor.py" line="836"/>
         <source>Box Comment</source>
         <translation>Obdélníkový komentář</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="842"/>
-        <source>Select to brace</source>
-        <translation>Vybrat až po závorku</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="844"/>
+        <source>Select to brace</source>
+        <translation>Vybrat až po závorku</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="846"/>
         <source>Select all</source>
         <translation>Vybrat vše</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="845"/>
+        <location filename="../QScintilla/Editor.py" line="847"/>
         <source>Deselect all</source>
         <translation>Zrušit celý výběr</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="863"/>
+        <location filename="../QScintilla/Editor.py" line="865"/>
         <source>Shorten empty lines</source>
         <translation>Zkrátit prázdné řádky</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="870"/>
+        <location filename="../QScintilla/Editor.py" line="872"/>
         <source>Use Monospaced Font</source>
         <translation>Použít neporoporcionální font</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="875"/>
+        <location filename="../QScintilla/Editor.py" line="877"/>
         <source>Autosave enabled</source>
         <translation>Zapnout autosave</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="918"/>
+        <location filename="../QScintilla/Editor.py" line="920"/>
         <source>Close</source>
         <translation>Zavřít</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="924"/>
+        <location filename="../QScintilla/Editor.py" line="926"/>
         <source>Save</source>
         <translation>Uložit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="927"/>
+        <location filename="../QScintilla/Editor.py" line="929"/>
         <source>Save As...</source>
         <translation>Uložit jako...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="943"/>
+        <location filename="../QScintilla/Editor.py" line="945"/>
         <source>Print</source>
         <translation>Tisk</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="972"/>
-        <source>Complete from Document</source>
-        <translation type="unfinished">z dokumentu</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="974"/>
-        <source>Complete from APIs</source>
-        <translation type="unfinished">z API</translation>
+        <source>Complete from Document</source>
+        <translation type="unfinished">z dokumentu</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="976"/>
+        <source>Complete from APIs</source>
+        <translation type="unfinished">z API</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="978"/>
         <source>Complete from Document and APIs</source>
         <translation type="unfinished">z dokumentu a API</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="990"/>
+        <location filename="../QScintilla/Editor.py" line="992"/>
         <source>Check</source>
         <translation>Zkontrolovat</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1010"/>
-        <source>Show</source>
-        <translation>Zobrazit</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1012"/>
+        <source>Show</source>
+        <translation>Zobrazit</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1014"/>
         <source>Code metrics...</source>
         <translation>Metrika kódu...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1013"/>
-        <source>Code coverage...</source>
-        <translation>Pokrytí kódu...</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1015"/>
+        <source>Code coverage...</source>
+        <translation>Pokrytí kódu...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1017"/>
         <source>Show code coverage annotations</source>
         <translation>Zobrazit poznámky pokrytí kódu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1018"/>
+        <location filename="../QScintilla/Editor.py" line="1020"/>
         <source>Hide code coverage annotations</source>
         <translation>Skrýt poznámky pokrytí kódu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1021"/>
+        <location filename="../QScintilla/Editor.py" line="1023"/>
         <source>Profile data...</source>
         <translation>Profilovat data...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1034"/>
-        <source>Diagrams</source>
-        <translation>Diagramy</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1036"/>
-        <source>Class Diagram...</source>
-        <translation>Diagram třídy...</translation>
+        <source>Diagrams</source>
+        <translation>Diagramy</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1038"/>
-        <source>Package Diagram...</source>
-        <translation>Diagram balíčku...</translation>
+        <source>Class Diagram...</source>
+        <translation>Diagram třídy...</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1040"/>
-        <source>Imports Diagram...</source>
-        <translation>Diagram importů...</translation>
+        <source>Package Diagram...</source>
+        <translation>Diagram balíčku...</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1042"/>
+        <source>Imports Diagram...</source>
+        <translation>Diagram importů...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1044"/>
         <source>Application Diagram...</source>
         <translation>Diagram aplikace...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1060"/>
+        <location filename="../QScintilla/Editor.py" line="1062"/>
         <source>Languages</source>
         <translation>Jazyky</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1193"/>
+        <location filename="../QScintilla/Editor.py" line="1195"/>
         <source>No Language</source>
         <translation>Žádný jazyk</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1240"/>
-        <source>Toggle bookmark</source>
-        <translation>Přepnout záložku</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1242"/>
-        <source>Next bookmark</source>
-        <translation>Následující záložka</translation>
+        <source>Toggle bookmark</source>
+        <translation>Přepnout záložku</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1244"/>
-        <source>Previous bookmark</source>
-        <translation>Předchozí záložka</translation>
+        <source>Next bookmark</source>
+        <translation>Následující záložka</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1246"/>
+        <source>Previous bookmark</source>
+        <translation>Předchozí záložka</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1248"/>
         <source>Clear all bookmarks</source>
         <translation>Zrušit všechny záložky</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1320"/>
+        <location filename="../QScintilla/Editor.py" line="1322"/>
         <source>Goto syntax error</source>
         <translation>Jít na chybu syntaxe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1324"/>
+        <location filename="../QScintilla/Editor.py" line="1326"/>
         <source>Show syntax error message</source>
         <translation>Zobrazit hlášení syntaktické chyby</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1329"/>
+        <location filename="../QScintilla/Editor.py" line="1331"/>
         <source>Clear syntax error</source>
         <translation>Zrušit chybu syntaxe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1255"/>
-        <source>Toggle breakpoint</source>
-        <translation>Přepnout breakpoint</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1257"/>
+        <source>Toggle breakpoint</source>
+        <translation>Přepnout breakpoint</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1259"/>
         <source>Toggle temporary breakpoint</source>
         <translation>Přepnout dočasný breakpoint</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1260"/>
+        <location filename="../QScintilla/Editor.py" line="1262"/>
         <source>Edit breakpoint...</source>
         <translation>Editovat breakpoint...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5656"/>
+        <location filename="../QScintilla/Editor.py" line="5696"/>
         <source>Enable breakpoint</source>
         <translation>Aktivovat breakpoint</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1265"/>
-        <source>Next breakpoint</source>
-        <translation>Následující breakpoint</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1267"/>
+        <source>Next breakpoint</source>
+        <translation>Následující breakpoint</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1269"/>
         <source>Previous breakpoint</source>
         <translation>Předchozí breakpoint</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1272"/>
+        <location filename="../QScintilla/Editor.py" line="1274"/>
         <source>Clear all breakpoints</source>
         <translation>Zrušit všechny breakpointy</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1351"/>
+        <location filename="../QScintilla/Editor.py" line="1353"/>
         <source>Next uncovered line</source>
         <translation>Následující odkrytá řádka</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1355"/>
+        <location filename="../QScintilla/Editor.py" line="1357"/>
         <source>Previous uncovered line</source>
         <translation>Předchozí odkrytá řádka</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1360"/>
+        <location filename="../QScintilla/Editor.py" line="1362"/>
         <source>Next task</source>
         <translation>Následující úloha</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1364"/>
+        <location filename="../QScintilla/Editor.py" line="1366"/>
         <source>Previous task</source>
         <translation>Předchozí úloha</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1989"/>
+        <location filename="../QScintilla/Editor.py" line="1991"/>
         <source>Modification of Read Only file</source>
         <translation>Modifikace souboru otevřeného jen pro čtení</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1989"/>
+        <location filename="../QScintilla/Editor.py" line="1991"/>
         <source>You are attempting to change a read only file. Please save to a different file first.</source>
         <translation>Pokoušíte se změnit soubor, který je otevřen jen pro čtení. Prosím, uložte jej nejdříve do jiného souboru.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2711"/>
+        <location filename="../QScintilla/Editor.py" line="2715"/>
         <source>Printing...</source>
         <translation>Tisk...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2728"/>
+        <location filename="../QScintilla/Editor.py" line="2735"/>
         <source>Printing completed</source>
         <translation>Tisk je hotov</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2730"/>
+        <location filename="../QScintilla/Editor.py" line="2737"/>
         <source>Error while printing</source>
         <translation>Chyba během tisku</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2733"/>
+        <location filename="../QScintilla/Editor.py" line="2740"/>
         <source>Printing aborted</source>
         <translation>Tisk byl zrušen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3333"/>
+        <location filename="../QScintilla/Editor.py" line="3340"/>
         <source>Save File</source>
         <translation>Uložit soubor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3088"/>
+        <location filename="../QScintilla/Editor.py" line="3095"/>
         <source>File Modified</source>
         <translation>Soubor je modifikován</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4811"/>
+        <location filename="../QScintilla/Editor.py" line="4838"/>
         <source>Autocompletion</source>
         <translation>Autodoplňování</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4811"/>
+        <location filename="../QScintilla/Editor.py" line="4838"/>
         <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="5659"/>
+        <location filename="../QScintilla/Editor.py" line="5699"/>
         <source>Disable breakpoint</source>
         <translation>Deaktivovat breakpoint</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6034"/>
+        <location filename="../QScintilla/Editor.py" line="6074"/>
         <source>Code Coverage</source>
         <translation>Pokrytí kódu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6034"/>
+        <location filename="../QScintilla/Editor.py" line="6074"/>
         <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="6097"/>
+        <location filename="../QScintilla/Editor.py" line="6137"/>
         <source>Show Code Coverage Annotations</source>
         <translation>Zobrazit poznámky pokrytí kódu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6090"/>
+        <location filename="../QScintilla/Editor.py" line="6130"/>
         <source>All lines have been covered.</source>
         <translation>Všechny řádky byly pokryty.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6097"/>
+        <location filename="../QScintilla/Editor.py" line="6137"/>
         <source>There is no coverage file available.</source>
         <translation>Soubor s pokrytím není dostupný.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6214"/>
+        <location filename="../QScintilla/Editor.py" line="6254"/>
         <source>Profile Data</source>
         <translation>Profilovat data</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6214"/>
+        <location filename="../QScintilla/Editor.py" line="6254"/>
         <source>Please select a profile file</source>
         <translation>Prosím, vyberte soubor s profilem</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6376"/>
+        <location filename="../QScintilla/Editor.py" line="6416"/>
         <source>Syntax Error</source>
         <translation>Chyba syntaxe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6376"/>
+        <location filename="../QScintilla/Editor.py" line="6416"/>
         <source>No syntax error message available.</source>
         <translation>Hlášení syntaktické chyby není dostupné.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Macro Name</source>
         <translation>Název makra</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Select a macro name:</source>
         <translation>Vyberte název makra:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6793"/>
+        <location filename="../QScintilla/Editor.py" line="6833"/>
         <source>Load macro file</source>
         <translation>Načíst soubor makra</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6835"/>
+        <location filename="../QScintilla/Editor.py" line="6875"/>
         <source>Macro files (*.macro)</source>
         <translation>Macro soubory (*.macro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6815"/>
+        <location filename="../QScintilla/Editor.py" line="6855"/>
         <source>Error loading macro</source>
         <translation>Chyba při načítání makra</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6835"/>
+        <location filename="../QScintilla/Editor.py" line="6875"/>
         <source>Save macro file</source>
         <translation>Uložit soubor s makrem</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6852"/>
+        <location filename="../QScintilla/Editor.py" line="6892"/>
         <source>Save macro</source>
         <translation>Uložit makro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6867"/>
+        <location filename="../QScintilla/Editor.py" line="6907"/>
         <source>Error saving macro</source>
         <translation>Chyba při ukládání makra</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6880"/>
+        <location filename="../QScintilla/Editor.py" line="6920"/>
         <source>Start Macro Recording</source>
         <translation>Spustit záznam makra</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6880"/>
+        <location filename="../QScintilla/Editor.py" line="6920"/>
         <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="6906"/>
+        <location filename="../QScintilla/Editor.py" line="6946"/>
         <source>Macro Recording</source>
         <translation>Záznam makra</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6906"/>
+        <location filename="../QScintilla/Editor.py" line="6946"/>
         <source>Enter name of the macro:</source>
         <translation>Vložte název makra:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7076"/>
+        <location filename="../QScintilla/Editor.py" line="7116"/>
         <source>File changed</source>
         <translation>Soubor změněn</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7408"/>
+        <location filename="../QScintilla/Editor.py" line="7451"/>
         <source>Drop Error</source>
         <translation>Zahodit chybu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7429"/>
+        <location filename="../QScintilla/Editor.py" line="7472"/>
         <source>Resources</source>
         <translation>Zdroje</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7431"/>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
         <source>Add file...</source>
         <translation>Přidat soubor...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7433"/>
+        <location filename="../QScintilla/Editor.py" line="7476"/>
         <source>Add files...</source>
         <translation>Přidat soubory...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7435"/>
+        <location filename="../QScintilla/Editor.py" line="7478"/>
         <source>Add aliased file...</source>
         <translation>Přidat zástupce souboru...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7438"/>
+        <location filename="../QScintilla/Editor.py" line="7481"/>
         <source>Add localized resource...</source>
         <translation>Přidat lokalizované resource...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7442"/>
+        <location filename="../QScintilla/Editor.py" line="7485"/>
         <source>Add resource frame</source>
         <translation>Přidat resource frame</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7461"/>
-        <source>Add file resource</source>
-        <translation>Přidat soubor resource</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7477"/>
-        <source>Add file resources</source>
-        <translation>Přidat soubory resource</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="7504"/>
+        <source>Add file resource</source>
+        <translation>Přidat soubor resource</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7520"/>
+        <source>Add file resources</source>
+        <translation>Přidat soubory resource</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7547"/>
         <source>Add aliased file resource</source>
         <translation>Přidat zástupce souboru resource</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7570"/>
+        <location filename="../QScintilla/Editor.py" line="7613"/>
         <source>Package Diagram</source>
         <translation>Diagram balíčku</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7570"/>
+        <location filename="../QScintilla/Editor.py" line="7613"/>
         <source>Include class attributes?</source>
         <translation>Včetně atributů třídy?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7606"/>
+        <location filename="../QScintilla/Editor.py" line="7649"/>
         <source>Application Diagram</source>
         <translation>Diagram aplikace</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7606"/>
+        <location filename="../QScintilla/Editor.py" line="7649"/>
         <source>Include module names?</source>
         <translation>Včetně jmen modulů?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1218"/>
+        <location filename="../QScintilla/Editor.py" line="1220"/>
         <source>Export as</source>
         <translation>Exportovat jako</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1414"/>
+        <location filename="../QScintilla/Editor.py" line="1416"/>
         <source>Export source</source>
         <translation>Export zdroj</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1414"/>
+        <location filename="../QScintilla/Editor.py" line="1416"/>
         <source>No export format given. Aborting...</source>
         <translation>Nebyl zadán forám exportu. Zrušeno....</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7592"/>
+        <location filename="../QScintilla/Editor.py" line="7635"/>
         <source>Imports Diagram</source>
         <translation>Importovat diagram</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7592"/>
+        <location filename="../QScintilla/Editor.py" line="7635"/>
         <source>Include imports from external modules?</source>
         <translation>Zahrnout importy z externích modulů?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="894"/>
+        <location filename="../QScintilla/Editor.py" line="896"/>
         <source>Calltip</source>
         <translation>Rychlé tipy</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="940"/>
+        <location filename="../QScintilla/Editor.py" line="942"/>
         <source>Print Preview</source>
         <translation>Náhled tisku</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="478"/>
+        <location filename="../QScintilla/Editor.py" line="480"/>
         <source>&lt;b&gt;A Source Editor Window&lt;/b&gt;&lt;p&gt;This window is used to display and edit a source file.  You can open as many of these as you like. The name of the file is displayed in the window&apos;s titlebar.&lt;/p&gt;&lt;p&gt;In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.&lt;/p&gt;&lt;p&gt;In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.&lt;/p&gt;&lt;p&gt;These actions can be reversed via the context menu.&lt;/p&gt;&lt;p&gt;Ctrl clicking on a syntax error marker shows some info about this error.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Okno editoru zdrojového kódu&lt;/b&gt;&lt;p&gt;V tomto okně se zobrazuje a edituje soubor se zdrojovým kódem. Můžete otevřít oken podle libosti. Jméno souboru se zobrazuje v titlebaru okna.&lt;/p&gt;&lt;p&gt;Kliknutím do prostoru mezi čísly řádku a značkami skládání nastavíte breakpoint. Přes kontextové menu je pak lze editovat.&lt;/p&gt;&lt;p&gt;Záložka se vkládá kliknutím na stejné místo se stisknutou klávesou Shift.&lt;/p&gt;&lt;p&gt;Tyto akce mohou být navráceny zpět i opětovným kliknutím nebo přes kontextové menu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="879"/>
+        <location filename="../QScintilla/Editor.py" line="881"/>
         <source>Typing aids enabled</source>
         <translation>Pomůcky při psaní zapnuty</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1150"/>
+        <location filename="../QScintilla/Editor.py" line="1152"/>
         <source>End-of-Line Type</source>
         <translation>Typ Konec-řádku</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1154"/>
+        <location filename="../QScintilla/Editor.py" line="1156"/>
         <source>Unix</source>
         <translation>Unix</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1161"/>
+        <location filename="../QScintilla/Editor.py" line="1163"/>
         <source>Windows</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1168"/>
+        <location filename="../QScintilla/Editor.py" line="1170"/>
         <source>Macintosh</source>
         <translation>Macintosh</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1109"/>
+        <location filename="../QScintilla/Editor.py" line="1111"/>
         <source>Encodings</source>
         <translation>Kódování</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1089"/>
+        <location filename="../QScintilla/Editor.py" line="1091"/>
         <source>Guessed</source>
         <translation>Odhadem</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
+        <location filename="../QScintilla/Editor.py" line="1431"/>
         <source>Alternatives</source>
         <translation>Alternativy</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1445"/>
+        <location filename="../QScintilla/Editor.py" line="1447"/>
         <source>Pygments Lexer</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1445"/>
+        <location filename="../QScintilla/Editor.py" line="1447"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>Použít Pygments lexer.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7935"/>
+        <location filename="../QScintilla/Editor.py" line="7978"/>
         <source>Check spelling...</source>
         <translation>Zatrhnout kontrolu...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="853"/>
+        <location filename="../QScintilla/Editor.py" line="855"/>
         <source>Check spelling of selection...</source>
         <translation>Zatrhnout výběr kontroly...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7938"/>
+        <location filename="../QScintilla/Editor.py" line="7981"/>
         <source>Add to dictionary</source>
         <translation>Přidat do slovníku</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7940"/>
+        <location filename="../QScintilla/Editor.py" line="7983"/>
         <source>Ignore All</source>
         <translation>Ignorovat vše</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="857"/>
+        <location filename="../QScintilla/Editor.py" line="859"/>
         <source>Remove from dictionary</source>
         <translation>Odebrat ze slovníku</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="389"/>
+        <location filename="../QScintilla/Editor.py" line="391"/>
         <source>&lt;p&gt;The size of the file &lt;b&gt;{0}&lt;/b&gt; is &lt;b&gt;{1} KB&lt;/b&gt;. Do you really want to load it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Velikost souboru &lt;b&gt;{0}&lt;/b&gt; je &lt;b&gt;{1} KB&lt;/b&gt;. Opravdu jej chcete načíst?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1406"/>
+        <location filename="../QScintilla/Editor.py" line="1408"/>
         <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Pro formát exportu &lt;b&gt;{0}&lt;/b&gt; není exportér dostupný. Zrušeno.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1425"/>
+        <location filename="../QScintilla/Editor.py" line="1427"/>
         <source>Alternatives ({0})</source>
         <translation>Alternativy ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3088"/>
+        <location filename="../QScintilla/Editor.py" line="3095"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; obsahuje neuložené změny.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3146"/>
+        <location filename="../QScintilla/Editor.py" line="3153"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; nemůže být přejmenován.&lt;br /&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3270"/>
+        <location filename="../QScintilla/Editor.py" line="3277"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; nemůže být přejmenován.&lt;br /&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6806"/>
+        <location filename="../QScintilla/Editor.py" line="6846"/>
         <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="6815"/>
+        <location filename="../QScintilla/Editor.py" line="6855"/>
         <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="6867"/>
+        <location filename="../QScintilla/Editor.py" line="6907"/>
         <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="7267"/>
+        <location filename="../QScintilla/Editor.py" line="7310"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7408"/>
+        <location filename="../QScintilla/Editor.py" line="7451"/>
         <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="7504"/>
+        <location filename="../QScintilla/Editor.py" line="7547"/>
         <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
         <translation>Zástupce pro soubor &lt;b&gt;{0}&lt;/b&gt;:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1334"/>
+        <location filename="../QScintilla/Editor.py" line="1336"/>
         <source>Next warning</source>
         <translation>Následující varování</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1338"/>
+        <location filename="../QScintilla/Editor.py" line="1340"/>
         <source>Previous warning</source>
         <translation>Předchozí varování</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1342"/>
+        <location filename="../QScintilla/Editor.py" line="1344"/>
         <source>Show warning message</source>
         <translation>Zobrazit varování</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1346"/>
+        <location filename="../QScintilla/Editor.py" line="1348"/>
         <source>Clear warnings</source>
         <translation>Vyčistit varování</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3333"/>
+        <location filename="../QScintilla/Editor.py" line="3340"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6852"/>
+        <location filename="../QScintilla/Editor.py" line="6892"/>
         <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="6653"/>
+        <location filename="../QScintilla/Editor.py" line="6693"/>
         <source>Warning: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6660"/>
+        <location filename="../QScintilla/Editor.py" line="6700"/>
         <source>Error: {0}</source>
         <translation type="unfinished">Chyby: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7072"/>
+        <location filename="../QScintilla/Editor.py" line="7112"/>
         <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="936"/>
+        <location filename="../QScintilla/Editor.py" line="938"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1046"/>
+        <location filename="../QScintilla/Editor.py" line="1048"/>
         <source>Load Diagram...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1369"/>
+        <location filename="../QScintilla/Editor.py" line="1371"/>
         <source>Next change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1373"/>
+        <location filename="../QScintilla/Editor.py" line="1375"/>
         <source>Previous change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8356"/>
+        <location filename="../QScintilla/Editor.py" line="8399"/>
         <source>Sort Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8356"/>
+        <location filename="../QScintilla/Editor.py" line="8399"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6588"/>
+        <location filename="../QScintilla/Editor.py" line="6628"/>
         <source>Warning</source>
         <translation type="unfinished">Varování</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6588"/>
+        <location filename="../QScintilla/Editor.py" line="6628"/>
         <source>No warning messages available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6650"/>
+        <location filename="../QScintilla/Editor.py" line="6690"/>
         <source>Style: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="910"/>
+        <location filename="../QScintilla/Editor.py" line="912"/>
         <source>New Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="913"/>
+        <location filename="../QScintilla/Editor.py" line="915"/>
         <source>New Document View (with new split)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1000"/>
+        <location filename="../QScintilla/Editor.py" line="1002"/>
         <source>Tools</source>
         <translation type="unfinished">Nástroje</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1131"/>
+        <location filename="../QScintilla/Editor.py" line="1133"/>
         <source>Re-Open With Encoding</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12360,122 +12360,122 @@
         <translation type="obsolete">&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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="886"/>
+        <location filename="../QScintilla/Editor.py" line="888"/>
         <source>Automatic Completion enabled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="966"/>
+        <location filename="../QScintilla/Editor.py" line="968"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4943"/>
+        <location filename="../QScintilla/Editor.py" line="4980"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4943"/>
+        <location filename="../QScintilla/Editor.py" line="4980"/>
         <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="5222"/>
+        <location filename="../QScintilla/Editor.py" line="5262"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5222"/>
+        <location filename="../QScintilla/Editor.py" line="5262"/>
         <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="8445"/>
+        <location filename="../QScintilla/Editor.py" line="8488"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8445"/>
+        <location filename="../QScintilla/Editor.py" line="8488"/>
         <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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="930"/>
+        <location filename="../QScintilla/Editor.py" line="932"/>
         <source>Save Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="969"/>
+        <location filename="../QScintilla/Editor.py" line="971"/>
         <source>Clear Completions Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="896"/>
+        <location filename="../QScintilla/Editor.py" line="898"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1377"/>
+        <location filename="../QScintilla/Editor.py" line="1379"/>
         <source>Clear changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="815"/>
+        <location filename="../QScintilla/Editor.py" line="817"/>
         <source>Execute Selection In Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8566"/>
+        <location filename="../QScintilla/Editor.py" line="8609"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8566"/>
+        <location filename="../QScintilla/Editor.py" line="8609"/>
         <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/Editor.py" line="1281"/>
+        <location filename="../QScintilla/Editor.py" line="1283"/>
         <source>Toggle all folds</source>
         <translation type="unfinished">Složit/rozložit všechna skládání</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1286"/>
+        <location filename="../QScintilla/Editor.py" line="1288"/>
         <source>Toggle all folds (including children)</source>
         <translation type="unfinished">Složit/rozložit všechna skládání (i s podsložkami)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1291"/>
+        <location filename="../QScintilla/Editor.py" line="1293"/>
         <source>Toggle current fold</source>
         <translation type="unfinished">Složit/rozložit aktuální složený blok</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1297"/>
+        <location filename="../QScintilla/Editor.py" line="1299"/>
         <source>Expand (including children)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1302"/>
+        <location filename="../QScintilla/Editor.py" line="1304"/>
         <source>Collapse (including children)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1308"/>
+        <location filename="../QScintilla/Editor.py" line="1310"/>
         <source>Clear all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1189"/>
+        <location filename="../QScintilla/Editor.py" line="1191"/>
         <source>Spell Check Languages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7106"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8760"/>
+        <location filename="../QScintilla/Editor.py" line="8803"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12867,82 +12867,82 @@
 <context>
     <name>EditorButtonsWidget</name>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="174"/>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="176"/>
         <source>Bold</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="176"/>
-        <source>Italic</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="178"/>
+        <source>Italic</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="180"/>
         <source>Strike Through</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="181"/>
-        <source>Header 1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="183"/>
-        <source>Header 2</source>
+        <source>Header 1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="185"/>
-        <source>Header 3</source>
+        <source>Header 2</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="187"/>
+        <source>Header 3</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="189"/>
         <source>Header</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="192"/>
-        <source>Inline Code</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="194"/>
-        <source>Code Block</source>
+        <source>Inline Code</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="196"/>
+        <source>Code Block</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="198"/>
         <source>Quote</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="199"/>
-        <source>Add Hyperlink</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="201"/>
-        <source>Add Horizontal Line</source>
+        <source>Add Hyperlink</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="203"/>
+        <source>Add Horizontal Line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="205"/>
         <source>Add Image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="206"/>
-        <source>Add Bulleted List</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="208"/>
+        <source>Add Bulleted List</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="210"/>
         <source>Add Numbered List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="274"/>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="276"/>
         <source>Level {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -13898,12 +13898,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="243"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="244"/>
         <source>Tab and Indent Override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="243"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="244"/>
         <source>Shall the selected entries really be removed?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -14074,7 +14074,7 @@
         <translation>Výběr výplně konce řádku.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="426"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="427"/>
         <source>Fill to end of line</source>
         <translation>Vyplnit do konce řádku</translation>
     </message>
@@ -14144,17 +14144,17 @@
         <translation>Vše Vyplnit do konce řádku</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="424"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="425"/>
         <source>Enabled</source>
         <translation>Zapnuto</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="425"/>
-        <source>Disabled</source>
-        <translation>Vypnuto</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="426"/>
+        <source>Disabled</source>
+        <translation>Vypnuto</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="427"/>
         <source>Select fill to end of line for all styles</source>
         <translation>Vybrat pro doplnit do konce řádku pro všechny styly</translation>
     </message>
@@ -14214,12 +14214,12 @@
         <translation>Export všech stylů</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="591"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="592"/>
         <source>Export Highlighting Styles</source>
         <translation>Export stylů zvýraznění</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="642"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="643"/>
         <source>Import Highlighting Styles</source>
         <translation>Importovat styly zvýraznění</translation>
     </message>
@@ -14299,27 +14299,27 @@
         <translation type="obsolete">Soubor se styly zvýrazňování (*.e4h) {6h?}</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="783"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="784"/>
         <source>Delete Sub-Style</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="783"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="784"/>
         <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="823"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="824"/>
         <source>{0} - Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="851"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="852"/>
         <source>Reset Sub-Styles to Default</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="851"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="852"/>
         <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>
@@ -14369,27 +14369,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="548"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="549"/>
         <source>Highlighting Styles File (*.ehj);;XML Highlighting Styles File (*.e6h)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="567"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="568"/>
         <source>&lt;p&gt;The highlighting styles file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="591"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="592"/>
         <source>&lt;p&gt;The highlighting styles 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="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="610"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="611"/>
         <source>Highlighting Styles File (*.ehj);;XML Highlighting Styles File (*.e6h *.e4h)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="642"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="643"/>
         <source>&lt;p&gt;The highlighting styles 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>
@@ -14605,47 +14605,47 @@
 <context>
     <name>EditorOutlineView</name>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="268"/>
+        <location filename="../QScintilla/EditorOutline.py" line="269"/>
         <source>Goto</source>
         <translation type="unfinished">Jít na</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="310"/>
+        <location filename="../QScintilla/EditorOutline.py" line="311"/>
         <source>Refresh</source>
         <translation type="unfinished">Obnovit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="314"/>
+        <location filename="../QScintilla/EditorOutline.py" line="315"/>
         <source>Copy Path to Clipboard</source>
         <translation type="unfinished">Kopírovat cestu do schránky</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="319"/>
+        <location filename="../QScintilla/EditorOutline.py" line="320"/>
         <source>Expand All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="323"/>
+        <location filename="../QScintilla/EditorOutline.py" line="324"/>
         <source>Collapse All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="328"/>
+        <location filename="../QScintilla/EditorOutline.py" line="329"/>
         <source>Increment Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="332"/>
+        <location filename="../QScintilla/EditorOutline.py" line="333"/>
         <source>Decrement Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="390"/>
+        <location filename="../QScintilla/EditorOutline.py" line="391"/>
         <source>Line {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="336"/>
+        <location filename="../QScintilla/EditorOutline.py" line="337"/>
         <source>Set Default Width</source>
         <translation type="unfinished"></translation>
     </message>
@@ -16183,32 +16183,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="59"/>
         <source>Word Boundary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="60"/>
-        <source>Character Boundary</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="62"/>
+        <source>Character Boundary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="65"/>
         <source>No Indicator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="64"/>
-        <source>Indicator by Text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="66"/>
-        <source>Indicator by Margin</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="68"/>
+        <source>Indicator by Text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="71"/>
+        <source>Indicator by Margin</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="74"/>
         <source>Indicator in Line Number Margin</source>
         <translation type="unfinished"></translation>
     </message>
@@ -16449,22 +16449,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="72"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="78"/>
         <source>Fixed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="74"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="80"/>
         <source>Aligned</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="76"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="82"/>
         <source>Aligned plus One</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="79"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="85"/>
         <source>Aligned plus Two</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17128,27 +17128,27 @@
         <translation>Odeslat</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="133"/>
+        <location filename="../UI/EmailDialog.py" line="134"/>
         <source>Close dialog</source>
         <translation>Zavřít dialog</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="133"/>
+        <location filename="../UI/EmailDialog.py" line="134"/>
         <source>Do you really want to close the dialog?</source>
         <translation>Opravdu chcete zavřít dialog?</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="321"/>
+        <location filename="../UI/EmailDialog.py" line="322"/>
         <source>Mail Server Password</source>
         <translation>Heslo mail serveru</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="321"/>
+        <location filename="../UI/EmailDialog.py" line="322"/>
         <source>Enter your mail server password</source>
         <translation>Zadejte heslo vašeho mail serveru</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="423"/>
+        <location filename="../UI/EmailDialog.py" line="424"/>
         <source>Attach file</source>
         <translation>Připojit soubor</translation>
     </message>
@@ -17178,12 +17178,12 @@
         <translation>Poslat požadavek na vlastnost</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="341"/>
+        <location filename="../UI/EmailDialog.py" line="342"/>
         <source>&lt;p&gt;Authentication failed.&lt;br&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Autentizace selhala.&lt;br&gt;Důvod: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="410"/>
+        <location filename="../UI/EmailDialog.py" line="411"/>
         <source>&lt;p&gt;Message could not be sent.&lt;br&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Zprávu nelze odeslat.&lt;br&gt;Důvod: {0}&lt;/p&gt;</translation>
     </message>
@@ -17193,22 +17193,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="157"/>
+        <location filename="../UI/EmailDialog.py" line="158"/>
         <source>Gmail API Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="366"/>
+        <location filename="../UI/EmailDialog.py" line="367"/>
         <source>Send Message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="151"/>
+        <location filename="../UI/EmailDialog.py" line="152"/>
         <source>&lt;p&gt;The Google Mail Client API is not installed. Use &lt;code&gt;{0}&lt;/code&gt; to install it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="410"/>
+        <location filename="../UI/EmailDialog.py" line="411"/>
         <source>Send Message via Gmail</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17715,7 +17715,7 @@
         <translation>&lt;b&gt;Provedení Ericapi&lt;/b&gt;&lt;p&gt;Zobrazuje se výstup z Ericapi generátoru příkazu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="89"/>
         <source>Process Generation Error</source>
         <translation>Chyba v procesu generování</translation>
     </message>
@@ -17730,17 +17730,17 @@
         <translation>Chyby</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="82"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="84"/>
         <source>{0} - {1}</source>
         <translation>{0} - {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="89"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="128"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="137"/>
         <source>
 {0} finished.
 </source>
@@ -18080,7 +18080,7 @@
         <translation>Generovat kolekci souborů QtNápovědy</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="62"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="63"/>
         <source>&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot;&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;&lt;html&gt;&lt;head&gt;&lt;title&gt;&lt;/title&gt;&lt;/head&gt;&lt;body style=&quot;background-color:{BodyBgColor};color:{BodyColor}&quot;&gt;&lt;h1 style=&quot;background-color:{Level1HeaderBgColor};color:{Level1HeaderColor}&quot;&gt;Level 1 Header&lt;/h1&gt;&lt;h3 style=&quot;background-color:{Level2HeaderBgColor};color:{Level2HeaderColor}&quot;&gt;Level 2 Header&lt;/h3&gt;&lt;h2 style=&quot;background-color:{CFBgColor};color:{CFColor}&quot;&gt;Class and Function Header&lt;/h2&gt;Standard body text with &lt;a style=&quot;color:{LinkColor}&quot;&gt;some links&lt;/a&gt; embedded.&lt;/body&gt;&lt;/html&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18165,7 +18165,7 @@
         <translation>&lt;b&gt;Provedení Ericdoc&lt;/b&gt;&lt;p&gt;Zobrazuje se výstup z Ericdoc generátoru příkazu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="89"/>
         <source>Process Generation Error</source>
         <translation>Chyba v procesu generování</translation>
     </message>
@@ -18180,24 +18180,24 @@
         <translation>Chyby</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="82"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="84"/>
         <source>{0} - {1}</source>
         <translation>{0} - {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="89"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="129"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="138"/>
         <source>
 {0} finished.
 </source>
         <translation>{0} hotovo.</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="120"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="126"/>
         <source>
 {0} crashed.
 </source>
@@ -18285,17 +18285,17 @@
         <translation type="unfinished">Ignorovat ale zachovat</translation>
     </message>
     <message>
-        <location filename="../UI/ErrorLogDialog.py" line="44"/>
+        <location filename="../UI/ErrorLogDialog.py" line="45"/>
         <source>Delete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/ErrorLogDialog.py" line="45"/>
-        <source>Close</source>
-        <translation type="unfinished">Zavřít</translation>
-    </message>
-    <message>
         <location filename="../UI/ErrorLogDialog.py" line="46"/>
+        <source>Close</source>
+        <translation type="unfinished">Zavřít</translation>
+    </message>
+    <message>
+        <location filename="../UI/ErrorLogDialog.py" line="47"/>
         <source>Error Log</source>
         <translation type="unfinished">Protokol chyb</translation>
     </message>
@@ -18821,22 +18821,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="110"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="111"/>
         <source>Allow</source>
         <translation type="unfinished">Povolit</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="111"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="112"/>
         <source>Deny</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="133"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="134"/>
         <source>{0} wants to use an unknown feature.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="108"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="109"/>
         <source>Remember</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18884,12 +18884,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="161"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="165"/>
         <source>Host</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="162"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="166"/>
         <source>Permission</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18899,17 +18899,17 @@
         <translation type="obsolete">Odebrat</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="68"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="69"/>
         <source>Geolocation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="186"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="191"/>
         <source>Allow</source>
         <translation type="unfinished">Povolit</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="187"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="193"/>
         <source>Deny</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18924,32 +18924,32 @@
         <translation type="unfinished">Odebr&amp;at vše</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="83"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="85"/>
         <source>Microphone</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="98"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="101"/>
         <source>Camera</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="113"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="117"/>
         <source>Microphone &amp;&amp; Camera</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="129"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="133"/>
         <source>Mouse Lock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="147"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="151"/>
         <source>Desktop Video</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="163"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="167"/>
         <source>Desktop Audio &amp;&amp; Video</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19005,17 +19005,17 @@
         <translation type="unfinished">Přidat</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="86"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="87"/>
         <source>Add RSS Feed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="81"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="82"/>
         <source>The feed was added successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="86"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="87"/>
         <source>The feed was already added before.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19073,67 +19073,67 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="182"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="183"/>
         <source>Duplicate Feed URL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="182"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="183"/>
         <source>A feed with the URL {0} exists already. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="204"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="205"/>
         <source>Delete Feed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="204"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="205"/>
         <source>&lt;p&gt;Do you really want to delete the feed &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="316"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="317"/>
         <source>Error fetching feed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="346"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="347"/>
         <source>&amp;Open</source>
         <translation type="unfinished">&amp;Otevřít</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="348"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="349"/>
         <source>Open in New &amp;Tab</source>
         <translation type="unfinished">Otevřít v novém &amp;tabu</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="359"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="360"/>
         <source>&amp;Copy URL to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="366"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="367"/>
         <source>&amp;Show error data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="483"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="490"/>
         <source>Error loading feed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="350"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="351"/>
         <source>Open in New &amp;Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="353"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="354"/>
         <source>Open in New &amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="355"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="356"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19768,7 +19768,7 @@
         <translation>Nahradit</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="740"/>
+        <location filename="../UI/FindFileDialog.py" line="744"/>
         <source>Replace in Files</source>
         <translation>Nahradit v souborech</translation>
     </message>
@@ -19793,37 +19793,37 @@
         <translation>Pocit jako</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="767"/>
+        <location filename="../UI/FindFileDialog.py" line="771"/>
         <source>Open</source>
         <translation>Otevřít</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="768"/>
+        <location filename="../UI/FindFileDialog.py" line="772"/>
         <source>Copy Path to Clipboard</source>
         <translation>Kopírovat cestu do schránky</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="450"/>
+        <location filename="../UI/FindFileDialog.py" line="453"/>
         <source>Invalid search expression</source>
         <translation>Neplatný výraz hledání</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="450"/>
+        <location filename="../UI/FindFileDialog.py" line="453"/>
         <source>&lt;p&gt;The search expression is not valid.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Výraz hledná není platný. &lt;/p&gt;&lt;p&gt;Chyba: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="699"/>
+        <location filename="../UI/FindFileDialog.py" line="703"/>
         <source>&lt;p&gt;Could not read the file &lt;b&gt;{0}&lt;/b&gt;. Skipping it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Nelze číst ze souboru  &lt;b&gt;{0}&lt;/b&gt;. Přeskočeno.&lt;/p&gt;&lt;p&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="740"/>
+        <location filename="../UI/FindFileDialog.py" line="744"/>
         <source>&lt;p&gt;Could not save the file &lt;b&gt;{0}&lt;/b&gt;. Skipping it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Nelze uložit do souboru  &lt;b&gt;{0}&lt;/b&gt;. Přeskočeno.&lt;/p&gt;&lt;p&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="714"/>
+        <location filename="../UI/FindFileDialog.py" line="718"/>
         <source>&lt;p&gt;The current and the original hash of the file &lt;b&gt;{0}&lt;/b&gt; are different. Skipping it.&lt;/p&gt;&lt;p&gt;Hash 1: {1}&lt;/p&gt;&lt;p&gt;Hash 2: {2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19833,13 +19833,13 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="573"/>
+        <location filename="../UI/FindFileDialog.py" line="576"/>
         <source>{0} / {1}</source>
         <comment>occurrences / files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../UI/FindFileDialog.py" line="574"/>
+        <location filename="../UI/FindFileDialog.py" line="577"/>
         <source>%n occurrence(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -19848,7 +19848,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../UI/FindFileDialog.py" line="574"/>
+        <location filename="../UI/FindFileDialog.py" line="577"/>
         <source>%n file(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -19970,7 +19970,7 @@
         <translation>Stisknout pro ukončení hledání</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileNameDialog.py" line="58"/>
+        <location filename="../UI/FindFileNameDialog.py" line="59"/>
         <source>Opens the selected file</source>
         <translation>Otevřít vybraný soubor</translation>
     </message>
@@ -21009,7 +21009,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitArchiveDataDialog.py" line="83"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitArchiveDataDialog.py" line="85"/>
         <source>Select Archive File</source>
         <translation type="unfinished"></translation>
     </message>
@@ -21087,22 +21087,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="52"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="54"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="54"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="56"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="173"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="173"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
@@ -21223,12 +21223,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
@@ -21438,7 +21438,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBranchPushDialog.py" line="34"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBranchPushDialog.py" line="35"/>
         <source>&lt;all branches&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -21750,7 +21750,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitCopyDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitCopyDialog.py" line="90"/>
         <source>Select target</source>
         <translation type="unfinished">Vybrat cíl</translation>
     </message>
@@ -21818,12 +21818,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="115"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="115"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
@@ -21886,37 +21886,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="82"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="88"/>
         <source>Additional Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="110"/>
         <source>Process canceled.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="112"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="125"/>
         <source>Process finished successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="127"/>
         <source>Process crashed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="129"/>
         <source>Process finished with exit code {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="182"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="182"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
@@ -21959,82 +21959,82 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="90"/>
         <source>Working Tree to Staging Area</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="89"/>
-        <source>Staging Area to HEAD Commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="90"/>
-        <source>Working Tree to HEAD Commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="91"/>
-        <source>Working to Staging (top) and Staging to HEAD (bottom)</source>
+        <source>Staging Area to HEAD Commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="92"/>
+        <source>Working Tree to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="93"/>
+        <source>Working to Staging (top) and Staging to HEAD (bottom)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="95"/>
         <source>Stash Contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="96"/>
         <source>Stash Contents of {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="166"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="168"/>
         <source>Difference ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="174"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="174"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="198"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="200"/>
         <source>There is no difference.</source>
         <translation type="unfinished">Žádné rozdíly nebyly nalezeny.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="219"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="225"/>
         <source>&lt;Start&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="220"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="226"/>
         <source>&lt;End&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="355"/>
         <source>Save Diff</source>
         <translation type="unfinished">Uložit Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="314"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="322"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished">Patch soubory (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="331"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="339"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="355"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Patch soubor &lt;b&gt;{0}&lt;/b&gt; nelze uložit.&lt;br /&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
@@ -22193,12 +22193,12 @@
         <translation type="unfinished">Graf</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="110"/>
         <source>Commit ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="111"/>
         <source>Author</source>
         <translation type="unfinished">Autor</translation>
     </message>
@@ -22208,7 +22208,7 @@
         <translation type="unfinished">Datum</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="112"/>
         <source>Committer</source>
         <translation type="unfinished"></translation>
     </message>
@@ -22218,7 +22218,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="110"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="113"/>
         <source>Subject</source>
         <translation type="unfinished"></translation>
     </message>
@@ -22293,7 +22293,7 @@
         <translation type="unfinished">Kopírovat z</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2095"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2113"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
@@ -22353,328 +22353,328 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="97"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="96"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="99"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
         <source>Find</source>
         <translation type="unfinished">Hledat</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="108"/>
         <source>Filter</source>
         <translation type="unfinished">Filtr</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="111"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="114"/>
         <source>File</source>
         <translation type="unfinished">Soubor</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="131"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit ID&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2} &amp;lt;{3}&amp;gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5} &amp;lt;{6}&amp;gt;&lt;/td&gt;&lt;/tr&gt;{7}&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;{9}&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="140"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Rodiče&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="143"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Children&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation type="unfinished"></translation>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Rodiče&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="146"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Větve&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Children&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="149"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tagy&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Větve&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="152"/>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tagy&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="155"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Message&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="203"/>
-        <source>Added</source>
-        <translation type="unfinished">Přidáno</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="204"/>
-        <source>Deleted</source>
-        <translation type="unfinished">Smazáno</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="205"/>
-        <source>Modified</source>
-        <translation type="unfinished">Změněno</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="206"/>
-        <source>Copied</source>
-        <translation type="unfinished"></translation>
+        <source>Added</source>
+        <translation type="unfinished">Přidáno</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="207"/>
-        <source>Renamed</source>
-        <translation type="unfinished"></translation>
+        <source>Deleted</source>
+        <translation type="unfinished">Smazáno</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="208"/>
-        <source>Type changed</source>
-        <translation type="unfinished"></translation>
+        <source>Modified</source>
+        <translation type="unfinished">Změněno</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="209"/>
-        <source>Unmerged</source>
+        <source>Copied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="210"/>
+        <source>Renamed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="211"/>
+        <source>Type changed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="212"/>
+        <source>Unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="213"/>
         <source>Unknown</source>
         <translation type="unfinished">Neznámý</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="246"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="249"/>
         <source>Show Commit ID Column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="248"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="251"/>
         <source>Press to show the commit ID column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="256"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="259"/>
         <source>Show Author Columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="258"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="261"/>
         <source>Press to show the author columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="266"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="269"/>
         <source>Show Committer Columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="268"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="271"/>
         <source>Press to show the committer columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="276"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="279"/>
         <source>Show Branches Column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="278"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="281"/>
         <source>Press to show the branches column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="286"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="289"/>
         <source>Show Tags Column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="291"/>
         <source>Press to show the Tags column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="315"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="318"/>
         <source>Copy Commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="317"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="320"/>
         <source>Cherry-pick the selected commits to the current branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="322"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="325"/>
         <source>Tag</source>
         <translation type="unfinished">Tag</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="324"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="327"/>
         <source>Tag the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1789"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1807"/>
         <source>Branch</source>
         <translation type="unfinished">Větev</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="328"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="331"/>
         <source>Create a new branch at the selected commit.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="330"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="333"/>
         <source>Branch &amp;&amp; Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="332"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="335"/>
         <source>Create a new branch at the selected commit and switch the work tree to it.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1859"/>
         <source>Switch</source>
         <translation type="unfinished">Přepnout</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="338"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="341"/>
         <source>Switch the working directory to the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1867"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1885"/>
         <source>Show Short Log</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="344"/>
-        <source>Show a dialog with a log output for release notes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="347"/>
+        <source>Show a dialog with a log output for release notes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="350"/>
         <source>Describe</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="349"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="352"/>
         <source>Show the most recent tag reachable from a commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="634"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="639"/>
         <source>The git process did not finish within 30s.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="637"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="642"/>
         <source>Could not start the git executable.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="640"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="645"/>
         <source>Git Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="756"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="761"/>
         <source>{0} ({1}%)</source>
         <comment>action, confidence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="819"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="827"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="819"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="827"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1262"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1280"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1274"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1292"/>
         <source>&lt;a href=&quot;sbsdiff:{0}_{1}&quot;&gt;Side-by-Side Compare&lt;/a&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1721"/>
         <source>Copy Changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1859"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished">Projekt bude znovu načten. Má se provést?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1867"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1885"/>
         <source>Select a branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1820"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1838"/>
         <source>Select a default branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1820"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1838"/>
         <source>Branch &amp; Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2049"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2067"/>
         <source>Find Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2049"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2067"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished">&apos;{0}&apos; nebyl nalezen.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2127"/>
         <source>Differences to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2124"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2142"/>
         <source>Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2150"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2168"/>
         <source>There is no difference.</source>
         <translation type="unfinished">Žádné rozdíly nebyly nalezeny.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2312"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2330"/>
         <source>Save Diff</source>
         <translation type="unfinished">Uložit Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2279"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2297"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished">Patch soubory (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2296"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2314"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2312"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2330"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Patch soubor &lt;b&gt;{0}&lt;/b&gt; nelze uložit.&lt;br /&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
@@ -22854,12 +22854,12 @@
         <translation type="unfinished">&lt;b&gt;Adresář projektu&lt;/b&gt;&lt;p&gt;Zadání adresáře nového projektu. Ten bude stažen z repozitáře a umístěn do tohoto adresáře.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="87"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="88"/>
         <source>Select Repository-Directory</source>
         <translation type="unfinished">Vyberte adresář repozitáře</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="102"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="103"/>
         <source>Select Project Directory</source>
         <translation type="unfinished">Vyberte adresář projektu</translation>
     </message>
@@ -23015,7 +23015,7 @@
 <context>
     <name>GitPatchFilesDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="82"/>
         <source>Patch Files</source>
         <translation type="unfinished"></translation>
     </message>
@@ -23070,7 +23070,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="82"/>
         <source>Patch Files (*.diff *.patch);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -23108,12 +23108,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
@@ -25138,22 +25138,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="54"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="56"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="56"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="58"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="198"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="198"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
@@ -25345,12 +25345,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="144"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="148"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="144"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="148"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
@@ -25649,57 +25649,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="60"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="63"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="62"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="65"/>
         <source>Press to refresh the list of stashes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="77"/>
-        <source>Show</source>
-        <translation type="unfinished">Zobrazit</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="80"/>
+        <source>Show</source>
+        <translation type="unfinished">Zobrazit</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="83"/>
         <source>Restore &amp;&amp; Keep</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="82"/>
-        <source>Restore &amp;&amp; Delete</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="85"/>
-        <source>Create Branch</source>
+        <source>Restore &amp;&amp; Delete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="88"/>
+        <source>Create Branch</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="91"/>
         <source>Delete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="93"/>
         <source>Delete All</source>
         <translation type="unfinished">Smazat vše</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="176"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="183"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="176"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="183"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="363"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="377"/>
         <source>%n file(s) changed</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -25708,7 +25708,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="365"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="379"/>
         <source>%n line(s) inserted</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -25717,7 +25717,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="367"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="381"/>
         <source>%n line(s) deleted</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -25787,7 +25787,7 @@
 <context>
     <name>GitStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="379"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="386"/>
         <source>Git Status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -25813,7 +25813,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="647"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="665"/>
         <source>Commit</source>
         <translation type="unfinished"></translation>
     </message>
@@ -25898,312 +25898,312 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="102"/>
         <source>Stage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="106"/>
         <source>Revert Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="110"/>
         <source>Stage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="112"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="114"/>
         <source>Revert Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="120"/>
         <source>Unstage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="122"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="124"/>
         <source>Unstage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="163"/>
-        <source>added</source>
-        <translation type="unfinished">přidáno</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="164"/>
-        <source>copied</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="165"/>
-        <source>deleted</source>
-        <translation type="unfinished">smazáno</translation>
+        <source>added</source>
+        <translation type="unfinished">přidáno</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="166"/>
-        <source>modified</source>
+        <source>copied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="167"/>
-        <source>renamed</source>
+        <source>deleted</source>
+        <translation type="unfinished">smazáno</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="168"/>
+        <source>modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="169"/>
+        <source>renamed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="171"/>
         <source>not tracked</source>
         <translation type="unfinished">nesledováno</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="168"/>
-        <source>unmerged</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="162"/>
-        <source>unmodified</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
+        <source>unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="164"/>
+        <source>unmodified</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="172"/>
         <source>ignored</source>
         <translation type="unfinished">ignorováno</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="188"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="190"/>
         <source>Commit the selected changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="189"/>
-        <source>Amend</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="191"/>
-        <source>Amend the latest commit with the selected changes</source>
+        <source>Amend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="193"/>
-        <source>Select all for commit</source>
+        <source>Amend the latest commit with the selected changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="195"/>
+        <source>Select all for commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="197"/>
         <source>Unselect all from commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="688"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="706"/>
         <source>Add</source>
         <translation type="unfinished">Přidat</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="201"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="203"/>
         <source>Add the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="202"/>
-        <source>Stage changes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="204"/>
-        <source>Stages all changes of the selected files</source>
+        <source>Stage changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="206"/>
-        <source>Unstage changes</source>
+        <source>Stages all changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="208"/>
+        <source>Unstage changes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210"/>
         <source>Unstages all changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="824"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="842"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="215"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="217"/>
         <source>Shows the differences of the selected entry in a separate dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="218"/>
-        <source>Differences Side-By-Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="220"/>
+        <source>Differences Side-By-Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="222"/>
         <source>Shows the differences of the selected entry side-by-side in a separate dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789"/>
         <source>Revert</source>
         <translation type="unfinished">Vrátit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="228"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="230"/>
         <source>Reverts the changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="233"/>
-        <source>Forget missing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="235"/>
-        <source>Forgets about the selected missing files</source>
+        <source>Forget missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="237"/>
-        <source>Restore missing</source>
+        <source>Forgets about the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="239"/>
+        <source>Restore missing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="241"/>
         <source>Restores the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244"/>
-        <source>Edit file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="246"/>
+        <source>Edit file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="248"/>
         <source>Edit the selected conflicting file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="251"/>
-        <source>Adjust column sizes</source>
-        <translation type="unfinished">Přizpůsobit šířky sloupců</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253"/>
+        <source>Adjust column sizes</source>
+        <translation type="unfinished">Přizpůsobit šířky sloupců</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="255"/>
         <source>Adjusts the width of all columns to their contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="414"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="414"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="581"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="599"/>
         <source>all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="647"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="665"/>
         <source>There are no entries selected to be committed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="688"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="706"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation type="unfinished">Položky mimo verzi nejsou dostupné/vybrány.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="710"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="728"/>
         <source>Stage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="710"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="728"/>
         <source>There are no stageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="732"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="750"/>
         <source>Unstage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="732"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="750"/>
         <source>There are no unstageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="754"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="772"/>
         <source>Forget Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="795"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="813"/>
         <source>There are no missing entries available/selected.</source>
         <translation type="unfinished">Chybějící záznamy nejsou dostupné/vybrány.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789"/>
         <source>There are no uncommitted, unstaged changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="795"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="813"/>
         <source>Restore Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="824"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="842"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="876"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
         <source>Working Tree to Staging Area</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="855"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="873"/>
         <source>Staging Area to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="877"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="895"/>
         <source>Working Tree to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="879"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="897"/>
         <source>Side-by-Side Difference</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="879"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="897"/>
         <source>Select the compare method.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1188"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1212"/>
         <source>Revert selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1190"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1214"/>
         <source>Revert hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1191"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1215"/>
         <source>Are you sure you want to revert the selected changes?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26300,12 +26300,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="103"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="105"/>
         <source>Select Submodule Repository Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="129"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="131"/>
         <source>Select Submodule Directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26689,12 +26689,12 @@
         <translation type="unfinished">&lt;b&gt;Tag/větev seznam&lt;/b&gt;&lt;p&gt;Tento dialog zobrazuje seznam tagů hlavní části projektu nebo jeho větví.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="95"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="97"/>
         <source>Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="95"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="97"/>
         <source>Name</source>
         <translation type="unfinished">Jméno</translation>
     </message>
@@ -26744,22 +26744,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="92"/>
         <source>Annotation Message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="96"/>
         <source>Git Branches List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="133"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="133"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
@@ -27664,7 +27664,7 @@
 <context>
     <name>HelpDocsInstaller</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpDocsInstaller.py" line="239"/>
+        <location filename="../WebBrowser/QtHelp/HelpDocsInstaller.py" line="241"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be registered. &lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -27860,22 +27860,22 @@
         <translation>H&amp;ledat:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="205"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="211"/>
         <source>Open Link</source>
         <translation>Otevřít link</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="206"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="212"/>
         <source>Open Link in New Tab</source>
         <translation>Otevřít link v novém tabu</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="207"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="213"/>
         <source>Open Link in Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="209"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="215"/>
         <source>Open Link in New Window</source>
         <translation type="unfinished"></translation>
     </message>
@@ -27954,22 +27954,22 @@
 <context>
     <name>HelpSearchWidget</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="145"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="150"/>
         <source>Open Link</source>
         <translation>Otevřít link</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="146"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="151"/>
         <source>Open Link in New Tab</source>
         <translation>Otevřít link v novém tabu</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="147"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="152"/>
         <source>Open Link in Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="149"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="154"/>
         <source>Open Link in New Window</source>
         <translation type="unfinished"></translation>
     </message>
@@ -28085,22 +28085,22 @@
 <context>
     <name>HelpTocWidget</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="158"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="164"/>
         <source>Open Link</source>
         <translation>Otevřít link</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="159"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="165"/>
         <source>Open Link in New Tab</source>
         <translation>Otevřít link v novém tabu</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="160"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="166"/>
         <source>Open Link in Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="162"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="168"/>
         <source>Open Link in New Window</source>
         <translation type="unfinished"></translation>
     </message>
@@ -30453,12 +30453,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="798"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="801"/>
         <source>&lt;p&gt;This part of the status bar displays the edit mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="806"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="810"/>
         <source>&lt;p&gt;This part of the status bar displays the read only mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -30468,110 +30468,110 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="790"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="792"/>
         <source>&lt;p&gt;This part of the status bar displays the size of the binary data.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="862"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="867"/>
         <source>ro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="862"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="867"/>
         <source>rw</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="880"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="885"/>
         <source>Overwrite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="880"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="885"/>
         <source>Insert</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="942"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="947"/>
         <source>Open binary file in new window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1061"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1066"/>
         <source>All Files (*)</source>
         <translation type="unfinished">Všechny soubory (*)</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="963"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="968"/>
         <source>The loaded file has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="981"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="986"/>
         <source>The file &apos;{0}&apos; does not exist.</source>
         <translation type="unfinished">Soubor &apos;{0}&apos; neexistuje.</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="988"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="993"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation type="unfinished">Nelze číst soubor &apos;{0}:{1}.</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1014"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1019"/>
         <source>Open binary file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1071"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1076"/>
         <source>Save binary file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1156"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1161"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1181"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1186"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation type="unfinished">Nelze zapsat do souboru &apos;{0}:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1187"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1192"/>
         <source>File saved</source>
         <translation type="unfinished">Soubor uložen</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1156"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1161"/>
         <source>Save to readable file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1140"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1145"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished">Textové soubory (*.txt);;Všechny soubory (*)</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1140"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1145"/>
         <source>Text Files (*.txt)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1223"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1228"/>
         <source>Untitled</source>
         <translation type="unfinished">Beze jména</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1227"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1232"/>
         <source>{0}[*] - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1227"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1232"/>
         <source>Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
@@ -30591,12 +30591,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="782"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="783"/>
         <source>&lt;p&gt;This part of the status bar displays some selection information.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="851"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="856"/>
         <source>Selection: -</source>
         <comment>no selection available</comment>
         <translation type="unfinished"></translation>
@@ -30617,18 +30617,18 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="826"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="831"/>
         <source>Address: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="845"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="850"/>
         <source>Selection: {0} - {1} ({2} Bytes)</source>
         <comment>0: start, 1: end, 2: selection length</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="899"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="904"/>
         <source>Size: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -30638,22 +30638,22 @@
         <translation type="unfinished">Otevřít poslední soubo&amp;ry</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1431"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1436"/>
         <source>&amp;Clear</source>
         <translation type="unfinished">&amp;Vyčistit</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1181"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1186"/>
         <source>eric Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1284"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1289"/>
         <source>About eric Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1284"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1289"/>
         <source>The eric Hex Editor is a simple editor component to edit binary files.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -31796,7 +31796,7 @@
         <translation>Merge s aktuálním rodičem</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBackoutDialog.py" line="174"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBackoutDialog.py" line="176"/>
         <source>Backed out changeset &lt;{0}&gt;.</source>
         <translation>Zálohovat množinu změn &lt;{0}&gt;.</translation>
     </message>
@@ -31824,7 +31824,7 @@
 <context>
     <name>HgBookmarkDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="46"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="47"/>
         <source>Define Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
@@ -31929,7 +31929,7 @@
         <translation type="unfinished">Vybrat poslední revizi (tip) v repozitáři</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="43"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="44"/>
         <source>Move Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32011,12 +32011,12 @@
         <translation type="obsolete">Zadejte data, která se odešlou do hg procesu</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="46"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="48"/>
         <source>Mercurial Incoming Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="48"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="50"/>
         <source>Mercurial Outgoing Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32031,7 +32031,7 @@
         <translation type="obsolete">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="121"/>
         <source>no bookmarks found</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32111,7 +32111,7 @@
         <translation type="obsolete">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="125"/>
         <source>no bookmarks defined</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32126,67 +32126,67 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="247"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="258"/>
         <source>Switch to</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="251"/>
-        <source>Delete</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="254"/>
-        <source>Rename</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="258"/>
-        <source>Pull</source>
-        <translation type="unfinished">Stáhnout</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="262"/>
+        <source>Delete</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="265"/>
+        <source>Rename</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="269"/>
+        <source>Pull</source>
+        <translation type="unfinished">Stáhnout</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="273"/>
         <source>Push</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="299"/>
         <source>Switch</source>
         <translation type="unfinished">Přepnout</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="299"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished">Projekt bude znovu načten. Má se provést?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="318"/>
         <source>Delete Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="318"/>
         <source>&lt;p&gt;Shall the bookmark &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="323"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="334"/>
         <source>Rename Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="323"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="334"/>
         <source>&lt;p&gt;Enter the new name for bookmark &lt;b&gt;{0}&lt;/b&gt;:&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="267"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="278"/>
         <source>Push Current</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="272"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="283"/>
         <source>Push All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32605,7 +32605,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="173"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="183"/>
         <source>Resolved</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32615,7 +32615,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="171"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="181"/>
         <source>Unresolved</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32665,12 +32665,12 @@
         <translation type="obsolete">Zadejte data, která se odešlou do hg procesu</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="51"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="54"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="53"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="56"/>
         <source>Press to refresh the list of conflicts</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32685,7 +32685,7 @@
         <translation type="obsolete">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="175"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="185"/>
         <source>Unknown Status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32857,52 +32857,52 @@
         <translation>Chyby</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="101"/>
         <source>Process Generation Error</source>
         <translation>Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="101"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="120"/>
         <source>There is no difference.</source>
         <translation>Žádné rozdíly nebyly nalezeny.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="245"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="254"/>
         <source>Save Diff</source>
         <translation>Uložit Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="213"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="222"/>
         <source>Patch Files (*.diff)</source>
         <translation>Patch soubory (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="245"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="254"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Patch soubor &lt;b&gt;{0}&lt;/b&gt; nelze uložit.&lt;br /&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="230"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="239"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="91"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="93"/>
         <source>Patch Contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="137"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="143"/>
         <source>&lt;Start&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="138"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="144"/>
         <source>&lt;End&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -33165,7 +33165,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="218"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="228"/>
         <source>Revision</source>
         <translation type="unfinished">Revize</translation>
     </message>
@@ -33230,7 +33230,7 @@
         <translation type="obsolete">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="95"/>
         <source>no signatures found</source>
         <translation type="unfinished"></translation>
     </message>
@@ -33708,17 +33708,17 @@
         <translation>Vybrat pole pro filtrování</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="131"/>
         <source>Revision</source>
         <translation>Revize</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="129"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="132"/>
         <source>Author</source>
         <translation>Autor</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="130"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="133"/>
         <source>Message</source>
         <translation>Zpráva</translation>
     </message>
@@ -33818,17 +33818,17 @@
         <translation type="obsolete">Mód vstu&amp;pu hesla</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="208"/>
         <source>Added</source>
         <translation>Přidáno</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="206"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="209"/>
         <source>Deleted</source>
         <translation>Smazáno</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="207"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="210"/>
         <source>Modified</source>
         <translation>Změněno</translation>
     </message>
@@ -33853,7 +33853,7 @@
         <translation type="obsolete">Nelze spustit hg program.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="842"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="847"/>
         <source>Mercurial Error</source>
         <translation>Mercurial chyba</translation>
     </message>
@@ -33873,7 +33873,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="190"/>
         <source>All</source>
         <translation type="unfinished">Vše</translation>
     </message>
@@ -33888,48 +33888,48 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="222"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="225"/>
         <source>Bookmarks</source>
         <translation type="unfinished">Záložky</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="117"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="120"/>
         <source>Press to refresh the list of changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="118"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="132"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="135"/>
         <source>Phase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="274"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="277"/>
         <source>Change the phase of the selected revisions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="276"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="279"/>
         <source>&lt;b&gt;Change Phase&lt;/b&gt;
 &lt;p&gt;This changes the phase of the selected revisions. The selected revisions have to have the same current phase.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="272"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="275"/>
         <source>Change Phase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1997"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2016"/>
         <source>Copy Changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2302"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2321"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished">Projekt bude znovu načten. Má se provést?</translation>
     </message>
@@ -33939,42 +33939,42 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="266"/>
         <source>Copy the selected changesets to the current branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="281"/>
-        <source>Tag</source>
-        <translation type="unfinished">Tag</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="284"/>
+        <source>Tag</source>
+        <translation type="unfinished">Tag</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="287"/>
         <source>Tag the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2068"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2087"/>
         <source>Switch</source>
         <translation type="unfinished">Přepnout</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="294"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="297"/>
         <source>Switch the working directory to the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="317"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="320"/>
         <source>Pull Large Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="319"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="322"/>
         <source>Pull large files for selected revisions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1135"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1146"/>
         <source>{0} (large file)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -33999,137 +33999,137 @@
         <translation type="unfinished">Stisknout pro vyhledání následujícího výskytu</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="128"/>
         <source>Find</source>
         <translation type="unfinished">Hledat</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="126"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="129"/>
         <source>Filter</source>
         <translation type="unfinished">Filtr</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="172"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tagy&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="175"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="178"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2443"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2462"/>
         <source>Find Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2443"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2462"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished">&apos;{0}&apos; nebyl nalezen.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="134"/>
         <source>File</source>
         <translation type="unfinished">Soubor</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="211"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="214"/>
         <source>Draft</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="212"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="215"/>
         <source>Public</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="213"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="216"/>
         <source>Secret</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2165"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2184"/>
         <source>Pull Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="315"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="318"/>
         <source>Pull changes from a remote repository</source>
         <translation type="unfinished">Stáhnout změny (pull) ze vzdáleného repozitáře</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="324"/>
-        <source>Push Selected Changes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="327"/>
-        <source>Push changes of the selected changeset and its ancestors to a remote repository</source>
+        <source>Push Selected Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="330"/>
-        <source>Push All Changes</source>
+        <source>Push changes of the selected changeset and its ancestors to a remote repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="333"/>
+        <source>Push All Changes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="336"/>
         <source>Push all changes to a remote repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2211"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2230"/>
         <source>Strip Changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="376"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="379"/>
         <source>Strip changesets from a repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="299"/>
-        <source>Define Bookmark...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="302"/>
+        <source>Define Bookmark...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="305"/>
         <source>Bookmark the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="304"/>
-        <source>Move Bookmark...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="307"/>
+        <source>Move Bookmark...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="310"/>
         <source>Move bookmark to the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2091"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2110"/>
         <source>Define Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2091"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2110"/>
         <source>Enter bookmark name for changeset &quot;{0}&quot;:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2134"/>
         <source>Move Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2134"/>
         <source>Select the bookmark to be moved  to changeset &quot;{0}&quot;:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2054"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2073"/>
         <source>Select bookmark to switch to (leave empty to use revision):</source>
         <translation type="unfinished"></translation>
     </message>
@@ -34144,143 +34144,143 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="175"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Latest Tag&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="156"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branch&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;{4}&lt;tr&gt;&lt;td&gt;&lt;b&gt;Message&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="163"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Rodiče&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="166"/>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Rodiče&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="169"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Children&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="266"/>
-        <source>Merge with Changeset</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="269"/>
+        <source>Merge with Changeset</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="272"/>
         <source>Merge the working directory with the selected changeset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="338"/>
-        <source>Create Changegroup</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="341"/>
+        <source>Create Changegroup</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="344"/>
         <source>Create a changegroup file containing the selected changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="343"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="346"/>
         <source>&lt;b&gt;Create Changegroup&lt;/b&gt;
 &lt;p&gt;This creates a changegroup file containing the selected revisions. If no revisions are selected, all changesets will be bundled. If one revision is selected, it will be interpreted as the base revision. Otherwise the lowest revision will be used as the base revision and all other revision will be bundled. If the dialog is showing outgoing changesets, all selected changesets will be bundled.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2302"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2321"/>
         <source>Apply Changegroup</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="355"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="358"/>
         <source>Apply the currently viewed changegroup file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="360"/>
-        <source>Sign Revisions</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="363"/>
+        <source>Sign Revisions</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="366"/>
         <source>Add a signature for the selected revisions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="365"/>
-        <source>Verify Signatures</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="368"/>
+        <source>Verify Signatures</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="371"/>
         <source>Verify all signatures there may be for the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="381"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="384"/>
         <source>Select All Entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="383"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="386"/>
         <source>Deselect All Entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1376"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1392"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1387"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1403"/>
         <source>&lt;a href=&quot;sbsdiff:{0}_{1}&quot;&gt;Side-by-Side Compare&lt;/a&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1523"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1539"/>
         <source>Pull Selected Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2487"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2506"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2497"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2516"/>
         <source>Differences to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2513"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2532"/>
         <source>Diff to Parent {0}{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2538"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2557"/>
         <source>There is no difference.</source>
         <translation type="unfinished">Žádné rozdíly nebyly nalezeny.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2680"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2699"/>
         <source>Save Diff</source>
         <translation type="unfinished">Uložit Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2648"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2667"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished">Patch soubory (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2665"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2684"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2680"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2699"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Patch soubor &lt;b&gt;{0}&lt;/b&gt; nelze uložit.&lt;br /&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
@@ -34290,7 +34290,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2486"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2505"/>
         <source>Generating differences ...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -34300,12 +34300,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="286"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="289"/>
         <source>Close Heads</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="289"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="292"/>
         <source>Close the selected heads</source>
         <translation type="unfinished"></translation>
     </message>
@@ -36338,22 +36338,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="206"/>
         <source>Remove Guards</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="206"/>
         <source>Do you really want to remove the selected guards?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="253"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="258"/>
         <source>Apply Guard Definitions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="253"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="258"/>
         <source>&lt;p&gt;The defined guards could not be applied.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -36414,7 +36414,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesGuardsSelectionDialog.py" line="44"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesGuardsSelectionDialog.py" line="46"/>
         <source>Active Guards</source>
         <translation type="unfinished"></translation>
     </message>
@@ -36437,7 +36437,7 @@
         <translation type="obsolete">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py" line="118"/>
         <source>Error: </source>
         <translation type="unfinished"></translation>
     </message>
@@ -36535,32 +36535,32 @@
         <translation type="obsolete">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="138"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="145"/>
         <source>no patches found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="43"/>
-        <source>applied</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="45"/>
-        <source>guarded</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="46"/>
+        <source>applied</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="48"/>
+        <source>guarded</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="49"/>
         <source>missing</source>
         <translation type="unfinished">chybějící</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="193"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="205"/>
         <source>unknown</source>
         <translation type="unfinished">neznámý</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="44"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="47"/>
         <source>not applied</source>
         <translation type="unfinished"></translation>
     </message>
@@ -36714,12 +36714,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="67"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="68"/>
         <source>Refresh</source>
         <translation type="unfinished">Obnovit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="69"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="70"/>
         <source>Press to refresh the queues list</source>
         <translation type="unfinished"></translation>
     </message>
@@ -37458,27 +37458,27 @@
         <translation type="obsolete">Zadejte data, která se odešlou do hg procesu</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="49"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="52"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="51"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="54"/>
         <source>Press to refresh the list of shelves</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="60"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="63"/>
         <source>Restore selected shelve</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="62"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="65"/>
         <source>Delete selected shelves</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="64"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="67"/>
         <source>Delete all shelves</source>
         <translation type="unfinished"></translation>
     </message>
@@ -37493,7 +37493,7 @@
         <translation type="obsolete">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="266"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="280"/>
         <source>%n file(s) changed</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -37502,7 +37502,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="268"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="282"/>
         <source>%n line(s) inserted</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -37511,7 +37511,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="270"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="284"/>
         <source>%n line(s) deleted</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -37594,7 +37594,7 @@
 <context>
     <name>HgStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="310"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="314"/>
         <source>Mercurial Status</source>
         <translation>Mercurial status</translation>
     </message>
@@ -37660,47 +37660,47 @@
         <translation>Stisknout pro obnovení zobrazní statusu</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="124"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="126"/>
         <source>Commit the selected changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="190"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="192"/>
         <source>Adjust column sizes</source>
         <translation type="unfinished">Přizpůsobit šířky sloupců</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="96"/>
         <source>added</source>
         <translation>přidáno</translation>
     </message>
     <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="99"/>
+        <source>modified</source>
+        <translation>změněno</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="100"/>
+        <source>removed</source>
+        <translation>odebráno</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="101"/>
+        <source>not tracked</source>
+        <translation>nesledováno</translation>
+    </message>
+    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="97"/>
-        <source>modified</source>
-        <translation>změněno</translation>
+        <source>normal</source>
+        <translation>normální</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="98"/>
-        <source>removed</source>
-        <translation>odebráno</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="99"/>
-        <source>not tracked</source>
-        <translation>nesledováno</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="95"/>
-        <source>normal</source>
-        <translation>normální</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="96"/>
         <source>ignored</source>
         <translation>ignorováno</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="102"/>
         <source>missing</source>
         <translation>chybějící</translation>
     </message>
@@ -37715,37 +37715,37 @@
         <translation type="obsolete">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="494"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="506"/>
         <source>Commit</source>
         <translation>Zapsat měny</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="660"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="672"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation>Nezapsné změny nejsou dostupné/vybrané.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="558"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="570"/>
         <source>Add</source>
         <translation>Přidat</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="558"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="570"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation>Položky mimo verzi nejsou dostupné/vybrány.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="622"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="634"/>
         <source>Revert</source>
         <translation>Vrátit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="581"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="593"/>
         <source>Remove</source>
         <translation>Odebrat</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="622"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="634"/>
         <source>There are no missing entries available/selected.</source>
         <translation>Chybějící záznamy nejsou dostupné/vybrány.</translation>
     </message>
@@ -37760,102 +37760,102 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="174"/>
         <source>Restore missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="416"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="428"/>
         <source>all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="640"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="652"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="494"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="506"/>
         <source>There are no entries selected to be committed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="125"/>
-        <source>Select all for commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="307"/>
-        <source>Mercurial Queue Repository Status</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="667"/>
-        <source>Side-by-Side Diff</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="667"/>
-        <source>Only one file with uncommitted changes must be selected.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="135"/>
-        <source>Add as Large Files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="140"/>
-        <source>Add as Normal Files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="168"/>
-        <source>Forget missing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="127"/>
-        <source>Unselect all from commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="134"/>
-        <source>Add the selected files</source>
+        <source>Select all for commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="311"/>
+        <source>Mercurial Queue Repository Status</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="679"/>
+        <source>Side-by-Side Diff</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="679"/>
+        <source>Only one file with uncommitted changes must be selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="137"/>
-        <source>Add the selected files as a large files using the &apos;Large Files&apos; extension</source>
+        <source>Add as Large Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="142"/>
+        <source>Add as Normal Files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="170"/>
+        <source>Forget missing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="129"/>
+        <source>Unselect all from commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="136"/>
+        <source>Add the selected files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="139"/>
+        <source>Add the selected files as a large files using the &apos;Large Files&apos; extension</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="144"/>
         <source>Add the selected files as a normal files using the &apos;Large Files&apos; extension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="150"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="152"/>
         <source>Shows the differences of the selected entry in a separate dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="153"/>
-        <source>Differences Side-By-Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="155"/>
+        <source>Differences Side-By-Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="157"/>
         <source>Shows the differences of the selected entry side-by-side in a separate dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="163"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="165"/>
         <source>Reverts the changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="172"/>
         <source>Forgets about the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
@@ -37865,37 +37865,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="174"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="176"/>
         <source>Restores the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="194"/>
         <source>Adjusts the width of all columns to their contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="179"/>
-        <source>Commit Merge</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="181"/>
-        <source>Commit all the merged changes.</source>
+        <source>Commit Merge</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="183"/>
-        <source>Abort Merge</source>
+        <source>Commit all the merged changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="185"/>
+        <source>Abort Merge</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="187"/>
         <source>Abort an uncommitted merge and lose all changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="761"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="779"/>
         <source>Merge</source>
         <translation type="unfinished">Sloučit</translation>
     </message>
@@ -38065,152 +38065,152 @@
         <translation type="obsolete">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="234"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="236"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="238"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="240"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tagy&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="242"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="244"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Message&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="248"/>
-        <source>empty repository</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="250"/>
+        <source>empty repository</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="252"/>
         <source>no revision checked out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="251"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="253"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Remarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="255"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="257"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branch&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="265"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="270"/>
-        <source>{0} modified</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="272"/>
-        <source>{0} added</source>
+        <source>{0} modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="274"/>
-        <source>{0} removed</source>
+        <source>{0} added</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="276"/>
-        <source>{0} renamed</source>
+        <source>{0} removed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="278"/>
-        <source>{0} copied</source>
+        <source>{0} renamed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="280"/>
-        <source>{0} deleted</source>
+        <source>{0} copied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="282"/>
-        <source>{0} unknown</source>
+        <source>{0} deleted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="284"/>
-        <source>{0} ignored</source>
+        <source>{0} unknown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="286"/>
+        <source>{0} ignored</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="288"/>
         <source>{0} unresolved</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="289"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="291"/>
         <source>{0} subrepos</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="292"/>
-        <source>Merge needed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="294"/>
-        <source>New Branch</source>
+        <source>Merge needed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="296"/>
-        <source>Head is closed</source>
+        <source>New Branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="298"/>
-        <source>No commit required</source>
+        <source>Head is closed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="300"/>
+        <source>No commit required</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="302"/>
         <source>New Branch Head</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="301"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="303"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Status&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="306"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="308"/>
         <source>current</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="321"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="323"/>
         <source>unknown status</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="322"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="324"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Update Status&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="327"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="329"/>
         <source>synched</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="331"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="333"/>
         <source>1 or more incoming changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="335"/>
         <source>%n outgoing changeset(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -38219,42 +38219,42 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="342"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="344"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Remote Status&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="349"/>
         <source>empty queue</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="351"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="353"/>
         <source>{0} applied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="354"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="356"/>
         <source>{0} unapplied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="357"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="359"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Queues Status&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="371"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="373"/>
         <source>&lt;p&gt;No status information available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="230"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="232"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="308"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="310"/>
         <source>%n new changeset(s)&lt;br/&gt;Update required</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -38263,7 +38263,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="312"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="314"/>
         <source>%n new changeset(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -38272,7 +38272,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="314"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="316"/>
         <source>%n branch head(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -38281,13 +38281,13 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="316"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="318"/>
         <source>{0}&lt;br/&gt;{1}&lt;br/&gt;Merge required</source>
         <comment>0 is changesets, 1 is branch heads</comment>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="336"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="338"/>
         <source>%n incoming bookmark(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -38296,7 +38296,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="339"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="341"/>
         <source>%n outgoing bookmark(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -38305,12 +38305,12 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="362"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="364"/>
         <source>No files to upload</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="364"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="366"/>
         <source>%n file(s) to upload</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -38319,7 +38319,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="368"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Large Files&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -38399,12 +38399,12 @@
         <translation type="obsolete">Mód ve&amp;psání hesla</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="90"/>
         <source>Mercurial Branches List</source>
         <translation>Mercurial sezam větví</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="91"/>
         <source>Status</source>
         <translation>Status</translation>
     </message>
@@ -38419,62 +38419,62 @@
         <translation type="obsolete">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="200"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="211"/>
         <source>active</source>
         <translation>aktivní</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="216"/>
         <source>yes</source>
         <translation>ano</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="42"/>
-        <source>&amp;Refresh</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="44"/>
+        <source>&amp;Refresh</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="46"/>
         <source>Press to refresh the list</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="278"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="292"/>
         <source>Switch to</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="347"/>
         <source>Close Branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="321"/>
         <source>Switch</source>
         <translation type="unfinished">Přepnout</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="321"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished">Projekt bude znovu načten. Má se provést?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="326"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="340"/>
         <source>The branch &quot;default&quot; cannot be closed. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="347"/>
         <source>&lt;p&gt;Shall the branch &lt;b&gt;{0}&lt;/b&gt; really be closed?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="380"/>
         <source>Close Branches</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="380"/>
         <source>Do you really want to close all listed branches?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -39243,7 +39243,7 @@
         <translation>Stisknout pro odebrání vybraných položek</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="122"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="123"/>
         <source>&amp;Remove</source>
         <translation>Odeb&amp;rat</translation>
     </message>
@@ -39258,32 +39258,32 @@
         <translation>Odebr&amp;at vše</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="105"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="106"/>
         <source>&amp;Open</source>
         <translation>&amp;Otevřít</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="108"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="109"/>
         <source>Open in New &amp;Tab</source>
         <translation>Otevřít v novém &amp;tabu</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="121"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="122"/>
         <source>&amp;Copy</source>
         <translation>&amp;Kopírovat</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="111"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="112"/>
         <source>Open in New &amp;Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="114"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="115"/>
         <source>Open in New &amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="117"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="118"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation type="unfinished"></translation>
     </message>
@@ -39349,12 +39349,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryMenu.py" line="447"/>
+        <location filename="../WebBrowser/History/HistoryMenu.py" line="448"/>
         <source>Restore All Closed Tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryMenu.py" line="450"/>
+        <location filename="../WebBrowser/History/HistoryMenu.py" line="451"/>
         <source>Clear List</source>
         <translation type="unfinished"></translation>
     </message>
@@ -39380,12 +39380,12 @@
 <context>
     <name>HistoryTreeModel</name>
     <message>
-        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="64"/>
+        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="65"/>
         <source>Earlier Today</source>
         <translation>Dněšní dřívější</translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="67"/>
+        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="68"/>
         <source>%n item(s)</source>
         <translation>
             <numerusform>%n položka</numerusform>
@@ -39499,12 +39499,12 @@
 <context>
     <name>IbmWatsonEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="251"/>
+        <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="251"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
         <source>IBM Watson: No translation available.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -39519,12 +39519,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="243"/>
+        <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="231"/>
+        <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>
@@ -39533,102 +39533,102 @@
 <context>
     <name>IconEditorGrid</name>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="208"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="211"/>
         <source>Set Pixel</source>
         <translation>Nastavit pixel</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="209"/>
-        <source>Erase Pixel</source>
-        <translation>Vymazat pixel</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="210"/>
-        <source>Draw Line</source>
-        <translation>Nakreslit linku</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="211"/>
-        <source>Draw Rectangle</source>
-        <translation>Nakreslit obdélník</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="212"/>
-        <source>Draw Filled Rectangle</source>
-        <translation>Nakreslit vyplněný obdélník</translation>
+        <source>Erase Pixel</source>
+        <translation>Vymazat pixel</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="213"/>
-        <source>Draw Circle</source>
-        <translation>Nakreslit kruh</translation>
+        <source>Draw Line</source>
+        <translation>Nakreslit linku</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="214"/>
-        <source>Draw Filled Circle</source>
-        <translation>Nakreslit vyplněný kruh</translation>
+        <source>Draw Rectangle</source>
+        <translation>Nakreslit obdélník</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="215"/>
-        <source>Draw Ellipse</source>
-        <translation>Nakreslit elipsu</translation>
+        <source>Draw Filled Rectangle</source>
+        <translation>Nakreslit vyplněný obdélník</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="216"/>
-        <source>Draw Filled Ellipse</source>
-        <translation>Nakreslit vyplněnou elipsu</translation>
+        <source>Draw Circle</source>
+        <translation>Nakreslit kruh</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="217"/>
+        <source>Draw Filled Circle</source>
+        <translation>Nakreslit vyplněný kruh</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="218"/>
+        <source>Draw Ellipse</source>
+        <translation>Nakreslit elipsu</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="219"/>
+        <source>Draw Filled Ellipse</source>
+        <translation>Nakreslit vyplněnou elipsu</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="220"/>
         <source>Fill Region</source>
         <translation>Vyplnit oblast</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="846"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="853"/>
         <source>Cut Selection</source>
         <translation>Odebrat výběr</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="905"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="912"/>
         <source>Paste</source>
         <translation>Vložit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="905"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="912"/>
         <source>&lt;p&gt;The clipboard image is larger than the current image.&lt;br/&gt;Paste as new image?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Obrázek ze schránky je větší než aktuální obrázek.&lt;br/&gt;Vložit jako nový obrázek?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="918"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="925"/>
         <source>Paste Clipboard</source>
         <translation>Vložit ze schránky</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="936"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="943"/>
         <source>Pasting Image</source>
         <translation>Vkládání obrázku</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="936"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="943"/>
         <source>Invalid image data in clipboard.</source>
         <translation>Neplatná data obrázku ve schránce.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="947"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="954"/>
         <source>Paste Clipboard as New Image</source>
         <translation>Vložit ze schránky jako nový obrázek</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="976"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="983"/>
         <source>Clear Image</source>
         <translation>Vyčistit obrázek</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="996"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="1003"/>
         <source>Resize Image</source>
         <translation>Změnit velikost obrázku</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="1023"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="1030"/>
         <source>Convert to Grayscale</source>
         <translation>Převést do šedi</translation>
     </message>
@@ -39636,57 +39636,57 @@
 <context>
     <name>IconEditorPalette</name>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="48"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="49"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This is a 1:1 preview of the current icon.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Náhled&lt;/b&gt;&lt;p&gt;Toto je náhled 1:1 aktuální ikony.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="58"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="60"/>
         <source>&lt;b&gt;Current Color&lt;/b&gt;&lt;p&gt;This is the currently selected color used for drawing.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aktuální barva&lt;/b&gt;&lt;p&gt;Toto je aktuálně vybraná barva určená ke kreslení.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="66"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="69"/>
         <source>&lt;b&gt;Current Color Value&lt;/b&gt;&lt;p&gt;This is the currently selected color value used for drawing.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Hodnota aktuální barvy&lt;/b&gt;&lt;p&gt;Toto je hodnota aktuálně vybrané barvy určené ke kreslení.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="73"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="76"/>
         <source>Select Color</source>
         <translation>Výběr barvy</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="74"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="77"/>
         <source>&lt;b&gt;Select Color&lt;/b&gt;&lt;p&gt;Select the current drawing color via a color selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Výběr barvy&lt;/b&gt;&lt;p&gt;Výběr bary pro kreslení před dialog výběru barvy.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="84"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="87"/>
         <source>&lt;b&gt;Select alpha channel value&lt;/b&gt;&lt;p&gt;Select the value for the alpha channel of the current color.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Výběr hodnoty alfa kanálu&lt;/b&gt;&lt;p&gt;Výběr hodnoty alfa kanálu aktuální barvy.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="92"/>
-        <source>Compositing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorPalette.py" line="95"/>
+        <source>Compositing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorPalette.py" line="98"/>
         <source>Replace</source>
         <translation type="unfinished">Nahradit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="97"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="100"/>
         <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Replace the existing pixel with a new color.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="103"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="106"/>
         <source>Blend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="105"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="108"/>
         <source>&lt;b&gt;Blend&lt;/b&gt;&lt;p&gt;Blend the new color over the existing pixel.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -39694,1036 +39694,1036 @@
 <context>
     <name>IconEditorWindow</name>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="125"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="126"/>
         <source>Windows Bitmap File (*.bmp)</source>
         <translation>Windows Bitmap soubor (*.bmp)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="128"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="129"/>
         <source>Graphic Interchange Format File (*.gif)</source>
         <translation>Graphic Interchange Format soubor (*.gif)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="130"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="131"/>
         <source>Windows Icon File (*.ico)</source>
         <translation>Windows Icon soubor (*.ico)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="132"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="133"/>
         <source>JPEG File (*.jpg)</source>
         <translation>JPEG soubor (*.jpg)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="135"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="136"/>
         <source>Portable Bitmap File (*.pbm)</source>
         <translation>Portable Bitmap soubor (*.pbm)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="137"/>
-        <source>Portable Graymap File (*.pgm)</source>
-        <translation>Portable Graymap soubor (*.pgm)</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="138"/>
-        <source>Portable Network Graphics File (*.png)</source>
-        <translation>Portable Network Graphics soubor (*.png)</translation>
+        <source>Portable Graymap File (*.pgm)</source>
+        <translation>Portable Graymap soubor (*.pgm)</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="139"/>
+        <source>Portable Network Graphics File (*.png)</source>
+        <translation>Portable Network Graphics soubor (*.png)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="140"/>
         <source>Portable Pixmap File (*.ppm)</source>
         <translation>Portable Pixmap soubor (*.ppm)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="141"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="142"/>
         <source>Scalable Vector Graphics File (*.svg)</source>
         <translation>Scalable Vector Graphics soubor (*.svg)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="145"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="146"/>
         <source>TIFF File (*.tif)</source>
         <translation>TIFF soubor (*.tif)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="149"/>
-        <source>X11 Bitmap File (*.xbm)</source>
-        <translation>X11 Bitmap soubor (*.xbm)</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="150"/>
+        <source>X11 Bitmap File (*.xbm)</source>
+        <translation>X11 Bitmap soubor (*.xbm)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="151"/>
         <source>X11 Pixmap File (*.xpm)</source>
         <translation>X11 Pixmap soubor (*.xpm)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="161"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="162"/>
         <source>All Files (*)</source>
         <translation>Všechny soubory (*)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
         <source>New</source>
         <translation>Nový</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
         <source>&amp;New</source>
         <translation>&amp;Nový</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="199"/>
-        <source>Create a new icon</source>
-        <translation>Vytvořit novou ikonu</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="200"/>
+        <source>Create a new icon</source>
+        <translation>Vytvořit novou ikonu</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="201"/>
         <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;This creates a new icon.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nová&lt;/b&gt;&lt;p&gt;Vytvoří se nová ikona.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="207"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="208"/>
         <source>New Window</source>
         <translation>Nové okno</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="207"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="208"/>
         <source>New &amp;Window</source>
         <translation>&amp;Nové okno</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="212"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="213"/>
         <source>Open a new icon editor window</source>
         <translation>Otevřít nové editační okno s ikonou</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="214"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="215"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new icon editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nové okno&lt;/b&gt;&lt;p&gt;Otevřít nové editační okno s ikonou.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
         <source>Open</source>
         <translation>Otevřít</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
         <source>&amp;Open...</source>
         <translation>&amp;Otevřít...</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="227"/>
-        <source>Open an icon file for editing</source>
-        <translation>Otevřít soubor s ikonou pro editaci</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="228"/>
+        <source>Open an icon file for editing</source>
+        <translation>Otevřít soubor s ikonou pro editaci</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="229"/>
         <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new icon file for editing. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Otevřít soubor&lt;/b&gt;&lt;p&gt;Otevře soubor s ikonou pro editaci. Spustí se přes dialog pro výběr souboru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
         <source>Save</source>
         <translation>Uložit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
         <source>&amp;Save</source>
         <translation>&amp;Uložit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="242"/>
-        <source>Save the current icon</source>
-        <translation>Uložit aktuální ikonu</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="243"/>
+        <source>Save the current icon</source>
+        <translation>Uložit aktuální ikonu</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="244"/>
         <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of the icon 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 s ikonou.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
         <source>Save As</source>
         <translation>Uložit jako</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
         <source>Save &amp;As...</source>
         <translation>Uložit j&amp;ako...</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="256"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="257"/>
         <source>Save the current icon to a new file</source>
         <translation>Uložit aktuální ikonu do nového souboru</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="258"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="259"/>
         <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current icon to a new file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Uložit jako&lt;/b&gt;&lt;p&gt;Uloží aktuální ikonu do nového souboru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
         <source>Close</source>
         <translation>Zavřít</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
         <source>&amp;Close</source>
         <translation>&amp;Zavřít</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="271"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="272"/>
         <source>Close the current icon editor window</source>
         <translation>Zavřít aktuální okno editoru ikon</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="273"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="274"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current icon editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zavřít&lt;/b&gt;&lt;p&gt;Zavře aktuální okno editoru ikon.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="280"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="281"/>
         <source>Close All</source>
         <translation>Zavřít vše</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="280"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="281"/>
         <source>Close &amp;All</source>
         <translation>Z&amp;avřít vše</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="284"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="285"/>
         <source>Close all icon editor windows</source>
         <translation>Zavřít všechny editační okna ikon</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="286"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="287"/>
         <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all icon editor windows except the first one.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zavřít vše&lt;/b&gt;&lt;p&gt;Zavřít všechna okna editorů ikon kromě prvního.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
         <source>Quit</source>
         <translation>Konec</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
         <source>&amp;Quit</source>
         <translation>&amp;Konec</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="312"/>
-        <source>Quit the icon editor</source>
-        <translation>Ukončit editor ikon</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="313"/>
+        <source>Quit the icon editor</source>
+        <translation>Ukončit editor ikon</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="314"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the icon editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Konec&lt;/b&gt;&lt;p&gt;Ukončit editor ikon.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>Undo</source>
         <translation>Vrátit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>&amp;Undo</source>
         <translation>&amp;Vrátit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="332"/>
-        <source>Undo the last change</source>
-        <translation>Vrátit poslední změnu</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="333"/>
+        <source>Undo the last change</source>
+        <translation>Vrátit poslední změnu</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="334"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vrátit&lt;/b&gt;&lt;p&gt;Vrátit poslední změnu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
         <source>Redo</source>
         <translation>Znovu použít</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
         <source>&amp;Redo</source>
         <translation>&amp;Znovu použít</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="346"/>
-        <source>Redo the last change</source>
-        <translation>Znovu použít poslední změnu</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="347"/>
+        <source>Redo the last change</source>
+        <translation>Znovu použít poslední změnu</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="348"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Znovu použít&lt;/b&gt;&lt;p&gt;Znovu použít poslední změnu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Cut</source>
         <translation>Vyjmout</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Cu&amp;t</source>
         <translation>Vyjmou&amp;t</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="361"/>
-        <source>Cut the selection</source>
-        <translation>Vyjmout výběr</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="362"/>
+        <source>Cut the selection</source>
+        <translation>Vyjmout výběr</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="363"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vyjmout&lt;/b&gt;&lt;p&gt;Vyjme vybranou oblast obrázku a vloží jej do schránky.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>Copy</source>
         <translation>Kopírovat</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>&amp;Copy</source>
         <translation>&amp;Kopírovat</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="376"/>
-        <source>Copy the selection</source>
-        <translation>Kopírovat výběr</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="377"/>
+        <source>Copy the selection</source>
+        <translation>Kopírovat výběr</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="378"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kopírovat&lt;/b&gt;&lt;p&gt;Kopíruje vybranou oblast obrázku a vloží ji do schránky.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>Paste</source>
         <translation>Vložit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>&amp;Paste</source>
         <translation>V&amp;ložit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="391"/>
-        <source>Paste the clipboard image</source>
-        <translation>Vložit obrázek ze schránky</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="392"/>
+        <source>Paste the clipboard image</source>
+        <translation>Vložit obrázek ze schránky</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="393"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vložit&lt;/b&gt;&lt;p&gt;Vložit obrázek ze schránky.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="399"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
         <source>Paste as New</source>
         <translation>Vložit jako nový</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="399"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
         <source>Paste as &amp;New</source>
         <translation>Vložit jako &amp;nový</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="403"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="404"/>
         <source>Paste the clipboard image replacing the current one</source>
         <translation>Nahradit aktuální obrázek tím ze schránky</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="405"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="406"/>
         <source>&lt;b&gt;Paste as New&lt;/b&gt;&lt;p&gt;Paste the clipboard image replacing the current one.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vložit jako nový&lt;/b&gt;&lt;p&gt;Obrázek ze schránky nahradí aktuální obrázek.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
         <source>Clear</source>
         <translation>Vyčistit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
         <source>Cl&amp;ear</source>
         <translation>Vyči&amp;stit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="419"/>
-        <source>Clear the icon image</source>
-        <translation>Vymazat obrázek ikony</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="420"/>
+        <source>Clear the icon image</source>
+        <translation>Vymazat obrázek ikony</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="421"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Clear the icon image and set it to be completely transparent.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vymazat&lt;/b&gt;&lt;p&gt;Vymaže obrázek ikony a nastaví jej jako zcela průhledný.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
         <source>Select All</source>
         <translation>Vybrat vše</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
         <source>&amp;Select All</source>
         <translation>Vybrat vš&amp;e</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="434"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="435"/>
         <source>Select the complete icon image</source>
         <translation>Vybrat celý obrázek ikony</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="436"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="437"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Selects the complete icon image.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vybrat celý&lt;/b&gt;&lt;p&gt;Vybere kopletně celý obrázek ikony.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="444"/>
         <source>Change Size</source>
         <translation>Změnit velikost</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="444"/>
         <source>Change Si&amp;ze...</source>
         <translation>&amp;Změnit velikost...</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="449"/>
-        <source>Change the icon size</source>
-        <translation>Změnit velikost ikony</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="450"/>
+        <source>Change the icon size</source>
+        <translation>Změnit velikost ikony</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="451"/>
         <source>&lt;b&gt;Change Size...&lt;/b&gt;&lt;p&gt;Changes the icon size.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Změnit velikost......&lt;/b&gt;&lt;p&gt;Změnit velikost ikony.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="457"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="458"/>
         <source>Grayscale</source>
         <translation>Stupnice šedi</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="457"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="458"/>
         <source>&amp;Grayscale</source>
         <translation>&amp;Stupnice šedi</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="463"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="464"/>
         <source>Change the icon to grayscale</source>
         <translation>Převést ikonu do šedi</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="465"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="466"/>
         <source>&lt;b&gt;Grayscale&lt;/b&gt;&lt;p&gt;Changes the icon to grayscale.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Stupnice šedi&lt;/b&gt;&lt;p&gt;Převést ikonu do šedi.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
         <source>Zoom in</source>
         <translation>Přiblížit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
         <source>Zoom &amp;in</source>
         <translation>Př&amp;iblížit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="500"/>
-        <source>Zoom in on the icon</source>
-        <translation>Přiblížit ikonu</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="501"/>
+        <source>Zoom in on the icon</source>
+        <translation>Přiblížit ikonu</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="502"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the icon. This makes the grid bigger.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Přiblížit&lt;/b&gt;&lt;p&gt;Přiblížit ikonu. Pomocná síť bude větší.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
         <source>Zoom out</source>
         <translation>Oddálit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
         <source>Zoom &amp;out</source>
         <translation>&amp;Oddálit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="514"/>
-        <source>Zoom out on the icon</source>
-        <translation>Oddálit ikonu</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="515"/>
+        <source>Zoom out on the icon</source>
+        <translation>Oddálit ikonu</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="516"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the icon. This makes the grid smaller.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Oddálit&lt;/b&gt;&lt;p&gt;Lupa na oddálení ikony. Pomocná síť bude menší.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
         <source>Zoom reset</source>
         <translation>Resetovat lupu</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
         <source>Zoom &amp;reset</source>
         <translation>&amp;Resetovat lupu</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="538"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="539"/>
         <source>Show Grid</source>
         <translation>Zobrazit pomocnou síť</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="538"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="539"/>
         <source>Show &amp;Grid</source>
         <translation>Zobrazit pomocnou &amp;síť</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="544"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="545"/>
         <source>Toggle the display of the grid</source>
         <translation>Přepnout zobrazování pomocné sítě</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="546"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="547"/>
         <source>&lt;b&gt;Show Grid&lt;/b&gt;&lt;p&gt;Toggle the display of the grid.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zobrazit pomocnou síť&lt;/b&gt;&lt;p&gt;Přepíná zobrazování pomocné sítě.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="565"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
         <source>Freehand</source>
         <translation>Od ruky</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="565"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
         <source>&amp;Freehand</source>
         <translation>Od &amp;ruky</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="571"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="572"/>
         <source>&lt;b&gt;Free hand&lt;/b&gt;&lt;p&gt;Draws non linear lines.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Od ruky&lt;/b&gt;&lt;p&gt;Kreslí čáry od ruky.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="580"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="581"/>
         <source>Color Picker</source>
         <translation>Barvítko</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="580"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="581"/>
         <source>&amp;Color Picker</source>
         <translation>&amp;Barvítko</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="586"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="587"/>
         <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Barvítko&lt;/b&gt;&lt;p&gt;Barva pixelu, na kterou se klikne, se změní na aktuálně nastavenou barvu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="597"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
         <source>Rectangle</source>
         <translation>Obdélník</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="597"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
         <source>&amp;Rectangle</source>
         <translation>&amp;Obdélník</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="603"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="604"/>
         <source>&lt;b&gt;Rectangle&lt;/b&gt;&lt;p&gt;Draw a rectangle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Obdélník&lt;/b&gt;&lt;p&gt;Kreslit obdélník.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="612"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="613"/>
         <source>Filled Rectangle</source>
         <translation>Vyplněný obdélník</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="612"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="613"/>
         <source>F&amp;illed Rectangle</source>
         <translation>Vyplněný o&amp;bdélník</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="618"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="619"/>
         <source>&lt;b&gt;Filled Rectangle&lt;/b&gt;&lt;p&gt;Draw a filled rectangle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;vyplněný obdélník&lt;/b&gt;&lt;p&gt;Kreslit obdélník vyplněný barvou.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="628"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
         <source>Circle</source>
         <translation>Kruh</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="634"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="635"/>
         <source>&lt;b&gt;Circle&lt;/b&gt;&lt;p&gt;Draw a circle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kruh&lt;/b&gt;&lt;p&gt;Nakreslit kruh.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="643"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="644"/>
         <source>Filled Circle</source>
         <translation>Vyplněný kruh</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="643"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="644"/>
         <source>Fille&amp;d Circle</source>
         <translation>Vyplněný k&amp;ruh</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="649"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="650"/>
         <source>&lt;b&gt;Filled Circle&lt;/b&gt;&lt;p&gt;Draw a filled circle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vyplněný kruh&lt;/b&gt;&lt;p&gt;Nakreslit kruh vypněný barvou.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="659"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
         <source>Ellipse</source>
         <translation>Elipsa</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="659"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
         <source>&amp;Ellipse</source>
         <translation>&amp;Elipsa</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="665"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="666"/>
         <source>&lt;b&gt;Ellipse&lt;/b&gt;&lt;p&gt;Draw an ellipse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Elipsa&lt;/b&gt;&lt;p&gt;Nakreslit elipsu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="674"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="675"/>
         <source>Filled Ellipse</source>
         <translation>Vyplněná elipsa</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="674"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="675"/>
         <source>Fille&amp;d Elli&amp;pse</source>
         <translation>Vyplněná e&amp;lipsa</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="680"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="681"/>
         <source>&lt;b&gt;Filled Ellipse&lt;/b&gt;&lt;p&gt;Draw a filled ellipse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vyplněná elipsa&lt;/b&gt;&lt;p&gt;Nakreslit elipsu vypněnou barvou.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="690"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="691"/>
         <source>Flood Fill</source>
         <translation>Vyplnit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="690"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="691"/>
         <source>Fl&amp;ood Fill</source>
         <translation>&amp;Vyplnit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="696"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="697"/>
         <source>&lt;b&gt;Flood Fill&lt;/b&gt;&lt;p&gt;Fill adjoining pixels with the same color with the current color.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vyplit&lt;/b&gt;&lt;p&gt;Vyplní barvou celou ohraničenou plochu, ve které se nachází počáteční pixel (semínkové vyplňování).&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="706"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
         <source>Line</source>
         <translation>Linka</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="706"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
         <source>&amp;Line</source>
         <translation>&amp;Linka</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="712"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="713"/>
         <source>&lt;b&gt;Line&lt;/b&gt;&lt;p&gt;Draw a line.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Linka&lt;/b&gt;&lt;p&gt;Nakreslit linku.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="721"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
         <source>Eraser (Transparent)</source>
         <translation>Guma (průhlednost)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="721"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
         <source>Eraser (&amp;Transparent)</source>
         <translation>Guma (průhlednos&amp;t)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="727"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="728"/>
         <source>&lt;b&gt;Eraser (Transparent)&lt;/b&gt;&lt;p&gt;Erase pixels by setting them to transparent.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Guma (průhlednost)&lt;/b&gt;&lt;p&gt;Vymaže pixely tak, že budou průhledné.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="736"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="737"/>
         <source>Rectangular Selection</source>
         <translation>Obdélníkový výběr</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="753"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="754"/>
         <source>Rect&amp;angular Selection</source>
         <translation>&amp;Obdélníkový výběr</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="742"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="743"/>
         <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Obdélníkový výběr&lt;/b&gt;&lt;p&gt;Vybrat obdélníkovou oblast v ikoně pomocí myši.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="753"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="754"/>
         <source>Circular Selection</source>
         <translation>Kruhový výběr</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="759"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="760"/>
         <source>&lt;b&gt;Circular Selection&lt;/b&gt;&lt;p&gt;Select a circular section of the icon using the mouse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kruhový výběr&lt;/b&gt;&lt;p&gt;Vybrat kruhovou oblast v ikoně pomocí myši.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="776"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
         <source>About</source>
         <translation>O aplikaci</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="776"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
         <source>&amp;About</source>
         <translation>O &amp;aplikaci</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="780"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="781"/>
         <source>Display information about this software</source>
         <translation>Zobrazit informace a tomto software</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="782"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="783"/>
         <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="../IconEditor/IconEditorWindow.py" line="788"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
         <source>About Qt</source>
         <translation>O Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="788"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
         <source>About &amp;Qt</source>
         <translation>O &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="792"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="793"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Zobrazit informace o Qt toolkitu</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="794"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="795"/>
         <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="../IconEditor/IconEditorWindow.py" line="801"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
         <source>What&apos;s This?</source>
         <translation>Co je to?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="801"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Co je to?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="801"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="807"/>
-        <source>Context sensitive help</source>
-        <translation>Kontextově senzitivní nápověda</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="808"/>
+        <source>Context sensitive help</source>
+        <translation>Kontextově senzitivní nápověda</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="809"/>
         <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="../IconEditor/IconEditorWindow.py" line="825"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="826"/>
         <source>&amp;File</source>
         <translation>S&amp;oubor</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="842"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="843"/>
         <source>&amp;Edit</source>
         <translation>&amp;Edit</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="858"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="859"/>
         <source>&amp;View</source>
         <translation>Poh&amp;led</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="866"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="867"/>
         <source>&amp;Tools</source>
         <translation>&amp;Nástroje</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="885"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="886"/>
         <source>&amp;Help</source>
         <translation>&amp;Nápověda</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="895"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="896"/>
         <source>File</source>
         <translation>Soubor</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="909"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="910"/>
         <source>Edit</source>
         <translation>Editovat</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="922"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="923"/>
         <source>View</source>
         <translation>Pohled</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="927"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="928"/>
         <source>Tools</source>
         <translation>Nástroje</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="945"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="946"/>
         <source>Help</source>
         <translation>Nápověda</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="959"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="960"/>
         <source>&lt;p&gt;This part of the status bar displays the icon size.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Tato část status baru zobrazuje velikost ikony.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="966"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="967"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Tato část status baru zobrazuje pozici kurzoru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1062"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1069"/>
         <source>Open icon file</source>
         <translation>Otevřít soubor s ikonou</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1112"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1119"/>
         <source>Save icon file</source>
         <translation>Uložit ikonu do souboru</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1201"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1208"/>
         <source>Icon saved</source>
         <translation>Ikona uložena</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1216"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1223"/>
         <source>Untitled</source>
         <translation>Beze jména</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1227"/>
         <source>Icon Editor</source>
         <translation>Editor ikon</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="134"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="135"/>
         <source>Multiple-Image Network Graphics File (*.mng)</source>
         <translation>Multiple-Image Network Graphics soubor (*.mng)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="528"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="529"/>
         <source>Reset the zoom of the icon</source>
         <translation>Resetovat lupu ikony</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="530"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="531"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the icon. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Reset lupy&lt;/b&gt;&lt;p&gt;Reset lupy pro ikonu. Nastaví se lupa na hodnotu 100%.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="136"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="137"/>
         <source>Paintbrush Bitmap File (*.pcx)</source>
         <translation>Paintbrush Bitmap soubor (*.pcx)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="140"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="141"/>
         <source>Silicon Graphics Image File (*.sgi)</source>
         <translation>Silicon Graphics Image soubor (*.sgi)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="144"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="145"/>
         <source>Targa Graphic File (*.tga)</source>
         <translation>Targa Graphic soubor (*.tga)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1148"/>
-        <source>The file &apos;{0}&apos; does not exist.</source>
-        <translation>Soubor &apos;{0}&apos; neexistuje.</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="1155"/>
+        <source>The file &apos;{0}&apos; does not exist.</source>
+        <translation>Soubor &apos;{0}&apos; neexistuje.</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1162"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation>Nelze číst soubor &apos;{0}:{1}.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1189"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1196"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation>Nelze zapsat do souboru &apos;{0}:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1227"/>
         <source>{0}[*] - {1}</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1112"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1119"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1241"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1248"/>
         <source>The icon image has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="133"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="134"/>
         <source>JPEG File (*.jpeg)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="142"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="143"/>
         <source>Compressed Scalable Vector Graphics File (*.svgz)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="146"/>
-        <source>TIFF File (*.tiff)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="147"/>
+        <source>TIFF File (*.tiff)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="148"/>
         <source>WAP Bitmap File (*.wbmp)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -40743,57 +40743,57 @@
         <translation type="obsolete">Eric5 editor ikon je jednoduchý editor pro kreslení ikon. {6 ?}</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="293"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="294"/>
         <source>Close Others</source>
         <translation type="unfinished">Zavřít ostatní</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="297"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="298"/>
         <source>Close all other icon editor windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="299"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="300"/>
         <source>&lt;b&gt;Close Others&lt;/b&gt;&lt;p&gt;Closes all other icon editor windows.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="148"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="149"/>
         <source>WebP Image File (*.webp)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="126"/>
-        <source>Windows Cursor File (*.cur)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="127"/>
+        <source>Windows Cursor File (*.cur)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="128"/>
         <source>DirectDraw-Surface File (*.dds)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="129"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="130"/>
         <source>Apple Icon File (*.icns)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="131"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="132"/>
         <source>JPEG2000 File (*.jp2)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1241"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1248"/>
         <source>eric Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1331"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1338"/>
         <source>About eric Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1331"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1338"/>
         <source>The eric Icon Editor is a simple editor component to perform icon drawing tasks.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -41063,22 +41063,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="175"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="176"/>
         <source>Include Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="175"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="176"/>
         <source>Select Include Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="388"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="391"/>
         <source>Undefine Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="388"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="391"/>
         <source>Enter a variable name to be undefined:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -41589,52 +41589,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="70"/>
+        <location filename="../UI/InstallInfoDialog.py" line="71"/>
         <source>Yes</source>
         <translation type="unfinished">Ano</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="70"/>
+        <location filename="../UI/InstallInfoDialog.py" line="71"/>
         <source>No</source>
         <translation type="unfinished">Ne</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="74"/>
+        <location filename="../UI/InstallInfoDialog.py" line="75"/>
         <source>&apos;eric-ide&apos; was installed from PyPI using the pip command.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="80"/>
+        <location filename="../UI/InstallInfoDialog.py" line="81"/>
         <source>The information shown in this dialog was guessed at the first start of eric.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="98"/>
+        <location filename="../UI/InstallInfoDialog.py" line="99"/>
         <source>Load Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="98"/>
+        <location filename="../UI/InstallInfoDialog.py" line="99"/>
         <source>&lt;p&gt;The file containing the install information could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="150"/>
+        <location filename="../UI/InstallInfoDialog.py" line="151"/>
         <source>Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="150"/>
+        <location filename="../UI/InstallInfoDialog.py" line="151"/>
         <source>The install information was edited. Unsaved changes will be lost. Save first?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="187"/>
+        <location filename="../UI/InstallInfoDialog.py" line="188"/>
         <source>Save Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="187"/>
+        <location filename="../UI/InstallInfoDialog.py" line="188"/>
         <source>&lt;p&gt;The file containing the install information could not be written.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -41644,17 +41644,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="60"/>
+        <location filename="../UI/InstallInfoDialog.py" line="61"/>
         <source>Installed as Administrator:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="62"/>
+        <location filename="../UI/InstallInfoDialog.py" line="63"/>
         <source>Installed with sudo:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="92"/>
+        <location filename="../UI/InstallInfoDialog.py" line="93"/>
         <source>unknown</source>
         <translation type="unfinished">neznámý</translation>
     </message>
@@ -41664,7 +41664,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="86"/>
+        <location filename="../UI/InstallInfoDialog.py" line="87"/>
         <source>The installation information was provided by the user.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -41674,22 +41674,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="254"/>
+        <location filename="../UI/InstallInfoDialog.py" line="255"/>
         <source>Upgrade Instructions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="200"/>
+        <location filename="../UI/InstallInfoDialog.py" line="201"/>
         <source>Delete Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="200"/>
+        <location filename="../UI/InstallInfoDialog.py" line="201"/>
         <source>Do you really want to delete the installation information? It will be recreated at the next start.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="227"/>
+        <location filename="../UI/InstallInfoDialog.py" line="228"/>
         <source>Perform the following step(s) with Administrator privileges.
 </source>
         <translation type="unfinished"></translation>
@@ -42929,62 +42929,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="189"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="191"/>
         <source>Edit Identity</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="172"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="174"/>
         <source>The identity must contain at least one nick name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="189"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="191"/>
         <source>The identity must have a real name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="237"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="239"/>
         <source>Add Identity</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="287"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="289"/>
         <source>Identity Name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="297"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="299"/>
         <source>An identity named &lt;b&gt;{0}&lt;/b&gt; already exists. You must provide a different name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="312"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="314"/>
         <source>The identity has to have a name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="312"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="314"/>
         <source>Copy Identity</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="297"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="299"/>
         <source>Rename Identity</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="336"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="338"/>
         <source>This identity is in use. If you remove it, the network settings using it will fall back to the default identity. Should it be deleted anyway?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="341"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="343"/>
         <source>Do you really want to delete all information for this identity?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="344"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="346"/>
         <source>Delete Identity</source>
         <translation type="unfinished"></translation>
     </message>
@@ -42994,12 +42994,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="477"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="480"/>
         <source>Press to show the password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="471"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="474"/>
         <source>Press to hide the password</source>
         <translation type="unfinished"></translation>
     </message>
@@ -43100,22 +43100,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="254"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="258"/>
         <source>Yes</source>
         <translation type="unfinished">Ano</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="256"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="260"/>
         <source>No</source>
         <translation type="unfinished">Ne</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="185"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="189"/>
         <source>Delete Channel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="185"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="189"/>
         <source>Do you really want to delete channel &lt;b&gt;{0}&lt;/b&gt;?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -43231,7 +43231,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="346"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="348"/>
         <source>Press to connect to the selected network</source>
         <translation type="unfinished"></translation>
     </message>
@@ -43261,57 +43261,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="434"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="436"/>
         <source>Save Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="417"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="419"/>
         <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="434"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="436"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="452"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="454"/>
         <source>Error saving Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="452"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="454"/>
         <source>&lt;p&gt;The messages contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="465"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="467"/>
         <source>Copy</source>
         <translation type="unfinished">Kopírovat</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="469"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="471"/>
         <source>Cut all</source>
         <translation type="unfinished">Vyjmout vše</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="472"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="474"/>
         <source>Copy all</source>
         <translation type="unfinished">Kopírovat vše</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="476"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="478"/>
         <source>Clear</source>
         <translation type="unfinished">Vyčistit</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="480"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="482"/>
         <source>Save</source>
         <translation type="unfinished">Uložit</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="341"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="343"/>
         <source>Press to disconnect from the network</source>
         <translation type="unfinished"></translation>
     </message>
@@ -43761,253 +43761,253 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="244"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="245"/>
         <source>Disconnect from Server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="244"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="245"/>
         <source>&lt;p&gt;Do you really want to disconnect from &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;&lt;p&gt;All channels will be closed.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="186"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="187"/>
         <source>SSL Connection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="186"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="187"/>
         <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="564"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="565"/>
         <source>Info</source>
         <translation type="unfinished">Info</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="219"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="220"/>
         <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="230"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="231"/>
         <source>Looking for server {0} (port {1})...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="253"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="254"/>
         <source>Disconnecting from server {0}...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="519"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="520"/>
         <source>Server found,connecting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="528"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="529"/>
         <source>Connected,logging in...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="564"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="565"/>
         <source>Server disconnected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="611"/>
         <source>Message Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="611"/>
         <source>Unknown message received from server:&lt;br/&gt;{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="676"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="677"/>
         <source>Notice</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="694"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="695"/>
         <source>Mode</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="701"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="702"/>
         <source>You have left channel {0}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="712"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="713"/>
         <source>You are now known as {0}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="717"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="718"/>
         <source>User {0} is now known as {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="727"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="728"/>
         <source>Server Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="763"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="764"/>
         <source>Error</source>
         <translation type="unfinished">Chyba</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="778"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="779"/>
         <source>Welcome</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="780"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="781"/>
         <source>Support</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="782"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="783"/>
         <source>User</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="784"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="785"/>
         <source>MOTD</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="786"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="787"/>
         <source>Away</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="788"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="789"/>
         <source>Info ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="792"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="793"/>
         <source>Message of the day</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="794"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="795"/>
         <source>End of message of the day</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="797"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="798"/>
         <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="803"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="804"/>
         <source>Current users on {0}: {1}, max. {2}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="808"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="809"/>
         <source>Current users on the network: {0}, max. {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="812"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="813"/>
         <source>You are no longer marked as being away.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="814"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="815"/>
         <source>You have been marked as being away.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="934"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
         <source>SSL Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="876"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="877"/>
         <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="907"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
         <source>Socket Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="884"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="885"/>
         <source>The host was not found. Please check the host name and port settings.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="890"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="891"/>
         <source>The connection was refused by the peer. Please check the host name and port settings.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="901"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="902"/>
         <source>The following network error occurred:&lt;br/&gt;{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1030"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1031"/>
         <source>{0} ({1})</source>
         <comment>channel name, users count</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1071"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1072"/>
         <source>Critical</source>
         <translation type="unfinished">Kritický</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1052"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1053"/>
         <source>No nickname acceptable to the server configured for &lt;b&gt;{0}&lt;/b&gt;. Disconnecting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1071"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1072"/>
         <source>The given nickname is already in use.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1015"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1016"/>
         <source>CTCP</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="992"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="993"/>
         <source>Received Version request from {0}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="998"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="999"/>
         <source>Received CTCP-PING request from {0}, sending answer.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1006"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1007"/>
         <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1015"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1016"/>
         <source>Received unknown CTCP-{0} request from {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="687"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="688"/>
         <source>You have set your personal modes to &lt;b&gt;[{0}]&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="691"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="692"/>
         <source>{0} has changed your personal modes to &lt;b&gt;[{1}]&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -44022,47 +44022,47 @@
         <translation type="unfinished">Síť</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="896"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="897"/>
         <source>The SSL handshake failed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="907"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
         <source>A network error occurred.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="920"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="921"/>
         <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="934"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
         <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="258"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="259"/>
         <source>Disconnecting from network {0}...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="263"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="264"/>
         <source>Disconnecting from server.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="643"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="644"/>
         <source>Received CTCP-PING response from {0} with latency of {1} ms.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="649"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="650"/>
         <source>Received unknown CTCP-{0} response from {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="723"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="724"/>
         <source>Received PONG from {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46236,57 +46236,57 @@
 <context>
     <name>Listspace</name>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="257"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="258"/>
         <source>Close</source>
         <translation>Zavřít</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="264"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="265"/>
         <source>Close All</source>
         <translation>Zavřít vše</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="267"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="268"/>
         <source>Save</source>
         <translation>Uložit</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="270"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="271"/>
         <source>Save As...</source>
         <translation>Uložit jako...</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="273"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="274"/>
         <source>Save All</source>
         <translation>Uložit vše</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="281"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="282"/>
         <source>Print</source>
         <translation>Tisk</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="440"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="441"/>
         <source>Untitled {0}</source>
         <translation>Beze jména {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="581"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="582"/>
         <source>{0} (ro)</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="277"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="278"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="285"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="286"/>
         <source>Copy Path to Clipboard</source>
         <translation type="unfinished">Kopírovat cestu do schránky</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="260"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="261"/>
         <source>Close Others</source>
         <translation type="unfinished">Zavřít ostatní</translation>
     </message>
@@ -46513,67 +46513,67 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="57"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="58"/>
         <source>Uninstall Selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="60"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="62"/>
         <source>Cancel</source>
         <translation type="unfinished">Zrušit</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="177"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="180"/>
         <source>Error downloading dictionaries list</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="177"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="180"/>
         <source>&lt;p&gt;Could not download the dictionaries list from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="200"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="203"/>
         <source>Dictionaries URL Changed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="200"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="203"/>
         <source>The URL of the spell check dictionaries has changed. Select the &quot;Refresh&quot; button to get the new dictionaries list.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="212"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="215"/>
         <source>Error installing dictionaries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="212"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="215"/>
         <source>&lt;p&gt;None of the dictionary locations is writable by you. Please download required dictionaries manually and install them as administrator.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="263"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="266"/>
         <source>{0} ({1})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="372"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="376"/>
         <source>Error downloading dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="357"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="361"/>
         <source>&lt;p&gt;Could not download the requested dictionary file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="357"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="361"/>
         <source>Error downloading dictionary file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="372"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="376"/>
         <source>&lt;p&gt;The downloaded dictionary archive is invalid. Skipping it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46644,22 +46644,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="50"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="51"/>
         <source>Wrong password entered.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="54"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="55"/>
         <source>New password must not be empty.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="61"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="62"/>
         <source>Repeated password is wrong.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="66"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="67"/>
         <source>Old and new password must not be the same.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47143,7 +47143,7 @@
 <context>
     <name>MicroPythonCommandsInterface</name>
     <message>
-        <location filename="../MicroPython/MicroPythonCommandsInterface.py" line="284"/>
+        <location filename="../MicroPython/MicroPythonCommandsInterface.py" line="285"/>
         <source>Detected an error without indications.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47475,22 +47475,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="72"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="73"/>
         <source>max. X:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="81"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="83"/>
         <source>Enter the maximum number of data points to be plotted.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="330"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="332"/>
         <source>Save Chart Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="330"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="332"/>
         <source>&lt;p&gt;The chart data could not be saved into file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47573,7 +47573,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="69"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="77"/>
         <source>All Files (*)</source>
         <translation type="unfinished">Všechny soubory (*)</translation>
     </message>
@@ -47648,37 +47648,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="48"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="49"/>
         <source>Dark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="50"/>
-        <source>Blue Cerulean</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="52"/>
+        <source>Blue Cerulean</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="55"/>
         <source>Brown Sand</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="54"/>
-        <source>Blue NCS</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="56"/>
-        <source>High Contrast</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="58"/>
+        <source>Blue NCS</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="61"/>
+        <source>High Contrast</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="64"/>
         <source>Blue Icy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="60"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="67"/>
         <source>Qt</source>
         <translation type="unfinished">Qt</translation>
     </message>
@@ -47819,17 +47819,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="562"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="566"/>
         <source>Press to connect the selected device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="276"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="278"/>
         <source>&lt;h3&gt;The QtSerialPort package is not available.&lt;br/&gt;MicroPython support is deactivated.&lt;/h3&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../MicroPython/MicroPythonWidget.py" line="318"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="320"/>
         <source>%n supported device(s) detected.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -47838,37 +47838,37 @@
         </translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="340"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="342"/>
         <source>No supported devices detected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="532"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="536"/>
         <source>Clear</source>
         <translation type="unfinished">Vyčistit</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="534"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="538"/>
         <source>Copy</source>
         <translation type="unfinished">Kopírovat</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="535"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="539"/>
         <source>Paste</source>
         <translation type="unfinished">Vložit</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="557"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="561"/>
         <source>Press to disconnect the current device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="578"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="582"/>
         <source>No device attached</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="578"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="582"/>
         <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -47877,212 +47877,212 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="605"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="609"/>
         <source>Start REPL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="605"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="609"/>
         <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1054"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1068"/>
         <source>Serial Device Connect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1054"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1068"/>
         <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1099"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1113"/>
         <source>Run Script</source>
         <translation type="unfinished">Spustit skript</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1082"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1096"/>
         <source>There is no editor open. Abort...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1090"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1104"/>
         <source>The current editor does not contain a script. Abort...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1099"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1113"/>
         <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1123"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1137"/>
         <source>Open Python File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1123"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1137"/>
         <source>Python3 Files (*.py);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1168"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1182"/>
         <source>Start Chart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1168"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1182"/>
         <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1197"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1211"/>
         <source>Unsaved Chart Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1197"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1211"/>
         <source>The chart contains unsaved data.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1248"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1262"/>
         <source>Start File Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1248"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1262"/>
         <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1322"/>
-        <source>Show Version</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1325"/>
-        <source>Show Implementation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1452"/>
-        <source>Synchronize Time</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1333"/>
-        <source>Show Device Time</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../MicroPython/MicroPythonWidget.py" line="1336"/>
+        <source>Show Version</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1339"/>
+        <source>Show Implementation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1466"/>
+        <source>Synchronize Time</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1347"/>
+        <source>Show Device Time</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1350"/>
         <source>Show Local Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1673"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1687"/>
         <source>Compile Python File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1693"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1707"/>
         <source>Compile Current Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1388"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1402"/>
         <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1397"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1411"/>
         <source>No version information available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1399"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1413"/>
         <source>Device Version Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1422"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1436"/>
         <source>unknown</source>
         <translation type="unfinished">neznámý</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1426"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1440"/>
         <source>Device Implementation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1426"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1440"/>
         <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1452"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1466"/>
         <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1475"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1489"/>
         <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1483"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1497"/>
         <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1500"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1514"/>
         <source>Device Date and Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1513"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1527"/>
         <source>Local Date and Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1513"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1527"/>
         <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1581"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1595"/>
         <source>Error handling device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1581"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1595"/>
         <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1621"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1635"/>
         <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1643"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1657"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation type="unfinished">Python soubory (*.py);;Všechny soubory (*)</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1653"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1667"/>
         <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1663"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1677"/>
         <source>&apos;mpy-cross&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1686"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1700"/>
         <source>The current editor does not contain a Python file. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48097,114 +48097,114 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1181"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1195"/>
         <source>&#xc2;&#xb5;Py Chart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1264"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1278"/>
         <source>&#xc2;&#xb5;Py Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1365"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1379"/>
         <source>Show Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1378"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1392"/>
         <source>Configure</source>
         <translation type="unfinished">Konfigurovat</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1339"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1353"/>
         <source>Show Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1358"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1372"/>
         <source>Download Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1556"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1570"/>
         <source>Date and Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1539"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1553"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{0}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1556"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1570"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align=&apos;center&apos;&gt;{0} {1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="410"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="412"/>
         <source>Unknown MicroPython Device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1375"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1389"/>
         <source>Ignored Serial Devices</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1304"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1318"/>
         <source>Downloads</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="323"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="325"/>
         <source>{0} - {1} ({2})</source>
         <comment>board name, description, port name</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="382"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="384"/>
         <source>&lt;p&gt;Detected these unknown serial devices&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please report them together with the board name and a short description to &lt;a href=&quot;mailto:{1}&quot;&gt; the eric bug reporting address&lt;/a&gt; if it is a MicroPython board.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="382"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="384"/>
         <source>{0} (0x{1:04x}/0x{2:04x})</source>
         <comment>description, VId, PId</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="410"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="412"/>
         <source>Would you like to add them to the list of manually configured devices?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1373"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1387"/>
         <source>Manage Unknown Devices</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1778"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1792"/>
         <source>Add Unknown Devices</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1778"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1792"/>
         <source>Select the devices to be added:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1370"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1384"/>
         <source>Flash UF2 Device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="350"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="352"/>
         <source>Manual Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../MicroPython/MicroPythonWidget.py" line="344"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="346"/>
         <source>
 %n unknown device(s) for manual selection.</source>
         <translation type="unfinished">
@@ -48401,599 +48401,599 @@
 <context>
     <name>MiniEditor</name>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>New</source>
         <translation>Nový</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>&amp;New</source>
         <translation>&amp;Nový</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="551"/>
-        <source>Open an empty editor window</source>
-        <translation>Otevřít prázdné editační okno</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="552"/>
+        <source>Open an empty editor window</source>
+        <translation>Otevřít prázdné editační okno</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="553"/>
         <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="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>Open</source>
         <translation>Otevřít</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>&amp;Open...</source>
         <translation>&amp;Otevřít...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="565"/>
-        <source>Open a file</source>
-        <translation>Otevřít soubor</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="566"/>
+        <source>Open a file</source>
+        <translation>Otevřít soubor</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="567"/>
         <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;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="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>Save</source>
         <translation>Uložit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>&amp;Save</source>
         <translation>&amp;Uložit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="579"/>
-        <source>Save the current file</source>
-        <translation>Uložit aktuální soubor</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="580"/>
+        <source>Save the current file</source>
+        <translation>Uložit aktuální soubor</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="581"/>
         <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="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Save as</source>
         <translation>Uložit jako</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Save &amp;as...</source>
         <translation>Uložit j&amp;ako...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="593"/>
+        <location filename="../QScintilla/MiniEditor.py" line="594"/>
         <source>Save the current file to a new one</source>
         <translation>Uložit aktuální soubor do nového</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="595"/>
+        <location filename="../QScintilla/MiniEditor.py" line="596"/>
         <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="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>Close</source>
         <translation>Zavřít</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>&amp;Close</source>
         <translation>&amp;Zavřít</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="624"/>
-        <source>Close the editor window</source>
-        <translation>Zavřít editační okno</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="625"/>
+        <source>Close the editor window</source>
+        <translation>Zavřít editační okno</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="626"/>
         <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="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Undo</source>
         <translation>Vrátit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>&amp;Undo</source>
         <translation>&amp;Vrátit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="671"/>
-        <source>Undo the last change</source>
-        <translation>Vrátit poslední změnu</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="672"/>
+        <source>Undo the last change</source>
+        <translation>Vrátit poslední změnu</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="673"/>
         <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="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>Redo</source>
         <translation>Znovu použít</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>&amp;Redo</source>
         <translation>&amp;Znovu použít</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="685"/>
-        <source>Redo the last change</source>
-        <translation>Znovu použít poslední změnu</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="686"/>
+        <source>Redo the last change</source>
+        <translation>Znovu použít poslední změnu</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="687"/>
         <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="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Cut</source>
         <translation>Vyjmout</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Cu&amp;t</source>
         <translation>Vyjmou&amp;t</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="700"/>
-        <source>Cut the selection</source>
-        <translation>Vyjmout výběr</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="701"/>
+        <source>Cut the selection</source>
+        <translation>Vyjmout výběr</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="702"/>
         <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="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Copy</source>
         <translation>Kopírovat</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>&amp;Copy</source>
         <translation>&amp;Kopírovat</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="716"/>
-        <source>Copy the selection</source>
-        <translation>Kopírovat výběr</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="717"/>
+        <source>Copy the selection</source>
+        <translation>Kopírovat výběr</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="718"/>
         <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="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Paste</source>
         <translation>Vložit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>&amp;Paste</source>
         <translation>V&amp;ložit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="732"/>
+        <location filename="../QScintilla/MiniEditor.py" line="733"/>
         <source>Paste the last cut/copied text</source>
         <translation>Vložit text ze schránky</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="734"/>
+        <location filename="../QScintilla/MiniEditor.py" line="735"/>
         <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="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Clear</source>
         <translation>Vyčistit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Cl&amp;ear</source>
         <translation>Vyči&amp;stit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="749"/>
-        <source>Clear all text</source>
-        <translation>Vyčistit všechen text</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="750"/>
+        <source>Clear all text</source>
+        <translation>Vyčistit všechen text</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="751"/>
         <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="../QScintilla/MiniEditor.py" line="2353"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2354"/>
         <source>About</source>
         <translation>O aplikaci</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2353"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2354"/>
         <source>&amp;About</source>
         <translation>O &amp;aplikaci</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2358"/>
         <source>Display information about this software</source>
         <translation>Zobrazit informace a tomto software</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2359"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2360"/>
         <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="2365"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2366"/>
         <source>About Qt</source>
         <translation>O Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2365"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2366"/>
         <source>About &amp;Qt</source>
         <translation>O &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2369"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2370"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Zobrazit informace o Qt toolkitu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2371"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2372"/>
         <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="2401"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2402"/>
         <source>&amp;File</source>
         <translation>S&amp;oubor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2413"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2414"/>
         <source>&amp;Edit</source>
         <translation>&amp;Edit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2439"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2440"/>
         <source>&amp;Help</source>
         <translation>&amp;Nápověda</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2516"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2517"/>
         <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="2523"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2524"/>
         <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="2540"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2541"/>
         <source>Ready</source>
         <translation>Hotovo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2622"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2623"/>
         <source>File loaded</source>
         <translation>Soubor načten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3055"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3066"/>
         <source>Untitled</source>
         <translation>Beze jména</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2737"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2738"/>
         <source>Mini Editor</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3096"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3107"/>
         <source>Select all</source>
         <translation>Vybrat vše</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3097"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3108"/>
         <source>Deselect all</source>
         <translation>Zrušit celý výběr</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3111"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3122"/>
         <source>Languages</source>
         <translation>Jazyky</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3114"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3125"/>
         <source>No Language</source>
         <translation>Žádný jazyk</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2594"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2595"/>
         <source>Open File</source>
         <translation>Otevřít soubor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2708"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2709"/>
         <source>File saved</source>
         <translation>Soubor uložen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2509"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2510"/>
         <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="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>What&apos;s This?</source>
         <translation>Co je to?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Co je to?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2384"/>
-        <source>Context sensitive help</source>
-        <translation>Kontextově senzitivní nápověda</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2385"/>
+        <source>Context sensitive help</source>
+        <translation>Kontextově senzitivní nápověda</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
         <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="2451"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2452"/>
         <source>File</source>
         <translation>Soubor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2464"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2465"/>
         <source>Edit</source>
         <translation>Editovat</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2474"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2475"/>
         <source>Find</source>
         <translation>Hledat</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2488"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2489"/>
         <source>Help</source>
         <translation>Nápověda</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>Print</source>
         <translation>Tisk</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>&amp;Print</source>
         <translation>&amp;Tisk</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="638"/>
-        <source>Print the current file</source>
-        <translation>Tisk aktuálního souboru</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3018"/>
-        <source>Printing...</source>
-        <translation>Tisk...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3036"/>
-        <source>Printing completed</source>
-        <translation>Tisk je hotov</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3038"/>
-        <source>Error while printing</source>
-        <translation>Chyba během tisku</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3041"/>
-        <source>Printing aborted</source>
-        <translation>Tisk byl zrušen</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="639"/>
+        <source>Print the current file</source>
+        <translation>Tisk aktuálního souboru</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3026"/>
+        <source>Printing...</source>
+        <translation>Tisk...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3047"/>
+        <source>Printing completed</source>
+        <translation>Tisk je hotov</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3049"/>
+        <source>Error while printing</source>
+        <translation>Chyba během tisku</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3052"/>
+        <source>Printing aborted</source>
+        <translation>Tisk byl zrušen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="640"/>
         <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;Tisk souboru&lt;/b&gt;&lt;p&gt;Tisk obsahu aktuálního souboru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="646"/>
+        <location filename="../QScintilla/MiniEditor.py" line="647"/>
         <source>Print Preview</source>
         <translation>Náhled tisku</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="651"/>
+        <location filename="../QScintilla/MiniEditor.py" line="652"/>
         <source>Print preview of the current file</source>
         <translation>Náhled tisku aktuálního souboru</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="653"/>
+        <location filename="../QScintilla/MiniEditor.py" line="654"/>
         <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;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="3138"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3149"/>
         <source>Guessed</source>
         <translation>Odhadem</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3160"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3171"/>
         <source>Alternatives</source>
         <translation>Alternativy</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3184"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3195"/>
         <source>Pygments Lexer</source>
         <translation>Pygments Lexer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3184"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3195"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>Použít Pygments lexer.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="467"/>
+        <location filename="../QScintilla/MiniEditor.py" line="468"/>
         <source>Line: {0:5}</source>
         <translation>Řádek: {0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="471"/>
+        <location filename="../QScintilla/MiniEditor.py" line="472"/>
         <source>Pos: {0:5}</source>
         <translation>Poz: {0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2594"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2595"/>
         <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="2701"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2702"/>
         <source>Save File</source>
         <translation>Uložit soubor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2701"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2702"/>
         <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="2737"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2738"/>
         <source>{0}[*] - {1}</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3156"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3167"/>
         <source>Alternatives ({0})</source>
         <translation>Alternativy ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2567"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2568"/>
         <source>The document has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49013,77 +49013,77 @@
         <translation type="obsolete">eric5 Mini Editor {6 ?}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save &amp;Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="608"/>
+        <location filename="../QScintilla/MiniEditor.py" line="609"/>
         <source>Save a copy of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="610"/>
+        <location filename="../QScintilla/MiniEditor.py" line="611"/>
         <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="../QScintilla/MiniEditor.py" line="3698"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3709"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3698"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3709"/>
         <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="2720"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2721"/>
         <source>[*] - {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="486"/>
+        <location filename="../QScintilla/MiniEditor.py" line="487"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2431"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2432"/>
         <source>&amp;View</source>
         <translation type="unfinished">Poh&amp;led</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2481"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2482"/>
         <source>View</source>
         <translation type="unfinished">Pohled</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2501"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2502"/>
         <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2534"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2535"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="397"/>
+        <location filename="../QScintilla/MiniEditor.py" line="398"/>
         <source>About eric Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="397"/>
+        <location filename="../QScintilla/MiniEditor.py" line="398"/>
         <source>The eric 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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2567"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2568"/>
         <source>eric Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49578,12 +49578,12 @@
 <context>
     <name>MouseUtilities</name>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="29"/>
+        <location filename="../Utilities/MouseUtilities.py" line="31"/>
         <source>Shift</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="31"/>
+        <location filename="../Utilities/MouseUtilities.py" line="33"/>
         <source>Alt</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49593,37 +49593,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="33"/>
+        <location filename="../Utilities/MouseUtilities.py" line="35"/>
         <source>Ctrl</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="35"/>
+        <location filename="../Utilities/MouseUtilities.py" line="37"/>
         <source>Meta</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="43"/>
-        <source>Left Button</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Utilities/MouseUtilities.py" line="45"/>
-        <source>Right Button</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Utilities/MouseUtilities.py" line="47"/>
-        <source>Middle Button</source>
+        <source>Left Button</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Utilities/MouseUtilities.py" line="49"/>
-        <source>Extra Button 1</source>
+        <source>Right Button</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Utilities/MouseUtilities.py" line="51"/>
+        <source>Middle Button</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Utilities/MouseUtilities.py" line="53"/>
+        <source>Extra Button 1</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Utilities/MouseUtilities.py" line="55"/>
         <source>Extra Button 2</source>
         <translation type="unfinished"></translation>
     </message>
@@ -50144,32 +50144,32 @@
 <context>
     <name>NavigationBar</name>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="55"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="56"/>
         <source>Move one screen backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="65"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="67"/>
         <source>Move one screen forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="83"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="86"/>
         <source>Move to the initial screen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="95"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="99"/>
         <source>Exit Fullscreen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="273"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="281"/>
         <source>Clear History</source>
         <translation type="unfinished">Vyčistit historii</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="108"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="113"/>
         <source>Main Menu</source>
         <translation type="unfinished"></translation>
     </message>
@@ -50220,12 +50220,12 @@
         <translation type="unfinished">&lt;b&gt;Zadejte uživatelské jméno a heslo pro &apos;{0}&apos;&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/NetworkManager.py" line="336"/>
+        <location filename="../WebBrowser/Network/NetworkManager.py" line="338"/>
         <source>Authentication required</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/NetworkManager.py" line="337"/>
+        <location filename="../WebBrowser/Network/NetworkManager.py" line="339"/>
         <source>Authentication is required to access:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -50871,27 +50871,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="184"/>
+        <location filename="../UI/NumbersWidget.py" line="194"/>
         <source>Auto</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="185"/>
+        <location filename="../UI/NumbersWidget.py" line="195"/>
         <source>Dec</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="186"/>
+        <location filename="../UI/NumbersWidget.py" line="196"/>
         <source>Hex</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="187"/>
+        <location filename="../UI/NumbersWidget.py" line="197"/>
         <source>Oct</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="188"/>
+        <location filename="../UI/NumbersWidget.py" line="198"/>
         <source>Bin</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51038,7 +51038,7 @@
 <context>
     <name>OpenSearchEngineModel</name>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="141"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="148"/>
         <source>&lt;strong&gt;Provides contextual suggestions&lt;/strong&gt;</source>
         <translation>&lt;strong&gt;Poskytuje kontextové návrhy&lt;/strong&gt;</translation>
     </message>
@@ -51053,12 +51053,12 @@
         <translation>Klíčové slovo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="149"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="156"/>
         <source>Comma-separated list of keywords that may be entered in the location bar followed by search terms to search with this engine</source>
         <translation>Seznam klíčových slov oddělených čárkou, který může být zadán do adresního řádku, následovaný termíny hledanými tímto nástrojem</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="136"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="143"/>
         <source>&lt;strong&gt;Description:&lt;/strong&gt; {0}</source>
         <translation>&lt;strong&gt;Popis:&lt;/strong&gt; {0}</translation>
     </message>
@@ -51066,7 +51066,7 @@
 <context>
     <name>OpenSearchManager</name>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchManager.py" line="462"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchManager.py" line="463"/>
         <source>&lt;p&gt;Do you want to add the following engine to your list of search engines?&lt;br/&gt;&lt;br/&gt;Name: {0}&lt;br/&gt;Searches on: {1}&lt;/p&gt;</source>
         <translation>Chcete přidat následující enginy do vašeho seznamu vyhledávacích enginů?&lt;br/&gt;&lt;br/&gt;Jméno: {0}&lt;br/&gt;Hledá v: {1}</translation>
     </message>
@@ -51696,12 +51696,12 @@
         <translation type="unfinished">Chyby</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="146"/>
+        <location filename="../PipInterface/PipDialog.py" line="156"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="146"/>
+        <location filename="../PipInterface/PipDialog.py" line="156"/>
         <source>The process {0} could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51777,7 +51777,7 @@
 <context>
     <name>PipFreezeDialog</name>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="225"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="227"/>
         <source>Generate Requirements</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51862,27 +51862,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="225"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="227"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished">Textové soubory (*.txt);;Všechny soubory (*)</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="114"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="116"/>
         <source>The requirements were changed. Do you want to overwrite these changes?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="156"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="158"/>
         <source>No output generated by &apos;pip freeze&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="193"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="195"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; already exists. Do you want to overwrite it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="205"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="207"/>
         <source>&lt;p&gt;The requirements could not be written to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52093,32 +52093,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="190"/>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="193"/>
         <source>any</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="229"/>
-        <source>B</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PipInterface/PipPackageDetailsDialog.py" line="232"/>
-        <source>KB</source>
+        <source>B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackageDetailsDialog.py" line="235"/>
-        <source>MB</source>
-        <translation type="unfinished">MB</translation>
+        <source>KB</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackageDetailsDialog.py" line="238"/>
+        <source>MB</source>
+        <translation type="unfinished">MB</translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="241"/>
         <source>GB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="239"/>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="242"/>
         <source>{0:.1f} {1}</source>
         <comment>value, unit</comment>
         <translation type="unfinished"></translation>
@@ -52260,7 +52260,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="189"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="192"/>
         <source>Name:</source>
         <translation type="unfinished">Jméno:</translation>
     </message>
@@ -52275,7 +52275,7 @@
         <translation type="unfinished">Zadejte hledaný výraz</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="193"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="196"/>
         <source>Summary:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52305,77 +52305,77 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="190"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="193"/>
         <source>Version:</source>
         <translation type="unfinished">Verze:</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="191"/>
-        <source>Location:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="192"/>
-        <source>Requires:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="194"/>
-        <source>Homepage:</source>
+        <source>Location:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="195"/>
-        <source>Author:</source>
-        <translation type="unfinished">Autor:</translation>
-    </message>
-    <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="196"/>
-        <source>Author Email:</source>
+        <source>Requires:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="197"/>
-        <source>License:</source>
+        <source>Homepage:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="198"/>
-        <source>Metadata Version:</source>
-        <translation type="unfinished"></translation>
+        <source>Author:</source>
+        <translation type="unfinished">Autor:</translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="199"/>
-        <source>Installer:</source>
+        <source>Author Email:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="200"/>
-        <source>Classifiers:</source>
+        <source>License:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="201"/>
-        <source>Entry Points:</source>
+        <source>Metadata Version:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="202"/>
+        <source>Installer:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="203"/>
+        <source>Classifiers:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="204"/>
+        <source>Entry Points:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="205"/>
         <source>Files:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="351"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="360"/>
         <source>Getting installed packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="366"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="375"/>
         <source>Getting outdated packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../PipInterface/PipPackagesWidget.py" line="776"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="791"/>
         <source>%n package(s) found.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -52384,7 +52384,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
         <source>Search PyPI</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52394,92 +52394,92 @@
         <translation type="obsolete">Chyby: {0}</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
         <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="960"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="975"/>
         <source>Install Pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="963"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="978"/>
         <source>Install Pip to User-Site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="966"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="981"/>
         <source>Repair Pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1083"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1098"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="973"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="988"/>
         <source>Install Local Package</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="977"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="992"/>
         <source>Install Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="980"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="995"/>
         <source>Uninstall Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="983"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="998"/>
         <source>Generate Requirements...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1001"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1016"/>
         <source>Edit User Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1004"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1019"/>
         <source>Edit Environment Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1009"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1024"/>
         <source>Configure...</source>
         <translation type="unfinished">Konfigurovat...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1194"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1209"/>
         <source>Edit Configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1194"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1209"/>
         <source>No valid configuration path determined. Aborting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="987"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1002"/>
         <source>Show Cache Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="990"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1005"/>
         <source>Show Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="993"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1008"/>
         <source>Remove Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="996"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1011"/>
         <source>Purge Cache...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52489,17 +52489,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="759"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="774"/>
         <source>&lt;p&gt;Received an error while searching for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="778"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="793"/>
         <source>Showing first 20 packages found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="785"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="800"/>
         <source>&lt;p&gt;There were no results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52732,12 +52732,12 @@
         <translation>Popisek</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInfoDialog.py" line="101"/>
+        <location filename="../PluginManager/PluginInfoDialog.py" line="105"/>
         <source>Yes</source>
         <translation>Ano</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInfoDialog.py" line="77"/>
+        <location filename="../PluginManager/PluginInfoDialog.py" line="78"/>
         <source>No</source>
         <translation>Ne</translation>
     </message>
@@ -52767,7 +52767,7 @@
         <translation>Verze</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInfoDialog.py" line="76"/>
+        <location filename="../PluginManager/PluginInfoDialog.py" line="77"/>
         <source>On-Demand</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52843,42 +52843,42 @@
         <translation>Další &gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="75"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="77"/>
         <source>User plugins directory</source>
         <translation>Uživatelský adresář s pluginy</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="81"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="83"/>
         <source>Global plugins directory</source>
         <translation>Globální adresář s pluginy</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="162"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="164"/>
         <source>Select plugin ZIP-archives</source>
         <translation>Vybrat plugin ZIP-archivy</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="162"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="164"/>
         <source>Plugin archive (*.zip)</source>
         <translation>Plugin archiv (*.zip)</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="236"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="238"/>
         <source>  ok</source>
         <translation>  ok</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="243"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="245"/>
         <source>The plugins were installed successfully.</source>
         <translation>Pluginy byly úspěšně instalovány.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="246"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="248"/>
         <source>Some plugins could not be installed.</source>
         <translation>Některé pluginy nebyly instalovány.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="505"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="507"/>
         <source>Unspecific exception installing plugin.</source>
         <translation>Neznámá výjimka při instalaci pluginu.</translation>
     </message>
@@ -52888,7 +52888,7 @@
         <translation>Instalovat</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="145"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="147"/>
         <source>Plugin ZIP-Archives:
 {0}
 
@@ -52897,47 +52897,47 @@
         <translation>Plugin ZIP-Archivy:{0}Umístění:{1} ({2})</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="231"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="233"/>
         <source>Installing {0} ...</source>
         <translation>Instalovat {0}...</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="274"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="276"/>
         <source>&lt;p&gt;The archive file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor archívu &lt;b&gt;{0}&lt;/b&gt; neexistuje. Zrušeno...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="315"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="317"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not a valid plugin ZIP-archive. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; není platný ZIP archiv plugin. Zrušeno...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="294"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="296"/>
         <source>&lt;p&gt;The destination directory &lt;b&gt;{0}&lt;/b&gt; is not writeable. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Do cílového adresáře &lt;b&gt;{0}&lt;/b&gt; nelze zapisovat. Zrušeno...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="364"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="366"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; does not contain a &apos;packageName&apos; attribute. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Plugin modul &lt;b&gt;{0}&lt;/b&gt; neobsahuje atribut &apos;packageName&apos;.&lt;/p&gt;&lt;p&gt;Zrušeno...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="374"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="376"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; does not conform with the PyQt v2 API. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Plugin modul &lt;b&gt;{0}&lt;/b&gt; není v souladu s PyQt v2 API. Zrušeno...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="389"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="391"/>
         <source>&lt;p&gt;The plugin package &lt;b&gt;{0}&lt;/b&gt; exists. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Plugin balíček &lt;b&gt;{0}&lt;/b&gt; již existuje. Zrušeno...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="402"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="404"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; exists. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Plugin modul &lt;b&gt;{0}&lt;/b&gt; již existuje. Zrušeno...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="496"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="498"/>
         <source>Error installing plugin. Reason: {0}</source>
         <translation>Chyba při instalaci pluginu. Důvod: {0}</translation>
     </message>
@@ -52985,22 +52985,22 @@
         <translation>&lt;p&gt;Download plugin adresář &lt;b&gt;{0}&lt;/b&gt; se nepodařilo vytvořit. Prosím, upravte nastavení přes konfigurační dialog.&lt;/p&gt;&lt;p&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1292"/>
+        <location filename="../PluginManager/PluginManager.py" line="1293"/>
         <source>Error downloading file</source>
         <translation type="unfinished">Chyba při stahování souboru</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1292"/>
+        <location filename="../PluginManager/PluginManager.py" line="1293"/>
         <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Nelze stáhnout požadovaný soubor z {0}.&lt;/p&gt;&lt;p&gt;Chyba: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1329"/>
+        <location filename="../PluginManager/PluginManager.py" line="1330"/>
         <source>New plugin versions available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1329"/>
+        <location filename="../PluginManager/PluginManager.py" line="1330"/>
         <source>&lt;p&gt;There are new plug-ins or plug-in updates available. Use the plug-in repository dialog to get them.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53274,54 +53274,54 @@
         <translation>Zavřít &amp;&amp; Instalovat</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="359"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="362"/>
         <source>Download Plugin Files</source>
         <translation>Download plugin soubory</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="359"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="362"/>
         <source>The requested plugins were downloaded.</source>
         <translation>Požadované pluginy byly staženy.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="415"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="418"/>
         <source>Read plugins repository file</source>
         <translation>Číst soubor repozitáře pluginů</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="423"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="426"/>
         <source>No plugin repository file available.
 Select Update.</source>
         <translation>Soubor repozitáře pluginů není k dispozici.
 Vyberte Obnovit.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="484"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="491"/>
         <source>Error downloading file</source>
         <translation>Chyba při stahování souboru</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="568"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="575"/>
         <source>Stable</source>
         <translation>Stabilní</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="574"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="581"/>
         <source>Unstable</source>
         <translation>Nestabilní</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="586"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="593"/>
         <source>Unknown</source>
         <translation>Neznámý</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="415"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="418"/>
         <source>&lt;p&gt;The plugins repository file &lt;b&gt;{0}&lt;/b&gt; could not be read. Select Update&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor repozitáře pluginů &lt;b&gt;{0}&lt;/b&gt; nelze přečíst. Vyberte Obnovit&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="484"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="491"/>
         <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Nelze stáhnout požadovaný soubor z {0}.&lt;/p&gt;&lt;p&gt;Chyba: {1}&lt;/p&gt;</translation>
     </message>
@@ -53331,87 +53331,87 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="407"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="410"/>
         <source>Plugins Repository URL Changed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="407"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="410"/>
         <source>The URL of the Plugins Repository has changed. Select the &quot;Update&quot; button to get the new repository file.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="117"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="120"/>
         <source>Hide</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="119"/>
-        <source>Hide Selected</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="122"/>
-        <source>Show All</source>
+        <source>Hide Selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="125"/>
+        <source>Show All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="128"/>
         <source>Cleanup Downloads</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="600"/>
-        <source>up-to-date</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="603"/>
-        <source>new download available</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="607"/>
+        <source>up-to-date</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="610"/>
+        <source>new download available</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="614"/>
         <source>update installable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="611"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="618"/>
         <source>updated download available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="979"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="986"/>
         <source>Cleanup of Plugin Downloads</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="979"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="986"/>
         <source>&lt;p&gt;The plugin download &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="430"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="433"/>
         <source>New: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="432"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="435"/>
         <source>Local Updates: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="434"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="437"/>
         <source>Remote Updates: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="580"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="587"/>
         <source>Obsolete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="615"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="622"/>
         <source>error determining status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53419,17 +53419,17 @@
 <context>
     <name>PluginRepositoryWindow</name>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>Process Generation Error</source>
         <translation>Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>OK</source>
         <translation>OK</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>&lt;p&gt;Could not start the process.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Nemohu spustit zveřejnění.&lt;br&gt;Ověřte jestli je dostupný jako &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
@@ -53781,17 +53781,17 @@
 <context>
     <name>Preferences</name>
     <message>
-        <location filename="../Preferences/__init__.py" line="1640"/>
+        <location filename="../Preferences/__init__.py" line="1649"/>
         <source>Export Preferences</source>
         <translation>Předvolby exportu</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1668"/>
+        <location filename="../Preferences/__init__.py" line="1677"/>
         <source>Import Preferences</source>
         <translation>Předvolby importu</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1668"/>
+        <location filename="../Preferences/__init__.py" line="1677"/>
         <source>Properties File (*.ini);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53812,7 +53812,7 @@
 <context>
     <name>PreviewModel</name>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="432"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="434"/>
         <source>Variable Name</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53820,27 +53820,27 @@
 <context>
     <name>PreviewProcessingThread</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="463"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="466"/>
         <source>&lt;p&gt;No preview available for this type of file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="632"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="635"/>
         <source>&lt;p&gt;ReStructuredText preview requires the &lt;b&gt;python-docutils&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager, &apos;pip install docutils&apos; or see &lt;a href=&quot;http://pypi.python.org/pypi/docutils&quot;&gt;this page.&lt;/a&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="572"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="575"/>
         <source>&lt;p&gt;ReStructuredText preview requires the &lt;b&gt;sphinx&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager,&apos;pip install Sphinx&apos; or see &lt;a href=&quot;http://pypi.python.org/pypi/Sphinx&quot;&gt;this page.&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Alternatively you may disable Sphinx usage on the Editor, Filehandling configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="675"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="678"/>
         <source>&lt;p&gt;Markdown preview requires the &lt;b&gt;Markdown&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager, &apos;pip install Markdown&apos; or see &lt;a href=&quot;http://pythonhosted.org/Markdown/install.html&quot;&gt;installation instructions.&lt;/a&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="647"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="650"/>
         <source>&lt;p&gt;Docutils returned an error:&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53848,42 +53848,42 @@
 <context>
     <name>PreviewerHTML</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="75"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="78"/>
         <source>Select to enable JavaScript for HTML previews</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="74"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="77"/>
         <source>Enable JavaScript</source>
         <translation type="unfinished">Zapnout JavaScript</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="81"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="84"/>
         <source>Select to enable support for Server Side Includes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="79"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="82"/>
         <source>Enable Server Side Includes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="194"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="197"/>
         <source>&lt;p&gt;No preview available for this type of file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="253"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="256"/>
         <source>Preview - {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="255"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="258"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="57"/>
+        <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 type="unfinished"></translation>
     </message>
@@ -53934,17 +53934,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="76"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="80"/>
         <source>Portrait</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="78"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="82"/>
         <source>Landscape</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="79"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="83"/>
         <source>{0}, {1}</source>
         <comment>page size, page orientation</comment>
         <translation type="unfinished"></translation>
@@ -54149,17 +54149,17 @@
         <translation>(nezkonfigurováno)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="436"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="437"/>
         <source>(not executable)</source>
         <translation>(nevykonavatelný)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="479"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="481"/>
         <source>(not found)</source>
         <translation>(nenalezeno)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="433"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="434"/>
         <source>(unknown)</source>
         <translation>(neznámý)</translation>
     </message>
@@ -54234,7 +54234,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="398"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="399"/>
         <source>(module not found)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55705,32 +55705,32 @@
 <context>
     <name>ProjectBaseBrowser</name>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="128"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="132"/>
         <source>Open</source>
         <translation>Otevřít</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="496"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="503"/>
         <source>local</source>
         <translation>lokální</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="537"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="544"/>
         <source>Select entries</source>
         <translation>Vybrat vstupy</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="537"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="544"/>
         <source>There were no matching entries found.</source>
         <translation>Hledané vstupy nebyly nalezeny.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="294"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="300"/>
         <source>Delete directories</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="294"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="300"/>
         <source>Do you really want to delete these directories from the project?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55791,7 +55791,7 @@
         <translation>VCS Status</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBrowserModel.py" line="797"/>
+        <location filename="../Project/ProjectBrowserModel.py" line="803"/>
         <source>local</source>
         <translation>lokální</translation>
     </message>
@@ -55990,7 +55990,7 @@
 <context>
     <name>ProjectFormsBrowser</name>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1009"/>
         <source>Forms</source>
         <translation>Formuláře</translation>
     </message>
@@ -56140,42 +56140,42 @@
         <translation>Opravdu chcete odebrat tyto formuláře z projektu?</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="784"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="788"/>
         <source>Form Compilation</source>
         <translation>Kompilace formuláře</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="768"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="772"/>
         <source>The compilation of the form file was successful.</source>
         <translation>Kompilace souboru s formulářem byla úspěšná.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="784"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="788"/>
         <source>The compilation of the form file failed.</source>
         <translation>Kompilace souboru s formulářem selhala.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="870"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="874"/>
         <source>Process Generation Error</source>
         <translation>Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="962"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="966"/>
         <source>Compiling forms...</source>
         <translation>Kompilovat formuláře...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>Abort</source>
         <translation>Přerušit</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>Determining changed forms...</source>
         <translation>Určení změněných formulářů...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1031"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1035"/>
         <source>Compiling changed forms...</source>
         <translation>Kompilování změněných formulářů...</translation>
     </message>
@@ -56210,12 +56210,12 @@
         <translation>&lt;p&gt;Nový soubor s formulářem &lt;b&gt;{0}&lt;/b&gt; se nepodařilo vytvořit..&lt;br&gt;Problém: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="775"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="779"/>
         <source>&lt;p&gt;The compilation of the form file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Kompilace formuláře se nepodařila.&lt;/p&gt;&lt;p&gt;Důvod: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="870"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="874"/>
         <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
         <translation>Nelze spustit {0}.&lt;br&gt;Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
@@ -56270,7 +56270,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>%v/%m Forms</source>
         <translation type="unfinished"></translation>
     </message>
@@ -56920,7 +56920,7 @@
 <context>
     <name>ProjectResourcesBrowser</name>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="861"/>
         <source>Resources</source>
         <translation>Resources</translation>
     </message>
@@ -57015,42 +57015,42 @@
         <translation>Opravdu chcete odebrat tyto Resource z projektu?</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="624"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="628"/>
         <source>Resource Compilation</source>
         <translation>Kompilovat Resource</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="610"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="614"/>
         <source>The compilation of the resource file was successful.</source>
         <translation>Kompilace souboru Resource byla úspěšná.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="624"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="628"/>
         <source>The compilation of the resource file failed.</source>
         <translation>Kompliace Resource souboru selhala.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="713"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="717"/>
         <source>Process Generation Error</source>
         <translation>Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="779"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="783"/>
         <source>Compiling resources...</source>
         <translation>Kompilovat resources...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>Abort</source>
         <translation>Přerušit</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>Determining changed resources...</source>
         <translation>Určení změněných resources...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="889"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="893"/>
         <source>Compiling changed resources...</source>
         <translation>Kompilování změněných resources...</translation>
     </message>
@@ -57070,17 +57070,17 @@
         <translation>&lt;p&gt;Nový soubor s resource &lt;b&gt;{0}&lt;/b&gt; se nepodařilo vytvořit..&lt;br&gt;Problém: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="617"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="621"/>
         <source>&lt;p&gt;The compilation of the resource file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Kompilace Resource se nepodařila.&lt;/p&gt;&lt;p&gt;Důvod: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="713"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="717"/>
         <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
         <translation>Nelze spustit {0}.&lt;br&gt;Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>%v/%m Resources</source>
         <translation type="unfinished"></translation>
     </message>
@@ -58152,7 +58152,7 @@
         <translation>Vykonáno</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="349"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="361"/>
         <source>Coverage</source>
         <translation>Pokrytí</translation>
     </message>
@@ -58184,47 +58184,47 @@
         <translation>Zobrazuje průběh procesu analýzy pokrytí kódu</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="61"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="63"/>
         <source>Annotate</source>
         <translation>Komentovat</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="63"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="65"/>
         <source>Annotate all</source>
         <translation>Komentovat vše</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="64"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="66"/>
         <source>Delete annotated files</source>
         <translation>Smazat komentované soubory</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="67"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="69"/>
         <source>Erase Coverage Info</source>
         <translation>Vymazat info pokrytí</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>Annotating files...</source>
         <translation>Komentované soubory...</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>Abort</source>
         <translation>Přerušit</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="58"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="60"/>
         <source>Open</source>
         <translation type="unfinished">Otevřít</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="243"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="246"/>
         <source>Parse Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../DataViews/PyCoverageDialog.py" line="243"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="246"/>
         <source>%n file(s) could not be parsed. Coverage info for these is not available.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -58233,7 +58233,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>%v/%m Files</source>
         <translation type="unfinished"></translation>
     </message>
@@ -58241,7 +58241,7 @@
 <context>
     <name>PyProfileDialog</name>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="234"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="239"/>
         <source>Profile Results</source>
         <translation>Výsledky profilování</translation>
     </message>
@@ -58322,57 +58322,57 @@
         <translation>Zobrazuje průběh procesu profilování dat</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="337"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="354"/>
         <source>Exclude Python Library</source>
         <translation>Vyloučit Python knihovny</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="89"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="92"/>
         <source>Erase Profiling Info</source>
         <translation>Vymazat profilovací info</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="91"/>
-        <source>Erase Timing Info</source>
-        <translation>Vymazat časové info</translation>
-    </message>
-    <message>
         <location filename="../DataViews/PyProfileDialog.py" line="94"/>
+        <source>Erase Timing Info</source>
+        <translation>Vymazat časové info</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="97"/>
         <source>Erase All Infos</source>
         <translation>Vymazat všechna infa</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="215"/>
-        <source>function calls</source>
-        <translation>volání funkcí</translation>
-    </message>
-    <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="218"/>
-        <source>primitive calls</source>
-        <translation>volání primitiv</translation>
-    </message>
-    <message>
         <location filename="../DataViews/PyProfileDialog.py" line="220"/>
+        <source>function calls</source>
+        <translation>volání funkcí</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="223"/>
+        <source>primitive calls</source>
+        <translation>volání primitiv</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="225"/>
         <source>CPU seconds</source>
         <translation>CPU vteřin</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="246"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="251"/>
         <source>Loading Profiling Data</source>
         <translation>Načíst profilovací data</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="333"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="350"/>
         <source>Include Python Library</source>
         <translation>Zahrnout Python knihovnu</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="234"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="239"/>
         <source>&lt;p&gt;There is no profiling data available for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Pro &lt;b&gt;{0}&lt;/b&gt; nejsou k profilování dostupná žádná data.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="246"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="251"/>
         <source>&lt;p&gt;The profiling data could not be read from file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Profilovací data nelze ze souboru &lt;b&gt;{0}&lt;/b&gt; načíst.&lt;/p&gt;</translation>
     </message>
@@ -58985,132 +58985,132 @@
         <translation>Zobrazit další shodu regulárního výrazu</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="102"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="103"/>
         <source>Copy</source>
         <translation>Kopírovat</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="104"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="105"/>
         <source>Copy the regular expression to the clipboard</source>
         <translation>Kopírovat regulární výraz do schránky</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="188"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="190"/>
         <source>Named reference</source>
         <translation>Pojmenovaný odkaz</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="182"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="184"/>
         <source>No named groups have been defined yet.</source>
         <translation>Pojmenovaná skupina ještě nebyla definována.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="188"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="190"/>
         <source>Select group name:</source>
         <translation>Vyberte jméno skupiny:</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="372"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="374"/>
         <source>Save regular expression</source>
         <translation>Uložit regulární výraz</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="360"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="362"/>
         <source>RegExp Files (*.rx);;All Files (*)</source>
         <translation>RegExp soubory (*.rx);;Všechny soubory (*)</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="360"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="362"/>
         <source>Load regular expression</source>
         <translation>Načíst regulární výraz</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="414"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="416"/>
         <source>The regular expression is valid.</source>
         <translation>Regulární výraz je platný.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="578"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="581"/>
         <source>Error</source>
         <translation>Chyba</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="571"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="574"/>
         <source>Invalid regular expression: missing group name</source>
         <translation>Neplatný regulární výraz: chybí jméno skupiny</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="433"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="435"/>
         <source>A regular expression must be given.</source>
         <translation>Regulární výraz musí být zadán.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="478"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="480"/>
         <source>Regexp</source>
         <translation>Regexp</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="488"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="490"/>
         <source>Offset</source>
         <translation>Ofset</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="496"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="498"/>
         <source>Captures</source>
         <translation>Zachyceno</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="503"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="505"/>
         <source>Text</source>
         <translation>Text</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="506"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="508"/>
         <source>Characters</source>
         <translation>Znaky</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="511"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="513"/>
         <source>Match</source>
         <translation>Shoda</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="546"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="549"/>
         <source>No more matches</source>
         <translation>Žádné další shody</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="550"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="553"/>
         <source>No matches</source>
         <translation>Žádná shoda</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="578"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="581"/>
         <source>A regular expression and a text must be given.</source>
         <translation>Regulární výraz a text musí byt zadány.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="372"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="374"/>
         <source>&lt;p&gt;The regular expression could not be saved.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Regulární výraz nemůže být uložen.&lt;/p&gt;&lt;p&gt;Důvod: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="564"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="567"/>
         <source>Invalid regular expression: {0}</source>
         <translation>Neplatný regulární výraz: {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="526"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="528"/>
         <source>Capture #{0}</source>
         <translation>Zachyceno #{0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="334"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="336"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="414"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="416"/>
         <source>Validation</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59691,37 +59691,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="247"/>
+        <location filename="../UI/PythonAstViewer.py" line="249"/>
         <source>Module</source>
         <translation type="unfinished">Modul</translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="279"/>
+        <location filename="../UI/PythonAstViewer.py" line="281"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="300"/>
+        <location filename="../UI/PythonAstViewer.py" line="302"/>
         <source>{0},{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="307"/>
+        <location filename="../UI/PythonAstViewer.py" line="309"/>
         <source>{0}  -  {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="211"/>
+        <location filename="../UI/PythonAstViewer.py" line="213"/>
         <source>No editor has been opened.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="222"/>
+        <location filename="../UI/PythonAstViewer.py" line="224"/>
         <source>The current editor does not contain any source code.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="228"/>
+        <location filename="../UI/PythonAstViewer.py" line="230"/>
         <source>The current editor does not contain Python source code.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59774,7 +59774,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="695"/>
+        <location filename="../UI/PythonDisViewer.py" line="698"/>
         <source>Code Object &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59829,72 +59829,72 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="810"/>
+        <location filename="../UI/PythonDisViewer.py" line="813"/>
         <source>Name</source>
         <translation type="unfinished">Jméno</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="812"/>
+        <location filename="../UI/PythonDisViewer.py" line="815"/>
         <source>Filename</source>
         <translation type="unfinished">Jméno souboru</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="814"/>
+        <location filename="../UI/PythonDisViewer.py" line="817"/>
         <source>First Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="816"/>
+        <location filename="../UI/PythonDisViewer.py" line="819"/>
         <source>Argument Count</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="818"/>
+        <location filename="../UI/PythonDisViewer.py" line="821"/>
         <source>Positional-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../UI/PythonDisViewer.py" line="827"/>
+        <source>Number of Locals</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="829"/>
+        <source>Stack Size</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="831"/>
+        <source>Flags</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="834"/>
+        <source>Constants</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="837"/>
+        <source>Names</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="840"/>
+        <source>Variable Names</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="843"/>
+        <source>Free Variables</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="846"/>
+        <source>Cell Variables</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/PythonDisViewer.py" line="824"/>
-        <source>Number of Locals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="826"/>
-        <source>Stack Size</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="828"/>
-        <source>Flags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="831"/>
-        <source>Constants</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="834"/>
-        <source>Names</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="837"/>
-        <source>Variable Names</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="840"/>
-        <source>Free Variables</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="843"/>
-        <source>Cell Variables</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="821"/>
         <source>Keyword-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62037,197 +62037,197 @@
 <context>
     <name>QRegularExpressionWizardWidget</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="96"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="97"/>
         <source>Save</source>
         <translation type="unfinished">Uložit</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="98"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="99"/>
         <source>Save the regular expression to a file</source>
         <translation type="unfinished">Uložit regulární výraz do souboru</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="100"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="101"/>
         <source>Load</source>
         <translation type="unfinished">Načíst</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="102"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="103"/>
         <source>Load a regular expression from a file</source>
         <translation type="unfinished">Načíst regulární výraz ze souboru</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="105"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="106"/>
         <source>Validate</source>
         <translation type="unfinished">Ověřit</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="107"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="108"/>
         <source>Validate the regular expression</source>
         <translation type="unfinished">Ověřit regulární výraz</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="109"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="110"/>
         <source>Execute</source>
         <translation type="unfinished">Vykonat</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="111"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="112"/>
         <source>Execute the regular expression</source>
         <translation type="unfinished">Vykonat regulární výraz</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="113"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="114"/>
         <source>Next match</source>
         <translation type="unfinished">Další shoda</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="115"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="116"/>
         <source>Show the next match of the regular expression</source>
         <translation type="unfinished">Zobrazit další shodu regulárního výrazu</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="128"/>
-        <source>Copy</source>
-        <translation type="unfinished">Kopírovat</translation>
-    </message>
-    <message>
         <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="130"/>
+        <source>Copy</source>
+        <translation type="unfinished">Kopírovat</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="132"/>
         <source>Copy the regular expression to the clipboard</source>
         <translation type="unfinished">Kopírovat regulární výraz do schránky</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="292"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="295"/>
         <source>Named reference</source>
         <translation type="unfinished">Pojmenovaný odkaz</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="286"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="289"/>
         <source>No named groups have been defined yet.</source>
         <translation type="unfinished">Pojmenovaná skupina ještě nebyla definována.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="292"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="295"/>
         <source>Select group name:</source>
         <translation type="unfinished">Vyberte jméno skupiny:</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="454"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="457"/>
         <source>Save regular expression</source>
         <translation type="unfinished">Uložit regulární výraz</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="416"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="419"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="454"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="457"/>
         <source>&lt;p&gt;The regular expression could not be saved.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Regulární výraz nemůže být uložen.&lt;/p&gt;&lt;p&gt;Důvod: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="442"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="445"/>
         <source>Load regular expression</source>
         <translation type="unfinished">Načíst regulární výraz</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="507"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="510"/>
         <source>Validation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="507"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="510"/>
         <source>The regular expression is valid.</source>
         <translation type="unfinished">Regulární výraz je platný.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="708"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="712"/>
         <source>Error</source>
         <translation type="unfinished">Chyba</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="582"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="585"/>
         <source>Invalid regular expression: {0}</source>
         <translation type="unfinished">Neplatný regulární výraz: {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="538"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="541"/>
         <source>A regular expression must be given.</source>
         <translation type="unfinished">Regulární výraz musí být zadán.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="602"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="605"/>
         <source>Regexp</source>
         <translation type="unfinished">Regexp</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="613"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="616"/>
         <source>Offset</source>
         <translation type="unfinished">Ofset</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="621"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="624"/>
         <source>Captures</source>
         <translation type="unfinished">Zachyceno</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="629"/>
-        <source>Text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="632"/>
+        <source>Text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="635"/>
         <source>Characters</source>
         <translation type="unfinished">Znaky</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="637"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="640"/>
         <source>Match</source>
         <translation type="unfinished">Shoda</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="652"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="655"/>
         <source>Capture #{0}</source>
         <translation type="unfinished">Zachyceno #{0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="676"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="680"/>
         <source>No more matches</source>
         <translation type="unfinished">Žádné další shody</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="681"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="685"/>
         <source>No matches</source>
         <translation type="unfinished">Žádná shoda</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="708"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="712"/>
         <source>A regular expression and a text must be given.</source>
         <translation type="unfinished">Regulární výraz a text musí byt zadány.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="442"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="445"/>
         <source>RegExp Files (*.rx);;All Files (*)</source>
         <translation type="unfinished">RegExp soubory (*.rx);;Všechny soubory (*)</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="702"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="706"/>
         <source>Communication Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="169"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="172"/>
         <source>&lt;p&gt;The PyQt5 backend reported an error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="696"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="700"/>
         <source>Invalid response received from PyQt5 backend.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="702"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="706"/>
         <source>Communication with PyQt5 backend failed.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62255,7 +62255,7 @@
         <translation>Odebrat</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="174"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="176"/>
         <source>Add Documentation</source>
         <translation>Přidat dokumentaci</translation>
     </message>
@@ -62265,7 +62265,7 @@
         <translation>Qt komprimované soubory s nápovqdou (*.qch)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="211"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="213"/>
         <source>Remove Documentation</source>
         <translation>Odebrat dokumentaci</translation>
     </message>
@@ -62280,7 +62280,7 @@
         <translation>Stisknout pro odebrání vybraných dokumentů z databáze</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="196"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="198"/>
         <source>Do you really want to remove the selected documentation sets from the database?</source>
         <translation>Opravdu chcete odebrat vybrané dokumenty z databáze?</translation>
     </message>
@@ -62290,12 +62290,12 @@
         <translation>Soubor &lt;b&gt;{0}&lt;/b&gt; není platný soubor Qt Nápovědy.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="174"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="176"/>
         <source>The namespace &lt;b&gt;{0}&lt;/b&gt; is already registered.</source>
         <translation>Jmenný prostor &lt;b&gt;{0}&lt;/b&gt; je již registrován.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="211"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="213"/>
         <source>Some documents currently opened reference the documentation you are attempting to remove. Removing the documentation will close those documents. Remove anyway?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62355,7 +62355,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="406"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="410"/>
         <source>Remove Filters</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62365,7 +62365,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="434"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="438"/>
         <source>Remove Attributes</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62410,22 +62410,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="385"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="389"/>
         <source>Add Filter</source>
         <translation type="unfinished">Přidat filtr</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="385"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="389"/>
         <source>Filter name:</source>
         <translation type="unfinished">Název filtru:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="406"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="410"/>
         <source>Do you really want to remove the selected filters from the database?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="434"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="438"/>
         <source>Do you really want to remove the selected attributes from the database?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62443,27 +62443,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="139"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="142"/>
         <source>Delete Documentation Sets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="86"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="89"/>
         <source>Shall the selected documentation sets really be deleted?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="102"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="105"/>
         <source>&lt;p&gt;The documentation set &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="121"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="124"/>
         <source>Shall the selected documentation set categories really be deleted?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="139"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="142"/>
         <source>Shall all documentation sets really be deleted?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63984,87 +63984,87 @@
 <context>
     <name>SafeBrowsingAPI</name>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="391"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="400"/>
         <source>&lt;h3&gt;Malware Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to install harmful programs on your computer in order to steal or destroy your data.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="398"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="407"/>
         <source>&lt;h3&gt;Phishing Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to trick you into doing something dangerous online, such as revealing passwords or personal information, usually through a fake website.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="406"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="415"/>
         <source>&lt;h3&gt;Unwanted Software Warning&lt;/h3&gt;&lt;p&gt;The software you are about to download may negatively affect your browsing or computing experience.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="412"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="421"/>
         <source>&lt;h3&gt;Potentially Harmful Application&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to trick you into installing applications, that may negatively affect your browsing experience.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="426"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="435"/>
         <source>&lt;h3&gt;Unknown Threat Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit was found in the Safe Browsing Database but was not classified yet.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="446"/>
-        <source>Malware</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="449"/>
-        <source>Phishing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="452"/>
-        <source>Unwanted Software</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="455"/>
-        <source>Harmful Application</source>
+        <source>Malware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="458"/>
-        <source>Malicious Binary</source>
+        <source>Phishing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="461"/>
+        <source>Unwanted Software</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="464"/>
+        <source>Harmful Application</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="467"/>
+        <source>Malicious Binary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="470"/>
         <source>Unknown Threat</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="532"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="541"/>
         <source>any defined platform</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="535"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="544"/>
         <source>all defined platforms</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="538"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="547"/>
         <source>unknown platform</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="492"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="501"/>
         <source>executable program</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="495"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="504"/>
         <source>unknown type</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="419"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="428"/>
         <source>&lt;h3&gt;Malicious Binary Warning&lt;/h3&gt;&lt;p&gt;The software you are about to download may be harmful to your computer.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -64072,7 +64072,7 @@
 <context>
     <name>SafeBrowsingDialog</name>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="171"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="173"/>
         <source>Safe Browsing Management</source>
         <translation type="unfinished"></translation>
     </message>
@@ -64162,52 +64162,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="312"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="314"/>
         <source>Check URL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="171"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="173"/>
         <source>The dialog contains unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="213"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="215"/>
         <source>Update Safe Browsing Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="196"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="198"/>
         <source>Updating the Safe Browsing cache might be a lengthy operation. Please be patient!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="207"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="209"/>
         <source>&lt;p&gt;Updating the Safe Browsing cache failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="213"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="215"/>
         <source>&lt;p&gt;Updating the Safe Browsing cache failed.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="224"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="226"/>
         <source>Clear Safe Browsing Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="224"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="226"/>
         <source>Do you really want to clear the Safe Browsing cache? Re-populating it might take some time.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="304"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="306"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing Database.&lt;/p&gt;{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="312"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="314"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was not found in the Safe Browsing Database and may be considered safe.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -64237,17 +64237,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="339"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="341"/>
         <source>The next automatic threat list update will be done now.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="342"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="344"/>
         <source>&lt;p&gt;The next automatic threat list update will be done at &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="346"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="348"/>
         <source>Update Time</source>
         <translation type="unfinished"></translation>
     </message>
@@ -64267,7 +64267,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="296"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="298"/>
         <source>&lt;p&gt;The Google Safe Browsing Server reported an error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -64336,17 +64336,17 @@
 <context>
     <name>SearchReplaceWidget</name>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="982"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="984"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation>&apos;{0}&apos; nebyl nalezen.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="1128"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="1130"/>
         <source>Replaced {0} occurrences.</source>
         <translation>Nahrazeno {0} výskytů.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="1133"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="1135"/>
         <source>Nothing replaced because &apos;{0}&apos; was not found.</source>
         <translation>Nebylo nic nahrazeno, protože &apos;{0}&apos; nebyl nalezen.</translation>
     </message>
@@ -64356,7 +64356,7 @@
         <translation>Najít další</translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="173"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="174"/>
         <source>Find Prev</source>
         <translation>Najít předchozí</translation>
     </message>
@@ -64380,17 +64380,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="181"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="183"/>
         <source>Replace and Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="191"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="193"/>
         <source>Replace Occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="201"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="203"/>
         <source>Replace All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -64492,12 +64492,12 @@
         <translation type="obsolete">Zabalit</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SearchWidget.py" line="98"/>
+        <location filename="../WebBrowser/SearchWidget.py" line="100"/>
         <source>Expression was not found.</source>
         <translation>Výraz nebyl nalezen.</translation>
     </message>
     <message>
-        <location filename="../UI/SearchWidget.py" line="208"/>
+        <location filename="../UI/SearchWidget.py" line="210"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished">&apos;{0}&apos; nebyl nalezen.</translation>
     </message>
@@ -64969,7 +64969,7 @@
 <context>
     <name>SendRefererWhitelistDialog</name>
     <message>
-        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="50"/>
+        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="51"/>
         <source>Send Referer Whitelist</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65009,7 +65009,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="50"/>
+        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="51"/>
         <source>Enter host name to add to the whitelist:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65140,7 +65140,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Session/SessionManager.py" line="710"/>
+        <location filename="../WebBrowser/Session/SessionManager.py" line="712"/>
         <source>{0} (last session)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65654,57 +65654,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="153"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="155"/>
         <source>Reading Trove Classifiers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="153"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="155"/>
         <source>&lt;p&gt;The Trove Classifiers 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="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="544"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="549"/>
         <source>Package Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="576"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="581"/>
         <source>Packages Root Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="615"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="620"/>
         <source>Add Package</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="615"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="620"/>
         <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; is not a Python package.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="671"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="676"/>
         <source>Add Scripts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="671"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="676"/>
         <source>Python Files (*.py);;All Files(*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="710"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="715"/>
         <source>Add Python Modules</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="710"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="715"/>
         <source>Python Files (*.py)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="789"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="796"/>
         <source>Source Directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65732,83 +65732,83 @@
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="248"/>
+        <location filename="../QScintilla/Shell.py" line="249"/>
         <source>Passive &gt;&gt;&gt; </source>
         <translation>Pasivní &gt;&gt;&gt; </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="291"/>
+        <location filename="../QScintilla/Shell.py" line="292"/>
         <source>Start</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="304"/>
-        <source>Copy</source>
-        <translation>Kopírovat</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="305"/>
+        <source>Copy</source>
+        <translation>Kopírovat</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="306"/>
         <source>Paste</source>
         <translation>Vložit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="311"/>
+        <location filename="../QScintilla/Shell.py" line="312"/>
         <source>Clear</source>
         <translation>Vyčistit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="843"/>
+        <location filename="../QScintilla/Shell.py" line="851"/>
         <source>No.</source>
         <translation>Č.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2178"/>
+        <location filename="../QScintilla/Shell.py" line="2199"/>
         <source>Drop Error</source>
         <translation>Zahodit chybu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="839"/>
+        <location filename="../QScintilla/Shell.py" line="847"/>
         <source>Passive Debug Mode</source>
         <translation>Pasivní debug mód</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="296"/>
-        <source>History</source>
-        <translation>Historie</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="297"/>
-        <source>Select entry</source>
-        <translation>Vybrat vstupy</translation>
+        <source>History</source>
+        <translation>Historie</translation>
     </message>
     <message>
         <location filename="../QScintilla/Shell.py" line="298"/>
+        <source>Select entry</source>
+        <translation>Vybrat vstupy</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="299"/>
         <source>Show</source>
         <translation>Zobrazit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="773"/>
+        <location filename="../QScintilla/Shell.py" line="781"/>
         <source>Select History</source>
         <translation>Vybrat historii</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="773"/>
+        <location filename="../QScintilla/Shell.py" line="781"/>
         <source>Select the history entry to execute (most recent shown last).</source>
         <translation>Vybrat vstup historie pro vykonání (nejaktuálnější zobrazen poslední).</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="840"/>
+        <location filename="../QScintilla/Shell.py" line="848"/>
         <source>
 Not connected</source>
         <translation>Nepřipojen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="319"/>
+        <location filename="../QScintilla/Shell.py" line="320"/>
         <source>Configure...</source>
         <translation>Konfigurovat...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="303"/>
+        <location filename="../QScintilla/Shell.py" line="304"/>
         <source>Cut</source>
         <translation>Vyjmout</translation>
     </message>
@@ -65818,27 +65818,27 @@
         <translation type="obsolete">{0} na {1}, {2}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1033"/>
+        <location filename="../QScintilla/Shell.py" line="1041"/>
         <source>StdOut: {0}</source>
         <translation>StdOut: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1041"/>
+        <location filename="../QScintilla/Shell.py" line="1049"/>
         <source>StdErr: {0}</source>
         <translation>StdErr: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2178"/>
+        <location filename="../QScintilla/Shell.py" line="2199"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; není soubor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="309"/>
+        <location filename="../QScintilla/Shell.py" line="310"/>
         <source>Find</source>
         <translation type="unfinished">Hledat</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="891"/>
+        <location filename="../QScintilla/Shell.py" line="899"/>
         <source>Exception &quot;{0}&quot;
 {1}
 File: {2}, Line: {3}
@@ -65846,81 +65846,81 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="926"/>
+        <location filename="../QScintilla/Shell.py" line="934"/>
         <source>Unspecified syntax error.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="901"/>
+        <location filename="../QScintilla/Shell.py" line="909"/>
         <source>Exception &quot;{0}&quot;
 {1}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="928"/>
+        <location filename="../QScintilla/Shell.py" line="936"/>
         <source>Syntax error &quot;{1}&quot; in file {0} at line {2}, character {3}.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="951"/>
+        <location filename="../QScintilla/Shell.py" line="959"/>
         <source>Signal &quot;{0}&quot; generated in file {1} at line {2}.
 Function: {3}({4})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2035"/>
+        <location filename="../QScintilla/Shell.py" line="2056"/>
         <source>Project</source>
         <translation type="unfinished">Projekt</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Shell.py" line="313"/>
+        <source>Restart</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="314"/>
+        <source>Restart and Clear</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="318"/>
+        <source>Active Name</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="1867"/>
+        <source>Available Virtual Environments:
+{0}
+</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="1917"/>
+        <source>Current Virtual Environment: &apos;{0}&apos;
+</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="853"/>
+        <source>{0} on {1}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="1075"/>
+        <source>&lt;{0}&gt; {1}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Shell.py" line="159"/>
-        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;restart&apos; kills the shell and starts a new one. &apos;clear&apos; clears the display of the shell window. &apos;start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;envs&apos; or &apos;environments&apos; commands. The active virtual environment can be questioned by the &apos;which&apos; command. &apos;quit&apos; or &apos;exit&apos; is used to exit the application. These commands (except environments&apos;, &apos;envs&apos; and &apos;which&apos;) are available through the window menus as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="186"/>
-        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.&lt;/p&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;restart&apos; kills the shell and starts a new one. &apos;clear&apos; clears the display of the shell window. &apos;start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;envs&apos; or &apos;environments&apos; commands. The active virtual environment can be questioned by the &apos;which&apos; command. These commands (except environments&apos; and &apos;envs&apos;) are available through the context menu as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;&lt;p&gt;In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="312"/>
-        <source>Restart</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="313"/>
-        <source>Restart and Clear</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="317"/>
-        <source>Active Name</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="1850"/>
-        <source>Available Virtual Environments:
-{0}
-</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="1896"/>
-        <source>Current Virtual Environment: &apos;{0}&apos;
-</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="845"/>
-        <source>{0} on {1}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="1067"/>
-        <source>&lt;{0}&gt; {1}</source>
+        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;%restart&apos; kills the shell and starts a new one. &apos;%clear&apos; clears the display of the shell window. &apos;%start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. &apos;%start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;%envs&apos; or &apos;%environments&apos; commands. The active virtual environment can be questioned by the &apos;%which&apos; command. &apos;%quit&apos; or &apos;%exit&apos; is used to exit the application. These commands (except &apos;%environments&apos;, &apos;%envs&apos; and &apos;%which&apos;) are available through the window menus as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="187"/>
+        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.&lt;/p&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;%restart&apos; kills the shell and starts a new one. &apos;%clear&apos; clears the display of the shell window. &apos;%start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. &apos;%start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;%envs&apos; or &apos;%environments&apos; commands. The active virtual environment can be questioned by the &apos;%which&apos; command. These commands (except &apos;%environments&apos; and &apos;%envs&apos;) are available through the context menu as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;&lt;p&gt;In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -66802,62 +66802,62 @@
         <translation>Alternativní</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="131"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="132"/>
         <source>Project</source>
         <translation>Projekt</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="135"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="136"/>
         <source>General</source>
         <translation>Hlavní</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="145"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="146"/>
         <source>Debug</source>
         <translation>Debug</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="139"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="140"/>
         <source>Wizards</source>
         <translation>Průvodci</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="149"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="150"/>
         <source>Edit</source>
         <translation>Editace</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="153"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="154"/>
         <source>File</source>
         <translation>Soubor</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="157"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="158"/>
         <source>Search</source>
         <translation>Hledat</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="161"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="162"/>
         <source>View</source>
         <translation>Pohled</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="165"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="166"/>
         <source>Macro</source>
         <translation>Makro</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="169"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="170"/>
         <source>Bookmarks</source>
         <translation>Záložky</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="181"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="182"/>
         <source>Window</source>
         <translation>Okno</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="364"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="365"/>
         <source>Edit shortcuts</source>
         <translation>Editovat kláv.zkratky</translation>
     </message>
@@ -66897,22 +66897,22 @@
         <translation>Vybrat filtr založený na zkratkách nebo alternativních zkratkách</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="174"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="175"/>
         <source>Spelling</source>
         <translation>Pravopis</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="327"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="328"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has already been allocated to the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; byla již spojena s akcí &lt;b&gt;{1}&lt;/b&gt;. Odebrat toto spojení?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="347"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="348"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; hides the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; skrývá akci &lt;b&gt;{1}&lt;/b&gt;. Odebrat toto spojení?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="364"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="365"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is hidden by the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; je skrytá v akci &lt;b&gt;{1}&lt;/b&gt;. Odebrat toto spojení?&lt;/p&gt;</translation>
     </message>
@@ -66922,7 +66922,7 @@
         <translation type="obsolete">eric5 web prohlížeč {6 ?}</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="197"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="198"/>
         <source>eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67031,32 +67031,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="263"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="264"/>
         <source>Preview not available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="290"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="291"/>
         <source>Copy Image Location to Clipboard</source>
         <translation type="unfinished">Kopírovat cestu obrázku do schránky</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="293"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="294"/>
         <source>Copy Image Name to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="357"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="358"/>
         <source>Save Image</source>
         <translation type="unfinished">Uložit obrázek</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="346"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="347"/>
         <source>All Files (*)</source>
         <translation type="unfinished">Všechny soubory (*)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="357"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="358"/>
         <source>&lt;p&gt;Cannot write to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67071,12 +67071,12 @@
         <translation type="obsolete">Cesta:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="276"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="277"/>
         <source>Loading...</source>
         <translation type="unfinished">Načítám...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="334"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="335"/>
         <source>&lt;p&gt;This preview is not available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67114,62 +67114,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="68"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="70"/>
         <source>Your connection to this site is &lt;b&gt;secure&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="73"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="75"/>
         <source>Your connection to this site is &lt;b&gt;not secure&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="88"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="90"/>
         <source>This is your &lt;b&gt;{0}.&lt;/b&gt; visit of this site.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="94"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="96"/>
         <source>You have &lt;b&gt;never&lt;/b&gt; visited this site before.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="103"/>
-        <source>first</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="105"/>
-        <source>second</source>
+        <source>first</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="107"/>
+        <source>second</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="109"/>
         <source>third</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="108"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="110"/>
         <source>This is your &lt;b&gt;{0}&lt;/b&gt; visit of this site.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="129"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="131"/>
         <source>Register as &lt;b&gt;{0}&lt;/b&gt; links handler.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="136"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="138"/>
         <source>Register</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="153"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="156"/>
         <source>More...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="62"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="64"/>
         <source>Your connection to this site &lt;b&gt;may not be secure&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67307,17 +67307,17 @@
         <translation type="unfinished">X11 Pixmap soubor (*.xpm)</translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="252"/>
+        <location filename="../Snapshot/SnapWidget.py" line="253"/>
         <source>Save Snapshot</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="231"/>
+        <location filename="../Snapshot/SnapWidget.py" line="232"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="252"/>
+        <location filename="../Snapshot/SnapWidget.py" line="253"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation type="unfinished">Nelze zapsat do souboru &apos;{0}:
@@ -67364,7 +67364,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="389"/>
+        <location filename="../Snapshot/SnapWidget.py" line="390"/>
         <source>The application contains an unsaved snapshot.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67379,7 +67379,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="355"/>
+        <location filename="../Snapshot/SnapWidget.py" line="356"/>
         <source>Preview of the snapshot image ({0} x {1})</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67419,7 +67419,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="419"/>
+        <location filename="../Snapshot/SnapWidget.py" line="420"/>
         <source>eric Snapshot</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67427,7 +67427,7 @@
 <context>
     <name>SnapshotFreehandGrabber</name>
     <message>
-        <location filename="../Snapshot/SnapshotFreehandGrabber.py" line="72"/>
+        <location filename="../Snapshot/SnapshotFreehandGrabber.py" line="76"/>
         <source>Select a region using the mouse. To take the snapshot, press the Enter key or double click. Press Esc to quit.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67435,7 +67435,7 @@
 <context>
     <name>SnapshotRegionGrabber</name>
     <message>
-        <location filename="../Snapshot/SnapshotRegionGrabber.py" line="104"/>
+        <location filename="../Snapshot/SnapshotRegionGrabber.py" line="107"/>
         <source>Select a region using the mouse. To take the snapshot, press the Enter key or double click. Press Esc to quit.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67443,7 +67443,7 @@
 <context>
     <name>SnapshotTimer</name>
     <message numerus="yes">
-        <location filename="../Snapshot/SnapshotTimer.py" line="104"/>
+        <location filename="../Snapshot/SnapshotTimer.py" line="110"/>
         <source>Snapshot will be taken in %n seconds</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -67566,27 +67566,27 @@
 <context>
     <name>SpeedDial</name>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="401"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="402"/>
         <source>Unable to load</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="207"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="208"/>
         <source>Saving Speed Dial data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="207"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="208"/>
         <source>&lt;p&gt;Speed Dial data could not be saved to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="220"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="221"/>
         <source>Reset Speed Dials</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="220"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="221"/>
         <source>Are you sure you want to reset the speed dials to the default pages?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67980,22 +67980,22 @@
         <translation>Hotovo</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="162"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="163"/>
         <source>Unable to open database</source>
         <translation>Databázi nelze otevřít</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="304"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="307"/>
         <source>Query OK.</source>
         <translation>Dotaz OK.</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="162"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="163"/>
         <source>An error occurred while opening the connection.</source>
         <translation>Během otevírání spojení se objevila chyba.</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="306"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="309"/>
         <source>Query OK, number of affected rows: {0}</source>
         <translation>Dotaz OK, počet dotčených řádek: {0}</translation>
     </message>
@@ -68164,62 +68164,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="52"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="53"/>
         <source>Revocation information for the certificate is not available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="55"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="56"/>
         <source>The certificate has been revoked.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="57"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="58"/>
         <source>The certificate is invalid.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="59"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="60"/>
         <source>The certificate is signed using a weak signature algorithm.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="62"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="63"/>
         <source>The host name specified in the certificate is not unique.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="65"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="66"/>
         <source>The certificate contains a weak key.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="67"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="69"/>
         <source>The certificate claimed DNS names that are in violation of name constraints.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="98"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="101"/>
         <source>No error description available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="129"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="132"/>
         <source>Remove Selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="134"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="137"/>
         <source>Remove All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="73"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="75"/>
         <source>The certificate has a validity period that is too long.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="82"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="85"/>
         <source>Certificate Transparency was required for this connection, but the server did not provide information that complied with the policy.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -68254,12 +68254,12 @@
         <translation type="unfinished">&amp;Pracovní adresář:</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="215"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="218"/>
         <source>Select this to erase the collected coverage information</source>
         <translation>Vybrat pro vymazání shromážděných informací z pokrytí</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="218"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="221"/>
         <source>&lt;b&gt;Erase coverage information&lt;/b&gt;
 &lt;p&gt;Select this to erase the collected coverage information before the next coverage run.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vymazat informace z pokrytí&lt;/b&gt;
@@ -68278,7 +68278,7 @@
 &lt;p&gt;Zadání pracovního adresáře, ve kterém proběhne debugging. Ponechte jej prázdný pokud chcete pro spuštění použít adresář aplikace.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="151"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="154"/>
         <source>Environment Variables:</source>
         <translation type="unfinished">Prostř&amp;edí:</translation>
     </message>
@@ -68297,66 +68297,66 @@
 &lt;p&gt;Příklad: var1=1 var2=&quot;hello world&quot; var3+=&quot;:/tmp&quot;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="222"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="225"/>
         <source>Erase coverage information</source>
         <translation type="unfinished">&amp;Vymazat info pokrytí</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="225"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="228"/>
         <source>Alt+C</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="165"/>
-        <source>Uncheck to disable exception reporting</source>
-        <translation>Zrušit zatržení pro vypnutí reportování výjimek</translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="168"/>
+        <source>Uncheck to disable exception reporting</source>
+        <translation>Zrušit zatržení pro vypnutí reportování výjimek</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="171"/>
         <source>&lt;b&gt;Report exceptions&lt;/b&gt;
 &lt;p&gt;Uncheck this in order to disable exception reporting.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Report výjimek&lt;/b&gt;
 &lt;p&gt;Zrušte zatržení přepínače pro vypnutí reportování výjimek.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="172"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="175"/>
         <source>Report exceptions</source>
         <translation type="unfinished">R&amp;eport výjimek</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="175"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="178"/>
         <source>Alt+E</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="185"/>
-        <source>Select to clear the display of the interpreter window</source>
-        <translation>Vybrat pro vyčištění okna interpretru</translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="188"/>
-        <source>&lt;b&gt;Clear interpreter window&lt;/b&gt;&lt;p&gt;This clears the display of the interpreter window before starting the debug client.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Vyčistit okno interpretru&lt;/b&gt;&lt;p&gt;Vyčistí displej okna interpretru před tím, než se spustí debugovací klient.&lt;/p&gt;</translation>
+        <source>Select to clear the display of the interpreter window</source>
+        <translation>Vybrat pro vyčištění okna interpretru</translation>
     </message>
     <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="191"/>
+        <source>&lt;b&gt;Clear interpreter window&lt;/b&gt;&lt;p&gt;This clears the display of the interpreter window before starting the debug client.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Vyčistit okno interpretru&lt;/b&gt;&lt;p&gt;Vyčistí displej okna interpretru před tím, než se spustí debugovací klient.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="194"/>
         <source>Clear interpreter window</source>
         <translation type="unfinished">Vyčistit okno &amp;interpretru</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="201"/>
-        <source>Select to start the debugger in a console window</source>
-        <translation>Vybrat pro spuštění debugeru v okně konzole</translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="204"/>
+        <source>Select to start the debugger in a console window</source>
+        <translation>Vybrat pro spuštění debugeru v okně konzole</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="207"/>
         <source>&lt;b&gt;Start in console&lt;/b&gt;
 &lt;p&gt;Select to start the debugger in a console window. The console command has to be configured on the Debugger-&amp;gt;General page&lt;/p&gt;</source>
         <translation>&lt;b&gt;Spustit na konzoli&lt;/b&gt;
 &lt;p&gt;Vybrat pro spuštění debugeru v okně konzole. Příkaz konzole musí být nakonfigurován na Debugger-&amp;gt;Hlavní straně&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="208"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="211"/>
         <source>Start in console</source>
         <translation>Spustit na konzoli</translation>
     </message>
@@ -68366,7 +68366,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="141"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="144"/>
         <source>Virtual Environment:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -68613,42 +68613,42 @@
 <context>
     <name>StartDialog</name>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="108"/>
+        <location filename="../Debugger/StartDialog.py" line="109"/>
         <source>Clear Histories</source>
         <translation>Vyčistit historii</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="279"/>
+        <location filename="../Debugger/StartDialog.py" line="281"/>
         <source>Edit History</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="266"/>
-        <source>Command Line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="267"/>
-        <source>Working Directory</source>
-        <translation type="unfinished">Pracovní adresář</translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartDialog.py" line="268"/>
+        <source>Command Line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="269"/>
+        <source>Working Directory</source>
+        <translation type="unfinished">Pracovní adresář</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="270"/>
         <source>Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Debugger/StartDialog.py" line="281"/>
+        <source>Select the history list to be edited:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Debugger/StartDialog.py" line="279"/>
-        <source>Select the history list to be edited:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="277"/>
         <source>No Debug Programs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="142"/>
+        <location filename="../Debugger/StartDialog.py" line="143"/>
         <source>Enter the list of programs or program patterns not to be debugged separated by &apos;{0}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -69369,12 +69369,12 @@
         <translation>Vlastnost smazána.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2244"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2245"/>
         <source>Subversion Lock</source>
         <translation>Subversion zámek</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2244"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2245"/>
         <source>Enter lock comment</source>
         <translation>Zadejte komentář zámku</translation>
     </message>
@@ -69747,32 +69747,32 @@
         <translation>SVG prohlížeč</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="91"/>
+        <location filename="../Graphics/SvgDiagram.py" line="92"/>
         <source>Close</source>
         <translation>Zavřít</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="96"/>
+        <location filename="../Graphics/SvgDiagram.py" line="97"/>
         <source>Print</source>
         <translation>Tisk</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="131"/>
+        <location filename="../Graphics/SvgDiagram.py" line="132"/>
         <source>Window</source>
         <translation>Okno</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="135"/>
+        <location filename="../Graphics/SvgDiagram.py" line="136"/>
         <source>Graphics</source>
         <translation>Grafika</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="101"/>
+        <location filename="../Graphics/SvgDiagram.py" line="102"/>
         <source>Print Preview</source>
         <translation>Náhled tisku</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="362"/>
+        <location filename="../Graphics/SvgDiagram.py" line="363"/>
         <source>Diagram: {0}</source>
         <translation>Diagram: {0}</translation>
     </message>
@@ -69845,12 +69845,12 @@
         <translation></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="102"/>
         <source>Process Generation Error</source>
         <translation>Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="102"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
@@ -69925,22 +69925,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="83"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="85"/>
         <source>Files (relative to {0}):</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="152"/>
         <source>No changelists found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
@@ -70176,29 +70176,29 @@
         <translation></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="169"/>
         <source>Process Generation Error</source>
         <translation>Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="82"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="84"/>
         <source> (binary)</source>
         <translation> (binární)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="169"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="75"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="77"/>
         <source>Revision {0}.
 </source>
         <translation>Revize {0}.
 </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="86"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="88"/>
         <source>{0} {1}{2}
 </source>
         <translation>{0}  {1}{2}
@@ -70236,7 +70236,7 @@
 <context>
     <name>SvnDiffDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="175"/>
         <source>Subversion Diff</source>
         <translation></translation>
     </message>
@@ -70296,58 +70296,58 @@
         <translation></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="189"/>
         <source>Process Generation Error</source>
         <translation>Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="207"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="209"/>
         <source>There is no difference.</source>
         <translation>Žádné rozdíly nebyly nalezeny.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="399"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="409"/>
         <source>Save Diff</source>
         <translation>Uložit Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="367"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="377"/>
         <source>Patch Files (*.diff)</source>
         <translation>Patch soubory (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="175"/>
         <source>There is no temporary directory available.</source>
         <translation>Zamčené soubory nejsou dostupné/vybrané.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="189"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="399"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="409"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Patch soubor &lt;b&gt;{0}&lt;/b&gt; nelze uložit.&lt;br /&gt;Důvod: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="211"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="219"/>
         <source>Processing file &apos;{0}&apos;...
 </source>
         <translation>Spouštím proces &apos;{0}&apos;...</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="384"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="394"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="220"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="226"/>
         <source>&lt;Start&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="221"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="227"/>
         <source>&lt;End&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -70513,12 +70513,12 @@
         <translation></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="664"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="679"/>
         <source>Revision</source>
         <translation>Revize</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="661"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="676"/>
         <source>Author</source>
         <translation>Autor</translation>
     </message>
@@ -70528,7 +70528,7 @@
         <translation>Datum</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="164"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="167"/>
         <source>Message</source>
         <translation>Zpráva</translation>
     </message>
@@ -70588,22 +70588,22 @@
         <translation>&amp;Porovnat revize</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="93"/>
         <source>Added</source>
         <translation>Přidáno</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="91"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="94"/>
         <source>Deleted</source>
         <translation>Smazáno</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="92"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="95"/>
         <source>Modified</source>
         <translation>Změněno</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="519"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="535"/>
         <source>Subversion Error</source>
         <translation>Subversion chyba</translation>
     </message>
@@ -70658,7 +70658,7 @@
         <translation></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="309"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="317"/>
         <source>Process Generation Error</source>
         <translation>Chyba v procesu generování</translation>
     </message>
@@ -70703,12 +70703,12 @@
         <translation>Zatavit kopírování/přesun</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="309"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="317"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="93"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="96"/>
         <source>Replaced</source>
         <translation type="unfinished"></translation>
     </message>
@@ -70873,7 +70873,7 @@
         <translation>Prot&amp;otokol:</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="129"/>
         <source>&amp;URL:</source>
         <translation>&amp;URL:</translation>
     </message>
@@ -70920,7 +70920,7 @@
         <translation>&lt;b&gt;URL&lt;b&gt;&lt;p&gt;Zadejte URL modulu. Repozitář ve standardním uspořádání musí obsahovat trunk, tags nebo branches.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="121"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="122"/>
         <source>Pat&amp;h:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -71804,12 +71804,12 @@
 &lt;p&gt;Zobrazuje případná chybová hlášení ze subversion příkazu proplist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="154"/>
         <source>Process Generation Error</source>
         <translation>Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnPropListDialog.py" line="145"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnPropListDialog.py" line="152"/>
         <source>None</source>
         <translation>None</translation>
     </message>
@@ -71819,7 +71819,7 @@
         <translation>Chyby</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="154"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
@@ -71973,7 +71973,7 @@
         <translation>Datum</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="281"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="288"/>
         <source>Subversion Error</source>
         <translation>Subversion chyba</translation>
     </message>
@@ -72023,7 +72023,7 @@
         <translation></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="267"/>
         <source>Process Generation Error</source>
         <translation>Chyba v procesu generování</translation>
     </message>
@@ -72033,12 +72033,12 @@
         <translation>&lt;b&gt;Subversion chyby&lt;/b&gt;&lt;p&gt;Zobrazí možné chyby z příkazů svn list a svn info.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="204"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="208"/>
         <source>The installed version of PySvn should be 1.4.0 or better.</source>
         <translation>Instalovaná verze PySvn by měla být 1.4.0 nebo vyšší.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="267"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
@@ -72154,7 +72154,7 @@
 <context>
     <name>SvnStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="400"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="406"/>
         <source>Subversion Status</source>
         <translation></translation>
     </message>
@@ -72276,182 +72276,182 @@
         <translation>Stisknout pro obnovení statusu</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="83"/>
         <source>Commit changes to repository...</source>
         <translation>Komitnout změny do repozitáře...</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="873"/>
-        <source>Lock</source>
-        <translation>Zamknout</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890"/>
+        <source>Lock</source>
+        <translation>Zamknout</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="907"/>
         <source>Unlock</source>
         <translation>Odemknout</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="111"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="113"/>
         <source>Break lock</source>
         <translation>Prolomit zámek</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="116"/>
         <source>Steal lock</source>
         <translation>Zcizit zámek</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="120"/>
         <source>Adjust column sizes</source>
         <translation>Přizpůsobit šířky sloupců</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="158"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="161"/>
         <source>added</source>
         <translation>přidáno</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="160"/>
-        <source>deleted</source>
-        <translation>smazáno</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="171"/>
-        <source>modified</source>
-        <translation>změněno</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="189"/>
-        <source>locked</source>
-        <translation>zamčeno</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="190"/>
-        <source>other lock</source>
-        <translation>jiný zámek</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="191"/>
-        <source>stolen lock</source>
-        <translation>scizený zámek</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="192"/>
-        <source>broken lock</source>
-        <translation>prolomený zámek</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="188"/>
-        <source>not locked</source>
-        <translation>nezamčeno</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="170"/>
-        <source>normal</source>
-        <translation>normální</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="163"/>
-        <source>replaced</source>
-        <translation>nahrazeno</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="172"/>
-        <source>conflict</source>
-        <translation>konflikt</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="185"/>
-        <source>external</source>
-        <translation>externí</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="161"/>
-        <source>ignored</source>
-        <translation>ignorováno</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="165"/>
-        <source>unversioned</source>
-        <translation>mimo verzi</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="166"/>
-        <source>missing</source>
-        <translation>chybějící</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="167"/>
-        <source>type error</source>
-        <translation>chyba typu</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="196"/>
-        <source>no</source>
-        <translation>ne</translation>
+        <source>deleted</source>
+        <translation>smazáno</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="174"/>
+        <source>modified</source>
+        <translation>změněno</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="192"/>
+        <source>locked</source>
+        <translation>zamčeno</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="193"/>
+        <source>other lock</source>
+        <translation>jiný zámek</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="194"/>
+        <source>stolen lock</source>
+        <translation>scizený zámek</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="195"/>
+        <source>broken lock</source>
+        <translation>prolomený zámek</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="191"/>
+        <source>not locked</source>
+        <translation>nezamčeno</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="173"/>
+        <source>normal</source>
+        <translation>normální</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="166"/>
+        <source>replaced</source>
+        <translation>nahrazeno</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="175"/>
+        <source>conflict</source>
+        <translation>konflikt</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="188"/>
+        <source>external</source>
+        <translation>externí</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="164"/>
+        <source>ignored</source>
+        <translation>ignorováno</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="168"/>
+        <source>unversioned</source>
+        <translation>mimo verzi</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="169"/>
+        <source>missing</source>
+        <translation>chybějící</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="170"/>
+        <source>type error</source>
+        <translation>chyba typu</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="199"/>
+        <source>no</source>
+        <translation>ne</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="198"/>
         <source>yes</source>
         <translation>ano</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="413"/>
         <source>Process Generation Error</source>
         <translation>Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="742"/>
         <source>Commit</source>
         <translation>Commit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="850"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="867"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation>Nezapsané změny nejsou dostupné/vybrané.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="873"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890"/>
         <source>There are no unlocked files available/selected.</source>
         <translation>Odemčené soubory nejsou dostupné/vybrané.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="926"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="943"/>
         <source>There are no locked files available/selected.</source>
         <translation>Zamčené soubory nejsou dostupné/vybrané.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="908"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="925"/>
         <source>Break Lock</source>
         <translation>Prolomit zámek</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="926"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="943"/>
         <source>Steal Lock</source>
         <translation>Scizit zámek</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="90"/>
         <source>Add to repository</source>
         <translation>Přidat do repozitáře</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="96"/>
         <source>Revert changes</source>
         <translation>Vrátit změny</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="765"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="782"/>
         <source>Add</source>
         <translation>Přidat</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="765"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="782"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation>Položky mimo verzi nejsou dostupné/vybrány.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="811"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="828"/>
         <source>Revert</source>
         <translation>Vrátit</translation>
     </message>
@@ -72461,27 +72461,27 @@
         <translation>Seznam změn</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="102"/>
         <source>Add to Changelist</source>
         <translation>Přidat do seznamu změn</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979"/>
         <source>Remove from Changelist</source>
         <translation>Odebrat ze seznamu změn</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="943"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="960"/>
         <source>There are no files available/selected not belonging to a changelist.</source>
         <translation>Nejsou dostupné/vybrány soubory, které nepatří do seznamu změn.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979"/>
         <source>There are no files available/selected belonging to a changelist.</source>
         <translation>Nejsou dostupné/vybrány soubory, které patří do seznamu změn.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="413"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
@@ -72546,42 +72546,42 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="92"/>
         <source>Show differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="96"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="98"/>
         <source>Restore missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="637"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="654"/>
         <source>all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="829"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="846"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="742"/>
         <source>There are no entries selected to be committed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="811"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="828"/>
         <source>There are no missing entries available/selected.</source>
         <translation type="unfinished">Chybějící záznamy nejsou dostupné/vybrány.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="83"/>
-        <source>Select all for commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="85"/>
+        <source>Select all for commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="87"/>
         <source>Deselect all from commit</source>
         <translation type="unfinished"></translation>
     </message>
@@ -72596,17 +72596,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="92"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="94"/>
         <source>Show differences side-by-side</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="857"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="874"/>
         <source>Side-by-Side Diff</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="857"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="874"/>
         <source>Only one file with uncommitted changes must be selected.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -72779,52 +72779,52 @@
         <translation></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="96"/>
         <source>Subversion Branches List</source>
         <translation>Subversion seznam větví</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="127"/>
         <source>Subversion Error</source>
         <translation>Subversion chyba</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="107"/>
         <source>The URL of the project repository could not be retrieved from the working copy. The list operation will be aborted</source>
         <translation>Z pracovní kopie se nepodařilo se získat URL repozitáře. Sestavení seznamu bylo zrušeno</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="127"/>
         <source>The URL of the project repository has an invalid format. The list operation will be aborted</source>
         <translation>URL repozitáře projektu má neplatný formát. Sestavení seznamu bylo zrušeno</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="155"/>
         <source>Subversion List</source>
         <translation>Subversion seznam</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="142"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="144"/>
         <source>Enter the repository URL containing the tags or branches</source>
         <translation>Zadejte URL repozitáře obsahující tagy nebo větve</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="155"/>
         <source>The repository URL is empty. Aborting...</source>
         <translation>URL repozitáře je prázdný. Zrušeno...</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="172"/>
         <source>Process Generation Error</source>
         <translation>Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="160"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="162"/>
         <source>The installed version of PySvn should be 1.4.0 or better.</source>
         <translation>Instalovaná verze PySvn by měla být 1.4.0 nebo vyšší.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="172"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation>
     </message>
@@ -74777,7 +74777,7 @@
         <translation>Stisknout pro zobrazení všech souborů, které obsahují problém</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="397"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="409"/>
         <source>No issues found.</source>
         <translation>Žádné problémy nenalezeny.</translation>
     </message>
@@ -74802,7 +74802,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="288"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="297"/>
         <source>Error: {0}</source>
         <translation type="unfinished">Chyby: {0}</translation>
     </message>
@@ -74812,17 +74812,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="274"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="283"/>
         <source>Preparing files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="98"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="101"/>
         <source>Errors</source>
         <translation type="unfinished">Chyby</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="298"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="307"/>
         <source>Transferring data...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75108,72 +75108,72 @@
 <context>
     <name>TabManagerWidget</name>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="73"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="74"/>
         <source>Tab Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="127"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="128"/>
         <source>Saved Tabs</source>
         <translation type="unfinished">Uložkt taby</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="171"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="172"/>
         <source>Local File System:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="173"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="174"/>
         <source>eric Web Browser:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="175"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="176"/>
         <source> [FTP]:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="314"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="317"/>
         <source>Window {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="315"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="318"/>
         <source>Double click to switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="506"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="509"/>
         <source>Group by</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="507"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="510"/>
         <source>&amp;Window</source>
         <translation type="unfinished">O&amp;kno</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="512"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="515"/>
         <source>&amp;Domain</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="517"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="520"/>
         <source>&amp;Host</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="528"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="531"/>
         <source>&amp;Bookmark checked tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="533"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="536"/>
         <source>&amp;Close checked tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="567"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="570"/>
         <source>Show Tab Manager</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75186,77 +75186,77 @@
         <translation type="obsolete">Zavřít aktuální editor</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="243"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="249"/>
         <source>Move Left</source>
         <translation>Posun doleva</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="246"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="252"/>
         <source>Move Right</source>
         <translation>Posun doprava</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="256"/>
-        <source>Close</source>
-        <translation>Zavřít</translation>
-    </message>
-    <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="262"/>
-        <source>Close All</source>
-        <translation>Zavřít vše</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="265"/>
-        <source>Save</source>
-        <translation>Uložit</translation>
+        <source>Close</source>
+        <translation>Zavřít</translation>
     </message>
     <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="268"/>
-        <source>Save As...</source>
-        <translation>Uložit jako...</translation>
+        <source>Close All</source>
+        <translation>Zavřít vše</translation>
     </message>
     <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="271"/>
+        <source>Save</source>
+        <translation>Uložit</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="274"/>
+        <source>Save As...</source>
+        <translation>Uložit jako...</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="277"/>
         <source>Save All</source>
         <translation>Uložit vše</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="279"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="285"/>
         <source>Print</source>
         <translation>Tisk</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="249"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="255"/>
         <source>Move First</source>
         <translation>Jít na první</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="252"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="258"/>
         <source>Move Last</source>
         <translation>Jít na poslední</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="212"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="216"/>
         <source>Show a navigation menu</source>
         <translation>Zobrazit menu navigace</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="259"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="265"/>
         <source>Close Others</source>
         <translation>Zavřít ostatní</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="437"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="443"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="283"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="289"/>
         <source>Copy Path to Clipboard</source>
         <translation type="unfinished">Kopírovat cestu do schránky</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="275"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="281"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75347,12 +75347,12 @@
 <context>
     <name>Tabview</name>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1002"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1008"/>
         <source>Untitled {0}</source>
         <translation>Beze jména {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1406"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1412"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
@@ -75904,17 +75904,17 @@
 <context>
     <name>TemplateMultipleVariablesDialog</name>
     <message>
-        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="105"/>
+        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="106"/>
         <source>Enter Template Variables</source>
         <translation>Zadejte proměnné šablony</translation>
     </message>
     <message>
-        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="106"/>
-        <source>&amp;OK</source>
-        <translation>&amp;OK</translation>
-    </message>
-    <message>
         <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="107"/>
+        <source>&amp;OK</source>
+        <translation>&amp;OK</translation>
+    </message>
+    <message>
+        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="108"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Zrušit</translation>
     </message>
@@ -76896,12 +76896,12 @@
         <translation>Seznam cest nebo souborů pro provedení překladu formulářů</translation>
     </message>
     <message>
-        <location filename="../Project/TranslationPropertiesDialog.py" line="148"/>
+        <location filename="../Project/TranslationPropertiesDialog.py" line="149"/>
         <source>Exempt file from translation</source>
         <translation>Vyjmout soubor z překladu</translation>
     </message>
     <message>
-        <location filename="../Project/TranslationPropertiesDialog.py" line="161"/>
+        <location filename="../Project/TranslationPropertiesDialog.py" line="162"/>
         <source>Exempt directory from translation</source>
         <translation>Vyjmout adresář z překladu</translation>
     </message>
@@ -78346,97 +78346,97 @@
 <context>
     <name>UMLGraphicsView</name>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="78"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="79"/>
         <source>Delete shapes</source>
         <translation>Smazat tvary</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="111"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="112"/>
         <source>Set size</source>
         <translation>Nastavit velikost</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="121"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="122"/>
         <source>Re-Layout</source>
         <translation>Znovu-Layout</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="208"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="215"/>
         <source>Graphics</source>
         <translation>Grafika</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="357"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="364"/>
         <source>Save Diagram</source>
         <translation>Uložit diagram</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="126"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="127"/>
         <source>Align Left</source>
         <translation>Zarovnat vlevo</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="132"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="134"/>
         <source>Align Center Horizontal</source>
         <translation>Zarovnat vodorovně na střed</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="138"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="141"/>
         <source>Align Right</source>
         <translation>Zarovnat vpravo</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="144"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="148"/>
         <source>Align Top</source>
         <translation>Zarovnat nahoru</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="150"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="155"/>
         <source>Align Center Vertical</source>
         <translation>Zarovnat svisle na střed</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="156"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="162"/>
         <source>Align Bottom</source>
         <translation>Zarovnat dolu</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="330"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="337"/>
         <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source>
         <translation>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="83"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="84"/>
         <source>Increase width by {0} points</source>
         <translation>Zvětšit šířku o {0} body</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="90"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="91"/>
         <source>Increase height by {0} points</source>
         <translation>Zvětšit výšku o {0} body</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="97"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="98"/>
         <source>Decrease width by {0} points</source>
         <translation>Zmenšit šířku o {0} body</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="104"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="105"/>
         <source>Decrease height by {0} points</source>
         <translation>Zmenšit výšku o {0} body</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="357"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="364"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; nelze uložit.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="345"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="352"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; již existuje.&lt;/p&gt;&lt;p&gt;Má se přepsat?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="116"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="117"/>
         <source>Re-Scan</source>
         <translation type="unfinished"></translation>
     </message>
@@ -78520,7 +78520,7 @@
 <context>
     <name>UnittestDialog</name>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="903"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="906"/>
         <source>Unittest</source>
         <translation></translation>
     </message>
@@ -78660,42 +78660,42 @@
         <translation>V běhu</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="96"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="98"/>
         <source>Start</source>
         <translation>Spustit</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="98"/>
-        <source>Start the selected testsuite</source>
-        <translation>Spustit vybranou soupravu testů</translation>
-    </message>
-    <message>
         <location filename="../PyUnit/UnittestDialog.py" line="100"/>
+        <source>Start the selected testsuite</source>
+        <translation>Spustit vybranou soupravu testů</translation>
+    </message>
+    <message>
+        <location filename="../PyUnit/UnittestDialog.py" line="102"/>
         <source>&lt;b&gt;Start Test&lt;/b&gt;&lt;p&gt;This button starts the selected testsuite.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Spustit test&lt;/b&gt;&lt;p&gt;Toto tlačítko spustí vybranou soupravu testů.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="111"/>
-        <source>Stop</source>
-        <translation>Zastavit</translation>
-    </message>
-    <message>
         <location filename="../PyUnit/UnittestDialog.py" line="113"/>
+        <source>Stop</source>
+        <translation>Zastavit</translation>
+    </message>
+    <message>
+        <location filename="../PyUnit/UnittestDialog.py" line="115"/>
         <source>Stop the running unittest</source>
         <translation>Zastaví běžící unittest</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="114"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="116"/>
         <source>&lt;b&gt;Stop Test&lt;/b&gt;&lt;p&gt;This button stops a running unittest.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zastavit test&lt;/b&gt;&lt;p&gt;Toto tlačítko zastaví běžící unittest.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="166"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="168"/>
         <source>^Failure: </source>
         <translation>^Selhalo: </translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="167"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="169"/>
         <source>^Error: </source>
         <translation>^Chyby: </translation>
     </message>
@@ -78705,22 +78705,22 @@
         <translation type="obsolete">Musíte zadat soubor soupravy testu.</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="699"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="702"/>
         <source>Preparing Testsuite</source>
         <translation>Příprava soupravy testu</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="985"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="988"/>
         <source>Running</source>
         <translation>Běží</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1158"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1161"/>
         <source>Show Source</source>
         <translation>Zobrazit zdroj</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="304"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="306"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation>Python soubory (*.py);;Všechny soubory (*)</translation>
     </message>
@@ -78745,12 +78745,12 @@
         <translation type="obsolete">Doběhlo {0} testů za {1:.3f}s</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1029"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1032"/>
         <source>Failure: {0}</source>
         <translation>Selhalo: {0}</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1044"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1047"/>
         <source>Error: {0}</source>
         <translation>Chyby: {0}</translation>
     </message>
@@ -78785,32 +78785,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1059"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1062"/>
         <source>    Skipped: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1077"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1080"/>
         <source>    Expected Failure</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1094"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1097"/>
         <source>    Unexpected Success</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="103"/>
-        <source>Rerun Failed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PyUnit/UnittestDialog.py" line="105"/>
-        <source>Reruns failed tests of the selected testsuite</source>
+        <source>Rerun Failed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PyUnit/UnittestDialog.py" line="107"/>
+        <source>Reruns failed tests of the selected testsuite</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PyUnit/UnittestDialog.py" line="109"/>
         <source>&lt;b&gt;Rerun Failed&lt;/b&gt;&lt;p&gt;This button reruns all failed tests of the selected testsuite.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -78897,17 +78897,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="703"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="706"/>
         <source>Unittest with auto-discovery</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="787"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="790"/>
         <source>You must enter a start directory for auto-discovery.</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../PyUnit/UnittestDialog.py" line="1009"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1012"/>
         <source>Ran %n test(s) in {0:.3f}s</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -78921,27 +78921,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="89"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="91"/>
         <source>Discover</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="91"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="93"/>
         <source>Discover tests</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="382"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="384"/>
         <source>Discovering Tests</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="447"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="449"/>
         <source>&lt;p&gt;Unable to discover tests.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../PyUnit/UnittestDialog.py" line="619"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="622"/>
         <source>Discovered %n Test(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -78950,27 +78950,27 @@
         </translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="624"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="627"/>
         <source>&lt;p&gt;Unable to discover tests.&lt;/p&gt;&lt;p&gt;{0}&lt;br/&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="690"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="693"/>
         <source>You must select auto-discovery or enter a test suite file or a dotted test name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="712"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="715"/>
         <source>&lt;Unnamed Test&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="903"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="906"/>
         <source>&lt;p&gt;Unable to run test &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;br/&gt;{2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="93"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="95"/>
         <source>&lt;b&gt;Discover&lt;/b&gt;&lt;p&gt;This button starts a discovery of available tests.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -78995,12 +78995,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="720"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="723"/>
         <source>No test case has been selected. Shall all test cases be run?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="300"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="302"/>
         <source>Python3 Files ({0});;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -79113,7 +79113,7 @@
 <context>
     <name>UrlBar</name>
     <message>
-        <location filename="../WebBrowser/UrlBar/UrlBar.py" line="454"/>
+        <location filename="../WebBrowser/UrlBar/UrlBar.py" line="465"/>
         <source>Unknown</source>
         <translation type="unfinished">Neznámý</translation>
     </message>
@@ -79287,523 +79287,523 @@
         <translation>Inicializace jednouživatelského aplikačního serveru...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
+        <location filename="../UI/UserInterface.py" line="1754"/>
         <source>Project-Viewer</source>
         <translation>Prohlížeč projektu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
+        <location filename="../UI/UserInterface.py" line="1789"/>
         <source>Debug-Viewer</source>
         <translation>Prohlížeč debugeru</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
         <source>Log-Viewer</source>
         <translation>Prohlížeč logu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1849"/>
+        <location filename="../UI/UserInterface.py" line="1859"/>
         <source>Task-Viewer</source>
         <translation>Prohlížeč úloh</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
+        <location filename="../UI/UserInterface.py" line="1878"/>
         <source>Template-Viewer</source>
         <translation>Prohlížeč šablon</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>Shell</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
+        <location filename="../UI/UserInterface.py" line="1824"/>
         <source>File-Browser</source>
         <translation>Browser souborů</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
+        <location filename="../UI/UserInterface.py" line="1642"/>
         <source>Quit</source>
         <translation>Konec</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
+        <location filename="../UI/UserInterface.py" line="1642"/>
         <source>&amp;Quit</source>
         <translation>&amp;Konec</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
+        <location filename="../UI/UserInterface.py" line="1642"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1638"/>
+        <location filename="../UI/UserInterface.py" line="1648"/>
         <source>Quit the IDE</source>
         <translation>Ukončit IDE</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1639"/>
+        <location filename="../UI/UserInterface.py" line="1649"/>
         <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ukončit IDE&lt;/b&gt;&lt;p&gt;Ukončí se IDE. Nejdříve by se měly uložit neuložené změny. Python programy běžící v debug procesu budou ukončeny a nastavení budou uložena.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1710"/>
+        <location filename="../UI/UserInterface.py" line="1720"/>
         <source>Edit Profile</source>
         <translation>Editační profil</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1716"/>
+        <location filename="../UI/UserInterface.py" line="1726"/>
         <source>Activate the edit view profile</source>
         <translation>Aktivovat profil editace</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1718"/>
+        <location filename="../UI/UserInterface.py" line="1728"/>
         <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Editační profil&lt;/b&gt;&lt;p&gt;Aktivování skupiny &apos;Editační profil&apos;. Okna, která se v tomto profilu zobrazí lze nastavit v dialogu &apos;Konfigurace profilu pohledů&apos;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1727"/>
+        <location filename="../UI/UserInterface.py" line="1737"/>
         <source>Debug Profile</source>
         <translation>Debugovací profil</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1733"/>
+        <location filename="../UI/UserInterface.py" line="1743"/>
         <source>Activate the debug view profile</source>
         <translation>Aktivovat debugovací profil</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1735"/>
+        <location filename="../UI/UserInterface.py" line="1745"/>
         <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Debugovací profil&lt;/b&gt;&lt;p&gt;Aktivování skupiny &apos;Debugovací profil&apos;. Okna, která se v tomto profilu zobrazí lze nastavit v dialogu &apos;Konfigurace profilu pohledů&apos;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
+        <location filename="../UI/UserInterface.py" line="1754"/>
         <source>&amp;Project-Viewer</source>
         <translation>Prohlížeč &amp;projektu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
+        <location filename="../UI/UserInterface.py" line="1754"/>
         <source>Alt+Shift+P</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
+        <location filename="../UI/UserInterface.py" line="1789"/>
         <source>Alt+Shift+D</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>&amp;Shell</source>
         <translation>&amp;Shell</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>Alt+Shift+S</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
+        <location filename="../UI/UserInterface.py" line="1824"/>
         <source>Alt+Shift+F</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
         <source>Alt+Shift+G</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1849"/>
+        <location filename="../UI/UserInterface.py" line="1859"/>
         <source>Alt+Shift+T</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
+        <location filename="../UI/UserInterface.py" line="1771"/>
         <source>Alt+Shift+M</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>What&apos;s This?</source>
         <translation>Co je to?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Co je to?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>Shift+F1</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2122"/>
+        <location filename="../UI/UserInterface.py" line="2132"/>
         <source>Context sensitive help</source>
         <translation>Kontextově senzitivní nápověda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2123"/>
+        <location filename="../UI/UserInterface.py" line="2133"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zobrazit kontextově senzitivní nápovědu&lt;/b&gt;&lt;p&gt;V režimu &quot;Co je to?&quot; se nad různými prvky aplikace u kurzoru zobrazí otazník. Když pak kliknete na tyto prvky, zobrazí se krátký popis co daný prvek znamená a jak jej použít. V dialogových oknech se tato funkce spustí tlačítkem kontextové nápovědy na horní liště.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>Helpviewer</source>
         <translation>Prohlížeč nápovědy</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>&amp;Helpviewer...</source>
         <translation>Pro&amp;hlížeč nápovědy...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>F1</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2140"/>
+        <location filename="../UI/UserInterface.py" line="2150"/>
         <source>Open the helpviewer window</source>
         <translation>Otevřít okno prohlížeče nápovědy</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2160"/>
+        <location filename="../UI/UserInterface.py" line="2170"/>
         <source>Show Versions</source>
         <translation>Zobrazit verze</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2160"/>
+        <location filename="../UI/UserInterface.py" line="2170"/>
         <source>Show &amp;Versions</source>
         <translation>Zobrazit &amp;verze</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2164"/>
+        <location filename="../UI/UserInterface.py" line="2174"/>
         <source>Display version information</source>
         <translation>Zobrazit informace o verzích</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2166"/>
-        <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Zobrazit verze&lt;/b&gt;&lt;p&gt;Zobrazí informace o verzích.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2176"/>
+        <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Zobrazit verze&lt;/b&gt;&lt;p&gt;Zobrazí informace o verzích.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2186"/>
         <source>Check for Updates</source>
         <translation>Zjistit aktualizace</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2173"/>
+        <location filename="../UI/UserInterface.py" line="2183"/>
         <source>Check for &amp;Updates...</source>
         <translation>Zjistit akt&amp;ualizace...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3818"/>
+        <location filename="../UI/UserInterface.py" line="3828"/>
         <source>Report Bug</source>
         <translation>Reportovat Bugy</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2225"/>
+        <location filename="../UI/UserInterface.py" line="2235"/>
         <source>Report &amp;Bug...</source>
         <translation>Reportovat &amp;Bugy...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2229"/>
+        <location filename="../UI/UserInterface.py" line="2239"/>
         <source>Report a bug</source>
         <translation>Reportovat bug</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2230"/>
+        <location filename="../UI/UserInterface.py" line="2240"/>
         <source>&lt;b&gt;Report Bug...&lt;/b&gt;&lt;p&gt;Opens a dialog to report a bug.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Reportovat bug...&lt;/b&gt;&lt;p&gt;Otevře se dialog pro reportování bugu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3361"/>
+        <location filename="../UI/UserInterface.py" line="3371"/>
         <source>Unittest</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2252"/>
+        <location filename="../UI/UserInterface.py" line="2262"/>
         <source>&amp;Unittest...</source>
         <translation>&amp;Unittest...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2257"/>
+        <location filename="../UI/UserInterface.py" line="2267"/>
         <source>Start unittest dialog</source>
         <translation>Otevřít dialog unittestu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2258"/>
+        <location filename="../UI/UserInterface.py" line="2268"/>
         <source>&lt;b&gt;Unittest&lt;/b&gt;&lt;p&gt;Perform unit tests. The dialog gives you the ability to select and run a unittest suite.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Unittest&lt;/b&gt;&lt;p&gt;Provést unittesty. V dialogovém okně se nastaví který test se má provést.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2266"/>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>Unittest Restart</source>
         <translation>Restart unittestu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2266"/>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>&amp;Restart Unittest...</source>
         <translation>&amp;Restart unittestu...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2271"/>
+        <location filename="../UI/UserInterface.py" line="2281"/>
         <source>Restart last unittest</source>
         <translation>Restart posledního unittestu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2272"/>
+        <location filename="../UI/UserInterface.py" line="2282"/>
         <source>&lt;b&gt;Restart Unittest&lt;/b&gt;&lt;p&gt;Restart the unittest performed last.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Restart unittestu&lt;/b&gt;&lt;p&gt;Restartuje se poslední provedený unittest.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2296"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Unittest Script</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2296"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Unittest &amp;Script...</source>
         <translation>Unittest &amp;Script...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2301"/>
-        <source>Run unittest with current script</source>
-        <translation>Spustit unittest s aktuálním skriptem</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2303"/>
-        <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Spustit unittest s aktuálním skriptem.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2311"/>
-        <source>Unittest Project</source>
-        <translation>Unittest Projekt</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2311"/>
+        <source>Run unittest with current script</source>
+        <translation>Spustit unittest s aktuálním skriptem</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2313"/>
+        <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Spustit unittest s aktuálním skriptem.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2321"/>
+        <source>Unittest Project</source>
+        <translation>Unittest Projekt</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2321"/>
         <source>Unittest &amp;Project...</source>
         <translation>Unittest &amp;Projekt...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2316"/>
+        <location filename="../UI/UserInterface.py" line="2326"/>
         <source>Run unittest with current project</source>
         <translation>Spustit unittest s aktuálním projektem</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2318"/>
+        <location filename="../UI/UserInterface.py" line="2328"/>
         <source>&lt;b&gt;Unittest Project&lt;/b&gt;&lt;p&gt;Run unittest with current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Unittest projekt&lt;/b&gt;&lt;p&gt;Spustit unittest s aktuálním projektem.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2379"/>
+        <location filename="../UI/UserInterface.py" line="2389"/>
         <source>UI Previewer</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2379"/>
+        <location filename="../UI/UserInterface.py" line="2389"/>
         <source>&amp;UI Previewer...</source>
         <translation>&amp;UI Previewer...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2384"/>
+        <location filename="../UI/UserInterface.py" line="2394"/>
         <source>Start the UI Previewer</source>
         <translation>Spustit UI Previewer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2385"/>
+        <location filename="../UI/UserInterface.py" line="2395"/>
         <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
         <translation>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Spustit UI Previewer.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2392"/>
+        <location filename="../UI/UserInterface.py" line="2402"/>
         <source>Translations Previewer</source>
         <translation>Náhled překladů</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2392"/>
+        <location filename="../UI/UserInterface.py" line="2402"/>
         <source>&amp;Translations Previewer...</source>
         <translation>Náhled &amp;překladů...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2397"/>
+        <location filename="../UI/UserInterface.py" line="2407"/>
         <source>Start the Translations Previewer</source>
         <translation>Spustit Previewer překladů</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2399"/>
+        <location filename="../UI/UserInterface.py" line="2409"/>
         <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Previewer překladů&lt;/b&gt;&lt;p&gt;Spustit Previewer překladů.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2406"/>
+        <location filename="../UI/UserInterface.py" line="2416"/>
         <source>Compare Files</source>
         <translation>Porovnat soubory</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2406"/>
+        <location filename="../UI/UserInterface.py" line="2416"/>
         <source>&amp;Compare Files...</source>
         <translation>&amp;Porovnat soubory...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2424"/>
+        <location filename="../UI/UserInterface.py" line="2434"/>
         <source>Compare two files</source>
         <translation>Porovnat dva soubory</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2412"/>
+        <location filename="../UI/UserInterface.py" line="2422"/>
         <source>&lt;b&gt;Compare Files&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Porovnat soubory&lt;/b&gt;&lt;p&gt;Otevře dialog pro porovnání dvou souborů.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2419"/>
+        <location filename="../UI/UserInterface.py" line="2429"/>
         <source>Compare Files side by side</source>
         <translation>Porovnat soubory stranu proti straně</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2425"/>
+        <location filename="../UI/UserInterface.py" line="2435"/>
         <source>&lt;b&gt;Compare Files side by side&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files and show the result side by side.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Porovnat soubory stranu proti straně&lt;/b&gt;&lt;p&gt;Otevře dialog pro porovnání souborů a zobrazení rozdílů strany proti straně.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2517"/>
+        <location filename="../UI/UserInterface.py" line="2527"/>
         <source>Preferences</source>
         <translation>Nastavení</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2517"/>
+        <location filename="../UI/UserInterface.py" line="2527"/>
         <source>&amp;Preferences...</source>
         <translation>Na&amp;stavení...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2522"/>
+        <location filename="../UI/UserInterface.py" line="2532"/>
         <source>Set the prefered configuration</source>
         <translation>Nastavení konfigurace</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2524"/>
+        <location filename="../UI/UserInterface.py" line="2534"/>
         <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nastavení&lt;/b&gt;&lt;p&gt;Upravit konfiguraci aplikace podle požadavků uživatele.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2561"/>
+        <location filename="../UI/UserInterface.py" line="2571"/>
         <source>Reload APIs</source>
         <translation>Obnovit API</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2561"/>
+        <location filename="../UI/UserInterface.py" line="2571"/>
         <source>Reload &amp;APIs</source>
         <translation>Obnovit &amp;API</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2565"/>
+        <location filename="../UI/UserInterface.py" line="2575"/>
         <source>Reload the API information</source>
         <translation>Obnovit API nastavení</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2567"/>
+        <location filename="../UI/UserInterface.py" line="2577"/>
         <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Obnovit API&lt;/b&gt;&lt;p&gt;Obnovit API nastavení.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2590"/>
+        <location filename="../UI/UserInterface.py" line="2600"/>
         <source>View Profiles</source>
         <translation>Profily pohledů</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2590"/>
+        <location filename="../UI/UserInterface.py" line="2600"/>
         <source>&amp;View Profiles...</source>
         <translation>Profily &amp;pohledů...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2595"/>
+        <location filename="../UI/UserInterface.py" line="2605"/>
         <source>Configure view profiles</source>
         <translation>Konfigurace profilů pohledů</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2597"/>
+        <location filename="../UI/UserInterface.py" line="2607"/>
         <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Profily pohledů&lt;/b&gt;&lt;p&gt;Konfigurace profilu pohledů. V tomto dialogu můžete nastavit zobrazování různých typů pohledů - editačních oken.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2622"/>
+        <location filename="../UI/UserInterface.py" line="2632"/>
         <source>Keyboard Shortcuts</source>
         <translation>Klávesové zkratky</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2622"/>
+        <location filename="../UI/UserInterface.py" line="2632"/>
         <source>Keyboard &amp;Shortcuts...</source>
         <translation>Klávesové &amp;zkratky...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2627"/>
-        <source>Set the keyboard shortcuts</source>
-        <translation>Nastavení klávesových zkratek</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2629"/>
-        <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Klávesové zkratky&lt;/b&gt;&lt;p&gt;Nastavení klávesových zkratek aplikace podle zvyklostí uživatele.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6313"/>
-        <source>Export Keyboard Shortcuts</source>
-        <translation>Exportovat klávesové zkratky</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2637"/>
+        <source>Set the keyboard shortcuts</source>
+        <translation>Nastavení klávesových zkratek</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2639"/>
+        <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Klávesové zkratky&lt;/b&gt;&lt;p&gt;Nastavení klávesových zkratek aplikace podle zvyklostí uživatele.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6333"/>
+        <source>Export Keyboard Shortcuts</source>
+        <translation>Exportovat klávesové zkratky</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2647"/>
         <source>&amp;Export Keyboard Shortcuts...</source>
         <translation>&amp;Exportovat klávesové zkratky...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2642"/>
+        <location filename="../UI/UserInterface.py" line="2652"/>
         <source>Export the keyboard shortcuts</source>
         <translation>Export klávesových zkratek</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2644"/>
+        <location filename="../UI/UserInterface.py" line="2654"/>
         <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Export klávesových zkratek&lt;/b&gt;&lt;p&gt;Exportují se klávesové zkratky z aplikace.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6329"/>
+        <location filename="../UI/UserInterface.py" line="6349"/>
         <source>Import Keyboard Shortcuts</source>
         <translation>Import klávesových zkratek</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2651"/>
+        <location filename="../UI/UserInterface.py" line="2661"/>
         <source>&amp;Import Keyboard Shortcuts...</source>
         <translation>&amp;Import klávesových zkratek...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2656"/>
+        <location filename="../UI/UserInterface.py" line="2666"/>
         <source>Import the keyboard shortcuts</source>
         <translation>Import klávesových zkratek</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2658"/>
+        <location filename="../UI/UserInterface.py" line="2668"/>
         <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Import klávesových zkratek&lt;/b&gt;&lt;p&gt;Do aplikace se importují klávesové zkratky.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2716"/>
-        <source>Activate current editor</source>
-        <translation>Aktivovat aktuální editor</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2716"/>
-        <source>Alt+Shift+E</source>
-        <translation></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2726"/>
+        <source>Activate current editor</source>
+        <translation>Aktivovat aktuální editor</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2726"/>
+        <source>Alt+Shift+E</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2736"/>
         <source>Ctrl+Alt+Tab</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2735"/>
+        <location filename="../UI/UserInterface.py" line="2745"/>
         <source>Shift+Ctrl+Alt+Tab</source>
         <translation></translation>
     </message>
@@ -79833,7 +79833,7 @@
         <translation type="obsolete">Otevřít PyQt4 dokumentaci</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2949"/>
+        <location filename="../UI/UserInterface.py" line="2959"/>
         <source>Eric API Documentation</source>
         <translation>Eric API dokumentace</translation>
     </message>
@@ -79843,62 +79843,62 @@
         <translation type="obsolete">&amp;Eric API dokumentace</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2953"/>
+        <location filename="../UI/UserInterface.py" line="2963"/>
         <source>Open Eric API Documentation</source>
         <translation>Otevřít Eric API dokumentaci</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3154"/>
+        <location filename="../UI/UserInterface.py" line="3164"/>
         <source>&amp;Unittest</source>
         <translation>&amp;Unittest</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3098"/>
+        <location filename="../UI/UserInterface.py" line="3108"/>
         <source>E&amp;xtras</source>
         <translation>E&amp;xtra funkce</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3171"/>
+        <location filename="../UI/UserInterface.py" line="3181"/>
         <source>Select Tool Group</source>
         <translation>Vybrat skupinu nástrojů</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3182"/>
+        <location filename="../UI/UserInterface.py" line="3192"/>
         <source>Se&amp;ttings</source>
         <translation>Nas&amp;tavení</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3212"/>
+        <location filename="../UI/UserInterface.py" line="3222"/>
         <source>&amp;Window</source>
         <translation>O&amp;kno</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3273"/>
+        <location filename="../UI/UserInterface.py" line="3283"/>
         <source>&amp;Toolbars</source>
         <translation>&amp;Toolbary</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3287"/>
+        <location filename="../UI/UserInterface.py" line="3297"/>
         <source>&amp;Help</source>
         <translation>&amp;Nápověda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3360"/>
+        <location filename="../UI/UserInterface.py" line="3370"/>
         <source>Tools</source>
         <translation>Nástroje</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3362"/>
+        <location filename="../UI/UserInterface.py" line="3372"/>
         <source>Settings</source>
         <translation>Nastavení</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5220"/>
+        <location filename="../UI/UserInterface.py" line="5237"/>
         <source>Help</source>
         <translation>Nápověda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3364"/>
+        <location filename="../UI/UserInterface.py" line="3374"/>
         <source>Profiles</source>
         <translation>Profily</translation>
     </message>
@@ -79908,27 +79908,27 @@
         <translation type="obsolete">&lt;h3&gt;Čísla verzí&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7279"/>
+        <location filename="../UI/UserInterface.py" line="7300"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3818"/>
+        <location filename="../UI/UserInterface.py" line="3828"/>
         <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
         <translation>Emailová adresa nebo mail server adresa jsou prázdné. Prosím, nastavte váš email v dialogovém okně Nastavení.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4219"/>
+        <location filename="../UI/UserInterface.py" line="4229"/>
         <source>Configure Tool Groups ...</source>
         <translation>Konfigurace Skupin nástrojů...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4223"/>
+        <location filename="../UI/UserInterface.py" line="4233"/>
         <source>Configure current Tool Group ...</source>
         <translation>Konfigurace aktuální skupiny nástrojů...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4174"/>
+        <location filename="../UI/UserInterface.py" line="4184"/>
         <source>&amp;Builtin Tools</source>
         <translation>&amp;Vestavěné nástroje</translation>
     </message>
@@ -79938,32 +79938,32 @@
         <translation type="obsolete">V aktuálním projektu není definován hlavní skript. Zrušeno</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5348"/>
+        <location filename="../UI/UserInterface.py" line="5365"/>
         <source>Problem</source>
         <translation>Problém</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5543"/>
+        <location filename="../UI/UserInterface.py" line="5560"/>
         <source>Process Generation Error</source>
         <translation>Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5220"/>
+        <location filename="../UI/UserInterface.py" line="5237"/>
         <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
         <translation>Aktuálně není vybrán žádný prohlížeč. Prosím otevřete Nastavení a nějaký vyberte.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5254"/>
+        <location filename="../UI/UserInterface.py" line="5271"/>
         <source>&lt;p&gt;Could not start the help viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Nemohu spustit prohlížeč nápovědy.&lt;br&gt;Ověřte jestli je dostupný jako &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="5900"/>
+        <source>Documentation Missing</source>
+        <translation>Dokumentace chybí</translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="5883"/>
-        <source>Documentation Missing</source>
-        <translation>Dokumentace chybí</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5866"/>
         <source>Documentation</source>
         <translation>Dokumentace</translation>
     </message>
@@ -79983,42 +79983,42 @@
         <translation type="obsolete">Načíst úlohy</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6897"/>
+        <location filename="../UI/UserInterface.py" line="6917"/>
         <source>Drop Error</source>
         <translation>Zahodit chybu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7240"/>
+        <location filename="../UI/UserInterface.py" line="7261"/>
         <source>Error during updates check</source>
         <translation>Chyba během zjišťování aktualizací</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7221"/>
+        <location filename="../UI/UserInterface.py" line="7242"/>
         <source>Update available</source>
         <translation>Byla nalezena aktualizace</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2579"/>
+        <location filename="../UI/UserInterface.py" line="2589"/>
         <source>Show external tools</source>
         <translation>Zobrazit externí nástroje</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2574"/>
+        <location filename="../UI/UserInterface.py" line="2584"/>
         <source>Show external &amp;tools</source>
         <translation>Zobrazit externí nás&amp;troje</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7240"/>
+        <location filename="../UI/UserInterface.py" line="7261"/>
         <source>Could not perform updates check.</source>
         <translation>Kontrolu updatů nelze provést.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7062"/>
+        <location filename="../UI/UserInterface.py" line="7082"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Zrušit</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7316"/>
+        <location filename="../UI/UserInterface.py" line="7337"/>
         <source>First time usage</source>
         <translation>Spuštěno poprvé</translation>
     </message>
@@ -80028,62 +80028,62 @@
         <translation>Inicializace Plugin manažera...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3135"/>
+        <location filename="../UI/UserInterface.py" line="3145"/>
         <source>P&amp;lugins</source>
         <translation>P&amp;luginy</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3365"/>
+        <location filename="../UI/UserInterface.py" line="3375"/>
         <source>Plugins</source>
         <translation>Pluginy</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2753"/>
+        <location filename="../UI/UserInterface.py" line="2763"/>
         <source>Plugin Infos</source>
         <translation>Plugin Infa</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2757"/>
+        <location filename="../UI/UserInterface.py" line="2767"/>
         <source>Show Plugin Infos</source>
         <translation>Zobrazit Plugin infa</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2758"/>
+        <location filename="../UI/UserInterface.py" line="2768"/>
         <source>&lt;b&gt;Plugin Infos...&lt;/b&gt;&lt;p&gt;This opens a dialog, that show some information about loaded plugins.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Plugin Infa&lt;/b&gt;&lt;p&gt;Otevře dialog, který zobrazí informace o načtených pluginech.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2753"/>
+        <location filename="../UI/UserInterface.py" line="2763"/>
         <source>&amp;Plugin Infos...</source>
         <translation>&amp;Plugin Infa...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4191"/>
+        <location filename="../UI/UserInterface.py" line="4201"/>
         <source>&amp;Plugin Tools</source>
         <translation>&amp;Plugin nástroje</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2784"/>
+        <location filename="../UI/UserInterface.py" line="2794"/>
         <source>Uninstall Plugin</source>
         <translation>Odinstalovat plugin</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2779"/>
+        <location filename="../UI/UserInterface.py" line="2789"/>
         <source>&amp;Uninstall Plugin...</source>
         <translation>&amp;Odinstalovat plugin...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2785"/>
+        <location filename="../UI/UserInterface.py" line="2795"/>
         <source>&lt;b&gt;Uninstall Plugin...&lt;/b&gt;&lt;p&gt;This opens a dialog to uninstall a plugin.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Odinstalovat plugin...&lt;/b&gt;&lt;p&gt;Otevře dialog pro odinstalaci pluginu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4340"/>
+        <location filename="../UI/UserInterface.py" line="4350"/>
         <source>&amp;Show all</source>
         <translation>&amp;Zobrazit vše</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4342"/>
+        <location filename="../UI/UserInterface.py" line="4352"/>
         <source>&amp;Hide all</source>
         <translation>&amp;Skrýt vše</translation>
     </message>
@@ -80093,97 +80093,97 @@
         <translation>Aktivace pluginů...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3108"/>
+        <location filename="../UI/UserInterface.py" line="3118"/>
         <source>Wi&amp;zards</source>
         <translation>&amp;Průvodci</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2184"/>
+        <location filename="../UI/UserInterface.py" line="2194"/>
         <source>Show downloadable versions</source>
         <translation>Zobrazit verze ke stažení</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2184"/>
+        <location filename="../UI/UserInterface.py" line="2194"/>
         <source>Show &amp;downloadable versions...</source>
         <translation>Zobrazit verze pro &amp;download...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2188"/>
+        <location filename="../UI/UserInterface.py" line="2198"/>
         <source>Show the versions available for download</source>
         <translation>Zobrazit dostupné verze ke stažení</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7264"/>
+        <location filename="../UI/UserInterface.py" line="7285"/>
         <source>&lt;h3&gt;Available versions&lt;/h3&gt;&lt;table&gt;</source>
         <translation>&lt;h3&gt;Dostupné verze&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2792"/>
+        <location filename="../UI/UserInterface.py" line="2802"/>
         <source>Plugin Repository</source>
         <translation>Repozitář pluginů</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2792"/>
+        <location filename="../UI/UserInterface.py" line="2802"/>
         <source>Plugin &amp;Repository...</source>
         <translation>&amp;Repozitář pluginů...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2797"/>
+        <location filename="../UI/UserInterface.py" line="2807"/>
         <source>Show Plugins available for download</source>
         <translation>Zobrazit pluginy dostupné ke stažení</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2799"/>
+        <location filename="../UI/UserInterface.py" line="2809"/>
         <source>&lt;b&gt;Plugin Repository...&lt;/b&gt;&lt;p&gt;This opens a dialog, that shows a list of plugins available on the Internet.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Repozitář pluginů...&lt;/b&gt;&lt;p&gt;Otevře se dialog, který zobrazí seznam pluginů dostupných ke stažení přes internet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2771"/>
+        <location filename="../UI/UserInterface.py" line="2781"/>
         <source>Install Plugins</source>
         <translation>Instalovat pluginy</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2766"/>
+        <location filename="../UI/UserInterface.py" line="2776"/>
         <source>&amp;Install Plugins...</source>
         <translation>&amp;Instalovat pluginy...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2772"/>
+        <location filename="../UI/UserInterface.py" line="2782"/>
         <source>&lt;b&gt;Install Plugins...&lt;/b&gt;&lt;p&gt;This opens a dialog to install or update plugins.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Instalovat pluginy...&lt;/b&gt;&lt;p&gt;Otevře dialog pro instalaci nebo aktualizaci pluginů.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2451"/>
+        <location filename="../UI/UserInterface.py" line="2461"/>
         <source>Mini Editor</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2446"/>
+        <location filename="../UI/UserInterface.py" line="2456"/>
         <source>Mini &amp;Editor...</source>
         <translation>Mini &amp;Editor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2452"/>
+        <location filename="../UI/UserInterface.py" line="2462"/>
         <source>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Open a dialog with a simplified editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mini editor&lt;/b&gt;&lt;p&gt;Otevře se okno s jednoduchým editorem&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2607"/>
+        <location filename="../UI/UserInterface.py" line="2617"/>
         <source>Toolbars</source>
         <translation>Lišty nástrojů</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2607"/>
+        <location filename="../UI/UserInterface.py" line="2617"/>
         <source>Tool&amp;bars...</source>
         <translation>&amp;Lišty nástrojů...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2612"/>
+        <location filename="../UI/UserInterface.py" line="2622"/>
         <source>Configure toolbars</source>
         <translation>Konfigurace lišt nástrojů</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2613"/>
+        <location filename="../UI/UserInterface.py" line="2623"/>
         <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Listy nástrojů&lt;/b&gt;&lt;p&gt;Konfigurace lišt nástrojů. S tímto dialogem můžete změnit akce zobrazené v různých nástrojových lištách nebo definovat své vlastní nástrojové lišty.&lt;/p&gt;</translation>
     </message>
@@ -80193,252 +80193,252 @@
         <translation>Obnovit manažer nástrojových lišt...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5488"/>
+        <location filename="../UI/UserInterface.py" line="5505"/>
         <source>External Tools</source>
         <translation>Externí nástroje</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
+        <location filename="../UI/UserInterface.py" line="1771"/>
         <source>Multiproject-Viewer</source>
         <translation>Prohlížeč multiprojektu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
+        <location filename="../UI/UserInterface.py" line="1771"/>
         <source>&amp;Multiproject-Viewer</source>
         <translation>Prohlížeč &amp;multiprojektu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1669"/>
+        <location filename="../UI/UserInterface.py" line="1679"/>
         <source>Save session</source>
         <translation>Uložit relaci</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6611"/>
+        <location filename="../UI/UserInterface.py" line="6631"/>
         <source>Read session</source>
         <translation>Načíst relaci</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3537"/>
+        <location filename="../UI/UserInterface.py" line="3547"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Tato část status baru zobrazuje aktuální kódování editorů.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3551"/>
+        <location filename="../UI/UserInterface.py" line="3561"/>
         <source>&lt;p&gt;This part of the status bar displays an indication of the current editors files writability.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Tato část status baru zobrazuje indikátor práva zápisu editoru do souboru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
+        <location filename="../UI/UserInterface.py" line="2247"/>
         <source>Request Feature</source>
         <translation>Požadavek na vlastnost</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
+        <location filename="../UI/UserInterface.py" line="2247"/>
         <source>Request &amp;Feature...</source>
         <translation>&amp;Požadavek na vlastnost...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2241"/>
+        <location filename="../UI/UserInterface.py" line="2251"/>
         <source>Send a feature request</source>
         <translation>Poslat požadavek na vlastnost</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2243"/>
+        <location filename="../UI/UserInterface.py" line="2253"/>
         <source>&lt;b&gt;Request Feature...&lt;/b&gt;&lt;p&gt;Opens a dialog to send a feature request.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Požadavek na vlastnost...&lt;/b&gt;&lt;p&gt;Otevře dialog pro odeslání požadavku.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3530"/>
+        <location filename="../UI/UserInterface.py" line="3540"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Tato část status baru zobrazuje aktuální jazyk editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3558"/>
+        <location filename="../UI/UserInterface.py" line="3568"/>
         <source>&lt;p&gt;This part of the status bar displays the line number of the current editor.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Tato část status baru zobrazuje číslo řádku v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3565"/>
+        <location filename="../UI/UserInterface.py" line="3575"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position of the current editor.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Tato část status baru zobrazuje pozici kurzoru v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1911"/>
+        <location filename="../UI/UserInterface.py" line="1921"/>
         <source>Horizontal Toolbox</source>
         <translation>Vodorovná nástrojová lišta</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1911"/>
+        <location filename="../UI/UserInterface.py" line="1921"/>
         <source>&amp;Horizontal Toolbox</source>
         <translation>&amp;Horizontální lista nástrojů</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1915"/>
-        <source>Toggle the Horizontal Toolbox window</source>
-        <translation>Přepnout na vodorovnou lištu nástrojů</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1917"/>
-        <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Přepnout vodorovnou nástrojovou lištu&lt;/b&gt;&lt;p&gt;Pokud je vodorovná nástrojová lišta skryta, tak se zobrazí. Je-li zobrazena, skryje se.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4138"/>
-        <source>Restart application</source>
-        <translation>Restartovat aplikaci</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4138"/>
-        <source>The application needs to be restarted. Do it now?</source>
-        <translation>Aplikace potřebuje restartovat. Má se provést nyní?</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
-        <source>Alt+Shift+A</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3144"/>
-        <source>Configure...</source>
-        <translation>Konfigurovat...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3544"/>
-        <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Tato část status baru zobrazuje eol nastavení v aktuálním editoru.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2744"/>
-        <source>Switch between tabs</source>
-        <translation>Přepnout mezi taby</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2744"/>
-        <source>Ctrl+1</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2533"/>
-        <source>Export Preferences</source>
-        <translation>Exportovat předvolby</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2533"/>
-        <source>E&amp;xport Preferences...</source>
-        <translation>E&amp;xportovat předvolby...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2538"/>
-        <source>Export the current configuration</source>
-        <translation>Export aktuální konfigurace</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2540"/>
-        <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Export předvoleb&lt;/b&gt;&lt;p&gt;Export aktuální konfigurace do souboru.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2547"/>
-        <source>Import Preferences</source>
-        <translation>Import předvoleb</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2547"/>
-        <source>I&amp;mport Preferences...</source>
-        <translation>I&amp;mport předvoleb...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2552"/>
-        <source>Import a previously exported configuration</source>
-        <translation>Import dříve exportované konfigurace</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2554"/>
-        <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Import předvoleb&lt;/b&gt;&lt;p&gt;Import dříve exportované konfigurace.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2726"/>
-        <source>Show next</source>
-        <translation>Zobrazit další</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2735"/>
-        <source>Show previous</source>
-        <translation>Zobrazit předchozí</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1925"/>
+        <source>Toggle the Horizontal Toolbox window</source>
+        <translation>Přepnout na vodorovnou lištu nástrojů</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1927"/>
+        <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Přepnout vodorovnou nástrojovou lištu&lt;/b&gt;&lt;p&gt;Pokud je vodorovná nástrojová lišta skryta, tak se zobrazí. Je-li zobrazena, skryje se.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4148"/>
+        <source>Restart application</source>
+        <translation>Restartovat aplikaci</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4148"/>
+        <source>The application needs to be restarted. Do it now?</source>
+        <translation>Aplikace potřebuje restartovat. Má se provést nyní?</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1878"/>
+        <source>Alt+Shift+A</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3154"/>
+        <source>Configure...</source>
+        <translation>Konfigurovat...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3554"/>
+        <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Tato část status baru zobrazuje eol nastavení v aktuálním editoru.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2754"/>
+        <source>Switch between tabs</source>
+        <translation>Přepnout mezi taby</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2754"/>
+        <source>Ctrl+1</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2543"/>
+        <source>Export Preferences</source>
+        <translation>Exportovat předvolby</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2543"/>
+        <source>E&amp;xport Preferences...</source>
+        <translation>E&amp;xportovat předvolby...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2548"/>
+        <source>Export the current configuration</source>
+        <translation>Export aktuální konfigurace</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2550"/>
+        <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Export předvoleb&lt;/b&gt;&lt;p&gt;Export aktuální konfigurace do souboru.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2557"/>
+        <source>Import Preferences</source>
+        <translation>Import předvoleb</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2557"/>
+        <source>I&amp;mport Preferences...</source>
+        <translation>I&amp;mport předvoleb...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2562"/>
+        <source>Import a previously exported configuration</source>
+        <translation>Import dříve exportované konfigurace</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2564"/>
+        <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Import předvoleb&lt;/b&gt;&lt;p&gt;Import dříve exportované konfigurace.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2736"/>
+        <source>Show next</source>
+        <translation>Zobrazit další</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2745"/>
+        <source>Show previous</source>
+        <translation>Zobrazit předchozí</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <source>Left Sidebar</source>
         <translation>Levé menu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1925"/>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <source>&amp;Left Sidebar</source>
         <translation>&amp;Levé menu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1929"/>
+        <location filename="../UI/UserInterface.py" line="1939"/>
         <source>Toggle the left sidebar window</source>
         <translation>Přepnout okno levého menu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1930"/>
+        <location filename="../UI/UserInterface.py" line="1940"/>
         <source>&lt;b&gt;Toggle the left sidebar window&lt;/b&gt;&lt;p&gt;If the left sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Přepnout okno levého menu&lt;/b&gt;&lt;p&gt;Je-li okno levého menu skryto, tak se zobrazí. Je-li zobrazeno, skryje se.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1952"/>
+        <location filename="../UI/UserInterface.py" line="1962"/>
         <source>Bottom Sidebar</source>
         <translation>Dolní menu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1952"/>
+        <location filename="../UI/UserInterface.py" line="1962"/>
         <source>&amp;Bottom Sidebar</source>
         <translation>&amp;Dolní menu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1956"/>
+        <location filename="../UI/UserInterface.py" line="1966"/>
         <source>Toggle the bottom sidebar window</source>
         <translation>Přepnout okno dolního menu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1958"/>
+        <location filename="../UI/UserInterface.py" line="1968"/>
         <source>&lt;b&gt;Toggle the bottom sidebar window&lt;/b&gt;&lt;p&gt;If the bottom sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Přepnout okno dolního menu&lt;/b&gt;&lt;p&gt;Je-li okno dolního menu skryto, tak se zobrazí. Je-li zobrazeno, skryje se.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
+        <location filename="../UI/UserInterface.py" line="1789"/>
         <source>&amp;Debug-Viewer</source>
         <translation>Prohlížeč &amp;debugeru</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2433"/>
+        <location filename="../UI/UserInterface.py" line="2443"/>
         <source>SQL Browser</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2433"/>
+        <location filename="../UI/UserInterface.py" line="2443"/>
         <source>SQL &amp;Browser...</source>
         <translation>SQL &amp;Browser...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2438"/>
+        <location filename="../UI/UserInterface.py" line="2448"/>
         <source>Browse a SQL database</source>
         <translation>Procházet SQL databázi</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2439"/>
+        <location filename="../UI/UserInterface.py" line="2449"/>
         <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
         <translation>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Procházet SQL databázi.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2488"/>
+        <location filename="../UI/UserInterface.py" line="2498"/>
         <source>Icon Editor</source>
         <translation>Editor ikon</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2488"/>
+        <location filename="../UI/UserInterface.py" line="2498"/>
         <source>&amp;Icon Editor...</source>
         <translation>Editor &amp;ikon...</translation>
     </message>
@@ -80463,96 +80463,96 @@
         <translation type="obsolete">Otevřít PySide dokumentaci</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1598"/>
+        <location filename="../UI/UserInterface.py" line="1608"/>
         <source>{0} - Passive Mode</source>
         <translation>{0} - Pasivní mód</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1605"/>
+        <location filename="../UI/UserInterface.py" line="1615"/>
         <source>{0} - {1} - Passive Mode</source>
         <translation>{0} - {1} - pasivní mód</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1609"/>
+        <location filename="../UI/UserInterface.py" line="1619"/>
         <source>{0} - {1} - {2} - Passive Mode</source>
         <translation>{0} - {1} - {2} - pasivní mód</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3636"/>
+        <location filename="../UI/UserInterface.py" line="3646"/>
         <source>External Tools/{0}</source>
         <translation>Externí nástroje/{0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5348"/>
+        <location filename="../UI/UserInterface.py" line="5365"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist or is zero length.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; neexistuje nebo má nulovou délku.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5073"/>
+        <location filename="../UI/UserInterface.py" line="5090"/>
         <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Nemohu spustit Qt-Designer.&lt;br&gt;Ověřte jestli je dostupný jako &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5143"/>
+        <location filename="../UI/UserInterface.py" line="5160"/>
         <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Nemohu spustit Qt-Linguist.&lt;br&gt;Ověřte jestli je dostupný jako &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5187"/>
+        <location filename="../UI/UserInterface.py" line="5204"/>
         <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Nemohu spustit Qt-Assistant.&lt;br&gt;Ověřte jestli je dostupný jako &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5234"/>
+        <location filename="../UI/UserInterface.py" line="5251"/>
         <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Nemohu spustit aktuální prohlížeč.&lt;br&gt;Ověřte jestli je dostupný jako &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5304"/>
+        <location filename="../UI/UserInterface.py" line="5321"/>
         <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Nemohu spustit UI Previewer.&lt;br&gt;Ověřte jestli je dostupný jako &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5361"/>
+        <location filename="../UI/UserInterface.py" line="5378"/>
         <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Nemohu spustit Previewer překladů.&lt;br&gt;Ověřte jestli je dostupný jako &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5384"/>
+        <location filename="../UI/UserInterface.py" line="5401"/>
         <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Nelze spustit SQL Browser.&lt;br&gt;Ujistěte se, že je dostupný jako &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5479"/>
+        <location filename="../UI/UserInterface.py" line="5496"/>
         <source>No tool entry found for external tool &apos;{0}&apos; in tool group &apos;{1}&apos;.</source>
         <translation>V externím nástroji  &apos;{0}&apos; ve skupině &apos;{1}&apos; nebyl záznam nástroje nalezen.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5488"/>
+        <location filename="../UI/UserInterface.py" line="5505"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation>Skupina nástrojů &apos;{0}&apos; nenalezena. </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5527"/>
+        <location filename="../UI/UserInterface.py" line="5544"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation>Spouštím proces &apos;{0} {1}&apos;.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5543"/>
+        <location filename="../UI/UserInterface.py" line="5560"/>
         <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Nemohu spustit příkaz &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;Ověřte jestli je dostupný jako &lt;b&gt;{1}&lt;/b&gt;. &lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5621"/>
+        <location filename="../UI/UserInterface.py" line="5638"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation>Proces &apos;{0}&apos; byl ukončen.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5883"/>
+        <location filename="../UI/UserInterface.py" line="5900"/>
         <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; could not be found.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Adresář dokumentace &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; nebyl nalezen.&lt;/p&gt;</translation>
     </message>
@@ -80562,92 +80562,92 @@
         <translation type="obsolete">&lt;p&gt;Do souboru s úlohami &lt;b&gt;{0}&lt;/b&gt; nelze zapisovat.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6518"/>
+        <location filename="../UI/UserInterface.py" line="6538"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor s úlohami &lt;b&gt;{0}&lt;/b&gt; nelze načíst.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6556"/>
+        <location filename="../UI/UserInterface.py" line="6576"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Zápis do souboru relace session &lt;b&gt;{0}&lt;/b&gt; se nezdařil.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6611"/>
+        <location filename="../UI/UserInterface.py" line="6631"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor relace session &lt;b&gt;{0}&lt;/b&gt; nelze přečíst.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6897"/>
+        <location filename="../UI/UserInterface.py" line="6917"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; není soubor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7071"/>
+        <location filename="../UI/UserInterface.py" line="7091"/>
         <source>Trying host {0}</source>
         <translation>Zkouším host {0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1118"/>
+        <location filename="../UI/UserInterface.py" line="1123"/>
         <source>Cooperation</source>
         <translation>Spolupráce</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Alt+Shift+O</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1174"/>
+        <location filename="../UI/UserInterface.py" line="1179"/>
         <source>Symbols</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2004"/>
+        <location filename="../UI/UserInterface.py" line="2014"/>
         <source>Alt+Shift+Y</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1183"/>
+        <location filename="../UI/UserInterface.py" line="1188"/>
         <source>Numbers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
+        <location filename="../UI/UserInterface.py" line="2033"/>
         <source>Alt+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2927"/>
+        <location filename="../UI/UserInterface.py" line="2937"/>
         <source>Python 3 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2931"/>
+        <location filename="../UI/UserInterface.py" line="2941"/>
         <source>Open Python 3 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7129"/>
+        <location filename="../UI/UserInterface.py" line="7150"/>
         <source>Error getting versions information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7122"/>
+        <location filename="../UI/UserInterface.py" line="7143"/>
         <source>The versions information could not be downloaded. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6086"/>
+        <location filename="../UI/UserInterface.py" line="6103"/>
         <source>Open Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6086"/>
+        <location filename="../UI/UserInterface.py" line="6103"/>
         <source>Could not start a web browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7129"/>
+        <location filename="../UI/UserInterface.py" line="7150"/>
         <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80672,363 +80672,363 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
+        <location filename="../UI/UserInterface.py" line="1701"/>
         <source>New Window</source>
         <translation type="unfinished">Nové okno</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
+        <location filename="../UI/UserInterface.py" line="1701"/>
         <source>New &amp;Window</source>
         <translation type="unfinished">&amp;Nové okno</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
+        <location filename="../UI/UserInterface.py" line="1701"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2280"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <source>Unittest Rerun Failed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2280"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <source>Rerun Failed Tests...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2285"/>
+        <location filename="../UI/UserInterface.py" line="2295"/>
         <source>Rerun failed tests of the last run</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2287"/>
+        <location filename="../UI/UserInterface.py" line="2297"/>
         <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last unittest run.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2419"/>
+        <location filename="../UI/UserInterface.py" line="2429"/>
         <source>Compare &amp;Files side by side...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2502"/>
+        <location filename="../UI/UserInterface.py" line="2512"/>
         <source>Snapshot</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2502"/>
+        <location filename="../UI/UserInterface.py" line="2512"/>
         <source>&amp;Snapshot...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2507"/>
+        <location filename="../UI/UserInterface.py" line="2517"/>
         <source>Take snapshots of a screen region</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2509"/>
+        <location filename="../UI/UserInterface.py" line="2519"/>
         <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5456"/>
+        <location filename="../UI/UserInterface.py" line="5473"/>
         <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7335"/>
+        <location filename="../UI/UserInterface.py" line="7356"/>
         <source>Select Workspace Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1886"/>
+        <location filename="../UI/UserInterface.py" line="1896"/>
         <source>Left Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1898"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <source>Right Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
+        <location filename="../UI/UserInterface.py" line="1760"/>
         <source>Switch the input focus to the Project-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1752"/>
+        <location filename="../UI/UserInterface.py" line="1762"/>
         <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1767"/>
+        <location filename="../UI/UserInterface.py" line="1777"/>
         <source>Switch the input focus to the Multiproject-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1769"/>
+        <location filename="../UI/UserInterface.py" line="1779"/>
         <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
+        <location filename="../UI/UserInterface.py" line="1795"/>
         <source>Switch the input focus to the Debug-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1787"/>
+        <location filename="../UI/UserInterface.py" line="1797"/>
         <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1803"/>
+        <location filename="../UI/UserInterface.py" line="1813"/>
         <source>Switch the input focus to the Shell window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1805"/>
+        <location filename="../UI/UserInterface.py" line="1815"/>
         <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
+        <location filename="../UI/UserInterface.py" line="1824"/>
         <source>&amp;File-Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
+        <location filename="../UI/UserInterface.py" line="1830"/>
         <source>Switch the input focus to the File-Browser window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1822"/>
+        <location filename="../UI/UserInterface.py" line="1832"/>
         <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
         <source>Lo&amp;g-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1837"/>
+        <location filename="../UI/UserInterface.py" line="1847"/>
         <source>Switch the input focus to the Log-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
-        <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1849"/>
+        <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1859"/>
         <source>&amp;Task-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1855"/>
+        <location filename="../UI/UserInterface.py" line="1865"/>
         <source>Switch the input focus to the Task-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
+        <location filename="../UI/UserInterface.py" line="1878"/>
         <source>Templ&amp;ate-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1874"/>
+        <location filename="../UI/UserInterface.py" line="1884"/>
         <source>Switch the input focus to the Template-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1876"/>
-        <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1886"/>
+        <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1896"/>
         <source>&amp;Left Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1889"/>
+        <location filename="../UI/UserInterface.py" line="1899"/>
         <source>Toggle the Left Toolbox window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1890"/>
+        <location filename="../UI/UserInterface.py" line="1900"/>
         <source>&lt;b&gt;Toggle the Left Toolbox window&lt;/b&gt;&lt;p&gt;If the Left Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1898"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <source>&amp;Right Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1902"/>
+        <location filename="../UI/UserInterface.py" line="1912"/>
         <source>Toggle the Right Toolbox window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1903"/>
+        <location filename="../UI/UserInterface.py" line="1913"/>
         <source>&lt;b&gt;Toggle the Right Toolbox window&lt;/b&gt;&lt;p&gt;If the Right Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1948"/>
         <source>Right Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1948"/>
         <source>&amp;Right Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1942"/>
+        <location filename="../UI/UserInterface.py" line="1952"/>
         <source>Toggle the right sidebar window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1944"/>
+        <location filename="../UI/UserInterface.py" line="1954"/>
         <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Cooperation-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Co&amp;operation-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1973"/>
+        <location filename="../UI/UserInterface.py" line="1983"/>
         <source>Switch the input focus to the Cooperation-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="1985"/>
         <source>&lt;b&gt;Activate Cooperation-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Cooperation-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2004"/>
+        <location filename="../UI/UserInterface.py" line="2014"/>
         <source>Symbols-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="2014"/>
+        <source>S&amp;ymbols-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2020"/>
+        <source>Switch the input focus to the Symbols-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2022"/>
+        <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2033"/>
+        <source>Numbers-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2033"/>
+        <source>Num&amp;bers-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2039"/>
+        <source>Switch the input focus to the Numbers-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2041"/>
+        <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3231"/>
+        <source>&amp;Windows</source>
+        <translation type="unfinished">&amp;Windows</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1867"/>
+        <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1996"/>
+        <source>IRC</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1996"/>
+        <source>&amp;IRC</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2002"/>
+        <source>Switch the input focus to the IRC window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="2004"/>
-        <source>S&amp;ymbols-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2010"/>
-        <source>Switch the input focus to the Symbols-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2012"/>
-        <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
-        <source>Numbers-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
-        <source>Num&amp;bers-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2029"/>
-        <source>Switch the input focus to the Numbers-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2031"/>
-        <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3221"/>
-        <source>&amp;Windows</source>
-        <translation type="unfinished">&amp;Windows</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1857"/>
-        <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
-        <source>IRC</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
-        <source>&amp;IRC</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1992"/>
-        <source>Switch the input focus to the IRC window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
         <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2338"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Qt-Designer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2338"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Qt-&amp;Designer...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2343"/>
+        <location filename="../UI/UserInterface.py" line="2353"/>
         <source>Start Qt-Designer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2344"/>
+        <location filename="../UI/UserInterface.py" line="2354"/>
         <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2364"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Qt-Linguist</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2364"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Qt-&amp;Linguist...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2369"/>
+        <location filename="../UI/UserInterface.py" line="2379"/>
         <source>Start Qt-Linguist</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2370"/>
+        <location filename="../UI/UserInterface.py" line="2380"/>
         <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2858"/>
+        <location filename="../UI/UserInterface.py" line="2868"/>
         <source>Qt5 Documentation</source>
         <translation type="unfinished">Qt4 dokumentace {5 ?}</translation>
     </message>
@@ -81038,57 +81038,57 @@
         <translation type="obsolete">Qt&amp;4 dokumentace {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2862"/>
+        <location filename="../UI/UserInterface.py" line="2872"/>
         <source>Open Qt5 Documentation</source>
         <translation type="unfinished">Otevřít Qt4 dokumentaci {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2666"/>
+        <location filename="../UI/UserInterface.py" line="2676"/>
         <source>Manage SSL Certificates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2666"/>
+        <location filename="../UI/UserInterface.py" line="2676"/>
         <source>Manage SSL Certificates...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2671"/>
+        <location filename="../UI/UserInterface.py" line="2681"/>
         <source>Manage the saved SSL certificates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2673"/>
+        <location filename="../UI/UserInterface.py" line="2683"/>
         <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2682"/>
+        <location filename="../UI/UserInterface.py" line="2692"/>
         <source>Edit Message Filters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2682"/>
+        <location filename="../UI/UserInterface.py" line="2692"/>
         <source>Edit Message Filters...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2687"/>
+        <location filename="../UI/UserInterface.py" line="2697"/>
         <source>Edit the message filters used to suppress unwanted messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2689"/>
+        <location filename="../UI/UserInterface.py" line="2699"/>
         <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2888"/>
+        <location filename="../UI/UserInterface.py" line="2898"/>
         <source>PyQt5 Documentation</source>
         <translation type="unfinished">PyQt4 dokumentace {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2892"/>
+        <location filename="../UI/UserInterface.py" line="2902"/>
         <source>Open PyQt5 Documentation</source>
         <translation type="unfinished">Otevřít PyQt4 dokumentaci {5 ?}</translation>
     </message>
@@ -81098,32 +81098,32 @@
         <translation type="obsolete">&lt;p&gt;Adresář PyQt4 dokumentace není nakonfigurován.&lt;/p&gt; {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2933"/>
+        <location filename="../UI/UserInterface.py" line="2943"/>
         <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7062"/>
+        <location filename="../UI/UserInterface.py" line="7082"/>
         <source>%v/%m</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2203"/>
+        <location filename="../UI/UserInterface.py" line="2213"/>
         <source>Show Error Log</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2199"/>
+        <location filename="../UI/UserInterface.py" line="2209"/>
         <source>Show Error &amp;Log...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2204"/>
+        <location filename="../UI/UserInterface.py" line="2214"/>
         <source>&lt;b&gt;Show Error Log...&lt;/b&gt;&lt;p&gt;Opens a dialog showing the most recent error log.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7066"/>
+        <location filename="../UI/UserInterface.py" line="7086"/>
         <source>Version Check</source>
         <translation type="unfinished"></translation>
     </message>
@@ -81203,67 +81203,67 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4194"/>
+        <location filename="../UI/UserInterface.py" line="4204"/>
         <source>&amp;User Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4266"/>
+        <location filename="../UI/UserInterface.py" line="4276"/>
         <source>No User Tools Configured</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2459"/>
+        <location filename="../UI/UserInterface.py" line="2469"/>
         <source>Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2459"/>
+        <location filename="../UI/UserInterface.py" line="2469"/>
         <source>&amp;Hex Editor...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2705"/>
+        <location filename="../UI/UserInterface.py" line="2715"/>
         <source>Clear private data</source>
         <translation type="unfinished">Smazat soukromá data</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2707"/>
+        <location filename="../UI/UserInterface.py" line="2717"/>
         <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1665"/>
+        <location filename="../UI/UserInterface.py" line="1675"/>
         <source>Save session...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1670"/>
+        <location filename="../UI/UserInterface.py" line="1680"/>
         <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6650"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <source>Load session</source>
         <translation type="unfinished">Načíst relaci</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1678"/>
+        <location filename="../UI/UserInterface.py" line="1688"/>
         <source>Load session...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1683"/>
+        <location filename="../UI/UserInterface.py" line="1693"/>
         <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6703"/>
+        <location filename="../UI/UserInterface.py" line="6723"/>
         <source>Crash Session found!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6703"/>
+        <location filename="../UI/UserInterface.py" line="6723"/>
         <source>A session file of a crashed session was found. Shall this session be restored?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -81278,448 +81278,448 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7209"/>
+        <location filename="../UI/UserInterface.py" line="7230"/>
         <source>Update Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7209"/>
+        <location filename="../UI/UserInterface.py" line="7230"/>
         <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2042"/>
+        <location filename="../UI/UserInterface.py" line="2052"/>
         <source>Code Documentation Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2863"/>
+        <location filename="../UI/UserInterface.py" line="2873"/>
         <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2894"/>
+        <location filename="../UI/UserInterface.py" line="2904"/>
         <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2970"/>
+        <location filename="../UI/UserInterface.py" line="2980"/>
         <source>PySide2 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2974"/>
+        <location filename="../UI/UserInterface.py" line="2984"/>
         <source>Open PySide2 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2976"/>
+        <location filename="../UI/UserInterface.py" line="2986"/>
         <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5866"/>
+        <location filename="../UI/UserInterface.py" line="5883"/>
         <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2813"/>
+        <location filename="../UI/UserInterface.py" line="2823"/>
         <source>Virtualenv Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2807"/>
+        <location filename="../UI/UserInterface.py" line="2817"/>
         <source>&amp;Virtualenv Manager...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2815"/>
+        <location filename="../UI/UserInterface.py" line="2825"/>
         <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2830"/>
+        <location filename="../UI/UserInterface.py" line="2840"/>
         <source>Virtualenv Configurator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2824"/>
+        <location filename="../UI/UserInterface.py" line="2834"/>
         <source>Virtualenv &amp;Configurator...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2832"/>
+        <location filename="../UI/UserInterface.py" line="2842"/>
         <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3228"/>
+        <location filename="../UI/UserInterface.py" line="3238"/>
         <source>Left Side</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3240"/>
+        <location filename="../UI/UserInterface.py" line="3250"/>
         <source>Bottom Side</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3247"/>
+        <location filename="../UI/UserInterface.py" line="3257"/>
         <source>Right Side</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3267"/>
+        <location filename="../UI/UserInterface.py" line="3277"/>
         <source>Plug-ins</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
+        <location filename="../UI/UserInterface.py" line="1659"/>
         <source>Restart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
+        <location filename="../UI/UserInterface.py" line="1659"/>
         <source>Ctrl+Shift+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1655"/>
+        <location filename="../UI/UserInterface.py" line="1665"/>
         <source>Restart the IDE</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1656"/>
+        <location filename="../UI/UserInterface.py" line="1666"/>
         <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6043"/>
+        <location filename="../UI/UserInterface.py" line="6060"/>
         <source>Start Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="2090"/>
+        <source>Conda</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2072"/>
+        <source>PyPI</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3586"/>
+        <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2108"/>
+        <source>MicroPython</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1996"/>
+        <source>Ctrl+Alt+Shift+I</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2052"/>
+        <source>Ctrl+Alt+Shift+D</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2058"/>
+        <source>Switch the input focus to the Code Documentation Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2061"/>
+        <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2072"/>
+        <source>Ctrl+Alt+Shift+P</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2078"/>
+        <source>Switch the input focus to the PyPI window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="2080"/>
-        <source>Conda</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2062"/>
-        <source>PyPI</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3576"/>
-        <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2098"/>
-        <source>MicroPython</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
-        <source>Ctrl+Alt+Shift+I</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2042"/>
-        <source>Ctrl+Alt+Shift+D</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2048"/>
-        <source>Switch the input focus to the Code Documentation Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2051"/>
-        <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2062"/>
-        <source>Ctrl+Alt+Shift+P</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2068"/>
-        <source>Switch the input focus to the PyPI window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2070"/>
         <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2080"/>
+        <location filename="../UI/UserInterface.py" line="2090"/>
         <source>Ctrl+Alt+Shift+C</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2086"/>
+        <location filename="../UI/UserInterface.py" line="2096"/>
         <source>Switch the input focus to the Conda window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2088"/>
-        <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2098"/>
+        <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2108"/>
         <source>Ctrl+Alt+Shift+M</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2104"/>
+        <location filename="../UI/UserInterface.py" line="2114"/>
         <source>Switch the input focus to the MicroPython window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2106"/>
+        <location filename="../UI/UserInterface.py" line="2116"/>
         <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3225"/>
+        <location filename="../UI/UserInterface.py" line="3235"/>
         <source>Central Park</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3745"/>
+        <location filename="../UI/UserInterface.py" line="3755"/>
         <source>&lt;h2&gt;Version Numbers&lt;/h2&gt;&lt;table&gt;</source>
         <translation type="unfinished">&lt;h3&gt;Čísla verzí&lt;/h3&gt;&lt;table&gt; {2&gt;?} {2&gt;?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5082"/>
+        <location filename="../UI/UserInterface.py" line="5099"/>
         <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5152"/>
+        <location filename="../UI/UserInterface.py" line="5169"/>
         <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5196"/>
+        <location filename="../UI/UserInterface.py" line="5213"/>
         <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2211"/>
+        <location filename="../UI/UserInterface.py" line="2221"/>
         <source>Show Install Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2211"/>
+        <location filename="../UI/UserInterface.py" line="2221"/>
         <source>Show Install &amp;Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2215"/>
+        <location filename="../UI/UserInterface.py" line="2225"/>
         <source>Show Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2217"/>
+        <location filename="../UI/UserInterface.py" line="2227"/>
         <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2873"/>
+        <location filename="../UI/UserInterface.py" line="2883"/>
         <source>Qt6 Documentation</source>
         <translation type="unfinished">Qt4 dokumentace {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2877"/>
+        <location filename="../UI/UserInterface.py" line="2887"/>
         <source>Open Qt6 Documentation</source>
         <translation type="unfinished">Otevřít Qt4 dokumentaci {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2878"/>
+        <location filename="../UI/UserInterface.py" line="2888"/>
         <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2905"/>
+        <location filename="../UI/UserInterface.py" line="2915"/>
         <source>PyQt6 Documentation</source>
         <translation type="unfinished">PyQt4 dokumentace {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2909"/>
+        <location filename="../UI/UserInterface.py" line="2919"/>
         <source>Open PyQt6 Documentation</source>
         <translation type="unfinished">Otevřít PyQt4 dokumentaci {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2911"/>
+        <location filename="../UI/UserInterface.py" line="2921"/>
         <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2990"/>
+        <location filename="../UI/UserInterface.py" line="3000"/>
         <source>PySide6 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2994"/>
+        <location filename="../UI/UserInterface.py" line="3004"/>
         <source>Open PySide6 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2996"/>
+        <location filename="../UI/UserInterface.py" line="3006"/>
         <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5761"/>
+        <location filename="../UI/UserInterface.py" line="5778"/>
         <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1697"/>
+        <location filename="../UI/UserInterface.py" line="1707"/>
         <source>Open a new eric instance</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1699"/>
+        <location filename="../UI/UserInterface.py" line="1709"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2142"/>
+        <location filename="../UI/UserInterface.py" line="2152"/>
         <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is search in the Qt help collection.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2177"/>
+        <location filename="../UI/UserInterface.py" line="2187"/>
         <source>&lt;b&gt;Check for Updates...&lt;/b&gt;&lt;p&gt;Checks the internet for updates of eric.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2190"/>
+        <location filename="../UI/UserInterface.py" line="2200"/>
         <source>&lt;b&gt;Show downloadable versions...&lt;/b&gt;&lt;p&gt;Shows the eric versions available for download from the internet.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2464"/>
-        <source>Start the eric Hex Editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2466"/>
-        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2474"/>
+        <source>Start the eric Hex Editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2476"/>
+        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2484"/>
         <source>eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2474"/>
+        <location filename="../UI/UserInterface.py" line="2484"/>
         <source>eric &amp;Web Browser...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2479"/>
+        <location filename="../UI/UserInterface.py" line="2489"/>
         <source>Start the eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2481"/>
+        <location filename="../UI/UserInterface.py" line="2491"/>
         <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2493"/>
+        <location filename="../UI/UserInterface.py" line="2503"/>
         <source>Start the eric Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2495"/>
+        <location filename="../UI/UserInterface.py" line="2505"/>
         <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2581"/>
+        <location filename="../UI/UserInterface.py" line="2591"/>
         <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2955"/>
+        <location filename="../UI/UserInterface.py" line="2965"/>
         <source>&lt;b&gt;Eric API Documentation&lt;/b&gt;&lt;p&gt;Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5979"/>
+        <location filename="../UI/UserInterface.py" line="5996"/>
         <source>The eric web browser could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6043"/>
+        <location filename="../UI/UserInterface.py" line="6060"/>
         <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7221"/>
+        <location filename="../UI/UserInterface.py" line="7242"/>
         <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7199"/>
+        <location filename="../UI/UserInterface.py" line="7220"/>
         <source>You are using a snapshot release of eric. A more up-to-date stable release might be available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7233"/>
+        <location filename="../UI/UserInterface.py" line="7254"/>
         <source>eric is up to date</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7233"/>
+        <location filename="../UI/UserInterface.py" line="7254"/>
         <source>You are using the latest version of eric</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7316"/>
+        <location filename="../UI/UserInterface.py" line="7337"/>
         <source>eric has not been configured yet. The configuration dialog will be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6294"/>
+        <location filename="../UI/UserInterface.py" line="6314"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard Shortcuts File (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6313"/>
+        <location filename="../UI/UserInterface.py" line="6333"/>
         <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6329"/>
+        <location filename="../UI/UserInterface.py" line="6349"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6518"/>
+        <location filename="../UI/UserInterface.py" line="6538"/>
         <source>Read Tasks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6627"/>
+        <location filename="../UI/UserInterface.py" line="6647"/>
         <source>Save Session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6584"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>Read Session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6650"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -81799,7 +81799,7 @@
 <context>
     <name>Utilities</name>
     <message>
-        <location filename="../Utilities/__init__.py" line="1453"/>
+        <location filename="../Utilities/__init__.py" line="1454"/>
         <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;Můžete použít %-kódy a rezervovaná místa ve stringu. Podporované kódy jsou:&lt;table&gt;&lt;tr&gt;    &lt;td&gt;%C&lt;/td&gt;    &lt;td&gt;sloupec kurzoru v aktuálním editoru&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;    &lt;td&gt;%D&lt;/td&gt;    &lt;td&gt;adresář v aktuálním editoru&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;    &lt;td&gt;%F&lt;/td&gt;    &lt;td&gt;jméno souboru v aktuálním editoru&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;    &lt;td&gt;%H&lt;/td&gt;    &lt;td&gt;home adresář aktuálního uživatele&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;    &lt;td&gt;%L&lt;/td&gt;    &lt;td&gt;řádek s kurzorem v aktuálním editoru&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;    &lt;td&gt;%P&lt;/td&gt;    &lt;td&gt;cesta aktuálního projektu&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;    &lt;td&gt;%S&lt;/td&gt;    &lt;td&gt;vybraný text v aktuálním editoru&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;    &lt;td&gt;%U&lt;/td&gt;    &lt;td&gt;uživatelské jméno aktuálního uživatele&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;    &lt;td&gt;%%&lt;/td&gt;    &lt;td&gt;znak procenta&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</translation>
     </message>
@@ -82108,7 +82108,7 @@
 <context>
     <name>VariablesViewer</name>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="958"/>
+        <location filename="../Debugger/VariablesViewer.py" line="965"/>
         <source>Global Variables</source>
         <translation>Globální proměnné</translation>
     </message>
@@ -82128,12 +82128,12 @@
         <translation type="obsolete">Typ</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="959"/>
+        <location filename="../Debugger/VariablesViewer.py" line="966"/>
         <source>&lt;b&gt;The Global Variables Viewer Window&lt;/b&gt;&lt;p&gt;This window displays the global variables of the debugged program.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Prohlížeč globálních proměnných&lt;/b&gt;&lt;p&gt;Toto okno zobrazuje globální proměnné debugovénho programu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="965"/>
+        <location filename="../Debugger/VariablesViewer.py" line="972"/>
         <source>Local Variables</source>
         <translation>Lokální proměnné</translation>
     </message>
@@ -82143,17 +82143,17 @@
         <translation type="obsolete">Lokální</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="966"/>
+        <location filename="../Debugger/VariablesViewer.py" line="973"/>
         <source>&lt;b&gt;The Local Variables Viewer Window&lt;/b&gt;&lt;p&gt;This window displays the local variables of the debugged program.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Prohlížeč lokálních proměnných&lt;/b&gt;&lt;p&gt;Toto okno zobrazuje lokální proměnné debugovénho programu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1083"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1090"/>
         <source>Show Details...</source>
         <translation>Zobrazit detaily...</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1098"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1105"/>
         <source>Configure...</source>
         <translation>Konfigurovat...</translation>
     </message>
@@ -82163,7 +82163,7 @@
         <translation>{0} položek</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1096"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1103"/>
         <source>Refresh</source>
         <translation type="unfinished">Obnovit</translation>
     </message>
@@ -82173,22 +82173,22 @@
         <translation type="obsolete">Složit vše</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1085"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1092"/>
         <source>Expand</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1086"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1093"/>
         <source>Collapse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1087"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1094"/>
         <source>Collapse All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1099"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1106"/>
         <source>Variables Type Filter...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -82866,7 +82866,7 @@
         <translation>Chyba v procesu generování</translation>
     </message>
     <message>
-        <location filename="../VCS/VersionControl.py" line="761"/>
+        <location filename="../VCS/VersionControl.py" line="764"/>
         <source>Repository status checking is switched off</source>
         <translation>Kontrolování stavu v repozitáři je vypnuto</translation>
     </message>
@@ -82879,1432 +82879,1432 @@
 <context>
     <name>ViewManager</name>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>New</source>
         <translation>Nový</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>&amp;New</source>
         <translation>&amp;Nový</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="592"/>
+        <location filename="../ViewManager/ViewManager.py" line="593"/>
         <source>Open an empty editor window</source>
         <translation>Otevřít prázdné editační okno</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="595"/>
+        <location filename="../ViewManager/ViewManager.py" line="596"/>
         <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="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>Open</source>
         <translation>Otevřít</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>&amp;Open...</source>
         <translation>&amp;Otevřít...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="611"/>
+        <location filename="../ViewManager/ViewManager.py" line="612"/>
         <source>Open a file</source>
         <translation>Otevřít soubor</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="613"/>
+        <location filename="../ViewManager/ViewManager.py" line="614"/>
         <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="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>Close</source>
         <translation>Zavřít</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>&amp;Close</source>
         <translation>&amp;Zavřít</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="632"/>
+        <location filename="../ViewManager/ViewManager.py" line="633"/>
         <source>Close the current window</source>
         <translation>Zavřít aktuální okno</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="636"/>
         <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="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="644"/>
         <source>Close All</source>
         <translation>Zavřít vše</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="644"/>
         <source>Clos&amp;e All</source>
         <translation>Zavřít vš&amp;e</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="647"/>
+        <location filename="../ViewManager/ViewManager.py" line="648"/>
         <source>Close all editor windows</source>
         <translation>Zavřít všechny editační okna</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="650"/>
+        <location filename="../ViewManager/ViewManager.py" line="651"/>
         <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="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>Save</source>
         <translation>Uložit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>&amp;Save</source>
         <translation>&amp;Uložit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="669"/>
+        <location filename="../ViewManager/ViewManager.py" line="670"/>
         <source>Save the current file</source>
         <translation>Uložit aktuální soubor</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="671"/>
+        <location filename="../ViewManager/ViewManager.py" line="672"/>
         <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="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Save as</source>
         <translation>Uložit jako</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Save &amp;as...</source>
         <translation>U&amp;ložit jako...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="686"/>
+        <location filename="../ViewManager/ViewManager.py" line="687"/>
         <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="688"/>
+        <location filename="../ViewManager/ViewManager.py" line="689"/>
         <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="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="714"/>
         <source>Save all</source>
         <translation>Uložit vše</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="718"/>
+        <location filename="../ViewManager/ViewManager.py" line="719"/>
         <source>Save all files</source>
         <translation>Uložit všechny soubory</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="720"/>
+        <location filename="../ViewManager/ViewManager.py" line="721"/>
         <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="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>Print</source>
         <translation>Tisk</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>&amp;Print</source>
         <translation>&amp;Tisk</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="737"/>
+        <location filename="../ViewManager/ViewManager.py" line="738"/>
         <source>Print the current file</source>
         <translation>Tisk aktuálního souboru</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="739"/>
+        <location filename="../ViewManager/ViewManager.py" line="740"/>
         <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="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Search File</source>
         <translation>Najít soubor</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Search &amp;File...</source>
         <translation>N&amp;ajít soubor...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Alt+Ctrl+F</source>
         <comment>File|Search File</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="771"/>
+        <location filename="../ViewManager/ViewManager.py" line="772"/>
         <source>Search for a file</source>
         <translation>Vyhledat soubor</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="773"/>
+        <location filename="../ViewManager/ViewManager.py" line="774"/>
         <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="787"/>
+        <location filename="../ViewManager/ViewManager.py" line="788"/>
         <source>&amp;File</source>
         <translation>S&amp;oubor</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="789"/>
+        <location filename="../ViewManager/ViewManager.py" line="790"/>
         <source>Open &amp;Recent Files</source>
         <translation>Otevřít poslední soubo&amp;ry</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="792"/>
+        <location filename="../ViewManager/ViewManager.py" line="793"/>
         <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="840"/>
+        <location filename="../ViewManager/ViewManager.py" line="841"/>
         <source>File</source>
         <translation>Soubor</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Undo</source>
         <translation>Undo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>&amp;Undo</source>
         <translation>&amp;Vrátit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="896"/>
+        <location filename="../ViewManager/ViewManager.py" line="897"/>
         <source>Undo the last change</source>
         <translation>Vrátit poslední změnu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="898"/>
+        <location filename="../ViewManager/ViewManager.py" line="899"/>
         <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="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>Redo</source>
         <translation>Redo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>&amp;Redo</source>
         <translation>&amp;Znovu použít</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="914"/>
+        <location filename="../ViewManager/ViewManager.py" line="915"/>
         <source>Redo the last change</source>
         <translation>Znovu použít poslední změnu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="916"/>
+        <location filename="../ViewManager/ViewManager.py" line="917"/>
         <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="933"/>
+        <location filename="../ViewManager/ViewManager.py" line="934"/>
         <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="924"/>
+        <location filename="../ViewManager/ViewManager.py" line="925"/>
         <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="924"/>
+        <location filename="../ViewManager/ViewManager.py" line="925"/>
         <source>Ctrl+Y</source>
         <comment>Edit|Revert</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="935"/>
+        <location filename="../ViewManager/ViewManager.py" line="936"/>
         <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="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Cut</source>
         <translation>Vyjmout</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Cu&amp;t</source>
         <translation>Vyjmou&amp;t</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="955"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Cut the selection</source>
         <translation>Vyjmout výběr</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="958"/>
         <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="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Copy</source>
         <translation>Kopírovat</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>&amp;Copy</source>
         <translation>&amp;Kopírovat</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="976"/>
         <source>Copy the selection</source>
         <translation>Kopírovat výběr</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="977"/>
+        <location filename="../ViewManager/ViewManager.py" line="978"/>
         <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="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Paste</source>
         <translation>Vložit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>&amp;Paste</source>
         <translation>V&amp;ložit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="995"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Paste the last cut/copied text</source>
         <translation>Vložit text ze schránky</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="998"/>
         <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="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>Clear</source>
         <translation>Vyčistit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1014"/>
+        <location filename="../ViewManager/ViewManager.py" line="1015"/>
         <source>Clear all text</source>
         <translation>Vyčistit všechen text</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1016"/>
+        <location filename="../ViewManager/ViewManager.py" line="1017"/>
         <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="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>Indent</source>
         <translation>Odsadit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>&amp;Indent</source>
         <translation>Odsad&amp;it</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>Ctrl+I</source>
         <comment>Edit|Indent</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1049"/>
+        <location filename="../ViewManager/ViewManager.py" line="1050"/>
         <source>Indent line</source>
         <translation>Odsadit řádek</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1051"/>
+        <location filename="../ViewManager/ViewManager.py" line="1052"/>
         <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="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>Unindent</source>
         <translation>Zrušit odsazení</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>U&amp;nindent</source>
         <translation>Zrušit odsaze&amp;ní</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>Ctrl+Shift+I</source>
         <comment>Edit|Unindent</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1068"/>
+        <location filename="../ViewManager/ViewManager.py" line="1069"/>
         <source>Unindent line</source>
         <translation>Zrušit odsazení řádku</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1070"/>
+        <location filename="../ViewManager/ViewManager.py" line="1071"/>
         <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="1079"/>
+        <location filename="../ViewManager/ViewManager.py" line="1080"/>
         <source>Smart indent</source>
         <translation>Chytré odsazení</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1085"/>
+        <location filename="../ViewManager/ViewManager.py" line="1086"/>
         <source>Smart indent Line or Selection</source>
         <translation>Chytré odsazení řádku nebo výběru</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1087"/>
+        <location filename="../ViewManager/ViewManager.py" line="1088"/>
         <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="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>Comment</source>
         <translation>Vytvořit Komentář</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>C&amp;omment</source>
         <translation>Vytvořit K&amp;omentář</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>Ctrl+M</source>
         <comment>Edit|Comment</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1104"/>
+        <location filename="../ViewManager/ViewManager.py" line="1105"/>
         <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="1106"/>
+        <location filename="../ViewManager/ViewManager.py" line="1107"/>
         <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="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Uncomment</source>
         <translation>Zrušit komentář</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Unco&amp;mment</source>
         <translation>Zrušit ko&amp;mentář</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Alt+Ctrl+M</source>
         <comment>Edit|Uncomment</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1123"/>
+        <location filename="../ViewManager/ViewManager.py" line="1124"/>
         <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="1125"/>
+        <location filename="../ViewManager/ViewManager.py" line="1126"/>
         <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="1156"/>
+        <location filename="../ViewManager/ViewManager.py" line="1157"/>
         <source>Stream Comment</source>
         <translation>Stream komentář</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1161"/>
+        <location filename="../ViewManager/ViewManager.py" line="1162"/>
         <source>Stream Comment Line or Selection</source>
         <translation>Steram komentář řádky nebo výběru</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1164"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <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="1173"/>
+        <location filename="../ViewManager/ViewManager.py" line="1174"/>
         <source>Box Comment</source>
         <translation>Box komentář</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1178"/>
+        <location filename="../ViewManager/ViewManager.py" line="1179"/>
         <source>Box Comment Line or Selection</source>
         <translation>Box komentář řádku nebo výběru</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1180"/>
+        <location filename="../ViewManager/ViewManager.py" line="1181"/>
         <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="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Select to brace</source>
         <translation>Vybrat obsah závorek</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Select to &amp;brace</source>
         <translation>Vy&amp;brat obsah závorek</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Ctrl+E</source>
         <comment>Edit|Select to brace</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1196"/>
+        <location filename="../ViewManager/ViewManager.py" line="1197"/>
         <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="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>Select all</source>
         <translation>Vybrat vše</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>&amp;Select all</source>
         <translation>Vybrat vš&amp;e</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select all</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1215"/>
+        <location filename="../ViewManager/ViewManager.py" line="1216"/>
         <source>Select all text</source>
         <translation>Vybrat všechen text</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>Deselect all</source>
         <translation>Zrušit celý výběr</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>&amp;Deselect all</source>
         <translation>Z&amp;rušit celý výběr</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>Alt+Ctrl+A</source>
         <comment>Edit|Deselect all</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1232"/>
+        <location filename="../ViewManager/ViewManager.py" line="1233"/>
         <source>Deselect all text</source>
         <translation>Zrušit výběr</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1249"/>
+        <location filename="../ViewManager/ViewManager.py" line="1250"/>
         <source>Convert Line End Characters</source>
         <translation>Konvertovat znaky konce řádků</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1242"/>
+        <location filename="../ViewManager/ViewManager.py" line="1243"/>
         <source>Convert &amp;Line End Characters</source>
         <translation>Konvertovat znaky konce řá&amp;dků</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1251"/>
+        <location filename="../ViewManager/ViewManager.py" line="1252"/>
         <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="1265"/>
+        <location filename="../ViewManager/ViewManager.py" line="1266"/>
         <source>Shorten empty lines</source>
         <translation>Zkrátit prázdné řádky</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1267"/>
+        <location filename="../ViewManager/ViewManager.py" line="1268"/>
         <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="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1277"/>
         <source>&amp;Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2748"/>
+        <location filename="../ViewManager/ViewManager.py" line="2749"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1283"/>
+        <location filename="../ViewManager/ViewManager.py" line="1284"/>
         <source>Complete current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1285"/>
+        <location filename="../ViewManager/ViewManager.py" line="1286"/>
         <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="1294"/>
+        <location filename="../ViewManager/ViewManager.py" line="1295"/>
         <source>Complete from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1304"/>
+        <location filename="../ViewManager/ViewManager.py" line="1305"/>
         <source>Complete current word from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1307"/>
+        <location filename="../ViewManager/ViewManager.py" line="1308"/>
         <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="1317"/>
+        <location filename="../ViewManager/ViewManager.py" line="1318"/>
         <source>Complete from APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1328"/>
         <source>Complete current word from APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1330"/>
+        <location filename="../ViewManager/ViewManager.py" line="1331"/>
         <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="1340"/>
+        <location filename="../ViewManager/ViewManager.py" line="1341"/>
         <source>Complete from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1350"/>
+        <location filename="../ViewManager/ViewManager.py" line="1351"/>
         <source>Complete current word from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1353"/>
+        <location filename="../ViewManager/ViewManager.py" line="1354"/>
         <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="1452"/>
+        <location filename="../ViewManager/ViewManager.py" line="1453"/>
         <source>Move left one character</source>
         <translation>Posun o jeden znak doleva</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1452"/>
+        <location filename="../ViewManager/ViewManager.py" line="1453"/>
         <source>Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1466"/>
+        <location filename="../ViewManager/ViewManager.py" line="1467"/>
         <source>Move right one character</source>
         <translation>Posun o jeden znak doprava</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1466"/>
+        <location filename="../ViewManager/ViewManager.py" line="1467"/>
         <source>Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1481"/>
         <source>Move up one line</source>
         <translation>Posun o jeden řádek nahoru</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1481"/>
         <source>Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1492"/>
+        <location filename="../ViewManager/ViewManager.py" line="1493"/>
         <source>Move down one line</source>
         <translation>Posun o jeden řádek dolu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1492"/>
+        <location filename="../ViewManager/ViewManager.py" line="1493"/>
         <source>Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1504"/>
+        <location filename="../ViewManager/ViewManager.py" line="1505"/>
         <source>Move left one word part</source>
         <translation>Posun o jednu část slova doleva</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1538"/>
+        <location filename="../ViewManager/ViewManager.py" line="1539"/>
         <source>Alt+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1518"/>
+        <location filename="../ViewManager/ViewManager.py" line="1519"/>
         <source>Move right one word part</source>
         <translation>Posun o jednu část slova doprava</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2418"/>
+        <location filename="../ViewManager/ViewManager.py" line="2419"/>
         <source>Alt+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1532"/>
+        <location filename="../ViewManager/ViewManager.py" line="1533"/>
         <source>Move left one word</source>
         <translation>Posun o jedno slovo doleva</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1583"/>
+        <location filename="../ViewManager/ViewManager.py" line="1584"/>
         <source>Ctrl+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1547"/>
+        <location filename="../ViewManager/ViewManager.py" line="1548"/>
         <source>Move right one word</source>
         <translation>Posun o jedno slovo doprava</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2173"/>
         <source>Ctrl+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2373"/>
+        <location filename="../ViewManager/ViewManager.py" line="2374"/>
         <source>Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1586"/>
+        <location filename="../ViewManager/ViewManager.py" line="1587"/>
         <source>Alt+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2388"/>
+        <location filename="../ViewManager/ViewManager.py" line="2389"/>
         <source>End</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1609"/>
+        <location filename="../ViewManager/ViewManager.py" line="1610"/>
         <source>Scroll view down one line</source>
         <translation>Posun pohledu  jeden řádek dolů</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1699"/>
+        <location filename="../ViewManager/ViewManager.py" line="1700"/>
         <source>Ctrl+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1621"/>
+        <location filename="../ViewManager/ViewManager.py" line="1622"/>
         <source>Scroll view up one line</source>
         <translation>Posun pohledu o jeden řádek nahoru</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1683"/>
         <source>Ctrl+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1632"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Move up one paragraph</source>
         <translation>Posun na předchozí odstavec</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1632"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Alt+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1641"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Move down one paragraph</source>
         <translation>Posun na následující odstavec</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1641"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Alt+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1653"/>
+        <location filename="../ViewManager/ViewManager.py" line="1654"/>
         <source>Move up one page</source>
         <translation>Posun na předchozí stranu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1653"/>
+        <location filename="../ViewManager/ViewManager.py" line="1654"/>
         <source>PgUp</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1662"/>
+        <location filename="../ViewManager/ViewManager.py" line="1663"/>
         <source>Move down one page</source>
         <translation>Posun na následující stranu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1662"/>
+        <location filename="../ViewManager/ViewManager.py" line="1663"/>
         <source>PgDown</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1685"/>
+        <location filename="../ViewManager/ViewManager.py" line="1686"/>
         <source>Ctrl+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1702"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>Ctrl+End</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1708"/>
+        <location filename="../ViewManager/ViewManager.py" line="1709"/>
         <source>Indent one level</source>
         <translation>Odsadit o jednu úroveň</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1708"/>
+        <location filename="../ViewManager/ViewManager.py" line="1709"/>
         <source>Tab</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1717"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Unindent one level</source>
         <translation>Zrušit odsazení o jednu úroveň</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1717"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Shift+Tab</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1728"/>
         <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="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1728"/>
         <source>Shift+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1742"/>
+        <location filename="../ViewManager/ViewManager.py" line="1743"/>
         <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="1742"/>
+        <location filename="../ViewManager/ViewManager.py" line="1743"/>
         <source>Shift+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1757"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <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="1757"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Shift+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1772"/>
+        <location filename="../ViewManager/ViewManager.py" line="1773"/>
         <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="1772"/>
+        <location filename="../ViewManager/ViewManager.py" line="1773"/>
         <source>Shift+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1787"/>
+        <location filename="../ViewManager/ViewManager.py" line="1788"/>
         <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="1823"/>
+        <location filename="../ViewManager/ViewManager.py" line="1824"/>
         <source>Alt+Shift+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1802"/>
         <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="2433"/>
+        <location filename="../ViewManager/ViewManager.py" line="2434"/>
         <source>Alt+Shift+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1815"/>
+        <location filename="../ViewManager/ViewManager.py" line="1816"/>
         <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="2527"/>
+        <location filename="../ViewManager/ViewManager.py" line="2528"/>
         <source>Ctrl+Shift+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1832"/>
+        <location filename="../ViewManager/ViewManager.py" line="1833"/>
         <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="2189"/>
+        <location filename="../ViewManager/ViewManager.py" line="2190"/>
         <source>Ctrl+Shift+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1861"/>
+        <location filename="../ViewManager/ViewManager.py" line="1862"/>
         <source>Shift+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2293"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Alt+Shift+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1878"/>
+        <location filename="../ViewManager/ViewManager.py" line="1879"/>
         <source>Shift+End</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1884"/>
+        <location filename="../ViewManager/ViewManager.py" line="1885"/>
         <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="1884"/>
+        <location filename="../ViewManager/ViewManager.py" line="1885"/>
         <source>Alt+Shift+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1897"/>
+        <location filename="../ViewManager/ViewManager.py" line="1898"/>
         <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="1897"/>
+        <location filename="../ViewManager/ViewManager.py" line="1898"/>
         <source>Alt+Shift+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1910"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <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="1910"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Shift+PgUp</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1922"/>
+        <location filename="../ViewManager/ViewManager.py" line="1923"/>
         <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="1922"/>
+        <location filename="../ViewManager/ViewManager.py" line="1923"/>
         <source>Shift+PgDown</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1949"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Ctrl+Shift+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1966"/>
+        <location filename="../ViewManager/ViewManager.py" line="1967"/>
         <source>Ctrl+Shift+End</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1972"/>
+        <location filename="../ViewManager/ViewManager.py" line="1973"/>
         <source>Delete previous character</source>
         <translation>Smazat předchozí znak</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1972"/>
+        <location filename="../ViewManager/ViewManager.py" line="1973"/>
         <source>Backspace</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1984"/>
+        <location filename="../ViewManager/ViewManager.py" line="1985"/>
         <source>Shift+Backspace</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2003"/>
+        <location filename="../ViewManager/ViewManager.py" line="2004"/>
         <source>Delete current character</source>
         <translation>Smazat aktuální znak</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2003"/>
+        <location filename="../ViewManager/ViewManager.py" line="2004"/>
         <source>Del</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2017"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <source>Delete word to left</source>
         <translation>Smazat slovo doleva</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2017"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <source>Ctrl+Backspace</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2028"/>
+        <location filename="../ViewManager/ViewManager.py" line="2029"/>
         <source>Delete word to right</source>
         <translation>Smazat slovo doprava</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2028"/>
+        <location filename="../ViewManager/ViewManager.py" line="2029"/>
         <source>Ctrl+Del</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2038"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Delete line to left</source>
         <translation>Smazat řádku doleva</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2038"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2049"/>
+        <location filename="../ViewManager/ViewManager.py" line="2050"/>
         <source>Delete line to right</source>
         <translation>Smazat řádku doprava</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2058"/>
+        <location filename="../ViewManager/ViewManager.py" line="2059"/>
         <source>Ctrl+Shift+Del</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Insert new line</source>
         <translation>Vložit nový řádek</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Return</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Enter</source>
         <translation>Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Delete current line</source>
         <translation>Smazat aktuální řádek</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Ctrl+Shift+L</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2098"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Duplicate current line</source>
         <translation>Duplikovat aktuální řádek</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2098"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Ctrl+D</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2109"/>
+        <location filename="../ViewManager/ViewManager.py" line="2110"/>
         <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="2109"/>
+        <location filename="../ViewManager/ViewManager.py" line="2110"/>
         <source>Ctrl+T</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2132"/>
+        <location filename="../ViewManager/ViewManager.py" line="2133"/>
         <source>Cut current line</source>
         <translation>Vyjmout aktuální řádek</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2132"/>
+        <location filename="../ViewManager/ViewManager.py" line="2133"/>
         <source>Alt+Shift+L</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2142"/>
+        <location filename="../ViewManager/ViewManager.py" line="2143"/>
         <source>Copy current line</source>
         <translation>Kopírovat aktuální řádek</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2142"/>
+        <location filename="../ViewManager/ViewManager.py" line="2143"/>
         <source>Ctrl+Shift+T</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2153"/>
+        <location filename="../ViewManager/ViewManager.py" line="2154"/>
         <source>Toggle insert/overtype</source>
         <translation>Přepnout vkládání/přepisování</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2153"/>
+        <location filename="../ViewManager/ViewManager.py" line="2154"/>
         <source>Ins</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2717"/>
+        <location filename="../ViewManager/ViewManager.py" line="2718"/>
         <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="2717"/>
+        <location filename="../ViewManager/ViewManager.py" line="2718"/>
         <source>Alt+Shift+U</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2729"/>
+        <location filename="../ViewManager/ViewManager.py" line="2730"/>
         <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="2729"/>
+        <location filename="../ViewManager/ViewManager.py" line="2730"/>
         <source>Ctrl+Shift+U</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2175"/>
+        <location filename="../ViewManager/ViewManager.py" line="2176"/>
         <source>Alt+End</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2195"/>
+        <location filename="../ViewManager/ViewManager.py" line="2196"/>
         <source>Formfeed</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2204"/>
+        <location filename="../ViewManager/ViewManager.py" line="2205"/>
         <source>Escape</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2204"/>
+        <location filename="../ViewManager/ViewManager.py" line="2205"/>
         <source>Esc</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2213"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <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="2213"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <source>Alt+Ctrl+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2229"/>
+        <location filename="../ViewManager/ViewManager.py" line="2230"/>
         <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="2229"/>
+        <location filename="../ViewManager/ViewManager.py" line="2230"/>
         <source>Alt+Ctrl+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2244"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <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="2244"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <source>Alt+Ctrl+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2262"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <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="2262"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Alt+Ctrl+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2318"/>
+        <location filename="../ViewManager/ViewManager.py" line="2319"/>
         <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="2333"/>
+        <location filename="../ViewManager/ViewManager.py" line="2334"/>
         <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="2351"/>
+        <location filename="../ViewManager/ViewManager.py" line="2352"/>
         <source>Duplicate current selection</source>
         <translation>Duplikovat aktuální výběr</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2351"/>
+        <location filename="../ViewManager/ViewManager.py" line="2352"/>
         <source>Ctrl+Shift+D</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3262"/>
+        <location filename="../ViewManager/ViewManager.py" line="3263"/>
         <source>&amp;Search</source>
         <translation>V&amp;yhledat</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2758"/>
+        <location filename="../ViewManager/ViewManager.py" line="2759"/>
         <source>&amp;Edit</source>
         <translation>&amp;Edit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2817"/>
+        <location filename="../ViewManager/ViewManager.py" line="2818"/>
         <source>Edit</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3296"/>
+        <location filename="../ViewManager/ViewManager.py" line="3297"/>
         <source>Search</source>
         <translation>Vyhledat</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2849"/>
+        <location filename="../ViewManager/ViewManager.py" line="2850"/>
         <source>&amp;Search...</source>
         <translation>V&amp;yhledat...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2849"/>
+        <location filename="../ViewManager/ViewManager.py" line="2850"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2857"/>
+        <location filename="../ViewManager/ViewManager.py" line="2858"/>
         <source>Search for a text</source>
         <translation>Hledat text</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2859"/>
+        <location filename="../ViewManager/ViewManager.py" line="2860"/>
         <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="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>Search next</source>
         <translation>Hledat text</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>Search &amp;next</source>
         <translation>Hledat &amp;další</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Search previous</source>
         <translation>Hledat předchozí</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Search &amp;previous</source>
         <translation>Hledat &amp;předchozí</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>Replace</source>
         <translation>Nahradit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>&amp;Replace...</source>
         <translation>Nah&amp;radit...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2982"/>
+        <location filename="../ViewManager/ViewManager.py" line="2983"/>
         <source>Replace some text</source>
         <translation>Hledat nějaký text</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2984"/>
+        <location filename="../ViewManager/ViewManager.py" line="2985"/>
         <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>
@@ -84361,652 +84361,652 @@
 &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="3070"/>
+        <location filename="../ViewManager/ViewManager.py" line="3071"/>
         <source>Goto Line</source>
         <translation>Jít na řádek</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3062"/>
+        <location filename="../ViewManager/ViewManager.py" line="3063"/>
         <source>&amp;Goto Line...</source>
         <translation>&amp;Jít na řádek...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3062"/>
+        <location filename="../ViewManager/ViewManager.py" line="3063"/>
         <source>Ctrl+G</source>
         <comment>Search|Goto Line</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3072"/>
+        <location filename="../ViewManager/ViewManager.py" line="3073"/>
         <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="3089"/>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
         <source>Goto Brace</source>
         <translation>Jít na závorku</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3081"/>
+        <location filename="../ViewManager/ViewManager.py" line="3082"/>
         <source>Goto &amp;Brace</source>
         <translation>Jít na závork&amp;u</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3081"/>
+        <location filename="../ViewManager/ViewManager.py" line="3082"/>
         <source>Ctrl+L</source>
         <comment>Search|Goto Brace</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3091"/>
+        <location filename="../ViewManager/ViewManager.py" line="3092"/>
         <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="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Search in Files</source>
         <translation>Hledat v souborech</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Search in &amp;Files...</source>
         <translation>&amp;Hledat v souborech...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3177"/>
+        <location filename="../ViewManager/ViewManager.py" line="3178"/>
         <source>Search for a text in files</source>
         <translation>Hledat text v souborech</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3179"/>
+        <location filename="../ViewManager/ViewManager.py" line="3180"/>
         <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="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom in</source>
         <translation>Přiblížit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom &amp;in</source>
         <translation>Př&amp;iblížit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3344"/>
-        <source>Zoom in on the text</source>
-        <translation>Zvětšovací lupa</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3346"/>
+        <source>Zoom in on the text</source>
+        <translation>Zvětšovací lupa</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3348"/>
         <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="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom out</source>
         <translation>Oddálit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom &amp;out</source>
         <translation>&amp;Oddálit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3363"/>
-        <source>Zoom out on the text</source>
-        <translation>Zmenšovací lupa</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3365"/>
+        <source>Zoom out on the text</source>
+        <translation>Zmenšovací lupa</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3367"/>
         <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="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>Zoom</source>
         <translation>Lupa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>&amp;Zoom</source>
         <translation>&amp;Lupa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3400"/>
-        <source>Zoom the text</source>
-        <translation>Lupa na text</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3402"/>
+        <source>Zoom the text</source>
+        <translation>Lupa na text</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3404"/>
         <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="3415"/>
-        <source>Toggle all folds</source>
-        <translation>Složit/rozložit všechna skládání</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3411"/>
-        <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="3417"/>
+        <source>Toggle all folds</source>
+        <translation>Složit/rozložit všechna skládání</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3413"/>
+        <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="3419"/>
         <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="3431"/>
-        <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="3425"/>
-        <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="3433"/>
+        <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="3427"/>
+        <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="3435"/>
         <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="3447"/>
-        <source>Toggle current fold</source>
-        <translation>Složit/rozložit aktuální složený blok</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3443"/>
-        <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="3449"/>
+        <source>Toggle current fold</source>
+        <translation>Složit/rozložit aktuální složený blok</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3445"/>
+        <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="3451"/>
         <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="3479"/>
-        <source>Remove all highlights</source>
-        <translation>Odebrat všechna zvýraznění</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3481"/>
+        <source>Remove all highlights</source>
+        <translation>Odebrat všechna zvýraznění</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3483"/>
         <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="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3529"/>
         <source>Split view</source>
         <translation>Rozdělit pohled</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3529"/>
         <source>&amp;Split view</source>
         <translation>&amp;Rozdělit pohled</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3532"/>
-        <source>Add a split to the view</source>
-        <translation>Přidat další rozdělení pohledu</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3534"/>
+        <source>Add a split to the view</source>
+        <translation>Přidat další rozdělení pohledu</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3536"/>
         <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="3542"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Arrange horizontally</source>
         <translation>Uspořádat horizontálně</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3542"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Arrange &amp;horizontally</source>
         <translation>Uspořádat &amp;horizontálně</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation>Uspořádat rozdělené pohledy horizontálně</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3548"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation>Uspořádat rozdělené pohledy horizontálně</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3550"/>
         <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="3557"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>Remove split</source>
         <translation>Odebrat rozdělený pohled</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3557"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>&amp;Remove split</source>
         <translation>Odebra&amp;t rozdělený pohled</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3562"/>
-        <source>Remove the current split</source>
-        <translation>Odebrat aktuální rozdělení pohledu</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3564"/>
+        <source>Remove the current split</source>
+        <translation>Odebrat aktuální rozdělení pohledu</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3566"/>
         <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="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>Next split</source>
         <translation>Další rozdělený pohled</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>&amp;Next split</source>
         <translation>Další rozděle&amp;ný pohled</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3579"/>
-        <source>Move to the next split</source>
-        <translation>Posun na další rozdělený pohled</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3581"/>
+        <source>Move to the next split</source>
+        <translation>Posun na další rozdělený pohled</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3583"/>
         <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="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Previous split</source>
         <translation>Předchozí rozdělený pohled</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>&amp;Previous split</source>
         <translation>&amp;Předchozí rozdělený pohled</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3595"/>
-        <source>Move to the previous split</source>
-        <translation>Posun na předchozí rozdělený pohled</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3597"/>
+        <source>Move to the previous split</source>
+        <translation>Posun na předchozí rozdělený pohled</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3599"/>
         <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="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3683"/>
         <source>&amp;View</source>
         <translation>Poh&amp;led</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3718"/>
+        <location filename="../ViewManager/ViewManager.py" line="3720"/>
         <source>View</source>
         <translation>Pohled</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3754"/>
-        <source>Start Macro Recording</source>
-        <translation>Spustit záznam makra</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3748"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation>Spus&amp;tit záznam makra</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3756"/>
+        <source>Start Macro Recording</source>
+        <translation>Spustit záznam makra</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3750"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation>Spus&amp;tit záznam makra</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3758"/>
         <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="3768"/>
-        <source>Stop Macro Recording</source>
-        <translation>Zastavit záznam makra</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3764"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation>Sto&amp;p záznamu makra</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3770"/>
+        <source>Stop Macro Recording</source>
+        <translation>Zastavit záznam makra</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3766"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation>Sto&amp;p záznamu makra</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3772"/>
         <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="3782"/>
-        <source>Run Macro</source>
-        <translation>Spustit makro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3778"/>
-        <source>&amp;Run Macro</source>
-        <translation>Spustit mak&amp;ro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3784"/>
+        <source>Run Macro</source>
+        <translation>Spustit makro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3780"/>
+        <source>&amp;Run Macro</source>
+        <translation>Spustit mak&amp;ro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <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="3796"/>
-        <source>Delete Macro</source>
-        <translation>Smazat makro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3792"/>
-        <source>&amp;Delete Macro</source>
-        <translation>Smazat makr&amp;o</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Delete Macro</source>
+        <translation>Smazat makro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3794"/>
+        <source>&amp;Delete Macro</source>
+        <translation>Smazat makr&amp;o</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3800"/>
         <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="3810"/>
-        <source>Load Macro</source>
-        <translation>Načíst makro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3806"/>
-        <source>&amp;Load Macro</source>
-        <translation>&amp;Načíst makro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3812"/>
+        <source>Load Macro</source>
+        <translation>Načíst makro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3808"/>
+        <source>&amp;Load Macro</source>
+        <translation>&amp;Načíst makro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3814"/>
         <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="3824"/>
-        <source>Save Macro</source>
-        <translation>Uložit makro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3820"/>
-        <source>&amp;Save Macro</source>
-        <translation>&amp;Uložit makro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3826"/>
+        <source>Save Macro</source>
+        <translation>Uložit makro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
+        <source>&amp;Save Macro</source>
+        <translation>&amp;Uložit makro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3828"/>
         <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="3842"/>
+        <location filename="../ViewManager/ViewManager.py" line="3844"/>
         <source>&amp;Macros</source>
         <translation>&amp;Makra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3868"/>
-        <source>Toggle Bookmark</source>
-        <translation>Přepnout záložku</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3860"/>
-        <source>&amp;Toggle Bookmark</source>
-        <translation>Přepnou&amp;t záložku</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3860"/>
-        <source>Alt+Ctrl+T</source>
-        <comment>Bookmark|Toggle</comment>
-        <translation></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3870"/>
+        <source>Toggle Bookmark</source>
+        <translation>Přepnout záložku</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
+        <source>&amp;Toggle Bookmark</source>
+        <translation>Přepnou&amp;t záložku</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
+        <source>Alt+Ctrl+T</source>
+        <comment>Bookmark|Toggle</comment>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3872"/>
         <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="3887"/>
-        <source>Next Bookmark</source>
-        <translation>Následující záložka</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3879"/>
-        <source>&amp;Next Bookmark</source>
-        <translation>&amp;Následující záložka</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3879"/>
-        <source>Ctrl+PgDown</source>
-        <comment>Bookmark|Next</comment>
-        <translation></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3889"/>
+        <source>Next Bookmark</source>
+        <translation>Následující záložka</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3881"/>
+        <source>&amp;Next Bookmark</source>
+        <translation>&amp;Následující záložka</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3881"/>
+        <source>Ctrl+PgDown</source>
+        <comment>Bookmark|Next</comment>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3891"/>
         <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="3905"/>
-        <source>Previous Bookmark</source>
-        <translation>Předchozí záložka</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3897"/>
-        <source>&amp;Previous Bookmark</source>
-        <translation>&amp;Předchozí záložka</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3897"/>
-        <source>Ctrl+PgUp</source>
-        <comment>Bookmark|Previous</comment>
-        <translation></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3907"/>
+        <source>Previous Bookmark</source>
+        <translation>Předchozí záložka</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3899"/>
+        <source>&amp;Previous Bookmark</source>
+        <translation>&amp;Předchozí záložka</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3899"/>
+        <source>Ctrl+PgUp</source>
+        <comment>Bookmark|Previous</comment>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3909"/>
         <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="3922"/>
-        <source>Clear Bookmarks</source>
-        <translation>Vyčistit záložky</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3915"/>
-        <source>&amp;Clear Bookmarks</source>
-        <translation>Vyčistit (zr&amp;ušit) záložky</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3915"/>
-        <source>Alt+Ctrl+C</source>
-        <comment>Bookmark|Clear</comment>
-        <translation></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3924"/>
+        <source>Clear Bookmarks</source>
+        <translation>Vyčistit záložky</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
+        <source>&amp;Clear Bookmarks</source>
+        <translation>Vyčistit (zr&amp;ušit) záložky</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
+        <source>Alt+Ctrl+C</source>
+        <comment>Bookmark|Clear</comment>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3926"/>
         <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="3938"/>
-        <source>Goto Syntax Error</source>
-        <translation>Jít na Syntaktickou chybu</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3932"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation>&amp;Jít na Syntaktickou chybu</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3940"/>
+        <source>Goto Syntax Error</source>
+        <translation>Jít na Syntaktickou chybu</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3934"/>
+        <source>&amp;Goto Syntax Error</source>
+        <translation>&amp;Jít na Syntaktickou chybu</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3942"/>
         <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="3953"/>
-        <source>Clear Syntax Errors</source>
-        <translation>Vyčistit Syntaktické chyby</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3948"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation>V&amp;yčistit Syntaktické chyby</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3955"/>
+        <source>Clear Syntax Errors</source>
+        <translation>Vyčistit Syntaktické chyby</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3950"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation>V&amp;yčistit Syntaktické chyby</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3957"/>
         <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="4023"/>
-        <source>Next uncovered line</source>
-        <translation>Následují problémová řádka</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4017"/>
-        <source>&amp;Next uncovered line</source>
-        <translation>Nás&amp;ledující problémová řádka</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4025"/>
+        <source>Next uncovered line</source>
+        <translation>Následují problémová řádka</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4019"/>
+        <source>&amp;Next uncovered line</source>
+        <translation>Nás&amp;ledující problémová řádka</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4027"/>
         <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="4042"/>
-        <source>Previous uncovered line</source>
-        <translation>Předchozí problémová řádka</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4034"/>
-        <source>&amp;Previous uncovered line</source>
-        <translation>Př&amp;edchozí problémová řádka</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4044"/>
+        <source>Previous uncovered line</source>
+        <translation>Předchozí problémová řádka</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
+        <source>&amp;Previous uncovered line</source>
+        <translation>Př&amp;edchozí problémová řádka</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4046"/>
         <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="4060"/>
-        <source>Next Task</source>
-        <translation>Následující úloha</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4054"/>
-        <source>&amp;Next Task</source>
-        <translation>Následující úlo&amp;ha</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4062"/>
+        <source>Next Task</source>
+        <translation>Následující úloha</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4056"/>
+        <source>&amp;Next Task</source>
+        <translation>Následující úlo&amp;ha</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4064"/>
         <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="4077"/>
-        <source>Previous Task</source>
-        <translation>Předchozí úloha</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4070"/>
-        <source>&amp;Previous Task</source>
-        <translation>Předchozí úl&amp;oha</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4079"/>
+        <source>Previous Task</source>
+        <translation>Předchozí úloha</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4072"/>
+        <source>&amp;Previous Task</source>
+        <translation>Předchozí úl&amp;oha</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4081"/>
         <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="4133"/>
+        <location filename="../ViewManager/ViewManager.py" line="4135"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Záložky</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4179"/>
+        <location filename="../ViewManager/ViewManager.py" line="4181"/>
         <source>Bookmarks</source>
         <translation>Záložky</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4333"/>
         <source>Open files</source>
         <translation>Otevřené soubory</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4377"/>
         <source>File Modified</source>
         <translation>Soubor změněn</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5219"/>
+        <location filename="../ViewManager/ViewManager.py" line="5221"/>
         <source>&amp;Clear</source>
         <translation>&amp;Vyčistit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5213"/>
+        <location filename="../ViewManager/ViewManager.py" line="5215"/>
         <source>&amp;Add</source>
         <translation>Přid&amp;at</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5216"/>
+        <location filename="../ViewManager/ViewManager.py" line="5218"/>
         <source>&amp;Edit...</source>
         <translation>&amp;Edit...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1198"/>
+        <location filename="../ViewManager/ViewManager.py" line="1199"/>
         <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="1217"/>
+        <location filename="../ViewManager/ViewManager.py" line="1218"/>
         <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="1234"/>
+        <location filename="../ViewManager/ViewManager.py" line="1235"/>
         <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="863"/>
+        <location filename="../ViewManager/ViewManager.py" line="864"/>
         <source>Export as</source>
         <translation>Exportovat jako</translation>
     </message>
@@ -85016,43 +85016,43 @@
         <translation type="obsolete">Rychlé hledání texteditoru</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2910"/>
+        <location filename="../ViewManager/ViewManager.py" line="2911"/>
         <source>Clear search markers</source>
         <translation>Vyčistit značky hledání</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2910"/>
+        <location filename="../ViewManager/ViewManager.py" line="2911"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <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="2920"/>
+        <location filename="../ViewManager/ViewManager.py" line="2921"/>
         <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="2878"/>
+        <location filename="../ViewManager/ViewManager.py" line="2879"/>
         <source>Search next occurrence of text</source>
         <translation>Hledat další výskyt textu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2880"/>
+        <location filename="../ViewManager/ViewManager.py" line="2881"/>
         <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="2898"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>Search previous occurrence of text</source>
         <translation>Hledat předchozí výskyt textu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2900"/>
+        <location filename="../ViewManager/ViewManager.py" line="2901"/>
         <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>
@@ -85072,982 +85072,982 @@
         <translation type="obsolete">&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="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>Calltip</source>
         <translation>Rychlé tipy</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>&amp;Calltip</source>
         <translation>&amp;Rychlé tipy</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1370"/>
+        <location filename="../ViewManager/ViewManager.py" line="1371"/>
         <source>Show Calltips</source>
         <translation>Zobrazit Rychlé tipy</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1372"/>
+        <location filename="../ViewManager/ViewManager.py" line="1373"/>
         <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="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="749"/>
         <source>Print Preview</source>
         <translation>Náhled tisku</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="753"/>
+        <location filename="../ViewManager/ViewManager.py" line="754"/>
         <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="755"/>
+        <location filename="../ViewManager/ViewManager.py" line="756"/>
         <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="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <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="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <source>Shift+Return</source>
         <translation>Shift+Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <source>Shift+Enter</source>
         <translation>Shift+Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Replace in Files</source>
         <translation>Nahradit v souborech</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Replace in F&amp;iles...</source>
         <translation>Nahrad&amp;it v souborech...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3196"/>
+        <location filename="../ViewManager/ViewManager.py" line="3197"/>
         <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="3198"/>
+        <location filename="../ViewManager/ViewManager.py" line="3199"/>
         <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="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4221"/>
+        <location filename="../ViewManager/ViewManager.py" line="4223"/>
         <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="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>Automatic spell checking</source>
         <translation>Automatická kontrola pravopisu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>&amp;Automatic spell checking</source>
         <translation>&amp;Automatická kontrola pravopisu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4239"/>
-        <source>(De-)Activate automatic spell checking</source>
-        <translation>(De-)aktivovat akutomatickou kontrolu</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4241"/>
+        <source>(De-)Activate automatic spell checking</source>
+        <translation>(De-)aktivovat akutomatickou kontrolu</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4243"/>
         <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="4308"/>
+        <location filename="../ViewManager/ViewManager.py" line="4310"/>
         <source>Spelling</source>
         <translation>Pravopis</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4377"/>
         <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="4774"/>
+        <location filename="../ViewManager/ViewManager.py" line="4776"/>
         <source>Line: {0:5}</source>
         <translation>Řádek: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4780"/>
+        <location filename="../ViewManager/ViewManager.py" line="4782"/>
         <source>Pos: {0:5}</source>
         <translation>Poz: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3970"/>
+        <location filename="../ViewManager/ViewManager.py" line="3972"/>
         <source>Next warning message</source>
         <translation>Další varování</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3964"/>
+        <location filename="../ViewManager/ViewManager.py" line="3966"/>
         <source>&amp;Next warning message</source>
         <translation>Další varová&amp;ní</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3989"/>
+        <location filename="../ViewManager/ViewManager.py" line="3991"/>
         <source>Previous warning message</source>
         <translation>Předchozí varování</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3981"/>
+        <location filename="../ViewManager/ViewManager.py" line="3983"/>
         <source>&amp;Previous warning message</source>
         <translation>&amp;Předchozí varování</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4007"/>
+        <location filename="../ViewManager/ViewManager.py" line="4009"/>
         <source>Clear Warning Messages</source>
         <translation>Vyčistit varovná hlášení</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4000"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>&amp;Vyčistit varovná hlášení</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1031"/>
+        <location filename="../ViewManager/ViewManager.py" line="1032"/>
         <source>Join Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1024"/>
+        <location filename="../ViewManager/ViewManager.py" line="1025"/>
         <source>Ctrl+J</source>
         <comment>Edit|Join Lines</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1033"/>
+        <location filename="../ViewManager/ViewManager.py" line="1034"/>
         <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="3110"/>
+        <location filename="../ViewManager/ViewManager.py" line="3111"/>
         <source>Goto Last Edit Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3099"/>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3099"/>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <source>Ctrl+Shift+G</source>
         <comment>Search|Goto Last Edit Location</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3113"/>
+        <location filename="../ViewManager/ViewManager.py" line="3114"/>
         <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="3122"/>
+        <location filename="../ViewManager/ViewManager.py" line="3123"/>
         <source>Goto Previous Method or Class</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3122"/>
+        <location filename="../ViewManager/ViewManager.py" line="3123"/>
         <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="3132"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <source>Go to the previous method or class definition</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3136"/>
+        <location filename="../ViewManager/ViewManager.py" line="3137"/>
         <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="3146"/>
+        <location filename="../ViewManager/ViewManager.py" line="3147"/>
         <source>Goto Next Method or Class</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3146"/>
+        <location filename="../ViewManager/ViewManager.py" line="3147"/>
         <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="3156"/>
+        <location filename="../ViewManager/ViewManager.py" line="3157"/>
         <source>Go to the next method or class definition</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3158"/>
+        <location filename="../ViewManager/ViewManager.py" line="3159"/>
         <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="3605"/>
+        <location filename="../ViewManager/ViewManager.py" line="3607"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3610"/>
-        <source>Preview the current file in the web browser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3612"/>
+        <source>Preview the current file in the web browser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3614"/>
         <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="1461"/>
+        <location filename="../ViewManager/ViewManager.py" line="1462"/>
         <source>Meta+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1474"/>
+        <location filename="../ViewManager/ViewManager.py" line="1475"/>
         <source>Meta+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1486"/>
+        <location filename="../ViewManager/ViewManager.py" line="1487"/>
         <source>Meta+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1498"/>
+        <location filename="../ViewManager/ViewManager.py" line="1499"/>
         <source>Meta+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1559"/>
+        <location filename="../ViewManager/ViewManager.py" line="1560"/>
         <source>Move to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1575"/>
+        <location filename="../ViewManager/ViewManager.py" line="1576"/>
         <source>Move to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1592"/>
+        <location filename="../ViewManager/ViewManager.py" line="1593"/>
         <source>Move to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1600"/>
+        <location filename="../ViewManager/ViewManager.py" line="1601"/>
         <source>Meta+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1668"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Meta+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1674"/>
+        <location filename="../ViewManager/ViewManager.py" line="1675"/>
         <source>Move to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1692"/>
         <source>Move to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1737"/>
         <source>Meta+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1751"/>
+        <location filename="../ViewManager/ViewManager.py" line="1752"/>
         <source>Meta+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1766"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Meta+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1781"/>
+        <location filename="../ViewManager/ViewManager.py" line="1782"/>
         <source>Meta+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1849"/>
+        <location filename="../ViewManager/ViewManager.py" line="1850"/>
         <source>Extend selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1867"/>
+        <location filename="../ViewManager/ViewManager.py" line="1868"/>
         <source>Extend selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1875"/>
+        <location filename="../ViewManager/ViewManager.py" line="1876"/>
         <source>Meta+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1932"/>
+        <location filename="../ViewManager/ViewManager.py" line="1933"/>
         <source>Meta+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1939"/>
         <source>Extend selection to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1946"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Ctrl+Shift+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1955"/>
+        <location filename="../ViewManager/ViewManager.py" line="1956"/>
         <source>Extend selection to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1963"/>
+        <location filename="../ViewManager/ViewManager.py" line="1964"/>
         <source>Ctrl+Shift+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1981"/>
+        <location filename="../ViewManager/ViewManager.py" line="1982"/>
         <source>Meta+H</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1990"/>
+        <location filename="../ViewManager/ViewManager.py" line="1991"/>
         <source>Delete previous character if not at start of line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2011"/>
+        <location filename="../ViewManager/ViewManager.py" line="2012"/>
         <source>Meta+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2055"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Meta+K</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2164"/>
+        <location filename="../ViewManager/ViewManager.py" line="2165"/>
         <source>Move to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Extend selection to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2223"/>
+        <location filename="../ViewManager/ViewManager.py" line="2224"/>
         <source>Meta+Alt+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2238"/>
+        <location filename="../ViewManager/ViewManager.py" line="2239"/>
         <source>Meta+Alt+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2256"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <source>Meta+Alt+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2275"/>
         <source>Meta+Alt+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2280"/>
+        <location filename="../ViewManager/ViewManager.py" line="2281"/>
         <source>Extend rectangular selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2299"/>
+        <location filename="../ViewManager/ViewManager.py" line="2300"/>
         <source>Extend rectangular selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2309"/>
+        <location filename="../ViewManager/ViewManager.py" line="2310"/>
         <source>Meta+Alt+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2312"/>
+        <location filename="../ViewManager/ViewManager.py" line="2313"/>
         <source>Alt+Shift+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2333"/>
+        <location filename="../ViewManager/ViewManager.py" line="2334"/>
         <source>Alt+Shift+PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2345"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <source>Meta+Alt+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2365"/>
+        <location filename="../ViewManager/ViewManager.py" line="2366"/>
         <source>Scroll to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2380"/>
+        <location filename="../ViewManager/ViewManager.py" line="2381"/>
         <source>Scroll to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2395"/>
+        <location filename="../ViewManager/ViewManager.py" line="2396"/>
         <source>Scroll vertically to center current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2403"/>
+        <location filename="../ViewManager/ViewManager.py" line="2404"/>
         <source>Meta+L</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2410"/>
+        <location filename="../ViewManager/ViewManager.py" line="2411"/>
         <source>Move to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2425"/>
+        <location filename="../ViewManager/ViewManager.py" line="2426"/>
         <source>Extend selection to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2441"/>
+        <location filename="../ViewManager/ViewManager.py" line="2442"/>
         <source>Move to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2453"/>
+        <location filename="../ViewManager/ViewManager.py" line="2454"/>
         <source>Extend selection to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2465"/>
+        <location filename="../ViewManager/ViewManager.py" line="2466"/>
         <source>Move to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2473"/>
+        <location filename="../ViewManager/ViewManager.py" line="2474"/>
         <source>Meta+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2480"/>
+        <location filename="../ViewManager/ViewManager.py" line="2481"/>
         <source>Extend selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2491"/>
+        <location filename="../ViewManager/ViewManager.py" line="2492"/>
         <source>Meta+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2498"/>
+        <location filename="../ViewManager/ViewManager.py" line="2499"/>
         <source>Extend rectangular selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2508"/>
+        <location filename="../ViewManager/ViewManager.py" line="2509"/>
         <source>Meta+Alt+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2516"/>
+        <location filename="../ViewManager/ViewManager.py" line="2517"/>
         <source>Extend selection to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2535"/>
+        <location filename="../ViewManager/ViewManager.py" line="2536"/>
         <source>Move to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2549"/>
+        <location filename="../ViewManager/ViewManager.py" line="2550"/>
         <source>Extend selection to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2564"/>
+        <location filename="../ViewManager/ViewManager.py" line="2565"/>
         <source>Move to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2581"/>
+        <location filename="../ViewManager/ViewManager.py" line="2582"/>
         <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="2598"/>
+        <location filename="../ViewManager/ViewManager.py" line="2599"/>
         <source>Move to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2612"/>
+        <location filename="../ViewManager/ViewManager.py" line="2613"/>
         <source>Extend selection to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2627"/>
+        <location filename="../ViewManager/ViewManager.py" line="2628"/>
         <source>Stuttered move up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2639"/>
+        <location filename="../ViewManager/ViewManager.py" line="2640"/>
         <source>Stuttered extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2652"/>
+        <location filename="../ViewManager/ViewManager.py" line="2653"/>
         <source>Stuttered move down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2664"/>
+        <location filename="../ViewManager/ViewManager.py" line="2665"/>
         <source>Stuttered extend selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2677"/>
+        <location filename="../ViewManager/ViewManager.py" line="2678"/>
         <source>Delete right to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2685"/>
+        <location filename="../ViewManager/ViewManager.py" line="2686"/>
         <source>Alt+Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2692"/>
+        <location filename="../ViewManager/ViewManager.py" line="2693"/>
         <source>Move selected lines up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2704"/>
+        <location filename="../ViewManager/ViewManager.py" line="2705"/>
         <source>Move selected lines down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2318"/>
+        <location filename="../ViewManager/ViewManager.py" line="2319"/>
         <source>Alt+Shift+PgUp</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1134"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Toggle Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1134"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Ctrl+Shift+M</source>
         <comment>Edit|Toggle Comment</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1142"/>
+        <location filename="../ViewManager/ViewManager.py" line="1143"/>
         <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="1146"/>
+        <location filename="../ViewManager/ViewManager.py" line="1147"/>
         <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="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Zoom reset</source>
         <translation type="unfinished">Resetovat lupu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished">&amp;Resetovat lupu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3381"/>
-        <source>Reset the zoom of the text</source>
-        <translation type="unfinished">Resetovat lupu textu</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3383"/>
+        <source>Reset the zoom of the text</source>
+        <translation type="unfinished">Resetovat lupu textu</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3385"/>
         <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="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="714"/>
         <source>Save a&amp;ll</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4094"/>
-        <source>Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4088"/>
-        <source>&amp;Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4096"/>
+        <source>Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4090"/>
+        <source>&amp;Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <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="4112"/>
-        <source>Previous Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4105"/>
-        <source>&amp;Previous Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4114"/>
+        <source>Previous Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4107"/>
+        <source>&amp;Previous Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4116"/>
         <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="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Check spelling</source>
         <translation type="unfinished">Kontrola pravopisu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Check &amp;spelling...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4223"/>
+        <location filename="../ViewManager/ViewManager.py" line="4225"/>
         <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="4272"/>
-        <source>Edit Dictionary</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4274"/>
+        <source>Edit Dictionary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4276"/>
         <source>Project Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4277"/>
+        <location filename="../ViewManager/ViewManager.py" line="4279"/>
         <source>Project Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4282"/>
+        <location filename="../ViewManager/ViewManager.py" line="4284"/>
         <source>User Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4285"/>
+        <location filename="../ViewManager/ViewManager.py" line="4287"/>
         <source>User Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6255"/>
+        <location filename="../ViewManager/ViewManager.py" line="6257"/>
         <source>Edit Spelling Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6232"/>
+        <location filename="../ViewManager/ViewManager.py" line="6234"/>
         <source>Editing {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6214"/>
+        <location filename="../ViewManager/ViewManager.py" line="6216"/>
         <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="6243"/>
+        <location filename="../ViewManager/ViewManager.py" line="6245"/>
         <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="6255"/>
+        <location filename="../ViewManager/ViewManager.py" line="6257"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2929"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>Search current word forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2929"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation type="unfinished">Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2940"/>
+        <location filename="../ViewManager/ViewManager.py" line="2941"/>
         <source>Search next occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2943"/>
+        <location filename="../ViewManager/ViewManager.py" line="2944"/>
         <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="2952"/>
+        <location filename="../ViewManager/ViewManager.py" line="2953"/>
         <source>Search current word backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2952"/>
+        <location filename="../ViewManager/ViewManager.py" line="2953"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2963"/>
+        <location filename="../ViewManager/ViewManager.py" line="2964"/>
         <source>Search previous occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2966"/>
+        <location filename="../ViewManager/ViewManager.py" line="2967"/>
         <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="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <source>Search in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <source>Search in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <source>Meta+Ctrl+Alt+F</source>
         <comment>Search|Search Open Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3220"/>
+        <location filename="../ViewManager/ViewManager.py" line="3221"/>
         <source>Search for a text in open files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3222"/>
+        <location filename="../ViewManager/ViewManager.py" line="3223"/>
         <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="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <source>Replace in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <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="3242"/>
+        <location filename="../ViewManager/ViewManager.py" line="3243"/>
         <source>Search for a text in open files and replace it</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3244"/>
+        <location filename="../ViewManager/ViewManager.py" line="3245"/>
         <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="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <source>Replace in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1399"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Sort</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1399"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Ctrl+Alt+S</source>
         <comment>Edit|Sort</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1406"/>
+        <location filename="../ViewManager/ViewManager.py" line="1407"/>
         <source>Sort the lines containing the rectangular selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1409"/>
+        <location filename="../ViewManager/ViewManager.py" line="1410"/>
         <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="4801"/>
+        <location filename="../ViewManager/ViewManager.py" line="4803"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4808"/>
+        <location filename="../ViewManager/ViewManager.py" line="4810"/>
         <source>EOL Mode: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3491"/>
         <source>New Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3491"/>
         <source>New &amp;Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3494"/>
-        <source>Open a new view of the current document</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3496"/>
+        <source>Open a new view of the current document</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3498"/>
         <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="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3508"/>
         <source>New Document View (with new split)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3513"/>
+        <location filename="../ViewManager/ViewManager.py" line="3515"/>
         <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="3516"/>
+        <location filename="../ViewManager/ViewManager.py" line="3518"/>
         <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="3972"/>
+        <location filename="../ViewManager/ViewManager.py" line="3974"/>
         <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="3991"/>
+        <location filename="../ViewManager/ViewManager.py" line="3993"/>
         <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="4009"/>
+        <location filename="../ViewManager/ViewManager.py" line="4011"/>
         <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="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1277"/>
         <source>Ctrl+Space</source>
         <comment>Edit|Complete</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1294"/>
+        <location filename="../ViewManager/ViewManager.py" line="1295"/>
         <source>Ctrl+Shift+Space</source>
         <comment>Edit|Complete from Document</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1317"/>
+        <location filename="../ViewManager/ViewManager.py" line="1318"/>
         <source>Ctrl+Alt+Space</source>
         <comment>Edit|Complete from APIs</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1340"/>
+        <location filename="../ViewManager/ViewManager.py" line="1341"/>
         <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="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>Meta+Alt+Space</source>
         <comment>Edit|Calltip</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="697"/>
+        <location filename="../ViewManager/ViewManager.py" line="698"/>
         <source>Save Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="697"/>
+        <location filename="../ViewManager/ViewManager.py" line="698"/>
         <source>Save &amp;Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="702"/>
+        <location filename="../ViewManager/ViewManager.py" line="703"/>
         <source>Save a copy of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="704"/>
+        <location filename="../ViewManager/ViewManager.py" line="705"/>
         <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>
@@ -86058,141 +86058,141 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2995"/>
         <source>Replace and Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2995"/>
         <source>Meta+R</source>
         <comment>Search|Replace and Search</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3004"/>
+        <location filename="../ViewManager/ViewManager.py" line="3005"/>
         <source>Replace the found text and search the next occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3007"/>
+        <location filename="../ViewManager/ViewManager.py" line="3008"/>
         <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="3018"/>
+        <location filename="../ViewManager/ViewManager.py" line="3019"/>
         <source>Replace Occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3018"/>
+        <location filename="../ViewManager/ViewManager.py" line="3019"/>
         <source>Ctrl+Meta+R</source>
         <comment>Search|Replace Occurrence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3028"/>
+        <location filename="../ViewManager/ViewManager.py" line="3029"/>
         <source>Replace the found text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3030"/>
+        <location filename="../ViewManager/ViewManager.py" line="3031"/>
         <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="3040"/>
+        <location filename="../ViewManager/ViewManager.py" line="3041"/>
         <source>Replace All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3040"/>
+        <location filename="../ViewManager/ViewManager.py" line="3041"/>
         <source>Shift+Meta+R</source>
         <comment>Search|Replace All</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3050"/>
+        <location filename="../ViewManager/ViewManager.py" line="3051"/>
         <source>Replace search text occurrences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3052"/>
+        <location filename="../ViewManager/ViewManager.py" line="3053"/>
         <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="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1382"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1382"/>
         <source>Ctrl+Alt+I</source>
         <comment>Edit|Code Info</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1389"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Show Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1392"/>
         <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="3462"/>
-        <source>Clear all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3458"/>
-        <source>Clear &amp;all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3464"/>
+        <source>Clear all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3460"/>
+        <source>Clear &amp;all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3466"/>
         <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="2120"/>
+        <location filename="../ViewManager/ViewManager.py" line="2121"/>
         <source>Reverse selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2120"/>
+        <location filename="../ViewManager/ViewManager.py" line="2121"/>
         <source>Meta+Alt+R</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3622"/>
+        <location filename="../ViewManager/ViewManager.py" line="3624"/>
         <source>Python AST Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3627"/>
-        <source>Show the AST for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3629"/>
+        <source>Show the AST for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3631"/>
         <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="3639"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>Python Disassembly Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3646"/>
-        <source>Show the Disassembly for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3648"/>
+        <source>Show the Disassembly for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3650"/>
         <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>
@@ -86212,23 +86212,23 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1418"/>
+        <location filename="../ViewManager/ViewManager.py" line="1419"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1418"/>
+        <location filename="../ViewManager/ViewManager.py" line="1419"/>
         <source>Ctrl+Alt+D</source>
         <comment>Edit|Generate Docstring</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1425"/>
+        <location filename="../ViewManager/ViewManager.py" line="1426"/>
         <source>Generate a docstring for the current function/method</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1428"/>
+        <location filename="../ViewManager/ViewManager.py" line="1429"/>
         <source>&lt;b&gt;Generate Docstring&lt;/b&gt;&lt;p&gt;Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -86709,32 +86709,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="342"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="346"/>
         <source>&lt;virtualenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="360"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="364"/>
         <source>&lt;No suitable virtualenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="362"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="366"/>
         <source>virtualenv Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="396"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="400"/>
         <source>&lt;pyvenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="416"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="420"/>
         <source>&lt;No suitable pyvenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="418"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="422"/>
         <source>pyvenv Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -86869,7 +86869,7 @@
         <translation type="unfinished">Textové soubory (*.txt);;Všechny soubory (*)</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="430"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="434"/>
         <source>conda Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -86904,85 +86904,85 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="110"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="112"/>
         <source>Executing: {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="154"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="163"/>
         <source>Failed
 
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="164"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="173"/>
         <source>
 pyvenv finished.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="166"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="175"/>
         <source>
 virtualenv finished.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="191"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="200"/>
         <source>No suitable pyvenv program could be started.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="195"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="204"/>
         <source>No suitable virtualenv program could be started.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="259"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="268"/>
         <source>
 Writing log file &apos;{0}&apos;.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="264"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="273"/>
         <source>Output:
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="269"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="278"/>
         <source>Errors:
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="272"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="281"/>
         <source>The logfile &apos;{0}&apos; could not be written.
 Reason: {1}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="302"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="311"/>
         <source>Done.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="292"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="301"/>
         <source>
 Writing script file &apos;{0}&apos;.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="299"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="308"/>
         <source>The script file &apos;{0}&apos; could not be written.
 Reason: {1}
 </source>
@@ -87442,82 +87442,82 @@
 <context>
     <name>WatchPointViewer</name>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="47"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="49"/>
         <source>Watchpoints</source>
         <translation>Sledovací body</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="174"/>
-        <source>Add</source>
-        <translation>Přidat</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="141"/>
-        <source>Edit...</source>
-        <translation>Editovat...</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="143"/>
-        <source>Enable</source>
-        <translation>Zapnout</translation>
-    </message>
-    <message>
         <location filename="../Debugger/WatchPointViewer.py" line="178"/>
-        <source>Enable all</source>
-        <translation>Zapnout vše</translation>
+        <source>Add</source>
+        <translation>Přidat</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="145"/>
+        <source>Edit...</source>
+        <translation>Editovat...</translation>
     </message>
     <message>
         <location filename="../Debugger/WatchPointViewer.py" line="147"/>
-        <source>Disable</source>
-        <translation>Vypnout</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="183"/>
-        <source>Disable all</source>
-        <translation>Vypnout vše</translation>
+        <source>Enable</source>
+        <translation>Zapnout</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="182"/>
+        <source>Enable all</source>
+        <translation>Zapnout vše</translation>
     </message>
     <message>
         <location filename="../Debugger/WatchPointViewer.py" line="151"/>
+        <source>Disable</source>
+        <translation>Vypnout</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="187"/>
+        <source>Disable all</source>
+        <translation>Vypnout vše</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="155"/>
         <source>Delete</source>
         <translation>Smazat</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="188"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="192"/>
         <source>Delete all</source>
         <translation>Smazat vše</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="176"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="180"/>
         <source>Enable selected</source>
         <translation>Zapnout vybrané</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="181"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="185"/>
         <source>Disable selected</source>
         <translation>Vypnout vybrané</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="186"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="190"/>
         <source>Delete selected</source>
         <translation>Smazat vybrané</translation>
     </message>
     <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="253"/>
+        <source>Watch expression already exists</source>
+        <translation>Sledovací bod již existuje</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="195"/>
+        <source>Configure...</source>
+        <translation>Konfigurovat...</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="244"/>
+        <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; already exists.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Sledovací bod &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; již existuje.&lt;/p&gt;</translation>
+    </message>
+    <message>
         <location filename="../Debugger/WatchPointViewer.py" line="249"/>
-        <source>Watch expression already exists</source>
-        <translation>Sledovací bod již existuje</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="191"/>
-        <source>Configure...</source>
-        <translation>Konfigurovat...</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="240"/>
-        <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; already exists.&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Sledovací bod &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; již existuje.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="245"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Sledovací bod &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; pro proměnnou &lt;b&gt;{1}&lt;/b&gt; již existuje.&lt;/p&gt;</translation>
     </message>
@@ -87979,33 +87979,33 @@
         <translation type="unfinished">Vybrat vše</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="42"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="43"/>
         <source>Info</source>
         <translation type="unfinished">Info</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="43"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="45"/>
         <source>Warning</source>
         <translation type="unfinished">Varování</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="44"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="47"/>
         <source>Error</source>
         <translation type="unfinished">Chyba</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="97"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="100"/>
         <source>[{0}] {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="102"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="105"/>
         <source> at line {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="107"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="110"/>
         <source>URL: {0}
 </source>
         <translation type="unfinished"></translation>
@@ -88575,12 +88575,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="185"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="188"/>
         <source>Suspicuous URL detected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="185"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="188"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -88819,12 +88819,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="702"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="706"/>
         <source>SSL Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="702"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="706"/>
         <source>This site does not contain SSL information.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -88890,107 +88890,107 @@
         <translation type="unfinished">Zobrazit menu navigace</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="135"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="136"/>
         <source>Show a navigation menu for closed tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="149"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="152"/>
         <source>Open a new web browser tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="163"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="166"/>
         <source>New Tab</source>
         <translation type="unfinished">Nový Tab</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="167"/>
-        <source>Move Left</source>
-        <translation type="unfinished">Posun doleva</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="170"/>
+        <source>Move Left</source>
+        <translation type="unfinished">Posun doleva</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="173"/>
         <source>Move Right</source>
         <translation type="unfinished">Posun doprava</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="174"/>
-        <source>Duplicate Page</source>
-        <translation type="unfinished">Duplikovat stranu</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="177"/>
-        <source>Close</source>
-        <translation type="unfinished">Zavřít</translation>
+        <source>Duplicate Page</source>
+        <translation type="unfinished">Duplikovat stranu</translation>
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="180"/>
+        <source>Close</source>
+        <translation type="unfinished">Zavřít</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="183"/>
         <source>Close Others</source>
         <translation type="unfinished">Zavřít ostatní</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="211"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="214"/>
         <source>Close All</source>
         <translation type="unfinished">Zavřít vše</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="186"/>
-        <source>Print Preview</source>
-        <translation type="unfinished">Náhled tisku</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="189"/>
-        <source>Print</source>
-        <translation type="unfinished">Tisk</translation>
+        <source>Print Preview</source>
+        <translation type="unfinished">Náhled tisku</translation>
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="192"/>
+        <source>Print</source>
+        <translation type="unfinished">Tisk</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="195"/>
         <source>Print as PDF</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="213"/>
-        <source>Reload All</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="216"/>
+        <source>Reload All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="219"/>
         <source>Bookmark All Tabs</source>
         <translation type="unfinished">Vytvořit záložky pro všechny taby</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="220"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="223"/>
         <source>Restore Closed Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="456"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="459"/>
         <source>...</source>
         <translation type="unfinished">...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="912"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="922"/>
         <source>Loading...</source>
         <translation type="unfinished">Načítám...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="921"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="931"/>
         <source>Finished loading</source>
         <translation type="unfinished">Načteno</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="888"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="898"/>
         <source>Failed to load</source>
         <translation type="unfinished">Načtení selhalo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
         <source>Are you sure you want to close the window?</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
         <source>Are you sure you want to close the window?
 You have %n tab(s) open.</source>
         <translation type="unfinished">
@@ -89000,47 +89000,47 @@
         </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="969"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="979"/>
         <source>&amp;Quit</source>
         <translation type="unfinished">&amp;Konec</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="982"/>
         <source>C&amp;lose Current Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1153"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1165"/>
         <source>Restore All Closed Tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1155"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1167"/>
         <source>Clear List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="250"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="253"/>
         <source>Unmute Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="254"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="257"/>
         <source>Mute Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="753"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="763"/>
         <source>Print to PDF</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="703"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="713"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="753"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="763"/>
         <source>&lt;p&gt;The PDF could not be written to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Error:&lt;/b&gt; {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -89048,7 +89048,7 @@
 <context>
     <name>WebBrowserTools</name>
     <message>
-        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="250"/>
+        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="254"/>
         <source>&lt;unknown&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -89266,7 +89266,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1791"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1816"/>
         <source>Try reloading the page or closing some tabs to make more memory available.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -89286,22 +89286,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1780"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1797"/>
         <source>Render Process terminated abnormally</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1783"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1804"/>
         <source>The render process crashed while loading this page.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1786"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1811"/>
         <source>The render process was killed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1788"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1813"/>
         <source>The render process terminated while loading this page.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -89311,37 +89311,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1914"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1939"/>
         <source>Web Archive (*.mhtml *.mht)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1915"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1940"/>
         <source>HTML File (*.html *.htm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1916"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1941"/>
         <source>HTML File with all resources (*.html *.htm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1939"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1964"/>
         <source>Save Web Page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1731"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1742"/>
         <source>Empty Page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2289"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2321"/>
         <source>Quota Request</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2289"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2321"/>
         <source>&lt;p&gt; Allow the website at &lt;b&gt;{0}&lt;/b&gt; to use &lt;b&gt;{1}&lt;/b&gt; of persistent storage?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -89470,1214 +89470,1214 @@
         <translation type="unfinished">Obsah</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1467"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1472"/>
         <source>Index</source>
         <translation type="unfinished">Index</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1480"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1485"/>
         <source>Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1743"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1748"/>
         <source>JavaScript Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>New Tab</source>
         <translation type="unfinished">Nový Tab</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>&amp;New Tab</source>
         <translation type="unfinished">&amp;Nový tab</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>Ctrl+T</source>
         <comment>File|New Tab</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="666"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="671"/>
         <source>Open a new web browser tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="667"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="672"/>
         <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>New Window</source>
         <translation type="unfinished">Nové okno</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>New &amp;Window</source>
         <translation type="unfinished">&amp;Nové okno</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>Ctrl+N</source>
         <comment>File|New Window</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="680"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="685"/>
         <source>Open a new web browser window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="681"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="686"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new web browser window in the current privacy mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>New Private Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="689"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="694"/>
         <source>New &amp;Private Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="689"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="694"/>
         <source>Ctrl+Shift+P</source>
         <comment>File|New Private Window</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="695"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="700"/>
         <source>Open a new private web browser window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="697"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="702"/>
         <source>&lt;b&gt;New Private Window&lt;/b&gt;&lt;p&gt;This opens a new private web browser window by starting a new web browser instance in private mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2503"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2508"/>
         <source>Open File</source>
         <translation type="unfinished">Otevřít soubor</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="705"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="710"/>
         <source>&amp;Open File</source>
         <translation type="unfinished">&amp;Otevřít soubor</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="705"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="710"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="711"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="716"/>
         <source>Open a file for display</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="712"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="717"/>
         <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new file for display. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Open File in New Tab</source>
         <translation type="unfinished">Otevřít soubor v novém tabu</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Open File in New &amp;Tab</source>
         <translation type="unfinished">Otevřít soubor do nového &amp;tabu</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Shift+Ctrl+O</source>
         <comment>File|Open in new tab</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="726"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="731"/>
         <source>Open a file for display in a new tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="733"/>
         <source>&lt;b&gt;Open File in New Tab&lt;/b&gt;&lt;p&gt;This opens a new file for display in a new tab. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="754"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="759"/>
         <source>Save Page Screen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="754"/>
-        <source>Save Page Screen...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="759"/>
+        <source>Save Page Screen...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="764"/>
         <source>Save the visible part of the current page as a screen shot</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="772"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="777"/>
         <source>Import Bookmarks</source>
         <translation type="unfinished">Importovat záložky</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="772"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="777"/>
         <source>&amp;Import Bookmarks...</source>
         <translation type="unfinished">&amp;Importovat záložky...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="776"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="781"/>
         <source>Import bookmarks from other browsers</source>
         <translation type="unfinished">Import záložek z jiných prohlížečů</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="778"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="783"/>
         <source>&lt;b&gt;Import Bookmarks&lt;/b&gt;&lt;p&gt;Import bookmarks from other browsers.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Import záložek&lt;/b&gt;&lt;p&gt;Import záložek z jiných prohlížečů.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="786"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="791"/>
         <source>Export Bookmarks</source>
         <translation type="unfinished">Export záložek</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="786"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="791"/>
         <source>&amp;Export Bookmarks...</source>
         <translation type="unfinished">&amp;Exportovat záložky...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="790"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="795"/>
         <source>Export the bookmarks into a file</source>
         <translation type="unfinished">Export záložek do souboru</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="792"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="797"/>
         <source>&lt;b&gt;Export Bookmarks&lt;/b&gt;&lt;p&gt;Export the bookmarks into a file.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Export záložek&lt;/b&gt;&lt;p&gt;Export záložek do souboru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2122"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2127"/>
         <source>Print</source>
         <translation type="unfinished">Tisk</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="800"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="805"/>
         <source>&amp;Print</source>
         <translation type="unfinished">&amp;Tisk</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="800"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="805"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="806"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="811"/>
         <source>Print the displayed help</source>
         <translation type="unfinished">Tisknout zobrazenou nápovědu</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="807"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="812"/>
         <source>&lt;b&gt;Print&lt;/b&gt;&lt;p&gt;Print the displayed help text.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Tisk&lt;/b&gt;&lt;p&gt;Tisknout zobrazenou nápovědu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="814"/>
-        <source>Print as PDF</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="819"/>
+        <source>Print as PDF</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="824"/>
         <source>Print the displayed help as PDF</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="821"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="826"/>
         <source>&lt;b&gt;Print as PDF&lt;/b&gt;&lt;p&gt;Print the displayed help text as a PDF file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="829"/>
-        <source>Print Preview</source>
-        <translation type="unfinished">Náhled tisku</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="834"/>
+        <source>Print Preview</source>
+        <translation type="unfinished">Náhled tisku</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="839"/>
         <source>Print preview of the displayed help</source>
         <translation type="unfinished">Posun na hlavní stranu nápovědy</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="836"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="841"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the displayed help text.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Vytisknout náhled&lt;/b&gt;&lt;p&gt;Tisknout náhled zobrazeného textu nápovědy.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>Close</source>
         <translation type="unfinished">Zavřít</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>&amp;Close</source>
         <translation type="unfinished">&amp;Zavřít</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="864"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="869"/>
         <source>Close the current help window</source>
         <translation type="unfinished">Zavřít aktuální okno nápovědy</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="866"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="871"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="873"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="878"/>
         <source>Close All</source>
         <translation type="unfinished">Zavřít vše</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="873"/>
-        <source>Close &amp;All</source>
-        <translation type="unfinished">Z&amp;avřít vše</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="877"/>
-        <source>Close all help windows</source>
-        <translation type="unfinished">Zavřít všechna okna s nápovědou</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="878"/>
+        <source>Close &amp;All</source>
+        <translation type="unfinished">Z&amp;avřít vše</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="882"/>
+        <source>Close all help windows</source>
+        <translation type="unfinished">Zavřít všechna okna s nápovědou</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="883"/>
         <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all web browser windows except the first one.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="886"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="891"/>
         <source>Quit</source>
         <translation type="unfinished">Konec</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2854"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2859"/>
         <source>&amp;Quit</source>
         <translation type="unfinished">&amp;Konec</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="886"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="891"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>Backward</source>
         <translation type="unfinished">Nazpět</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>&amp;Backward</source>
         <translation type="unfinished">&amp;Nazpět</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>Alt+Left</source>
         <comment>Go|Backward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="906"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="911"/>
         <source>Move one screen backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="907"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="912"/>
         <source>&lt;b&gt;Backward&lt;/b&gt;&lt;p&gt;Moves one screen backward. If none is available, this action is disabled.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>Forward</source>
         <translation type="unfinished">Dopředu</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>&amp;Forward</source>
         <translation type="unfinished">&amp;Dopředu</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>Alt+Right</source>
         <comment>Go|Forward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="921"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="926"/>
         <source>Move one screen forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="923"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="928"/>
         <source>&lt;b&gt;Forward&lt;/b&gt;&lt;p&gt;Moves one screen forward. If none is available, this action is disabled.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>&amp;Home</source>
         <translation type="unfinished">&amp;Hlavní strana</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>Ctrl+Home</source>
         <comment>Go|Home</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="939"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="944"/>
         <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>Reload</source>
         <translation type="unfinished">Obnovit</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>&amp;Reload</source>
         <translation type="unfinished">&amp;Obnovit</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>Ctrl+R</source>
         <comment>Go|Reload</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>F5</source>
         <comment>Go|Reload</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="953"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="958"/>
         <source>Reload the current screen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="955"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="960"/>
         <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Stop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>&amp;Stop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Ctrl+.</source>
         <comment>Go|Stop</comment>
         <translation type="unfinished">Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Esc</source>
         <comment>Go|Stop</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="969"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="974"/>
         <source>Stop loading</source>
         <translation type="unfinished">Zastavit načítání</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="970"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="975"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Zastavit&lt;/b&gt;&lt;p&gt;Zastavit načítání aktuálního tabu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>Copy</source>
         <translation type="unfinished">Kopírovat</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>&amp;Copy</source>
         <translation type="unfinished">&amp;Kopírovat</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="983"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="988"/>
         <source>Copy the selected text</source>
         <translation type="unfinished">Kopírovat vybraný text</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="984"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="989"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Kopírovat&lt;/b&gt;&lt;p&gt;Kopírovat vybraný text do schránky.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Cut</source>
         <translation type="unfinished">Vyjmout</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Cu&amp;t</source>
         <translation type="unfinished">Vyjmou&amp;t</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="997"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1002"/>
         <source>Cut the selected text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="998"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1003"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>Paste</source>
         <translation type="unfinished">Vložit</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>&amp;Paste</source>
         <translation type="unfinished">V&amp;ložit</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1011"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1016"/>
         <source>Paste text from the clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1012"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1017"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>&amp;Undo</source>
         <translation type="unfinished">&amp;Vrátit</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1025"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1030"/>
         <source>Undo the last edit action</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1026"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1031"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>&amp;Redo</source>
         <translation type="unfinished">&amp;Znovu použít</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1039"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1044"/>
         <source>Redo the last edit action</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1040"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1045"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>Select All</source>
         <translation type="unfinished">Vybrat vše</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>&amp;Select All</source>
         <translation type="unfinished">Vybrat vš&amp;e</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1053"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1058"/>
         <source>Select all text</source>
         <translation type="unfinished">Vybrat všechen text</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1054"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1059"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>Find...</source>
         <translation type="unfinished">Hledat...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>&amp;Find...</source>
         <translation type="unfinished">&amp;Hledat...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>Ctrl+F</source>
         <comment>Edit|Find</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1080"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1085"/>
         <source>Find text in page</source>
         <translation type="unfinished">Hledat text na stránce</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1081"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1086"/>
         <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Hledat&lt;/b&gt;&lt;p&gt;Hledá se text na aktuální straně.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>Find next</source>
         <translation type="unfinished">Najít další</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>Find &amp;next</source>
         <translation type="unfinished">Hledat &amp;následující</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>F3</source>
         <comment>Edit|Find next</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1094"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1099"/>
         <source>Find next occurrence of text in page</source>
         <translation type="unfinished">Hledat následující výskyt textu na straně</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1096"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1101"/>
         <source>&lt;b&gt;Find next&lt;/b&gt;&lt;p&gt;Find the next occurrence of text in the current page.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Hledat následující&lt;/b&gt;&lt;p&gt;Vyhledá se následující výskyt textu na aktuální straně.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Find previous</source>
         <translation type="unfinished">Najít předchozí</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Find &amp;previous</source>
         <translation type="unfinished">Hledat &amp;předchozí</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Shift+F3</source>
         <comment>Edit|Find previous</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1109"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1114"/>
         <source>Find previous occurrence of text in page</source>
         <translation type="unfinished">Hledat předchozí výskyt textu na stránce</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1111"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1116"/>
         <source>&lt;b&gt;Find previous&lt;/b&gt;&lt;p&gt;Find the previous occurrence of text in the current page.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Hledat předchozí&lt;/b&gt;&lt;p&gt;Vyhledá předchozí výskyt textu na aktuální straně.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
-        <source>Manage Bookmarks</source>
-        <translation type="unfinished">Správa záložek</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
-        <source>&amp;Manage Bookmarks...</source>
-        <translation type="unfinished">&amp;Správa záložek...</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
-        <source>Ctrl+Shift+B</source>
-        <comment>Help|Manage bookmarks</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
+        <source>Manage Bookmarks</source>
+        <translation type="unfinished">Správa záložek</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
+        <source>&amp;Manage Bookmarks...</source>
+        <translation type="unfinished">&amp;Správa záložek...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
+        <source>Ctrl+Shift+B</source>
+        <comment>Help|Manage bookmarks</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1130"/>
         <source>Open a dialog to manage the bookmarks.</source>
         <translation type="unfinished">Otevřít dialog pro správu záložek.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1127"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1132"/>
         <source>&lt;b&gt;Manage Bookmarks...&lt;/b&gt;&lt;p&gt;Open a dialog to manage the bookmarks.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Správa záložek&lt;/b&gt;&lt;p&gt;Otevřít dialog pro správu záložek.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Add Bookmark</source>
         <translation type="unfinished">Přidat záložku</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Add &amp;Bookmark...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Ctrl+D</source>
         <comment>Help|Add bookmark</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1142"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1147"/>
         <source>Open a dialog to add a bookmark.</source>
         <translation type="unfinished">Otevřít dialog pro přidání záložky.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1144"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1149"/>
         <source>&lt;b&gt;Add Bookmark&lt;/b&gt;&lt;p&gt;Open a dialog to add the current URL as a bookmark.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Přidat záložku&lt;/b&gt;&lt;p&gt;Otevřít dialog pro přidání aktuální URL jako záložky.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1151"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1156"/>
         <source>Add Folder</source>
         <translation type="unfinished">Přidat složku</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1151"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1156"/>
         <source>Add &amp;Folder...</source>
         <translation type="unfinished">Přidat s&amp;ložku...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1155"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1160"/>
         <source>Open a dialog to add a new bookmarks folder.</source>
         <translation type="unfinished">Otevřít dialog pro přidání nové složky záložek.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1157"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1162"/>
         <source>&lt;b&gt;Add Folder...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Přidat složku...&lt;/b&gt;&lt;p&gt;Otevřít dialog pro přidání nové složky záložek.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1165"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1170"/>
         <source>Bookmark All Tabs</source>
         <translation type="unfinished">Vytvořit záložky pro všechny taby</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1165"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1170"/>
         <source>Bookmark All Tabs...</source>
         <translation type="unfinished">Vytvořit záložky pro všechny taby...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1169"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1174"/>
         <source>Bookmark all open tabs.</source>
         <translation type="unfinished">Vytvořit záložky pro všechny otevřené taby.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1171"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1176"/>
         <source>&lt;b&gt;Bookmark All Tabs...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder for all open tabs.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Vytvořit záložky pro všechny taby...&lt;/b&gt;&lt;p&gt;Otevřít dialog pro přidání nové složky záložek pro všechny otevřené taby.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished">Co je to?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished">&amp;Co je to?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1185"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1190"/>
         <source>Context sensitive help</source>
         <translation type="unfinished">Kontextově senzitivní nápověda</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1186"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1191"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Zobrazit kontextově senzitivní nápovědu&lt;/b&gt;&lt;p&gt;V režimu &quot;Co je to?&quot; se nad různými prvky aplikace u kurzoru zobrazí otazník. Když pak kliknete na tyto prvky, zobrazí se krátký popis co daný prvek znamená a jak jej použít. V dialogových oknech se tato funkce spustí tlačítkem kontextové nápovědy na horní liště.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1197"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1202"/>
         <source>About</source>
         <translation type="unfinished">O aplikaci</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1197"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1202"/>
         <source>&amp;About</source>
         <translation type="unfinished">O &amp;aplikaci</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1201"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1206"/>
         <source>Display information about this software</source>
         <translation type="unfinished">Zobrazit informace a tomto software</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1203"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1208"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;O aplikaci&lt;/b&gt;&lt;p&gt;Zobrazí se informace o tomto software.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1210"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1215"/>
         <source>About Qt</source>
         <translation type="unfinished">O Qt</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1210"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1215"/>
         <source>About &amp;Qt</source>
         <translation type="unfinished">O &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1214"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1219"/>
         <source>Display information about the Qt toolkit</source>
         <translation type="unfinished">Zobrazit informace o Qt toolkitu</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1216"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1221"/>
         <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="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom in</source>
         <translation type="unfinished">Přiblížit</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom &amp;in</source>
         <translation type="unfinished">Př&amp;iblížit</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1230"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1235"/>
         <source>Zoom in on the web page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1231"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1236"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the web page. This makes the web page bigger.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom out</source>
         <translation type="unfinished">Oddálit</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom &amp;out</source>
         <translation type="unfinished">&amp;Oddálit</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1246"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1251"/>
         <source>Zoom out on the web page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1247"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1252"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the web page. This makes the web page smaller.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Zoom reset</source>
         <translation type="unfinished">Resetovat lupu</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished">&amp;Resetovat lupu</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1261"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1266"/>
         <source>Reset the zoom of the web page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1263"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1268"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the web page. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1271"/>
-        <source>Show page source</source>
-        <translation type="unfinished">Zobrazit zdroj strany</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1271"/>
-        <source>Ctrl+U</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1276"/>
+        <source>Show page source</source>
+        <translation type="unfinished">Zobrazit zdroj strany</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1276"/>
+        <source>Ctrl+U</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1281"/>
         <source>Show the page source in an editor</source>
         <translation type="unfinished">Zobrazit zdroj strany v editoru</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1278"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1283"/>
         <source>&lt;b&gt;Show page source&lt;/b&gt;&lt;p&gt;Show the page source in an editor.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Zobrazit zdroj strany&lt;/b&gt;&lt;p&gt;Zobrazit zdroj strany v editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1286"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1291"/>
         <source>Full Screen</source>
         <translation type="unfinished">Celá obrazovka</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1286"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1291"/>
         <source>&amp;Full Screen</source>
         <translation type="unfinished">&amp;Celá obrazovka</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1296"/>
-        <source>F11</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1301"/>
-        <source>Show next tab</source>
-        <translation type="unfinished">Zobrazit následující tab</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1301"/>
+        <source>F11</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1306"/>
+        <source>Show next tab</source>
+        <translation type="unfinished">Zobrazit následující tab</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1306"/>
         <source>Ctrl+Alt+Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1310"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1315"/>
         <source>Show previous tab</source>
         <translation type="unfinished">Zobrazit předchozí tab</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1310"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1315"/>
         <source>Shift+Ctrl+Alt+Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1319"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1324"/>
         <source>Switch between tabs</source>
         <translation type="unfinished">Přepnout mezi taby</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1319"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1324"/>
         <source>Ctrl+1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1328"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1333"/>
         <source>Preferences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1328"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1333"/>
         <source>&amp;Preferences...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1332"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1337"/>
         <source>Set the prefered configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1334"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1339"/>
         <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1342"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1347"/>
         <source>Languages</source>
         <translation type="unfinished">Jazyky</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1342"/>
-        <source>&amp;Languages...</source>
-        <translation type="unfinished">&amp;Jazyky...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1347"/>
+        <source>&amp;Languages...</source>
+        <translation type="unfinished">&amp;Jazyky...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1352"/>
         <source>Configure the accepted languages for web pages</source>
         <translation type="unfinished">Nastavit polovené jazyky pro web strany</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1349"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1354"/>
         <source>&lt;b&gt;Languages&lt;/b&gt;&lt;p&gt;Configure the accepted languages for web pages.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Jazyky&lt;/b&gt;&lt;p&gt;Nastavit polovené jazyky pro web strany.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1357"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1362"/>
         <source>Cookies</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1357"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1362"/>
         <source>C&amp;ookies...</source>
         <translation type="unfinished">C&amp;ookies...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1361"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1366"/>
         <source>Configure cookies handling</source>
         <translation type="unfinished">Nastavit ovládání cookies</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1363"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1368"/>
         <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Nastavit ovládání cookies.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1371"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1376"/>
         <source>Personal Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1371"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1376"/>
         <source>Personal Information...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1377"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1382"/>
         <source>Configure personal information for completing form fields</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1379"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1384"/>
         <source>&lt;b&gt;Personal Information...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the personal information used for completing form fields.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1388"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1393"/>
         <source>GreaseMonkey Scripts</source>
         <translation type="unfinished">Smazat &amp;soukromá data</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1388"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1393"/>
         <source>GreaseMonkey Scripts...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1394"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1399"/>
         <source>Configure the GreaseMonkey Scripts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1396"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1401"/>
         <source>&lt;b&gt;GreaseMonkey Scripts...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available GreaseMonkey Scripts.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1405"/>
-        <source>Edit Message Filters</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1405"/>
-        <source>Edit Message Filters...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1410"/>
+        <source>Edit Message Filters</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1410"/>
+        <source>Edit Message Filters...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1415"/>
         <source>Edit the message filters used to suppress unwanted messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1412"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1417"/>
         <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1422"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1427"/>
         <source>Edit HTML5 Feature Permissions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1422"/>
-        <source>Edit HTML5 Feature Permissions...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1427"/>
+        <source>Edit HTML5 Feature Permissions...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1432"/>
         <source>Edit the remembered HTML5 feature permissions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1429"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1434"/>
         <source>&lt;b&gt;Edit HTML5 Feature Permissions&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the remembered HTML5 feature permissions.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1439"/>
-        <source>Sync with Table of Contents</source>
-        <translation type="unfinished">Sync obsahu</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1444"/>
+        <source>Sync with Table of Contents</source>
+        <translation type="unfinished">Sync obsahu</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1449"/>
         <source>Synchronizes the table of contents with current page</source>
         <translation type="unfinished">Synchronizuje obsah s aktuální stranou</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1446"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1451"/>
         <source>&lt;b&gt;Sync with Table of Contents&lt;/b&gt;&lt;p&gt;Synchronizes the table of contents with current page.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Sync obsah&lt;/b&gt;&lt;p&gt;Synchronizuje obsah s aktuální stranou.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1454"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1459"/>
         <source>Table of Contents</source>
         <translation type="unfinished">Obsah</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1458"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1463"/>
         <source>Shows the table of contents window</source>
         <translation type="unfinished">Zobrazit okno s obsahem</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1460"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1465"/>
         <source>&lt;b&gt;Table of Contents&lt;/b&gt;&lt;p&gt;Shows the table of contents window.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Obsah&lt;/b&gt;&lt;p&gt;Zobrazit okno s obsahem.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1471"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1476"/>
         <source>Shows the index window</source>
         <translation type="unfinished">Zobrazit index okna</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1473"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1478"/>
         <source>&lt;b&gt;Index&lt;/b&gt;&lt;p&gt;Shows the index window.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Index&lt;/b&gt;&lt;p&gt;Zobrazit index okna.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1484"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1489"/>
         <source>Shows the search window</source>
         <translation type="unfinished">Zobrazit okno hledání</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1486"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1491"/>
         <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Hledání&lt;/b&gt;&lt;p&gt;Zobrazit okno hledání.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1494"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1499"/>
         <source>Manage QtHelp Documents</source>
         <translation type="unfinished">Uspořádat dokumenty QtNápovědy</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1494"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1499"/>
         <source>Manage QtHelp &amp;Documents</source>
         <translation type="unfinished">Uspořádat QtHelp &amp;dokumenty</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1498"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1503"/>
         <source>Shows a dialog to manage the QtHelp documentation set</source>
         <translation type="unfinished">Zobrazit dialog pro uspořádání QtNápovědy</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1500"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1505"/>
         <source>&lt;b&gt;Manage QtHelp Documents&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the QtHelp documentation set.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Uspořádat dokumenty QtNápovědy&lt;/b&gt;&lt;p&gt;Zobrazit dialog pro uspořádání QtNápovědy.&lt;/p&gt;</translation>
     </message>
@@ -90702,788 +90702,788 @@
         <translation type="obsolete">&lt;b&gt;Uspořádat filtry QtNápovědy&lt;/b&gt;&lt;p&gt;Zobrazit dialog pro uspořádání filtrů QtNápovědy.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1509"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1514"/>
         <source>Reindex Documentation</source>
         <translation type="unfinished">Znovu indexovat dokumentaci</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1509"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1514"/>
         <source>&amp;Reindex Documentation</source>
         <translation type="unfinished">Přeinde&amp;xovat dokumentaci</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1513"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1518"/>
         <source>Reindexes the documentation set</source>
         <translation type="unfinished">Přeindexuje dokumentaci</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1520"/>
         <source>&lt;b&gt;Reindex Documentation&lt;/b&gt;&lt;p&gt;Reindexes the documentation set.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Znovu indexovat dokumentaci&lt;/b&gt;&lt;p&gt;Přeindexuje dokumentaci.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1529"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1534"/>
         <source>Clear private data</source>
         <translation type="unfinished">Smazat soukromá data</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1531"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1536"/>
         <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like browsing history, search history or the favicons database.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Smazat soukromá data&lt;/b&gt;&lt;p&gt;Smaže soukromá data jako je historie prohlížení, vyhledávání a databáze favicon.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/>
-        <source>Clear icons database</source>
-        <translation type="unfinished">Vyčistit ikony databáze</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/>
-        <source>Clear &amp;icons database</source>
-        <translation type="unfinished">Smazat databázi &amp;ikon</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1545"/>
+        <source>Clear icons database</source>
+        <translation type="unfinished">Vyčistit ikony databáze</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1545"/>
+        <source>Clear &amp;icons database</source>
+        <translation type="unfinished">Smazat databázi &amp;ikon</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1550"/>
         <source>Clear the database of favicons</source>
         <translation type="unfinished">Vyčistit databázi favicons</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1547"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1552"/>
         <source>&lt;b&gt;Clear icons database&lt;/b&gt;&lt;p&gt;Clears the database of favicons of previously visited URLs.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Vyčistit databázi favicons&lt;/b&gt;&lt;p&gt;Vyčistit databázi favicons navštívených URL.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1555"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1560"/>
         <source>Manage saved Favicons</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1561"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/>
         <source>Show a dialog to manage the saved favicons</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1563"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1568"/>
         <source>&lt;b&gt;Manage saved Favicons&lt;/b&gt;&lt;p&gt;This shows a dialog to manage the saved favicons of previously visited URLs.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/>
-        <source>Configure Search Engines</source>
-        <translation type="unfinished">Konfigurovat vyhledávací enginy</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/>
-        <source>Configure Search &amp;Engines...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1576"/>
+        <source>Configure Search Engines</source>
+        <translation type="unfinished">Konfigurovat vyhledávací enginy</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1576"/>
+        <source>Configure Search &amp;Engines...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/>
         <source>Configure the available search engines</source>
         <translation type="unfinished">Konfigurovat dostupné vyhledávací enginy</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1578"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1583"/>
         <source>&lt;b&gt;Configure Search Engines...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available search engines.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Konfigurivat vyhledávací enginy...&lt;/b&gt;&lt;p&gt;Otevře dialog pro konfiguraci dostupných vyhledávacích enginů.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1592"/>
         <source>Manage Saved Passwords</source>
         <translation type="unfinished">Spravovat uložená hesla</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1592"/>
         <source>Manage Saved Passwords...</source>
         <translation type="unfinished">Spravovat uložená hesla...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1593"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/>
         <source>Manage the saved passwords</source>
         <translation type="unfinished">Spravovat vaše uložená hesla</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1595"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1600"/>
         <source>&lt;b&gt;Manage Saved Passwords...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved passwords.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Spravovat uložená hesla...&lt;/b&gt;&lt;p&gt;Otevře dialog pro spravování uložených hesel.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1602"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/>
         <source>Ad Block</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1602"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/>
         <source>&amp;Ad Block...</source>
         <translation type="unfinished">&amp;Ad Block...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1608"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1613"/>
         <source>Configure AdBlock subscriptions and rules</source>
         <translation type="unfinished">Konfigurovat AdBlock odebírání a pravidla</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1610"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1615"/>
         <source>&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure AdBlock subscriptions and rules.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Otevře dialog pro konfiguraci AdBlock odebírání a pravidel.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1618"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/>
         <source>Manage SSL Certificate Errors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1618"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/>
         <source>Manage SSL Certificate Errors...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1624"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1629"/>
         <source>Manage the accepted SSL certificate Errors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1626"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/>
         <source>&lt;b&gt;Manage SSL Certificate Errors...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the accepted SSL certificate errors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1651"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1656"/>
         <source>Downloads</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1655"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1660"/>
         <source>Shows the downloads window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1657"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1662"/>
         <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>RSS Feeds Dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>&amp;RSS Feeds Dialog...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>Ctrl+Shift+F</source>
         <comment>Help|RSS Feeds Dialog</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1671"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1676"/>
         <source>Open a dialog showing the configured RSS feeds.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1673"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1678"/>
         <source>&lt;b&gt;RSS Feeds Dialog...&lt;/b&gt;&lt;p&gt;Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>Siteinfo Dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>&amp;Siteinfo Dialog...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>Ctrl+Shift+I</source>
         <comment>Help|Siteinfo Dialog</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1688"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1693"/>
         <source>Open a dialog showing some information about the current site.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1690"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1695"/>
         <source>&lt;b&gt;Siteinfo Dialog...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the current site.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1703"/>
         <source>Manage User Agent Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1703"/>
         <source>Manage &amp;User Agent Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1702"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1707"/>
         <source>Shows a dialog to manage the User Agent settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1704"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1709"/>
         <source>&lt;b&gt;Manage User Agent Settings&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the User Agent settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1712"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1717"/>
         <source>Synchronize data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1712"/>
-        <source>&amp;Synchronize Data...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1717"/>
+        <source>&amp;Synchronize Data...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1722"/>
         <source>Shows a dialog to synchronize data via the network</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1719"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1724"/>
         <source>&lt;b&gt;Synchronize Data...&lt;/b&gt;&lt;p&gt;This shows a dialog to synchronize data via the network.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/>
         <source>Manage Saved Zoom Values</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/>
         <source>Manage Saved Zoom Values...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1734"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1739"/>
         <source>Manage the saved zoom values</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1736"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1741"/>
         <source>&lt;b&gt;Manage Saved Zoom Values...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved zoom values.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1747"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1752"/>
         <source>Toggle the JavaScript console window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1749"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1754"/>
         <source>&lt;b&gt;JavaScript Console&lt;/b&gt;&lt;p&gt;This toggles the JavaScript console window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1910"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1915"/>
         <source>&amp;File</source>
         <translation type="unfinished">S&amp;oubor</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1942"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1947"/>
         <source>&amp;Edit</source>
         <translation type="unfinished">&amp;Edit</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2181"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2186"/>
         <source>&amp;View</source>
         <translation type="unfinished">Poh&amp;led</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1969"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1974"/>
         <source>Text Encoding</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1981"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1986"/>
         <source>H&amp;istory</source>
         <translation type="unfinished">H&amp;istorie</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1998"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2003"/>
         <source>&amp;Bookmarks</source>
         <translation type="unfinished">&amp;Záložky</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2014"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2019"/>
         <source>&amp;Settings</source>
         <translation type="unfinished">Na&amp;stavení</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2046"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2051"/>
         <source>Global User Agent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2212"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2217"/>
         <source>&amp;Tools</source>
         <translation type="unfinished">&amp;Nástroje</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2087"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2092"/>
         <source>&amp;Help</source>
         <translation type="unfinished">&amp;Nápověda</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2236"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2241"/>
         <source>File</source>
         <translation type="unfinished">Soubor</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2261"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2266"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2274"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2279"/>
         <source>View</source>
         <translation type="unfinished">Pohled</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2284"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2289"/>
         <source>Find</source>
         <translation type="unfinished">Hledat</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2293"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2298"/>
         <source>Filter</source>
         <translation type="unfinished">Filtr</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2303"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2308"/>
         <source>Filtered by: </source>
         <translation type="unfinished">Filtrováno: </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2311"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2316"/>
         <source>Settings</source>
         <translation type="unfinished">Nastavení</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2323"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2328"/>
         <source>Tools</source>
         <translation type="unfinished">Nástroje</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2332"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2337"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2339"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2344"/>
         <source>VirusTotal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1785"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1790"/>
         <source>Scan current site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4613"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4626"/>
         <source>IP Address Report</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4623"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4636"/>
         <source>Domain Report</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>&lt;p&gt;Could not start the process.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>OK</source>
         <translation type="unfinished">OK</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2667"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2672"/>
         <source>Saved Tabs</source>
         <translation type="unfinished">Uložkt taby</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3392"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3399"/>
         <source>Could not find an associated content.</source>
         <translation type="unfinished">Asociovaný obsah nelze nalézt.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3486"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3493"/>
         <source>Updating search index</source>
         <translation type="unfinished">Aktualizovat index pro hledání</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3560"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3567"/>
         <source>Looking for Documentation...</source>
         <translation type="unfinished">Vyhledat dokumentaci...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3590"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3597"/>
         <source>Unfiltered</source>
         <translation type="unfinished">Nefiltrováno</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3607"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3614"/>
         <source>Help Engine</source>
         <translation type="unfinished">Engine nápovědy</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4144"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4151"/>
         <source>ISO</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4155"/>
+        <source>Windows</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4153"/>
+        <source>Unicode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4161"/>
+        <source>Other</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4157"/>
+        <source>IBM</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4591"/>
+        <source>VirusTotal Scan</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4591"/>
+        <source>&lt;p&gt;The VirusTotal scan could not be scheduled.&lt;p&gt;
+&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4617"/>
+        <source>Enter a valid IPv4 address in dotted quad notation:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4626"/>
+        <source>The given IP address is not in dotted quad notation.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4636"/>
+        <source>Enter a valid domain name:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1762"/>
+        <source>Tab Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1766"/>
+        <source>Shows the tab manager window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1768"/>
+        <source>&lt;b&gt;Tab Manager&lt;/b&gt;&lt;p&gt;Shows the tab manager window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
+        <source>Save As</source>
+        <translation type="unfinished">Uložit jako</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
+        <source>&amp;Save As...</source>
+        <translation type="unfinished">Uložit j&amp;ako...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
+        <source>Shift+Ctrl+S</source>
+        <comment>File|Save As</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="748"/>
+        <source>Save the current page to disk</source>
+        <translation type="unfinished">Uložit aktuální stranu na disk</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="750"/>
+        <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current page to disk.&lt;/p&gt;</source>
+        <translation type="unfinished">&lt;b&gt;Uložit jako...&lt;/b&gt;&lt;p&gt;Uložit aktuální stranu na disk.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1066"/>
+        <source>Unselect</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1071"/>
+        <source>Clear current selection</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1072"/>
+        <source>&lt;b&gt;Unselect&lt;/b&gt;&lt;p&gt;Clear the selection of the current browser.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1066"/>
+        <source>Alt+Ctrl+A</source>
+        <comment>Edit|Unselect</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2508"/>
+        <source>HTML Files (*.html *.htm *.mhtml *.mht);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="942"/>
+        <source>Move to the initial screen</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1298"/>
+        <source>Meta+Ctrl+F</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2223"/>
+        <source>&amp;VirusTotal</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2188"/>
+        <source>&amp;Windows</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2086"/>
+        <source>&amp;Toolbars</source>
+        <translation type="unfinished">&amp;Toolbary</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2121"/>
+        <source>Save</source>
+        <translation type="unfinished">Uložit</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2140"/>
+        <source>Show All History...</source>
+        <translation type="unfinished">Zobrazit celou historii...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4186"/>
+        <source>Menu Bar</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4191"/>
+        <source>Bookmarks</source>
+        <translation type="unfinished">Záložky</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4196"/>
+        <source>Status Bar</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4210"/>
+        <source>&amp;Show all</source>
+        <translation type="unfinished">&amp;Zobrazit vše</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4212"/>
+        <source>&amp;Hide all</source>
+        <translation type="unfinished">&amp;Skrýt vše</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="849"/>
+        <source>Send Page Link</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="854"/>
+        <source>Send the link of the current page via email</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="856"/>
+        <source>&lt;b&gt;Send Page Link&lt;/b&gt;&lt;p&gt;Send the link of the current page via email.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1776"/>
+        <source>Session Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1776"/>
+        <source>Session Manager...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1780"/>
+        <source>Shows the session manager window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1782"/>
+        <source>&lt;b&gt;Session Manager&lt;/b&gt;&lt;p&gt;Shows the session manager window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2114"/>
+        <source>Sessions</source>
+        <translation type="unfinished">Relace</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2850"/>
+        <source>Are you sure you want to close the web browser?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2850"/>
+        <source>Are you sure you want to close the web browser?
+You have {0} windows with {1} tabs open.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/>
+        <source>Manage Safe Browsing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/>
+        <source>Manage Safe Browsing...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1647"/>
+        <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1645"/>
+        <source>Configure Safe Browsing and manage local cache</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="767"/>
+        <source>&lt;b&gt;Save Page Screen...&lt;/b&gt;&lt;p&gt;Saves the visible part of the current page as a screen shot.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1828"/>
+        <source>Keyboard Shortcuts</source>
+        <translation type="unfinished">Klávesové zkratky</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1828"/>
+        <source>Keyboard &amp;Shortcuts...</source>
+        <translation type="unfinished">Klávesové &amp;zkratky...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1834"/>
+        <source>Set the keyboard shortcuts</source>
+        <translation type="unfinished">Nastavení klávesových zkratek</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1836"/>
+        <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
+        <translation type="unfinished">&lt;b&gt;Klávesové zkratky&lt;/b&gt;&lt;p&gt;Nastavení klávesových zkratek aplikace podle zvyklostí uživatele.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5009"/>
+        <source>Export Keyboard Shortcuts</source>
+        <translation type="unfinished">Exportovat klávesové zkratky</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1844"/>
+        <source>&amp;Export Keyboard Shortcuts...</source>
+        <translation type="unfinished">&amp;Exportovat klávesové zkratky...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1849"/>
+        <source>Export the keyboard shortcuts</source>
+        <translation type="unfinished">Export klávesových zkratek</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1851"/>
+        <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
+        <translation type="unfinished">&lt;b&gt;Export klávesových zkratek&lt;/b&gt;&lt;p&gt;Exportují se klávesové zkratky z aplikace.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5025"/>
+        <source>Import Keyboard Shortcuts</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1858"/>
+        <source>&amp;Import Keyboard Shortcuts...</source>
+        <translation type="unfinished">&amp;Import klávesových zkratek...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1863"/>
+        <source>Import the keyboard shortcuts</source>
+        <translation type="unfinished">Import klávesových zkratek</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1865"/>
+        <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
+        <translation type="unfinished">&lt;b&gt;Import klávesových zkratek&lt;/b&gt;&lt;p&gt;Do aplikace se importují klávesové zkratky.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1872"/>
+        <source>Protocol Handler Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1872"/>
+        <source>Protocol Handler Manager...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1876"/>
+        <source>Shows the protocol handler manager window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1878"/>
+        <source>&lt;b&gt;Protocol Handler Manager&lt;/b&gt;&lt;p&gt;Shows the protocol handler manager window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="4148"/>
-        <source>Windows</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4146"/>
-        <source>Unicode</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4154"/>
-        <source>Other</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4150"/>
-        <source>IBM</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4578"/>
-        <source>VirusTotal Scan</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4578"/>
-        <source>&lt;p&gt;The VirusTotal scan could not be scheduled.&lt;p&gt;
-&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4604"/>
-        <source>Enter a valid IPv4 address in dotted quad notation:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4613"/>
-        <source>The given IP address is not in dotted quad notation.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4623"/>
-        <source>Enter a valid domain name:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1757"/>
-        <source>Tab Manager</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1761"/>
-        <source>Shows the tab manager window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1763"/>
-        <source>&lt;b&gt;Tab Manager&lt;/b&gt;&lt;p&gt;Shows the tab manager window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
-        <source>Save As</source>
-        <translation type="unfinished">Uložit jako</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
-        <source>&amp;Save As...</source>
-        <translation type="unfinished">Uložit j&amp;ako...</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
-        <source>Shift+Ctrl+S</source>
-        <comment>File|Save As</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="743"/>
-        <source>Save the current page to disk</source>
-        <translation type="unfinished">Uložit aktuální stranu na disk</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="745"/>
-        <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current page to disk.&lt;/p&gt;</source>
-        <translation type="unfinished">&lt;b&gt;Uložit jako...&lt;/b&gt;&lt;p&gt;Uložit aktuální stranu na disk.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1061"/>
-        <source>Unselect</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1066"/>
-        <source>Clear current selection</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1067"/>
-        <source>&lt;b&gt;Unselect&lt;/b&gt;&lt;p&gt;Clear the selection of the current browser.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1061"/>
-        <source>Alt+Ctrl+A</source>
-        <comment>Edit|Unselect</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2503"/>
-        <source>HTML Files (*.html *.htm *.mhtml *.mht);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="937"/>
-        <source>Move to the initial screen</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1293"/>
-        <source>Meta+Ctrl+F</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2218"/>
-        <source>&amp;VirusTotal</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2183"/>
-        <source>&amp;Windows</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2081"/>
-        <source>&amp;Toolbars</source>
-        <translation type="unfinished">&amp;Toolbary</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2116"/>
-        <source>Save</source>
-        <translation type="unfinished">Uložit</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2135"/>
-        <source>Show All History...</source>
-        <translation type="unfinished">Zobrazit celou historii...</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4179"/>
-        <source>Menu Bar</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4184"/>
-        <source>Bookmarks</source>
-        <translation type="unfinished">Záložky</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4189"/>
-        <source>Status Bar</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4203"/>
-        <source>&amp;Show all</source>
-        <translation type="unfinished">&amp;Zobrazit vše</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4205"/>
-        <source>&amp;Hide all</source>
-        <translation type="unfinished">&amp;Skrýt vše</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="844"/>
-        <source>Send Page Link</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="849"/>
-        <source>Send the link of the current page via email</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="851"/>
-        <source>&lt;b&gt;Send Page Link&lt;/b&gt;&lt;p&gt;Send the link of the current page via email.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1771"/>
-        <source>Session Manager</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1771"/>
-        <source>Session Manager...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1775"/>
-        <source>Shows the session manager window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1777"/>
-        <source>&lt;b&gt;Session Manager&lt;/b&gt;&lt;p&gt;Shows the session manager window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2109"/>
-        <source>Sessions</source>
-        <translation type="unfinished">Relace</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2845"/>
-        <source>Are you sure you want to close the web browser?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2845"/>
-        <source>Are you sure you want to close the web browser?
-You have {0} windows with {1} tabs open.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1635"/>
-        <source>Manage Safe Browsing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1635"/>
-        <source>Manage Safe Browsing...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1642"/>
-        <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/>
-        <source>Configure Safe Browsing and manage local cache</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="762"/>
-        <source>&lt;b&gt;Save Page Screen...&lt;/b&gt;&lt;p&gt;Saves the visible part of the current page as a screen shot.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1823"/>
-        <source>Keyboard Shortcuts</source>
-        <translation type="unfinished">Klávesové zkratky</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1823"/>
-        <source>Keyboard &amp;Shortcuts...</source>
-        <translation type="unfinished">Klávesové &amp;zkratky...</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1829"/>
-        <source>Set the keyboard shortcuts</source>
-        <translation type="unfinished">Nastavení klávesových zkratek</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1831"/>
-        <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
-        <translation type="unfinished">&lt;b&gt;Klávesové zkratky&lt;/b&gt;&lt;p&gt;Nastavení klávesových zkratek aplikace podle zvyklostí uživatele.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4991"/>
-        <source>Export Keyboard Shortcuts</source>
-        <translation type="unfinished">Exportovat klávesové zkratky</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1839"/>
-        <source>&amp;Export Keyboard Shortcuts...</source>
-        <translation type="unfinished">&amp;Exportovat klávesové zkratky...</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1844"/>
-        <source>Export the keyboard shortcuts</source>
-        <translation type="unfinished">Export klávesových zkratek</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1846"/>
-        <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
-        <translation type="unfinished">&lt;b&gt;Export klávesových zkratek&lt;/b&gt;&lt;p&gt;Exportují se klávesové zkratky z aplikace.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5007"/>
-        <source>Import Keyboard Shortcuts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1853"/>
-        <source>&amp;Import Keyboard Shortcuts...</source>
-        <translation type="unfinished">&amp;Import klávesových zkratek...</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1858"/>
-        <source>Import the keyboard shortcuts</source>
-        <translation type="unfinished">Import klávesových zkratek</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1860"/>
-        <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
-        <translation type="unfinished">&lt;b&gt;Import klávesových zkratek&lt;/b&gt;&lt;p&gt;Do aplikace se importují klávesové zkratky.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1867"/>
-        <source>Protocol Handler Manager</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1867"/>
-        <source>Protocol Handler Manager...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1871"/>
-        <source>Shows the protocol handler manager window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1873"/>
-        <source>&lt;b&gt;Protocol Handler Manager&lt;/b&gt;&lt;p&gt;Shows the protocol handler manager window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4141"/>
         <source>System</source>
         <translation type="unfinished">Systém</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4152"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4159"/>
         <source>Apple</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2189"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2194"/>
         <source>QtHelp</source>
         <translation type="unfinished">QtNápověda</translation>
     </message>
@@ -91493,37 +91493,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3570"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3577"/>
         <source>eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="892"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="897"/>
         <source>Quit the eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="893"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="898"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2544"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2549"/>
         <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chrome {2}.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4972"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4990"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard Shortcuts File (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5009"/>
         <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5007"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5025"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -91919,12 +91919,12 @@
 <context>
     <name>eric6</name>
     <message>
-        <location filename="../eric6.py" line="397"/>
+        <location filename="../eric6.py" line="398"/>
         <source>Starting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../eric6.py" line="402"/>
+        <location filename="../eric6.py" line="403"/>
         <source>Generating Main Window...</source>
         <translation type="unfinished">Generování hlavního okna...</translation>
     </message>
Binary file eric6/i18n/eric6_de.qm has changed
--- a/eric6/i18n/eric6_de.ts	Tue Mar 02 19:22:12 2021 +0100
+++ b/eric6/i18n/eric6_de.ts	Tue Mar 02 19:49:43 2021 +0100
@@ -1,6 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.1" language="de">
+<!DOCTYPE TS><TS version="2.0" language="de" sourcelanguage="">
 <context>
     <name>AboutDialog</name>
     <message>
@@ -95,22 +94,22 @@
         <translation>Aktionen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="166"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="167"/>
         <source>Learn more about writing rules...</source>
         <translation>Mehr über das Schreiben von Regeln lernen …</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="159"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="160"/>
         <source>Update Subscription</source>
         <translation>Abonnement aktualisieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="146"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="147"/>
         <source>Browse Subscriptions...</source>
         <translation>Abonnements anschauen …</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="243"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="244"/>
         <source>Remove Subscription</source>
         <translation>Abonnement löschen</translation>
     </message>
@@ -130,37 +129,37 @@
         <translation>Suchen …</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="139"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="140"/>
         <source>Add Rule</source>
         <translation>Regel hinzufügen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="142"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="143"/>
         <source>Remove Rule</source>
         <translation>Regel löschen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="154"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="155"/>
         <source>Disable Subscription</source>
         <translation>Abonnement deaktivieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="156"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="157"/>
         <source>Enable Subscription</source>
         <translation>Abonnement aktivieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="162"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="163"/>
         <source>Update All Subscriptions</source>
         <translation>Alle Abonnements aktualisieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="233"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="234"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt; and all subscriptions requiring it?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</source>
         <translation>&lt;p&gt;Soll das Abonnement &lt;b&gt;{0}&lt;/b&gt; und alle abhängigen Abonnements wirklich gelöscht werden?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="240"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="241"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soll das Abonnement &lt;b&gt;{0}&lt;/b&gt; wirklich gelöscht werden?&lt;/p&gt;</translation>
     </message>
@@ -259,17 +258,17 @@
 <context>
     <name>AdBlockManager</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="232"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="233"/>
         <source>Custom Rules</source>
         <translation>Spezifische Regel</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="334"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="335"/>
         <source>Subscribe?</source>
         <translation>Abonnieren?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="334"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="335"/>
         <source>&lt;p&gt;Subscribe to this AdBlock subscription?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soll dieses AdBlock-Abonnement gebucht werden?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
@@ -277,47 +276,47 @@
 <context>
     <name>AdBlockSubscription</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="291"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="294"/>
         <source>Load subscription rules</source>
         <translation>Abonnementregeln laden</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="500"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="503"/>
         <source>Downloading subscription rules</source>
         <translation>Lade Abonnementregeln herunter</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="397"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="400"/>
         <source>&lt;p&gt;Subscription rules could not be downloaded.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Abonnementregeln konnten nicht heruntergeladen werden.&lt;/p&gt;&lt;p&gt;Fehler: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="410"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="413"/>
         <source>Got empty subscription rules.</source>
         <translation>Habe leere Abonnementregeln erhalten.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="523"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="527"/>
         <source>Saving subscription rules</source>
         <translation>Speichern der Abonnementregeln</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="291"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="294"/>
         <source>AdBlock file &apos;{0}&apos; does not start with [Adblock.</source>
         <translation>AdBlock-Datei „{0}“ startet nicht mit [Adblock.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="500"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="503"/>
         <source>&lt;p&gt;AdBlock subscription &lt;b&gt;{0}&lt;/b&gt; has a wrong checksum.&lt;br/&gt;Found: {1}&lt;br/&gt;Calculated: {2}&lt;br/&gt;Use it anyway?&lt;/p&gt;</source>
         <translation>&lt;p&gt;AdBlock Abonnement &lt;b&gt;{0}&lt;/b&gt; hat eine falsche Prüfsumme.&lt;br/&gt;Gefunden: {1}&lt;br/&gt;Berechnet: {2}&lt;br/&gt;Trotzdem verwenden?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="281"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="284"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for reading.</source>
         <translation>AdBlock-Datei „{0}“ konnte nicht zum Lesen geöffnet werden.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="523"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="527"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for writing.</source>
         <translation>AdBlock-Datei „{0}“ konnte nicht zum Schreiben geöffnet werden.</translation>
     </message>
@@ -325,27 +324,27 @@
 <context>
     <name>AdBlockTreeWidget</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="123"/>
         <source>Add Custom Rule</source>
         <translation>Spezifische Regel hinzufügen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="123"/>
         <source>Write your rule here:</source>
         <translation>Schreibe die Regel hier:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="164"/>
-        <source>Add Rule</source>
-        <translation>Regel hinzufügen</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="166"/>
+        <source>Add Rule</source>
+        <translation>Regel hinzufügen</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="168"/>
         <source>Remove Rule</source>
         <translation>Regel löschen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="219"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="227"/>
         <source>{0} (recently updated)</source>
         <translation>{0} (kürzlich aktualisiert)</translation>
     </message>
@@ -1135,7 +1134,7 @@
         <translation>&amp;Beschreibung:</translation>
     </message>
     <message>
-        <location filename="../MultiProject/AddProjectDialog.py" line="64"/>
+        <location filename="../MultiProject/AddProjectDialog.py" line="65"/>
         <source>Project Properties</source>
         <translation>Projekteigenschaften</translation>
     </message>
@@ -1600,37 +1599,37 @@
 <context>
     <name>BackgroundService</name>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="134"/>
+        <location filename="../Utilities/BackgroundService.py" line="135"/>
         <source>{0} not configured.</source>
         <translation>{0} nicht konfiguriert.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="189"/>
+        <location filename="../Utilities/BackgroundService.py" line="190"/>
         <source>Restart background client?</source>
         <translation>Hintergrund Client neu starten?</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="450"/>
+        <location filename="../Utilities/BackgroundService.py" line="451"/>
         <source>Background client disconnected.</source>
         <translation>Hintergrund Client wurde getrennt.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="444"/>
+        <location filename="../Utilities/BackgroundService.py" line="445"/>
         <source>Eric&apos;s background client disconnected because of an unknown reason.</source>
         <translation>Die Verbindung zu Erics Hintergund Client wurde aus unbekanntem Grund getrennt.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="189"/>
+        <location filename="../Utilities/BackgroundService.py" line="190"/>
         <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It&apos;s used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;&apos;Yes&apos;&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Retry&apos;&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;No&apos;&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Hintergund Client für &lt;b&gt;{0}&lt;/b&gt; wurde durch eine Exception gestoppt. Er wird für verschiedene Plugins, wie z.B. die Checker, verwendet.&lt;/p&gt;&lt;p&gt;Wähle:&lt;ul&gt;&lt;li&gt;&lt;b&gt;&apos;Ja&apos;&lt;/b&gt;, um den Client aber nicht den letzten Job neu zu starten&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Wiederholen&apos;&lt;/b&gt;, um den Client und letzten Job neu zu starten&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Nein&apos;&lt;/b&gt;, um den Client nicht neu zu starten.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Hinweis: Der Client kann immer wieder gestartet werden, indem der Einstellungsdialog mit Ok geschlossen wird oder durch das Neuladen/ Wechseln des Projektes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="450"/>
+        <location filename="../Utilities/BackgroundService.py" line="451"/>
         <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
         <translation>Die Verbindung zum Hintergund Client für &lt;b&gt;{0}&lt;/b&gt; wurde aus unbekanntem Grund getrennt.&lt;br&gt;Soll er neu gestartet werden?</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="215"/>
+        <location filename="../Utilities/BackgroundService.py" line="216"/>
         <source>An error in Eric&apos;s background client stopped the service.</source>
         <translation>Ein Fehler im Eric Hintergrunddienst hat den Dienst beendet.</translation>
     </message>
@@ -1886,32 +1885,32 @@
         <translation>&amp;Ordner hinzufügen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="155"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="156"/>
         <source>&amp;Open</source>
         <translation>Ö&amp;ffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="157"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="158"/>
         <source>Open in New &amp;Tab</source>
         <translation>In neuem &amp;Register öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="168"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="169"/>
         <source>Edit &amp;Name</source>
         <translation>&amp;Namen editieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="171"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="172"/>
         <source>Edit &amp;Address</source>
         <translation>&amp;Adresse editieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="173"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="174"/>
         <source>&amp;Delete</source>
         <translation>&amp;Löschen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="342"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="355"/>
         <source>New Folder</source>
         <translation>Neuer Ordner</translation>
     </message>
@@ -1921,37 +1920,37 @@
         <translation>Drücken, um die ausgwählten Einträge zu löschen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="177"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="178"/>
         <source>&amp;Properties...</source>
         <translation>&amp;Eigenschaften …</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="162"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="163"/>
         <source>Open in New &amp;Window</source>
         <translation>In neuem &amp;Fenster öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="164"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="165"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation>In neuem &amp;privaten Fenster öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="159"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="160"/>
         <source>Open in New &amp;Background Tab</source>
         <translation>In neuem &amp;Hintergrundregister öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="181"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="182"/>
         <source>New &amp;Folder...</source>
         <translation>&amp;Neuer Ordner...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="334"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="347"/>
         <source>New Bookmark Folder</source>
         <translation>Neuer Lesezeichenordner</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="334"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="347"/>
         <source>Enter title for new bookmark folder:</source>
         <translation>Gib den Titel des neuen Lesezeichenordners ein:</translation>
     </message>
@@ -2116,8 +2115,8 @@
     </message>
     <message>
         <location filename="../WebBrowser/Bookmarks/BookmarksMenu.py" line="170"/>
-        <source>Open in New Tab	Ctrl+LMB</source>
-        <translation>In neuem Register öffnen	Strg+LMK</translation>
+        <source>Open in New Tab<byte value="x9"/>Ctrl+LMB</source>
+        <translation>In neuem Register öffnen<byte value="x9"/>Strg+LMK</translation>
     </message>
     <message>
         <location filename="../WebBrowser/Bookmarks/BookmarksMenu.py" line="174"/>
@@ -2185,8 +2184,8 @@
     </message>
     <message>
         <location filename="../WebBrowser/Bookmarks/BookmarksToolBar.py" line="90"/>
-        <source>Open in New Tab	Ctrl+LMB</source>
-        <translation>In neuem Register öffnen	Strg+LMK</translation>
+        <source>Open in New Tab<byte value="x9"/>Ctrl+LMB</source>
+        <translation>In neuem Register öffnen<byte value="x9"/>Strg+LMK</translation>
     </message>
     <message>
         <location filename="../WebBrowser/Bookmarks/BookmarksToolBar.py" line="94"/>
@@ -2255,72 +2254,72 @@
 <context>
     <name>BreakPointViewer</name>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="52"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="54"/>
         <source>Breakpoints</source>
         <translation>Haltepunkte</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="159"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="165"/>
         <source>Edit...</source>
         <translation>Bearbeiten …</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="161"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="167"/>
         <source>Enable</source>
         <translation>Aktivieren</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="196"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="202"/>
         <source>Enable all</source>
         <translation>Alle aktivieren</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="164"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="170"/>
         <source>Disable</source>
         <translation>Deaktivieren</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="201"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="207"/>
         <source>Disable all</source>
         <translation>Alle deaktivieren</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="168"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="174"/>
         <source>Delete</source>
         <translation>Löschen</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="206"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="212"/>
         <source>Delete all</source>
         <translation>Alle löschen</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="171"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="177"/>
         <source>Goto</source>
         <translation>Gehe zu</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="194"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="200"/>
         <source>Enable selected</source>
         <translation>Ausgewählte aktivieren</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="199"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="205"/>
         <source>Disable selected</source>
         <translation>Ausgewählte deaktivieren</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="204"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="210"/>
         <source>Delete selected</source>
         <translation>Ausgewählte löschen</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="192"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="198"/>
         <source>Add</source>
         <translation>Hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="209"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="215"/>
         <source>Configure...</source>
         <translation>Einstellungen …</translation>
     </message>
@@ -2328,12 +2327,12 @@
 <context>
     <name>Browser</name>
     <message>
-        <location filename="../UI/Browser.py" line="282"/>
+        <location filename="../UI/Browser.py" line="284"/>
         <source>Open</source>
         <translation>Öffnen</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="231"/>
+        <location filename="../UI/Browser.py" line="233"/>
         <source>Run unittest...</source>
         <translation>Modultest …</translation>
     </message>
@@ -2343,52 +2342,52 @@
         <translation>Dateibrowser</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="340"/>
+        <location filename="../UI/Browser.py" line="342"/>
         <source>New toplevel directory...</source>
         <translation>Neuer übergeordneter Ordner …</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="299"/>
+        <location filename="../UI/Browser.py" line="301"/>
         <source>Remove from toplevel</source>
         <translation>Vom Anfang entfernen</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="296"/>
+        <location filename="../UI/Browser.py" line="298"/>
         <source>Add as toplevel directory</source>
         <translation>Als übergeordneten Ordner hinzufügen</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="642"/>
+        <location filename="../UI/Browser.py" line="644"/>
         <source>New toplevel directory</source>
         <translation>Neuer übergeordneter Ordner</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="307"/>
+        <location filename="../UI/Browser.py" line="309"/>
         <source>Find in this directory</source>
         <translation>In diesem Verzeichnis suchen</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="261"/>
+        <location filename="../UI/Browser.py" line="263"/>
         <source>Open in Icon Editor</source>
         <translation>Mit Icon-Editor öffnen</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="314"/>
+        <location filename="../UI/Browser.py" line="316"/>
         <source>Copy Path to Clipboard</source>
         <translation>Pfad in die Zwischenablage kopieren</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="303"/>
+        <location filename="../UI/Browser.py" line="305"/>
         <source>Refresh directory</source>
         <translation>Verzeichnis aktualisieren</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="326"/>
+        <location filename="../UI/Browser.py" line="328"/>
         <source>Goto</source>
         <translation>Gehe zu</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="433"/>
+        <location filename="../UI/Browser.py" line="435"/>
         <source>Line {0}</source>
         <translation>Zeile {0}</translation>
     </message>
@@ -2398,152 +2397,152 @@
         <translation>&lt;b&gt;Das Browserfenster&lt;/b&gt;&lt;p&gt;Dies erlaubt es Ihnen, sich leicht in der Verzeichnishierarchie Ihres Systems zu bewegen, Python-Programme zu identifizieren und diese in einem Quelltextfenster zu öffnen. Das Fenster stellt verschiedene Hierarchien dar.&lt;/p&gt;&lt;p&gt;Die erste wird nur angezeigt, wenn ein Programm zum debuggen geöffnet ist. Gewöhnlich werden alle zum Programm zugehörigen Python-Dateien im selben Verzeichnis gespeichert, so dass Sie über diese Hierarchie Zugriff auf das am meisten Benötigte haben.&lt;/p&gt;&lt;p&gt;Die nächste Hierarchie wird verwendet, um sich in den in der Python-Variable &lt;tt&gt;sys.path&lt;/tt&gt; gespeicherten Verzeichnissen zu bewegen.&lt;/p&gt;&lt;p&gt;Die restlichen Hierachien erlauben die Navigation im gesamten System. Unter Unix wird gewöhnlich ein Verzeichnis mit &lt;tt&gt;/&lt;/tt&gt; als Wurzel und eines mit dem Home-Verzeichnis des Nutzers angezeigt. Auf einem Windows-System wird eine Hierarchie pro Laufwerk angezeigt.&lt;/p&gt;&lt;p&gt;Python-Programme (Dateien mit der Endung &lt;tt&gt;.py&lt;/tt&gt;) werden mit einem Python-Symbol dargestellt. Ein Rechtsklick bringt ein Kontextmenü, über das die Datei in einem Editor, zum Debuggen oder für einen Modultest geöffnet werden kann.&lt;/p&gt;&lt;p&gt;Das Kontextmenü einer Klasse, einer Funktion oder einer Methode öffnet die Datei, in der diese Klasse, Funktion oder Methode definiert ist, und stellt sicher, dass die richtige Codezeile sichtbar ist.&lt;/p&gt;&lt;p&gt;Qt-Designer-Dateien (Dateien mit der Endung &lt;tt&gt;.ui&lt;/tt&gt;) werden mit einem Designer-Symbol dargestellt. Das Kontextmenü dieser Dateien erlaubt es, sie im Qt Designer zu öffnen.&lt;/p&gt;&lt;p&gt;Qt-Linguist-Dateien (Dateien mit der Endung &lt;tt&gt;.ts&lt;/tt&gt;) werden mit einem Linguist-Symbol dargestellt. Das Kontextmenü dieser Dateien erlaubt es, sie im Qt Linguist zu öffnen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="553"/>
+        <location filename="../UI/Browser.py" line="555"/>
         <source>Show Mime-Type</source>
         <translation>MIME-Typ anzeigen</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="526"/>
+        <location filename="../UI/Browser.py" line="528"/>
         <source>The mime type of the file could not be determined.</source>
         <translation>Der MIME-Typ der Datei konnte nicht ermittelt werden.</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="544"/>
+        <location filename="../UI/Browser.py" line="546"/>
         <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.</source>
         <translation>Die Datei hat den MIME-Typ &lt;b&gt;{0}&lt;/b&gt;.</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="553"/>
+        <location filename="../UI/Browser.py" line="555"/>
         <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt; Shall it be added to the list of text mime types?</source>
         <translation>Die Datei hat den MIME-Typ &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt;Soll sie zur Liste der Text MIME-Typen hinzugefügt werden?</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="258"/>
+        <location filename="../UI/Browser.py" line="260"/>
         <source>Open in Hex Editor</source>
         <translation>Mit Hex-Editor öffnen</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="310"/>
+        <location filename="../UI/Browser.py" line="312"/>
         <source>Find &amp;&amp; Replace in this directory</source>
         <translation>In diesem Verzeichnis suchen &amp;&amp; ersetzen</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="239"/>
+        <location filename="../UI/Browser.py" line="241"/>
         <source>Refresh Source File</source>
         <translation>Quelltextdatei aktualisieren</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="212"/>
+        <location filename="../UI/Browser.py" line="214"/>
         <source>Show Hidden Files</source>
         <translation>Versteckte Dateien anzeigen</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="219"/>
-        <source>New</source>
-        <translation>Neu</translation>
-    </message>
-    <message>
         <location filename="../UI/Browser.py" line="221"/>
+        <source>New</source>
+        <translation>Neu</translation>
+    </message>
+    <message>
+        <location filename="../UI/Browser.py" line="223"/>
         <source>Directory</source>
         <translation>Verzeichnis</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="224"/>
+        <location filename="../UI/Browser.py" line="226"/>
         <source>File</source>
         <translation>Datei</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="321"/>
+        <location filename="../UI/Browser.py" line="323"/>
         <source>Delete</source>
         <translation>Löschen</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="879"/>
+        <location filename="../UI/Browser.py" line="881"/>
         <source>New Directory</source>
         <translation>Neues Verzeichnis</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="861"/>
+        <location filename="../UI/Browser.py" line="863"/>
         <source>Name for new directory:</source>
         <translation>Name des neuen Verzeichnisses:</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="902"/>
+        <location filename="../UI/Browser.py" line="904"/>
         <source>A file or directory named &lt;b&gt;{0}&lt;/b&gt; exists already. Aborting...</source>
         <translation>Eine Datei oder ein Verzeichnis mit der Bezeichnung &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Abbruch...</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="879"/>
+        <location filename="../UI/Browser.py" line="881"/>
         <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Verzeichnis &lt;b&gt;{0}&lt;/b&gt; konnte nicht angelegt werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="913"/>
+        <location filename="../UI/Browser.py" line="915"/>
         <source>New File</source>
         <translation>Neue Datei</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="894"/>
+        <location filename="../UI/Browser.py" line="896"/>
         <source>Name for new file:</source>
         <translation>Name der neuen Datei:</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="913"/>
+        <location filename="../UI/Browser.py" line="915"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht angelegt werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="942"/>
+        <location filename="../UI/Browser.py" line="944"/>
         <source>Do you really want to move this file to the trash?</source>
         <translation>Soll diese Datei wirklich in den Papierkorb verschoben werden?</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="946"/>
+        <location filename="../UI/Browser.py" line="948"/>
         <source>Do you really want to delete this file?</source>
         <translation>Soll diese Datei wirklich gelöscht werden?</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1043"/>
+        <location filename="../UI/Browser.py" line="1045"/>
         <source>Delete File</source>
         <translation>Datei löschen</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1043"/>
+        <location filename="../UI/Browser.py" line="1045"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die ausgewählte Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelöscht werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="979"/>
+        <location filename="../UI/Browser.py" line="981"/>
         <source>Do you really want to move this directory to the trash?</source>
         <translation>Soll dieses Verzeichnis wirklich in den Papierkorb verschoben werden?</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="983"/>
+        <location filename="../UI/Browser.py" line="985"/>
         <source>Do you really want to delete this directory?</source>
         <translation>Soll dieses Verzeichnis wirklich gelöscht werden?</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1000"/>
+        <location filename="../UI/Browser.py" line="1002"/>
         <source>Delete Directory</source>
         <translation>Verzeichnis löschen</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1000"/>
+        <location filename="../UI/Browser.py" line="1002"/>
         <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das ausgewählte Verzeichnis &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelöscht werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1023"/>
+        <location filename="../UI/Browser.py" line="1025"/>
         <source>Do you really want to move these files to the trash?</source>
         <translation>Sollen diese Dateien wirklich in den Papierkorb verschoben werden?</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1027"/>
+        <location filename="../UI/Browser.py" line="1029"/>
         <source>Do you really want to delete these files?</source>
         <translation>Sollen diese Dateien wirklich gelöscht werden?</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1032"/>
+        <location filename="../UI/Browser.py" line="1034"/>
         <source>Delete Files</source>
         <translation>Dateien löschen</translation>
     </message>
@@ -2556,27 +2555,27 @@
         <translation>Name</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="759"/>
+        <location filename="../UI/BrowserModel.py" line="766"/>
         <source>Attributes</source>
         <translation>Attribute</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="653"/>
-        <source>Coding: {0}</source>
-        <translation>Kodierung: {0}</translation>
-    </message>
-    <message>
         <location filename="../UI/BrowserModel.py" line="660"/>
+        <source>Coding: {0}</source>
+        <translation>Kodierung: {0}</translation>
+    </message>
+    <message>
+        <location filename="../UI/BrowserModel.py" line="667"/>
         <source>Globals</source>
         <translation>Globale Variablen</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="769"/>
+        <location filename="../UI/BrowserModel.py" line="776"/>
         <source>Class Attributes</source>
         <translation>Klassenattribute</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="666"/>
+        <location filename="../UI/BrowserModel.py" line="673"/>
         <source>Imports</source>
         <translation>Importe</translation>
     </message>
@@ -2599,7 +2598,7 @@
         <translation>Speichern</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="71"/>
+        <location filename="../Debugger/CallStackViewer.py" line="72"/>
         <source>File: {0}
 Line: {1}
 {2}{3}</source>
@@ -2608,34 +2607,34 @@
 {2}{3}</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="73"/>
+        <location filename="../Debugger/CallStackViewer.py" line="74"/>
         <source>File: {0}
 Line: {1}</source>
         <translation>Datei: {0}
 Zeile: {1}</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="202"/>
+        <location filename="../Debugger/CallStackViewer.py" line="203"/>
         <source>Save Call Stack Info</source>
         <translation>Aufrufhierarchie speichern</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="188"/>
+        <location filename="../Debugger/CallStackViewer.py" line="189"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation>Textdateien (*.txt);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="202"/>
+        <location filename="../Debugger/CallStackViewer.py" line="203"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="224"/>
+        <location filename="../Debugger/CallStackViewer.py" line="225"/>
         <source>Error saving Call Stack Info</source>
         <translation>Fehler beim Speichern der Aufrufhierarchie</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="224"/>
+        <location filename="../Debugger/CallStackViewer.py" line="225"/>
         <source>&lt;p&gt;The call stack info could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Aufrufhierarchie konnten nicht nach &lt;b&gt;{0}&lt;/b&gt; geschrieben werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
@@ -2645,7 +2644,7 @@
         <translation>Aufrufhierarchie</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="213"/>
+        <location filename="../Debugger/CallStackViewer.py" line="214"/>
         <source>Call Stack of &apos;{0}&apos;</source>
         <translation>Aufrufhierarchie von &apos;{0}&apos;</translation>
     </message>
@@ -3248,32 +3247,32 @@
 <context>
     <name>CodeDocumentationViewer</name>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="208"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="211"/>
         <source>Code Info Provider:</source>
         <translation>Code Info Provider:</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="221"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="227"/>
         <source>Select the code info provider</source>
         <translation>Wähle den Code Info Provider</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="223"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="229"/>
         <source>&lt;disabled&gt;</source>
         <translation>&lt;deaktiviert&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="404"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="410"/>
         <source>No documentation available</source>
         <translation>Keine Dokumentation verfügbar</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="425"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="431"/>
         <source>No source code documentation provider has been registered. This function has been disabled.</source>
         <translation>Es ist kein Provider für Code Dokumentation registriert. Diese Funktion wurde deaktiviert.</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="430"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="436"/>
         <source>This function has been disabled.</source>
         <translation>Diese Funktion wurde deaktiviert.</translation>
     </message>
@@ -3304,32 +3303,32 @@
 <context>
     <name>CodeMetricsDialog</name>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="205"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="217"/>
         <source>non-commentary lines</source>
         <translation>Quelltextzeilen</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="203"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="215"/>
         <source>empty lines</source>
         <translation>Leerzeilen</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="199"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="211"/>
         <source>comments</source>
         <translation>Kommentarzeilen</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="197"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="209"/>
         <source>bytes</source>
         <translation>Bytes</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="195"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="207"/>
         <source>lines</source>
         <translation>Zeilen</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="193"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="205"/>
         <source>files</source>
         <translation>Dateien</translation>
     </message>
@@ -3430,17 +3429,17 @@
         <translation>%v/%m Dateien</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="201"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="213"/>
         <source>comment lines</source>
         <translation>Kommentarzeilen</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="52"/>
-        <source>Collapse All</source>
-        <translation>Alle einklappen</translation>
-    </message>
-    <message>
         <location filename="../DataViews/CodeMetricsDialog.py" line="54"/>
+        <source>Collapse All</source>
+        <translation>Alle einklappen</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="56"/>
         <source>Expand All</source>
         <translation>Alle aufklappen</translation>
     </message>
@@ -3680,7 +3679,7 @@
         <translation>Drücken, um alle Dateien mit Problemen anzuzeigen</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="244"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="246"/>
         <source>Error: {0}</source>
         <translation>Fehler: {0}</translation>
     </message>
@@ -3690,7 +3689,7 @@
         <translation>Lösung: {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1037"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1044"/>
         <source>No issues found.</source>
         <translation>Keine Probleme gefunden.</translation>
     </message>
@@ -3715,12 +3714,12 @@
         <translation>Ignorierte anzeigen</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="963"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="968"/>
         <source>{0} (ignored)</source>
         <translation>{0} (ignoriert)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="856"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="861"/>
         <source>Preparing files...</source>
         <translation>Bereite Dateien vor...</translation>
     </message>
@@ -3730,12 +3729,12 @@
         <translation>Gib die maximal erlaubte Codekomplexität ein (McCabe: 10)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="217"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="219"/>
         <source>Errors</source>
         <translation>Fehler</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="895"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="900"/>
         <source>Transferring data...</source>
         <translation>Übertrage Daten...</translation>
     </message>
@@ -3840,7 +3839,7 @@
         <translation>Standards lösc&amp;hen</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1040"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1047"/>
         <source>No files found (check your ignore list).</source>
         <translation>Keine Dateien gefunden (überprüfe die Ignorierliste).</translation>
     </message>
@@ -4150,12 +4149,12 @@
         <translation>Drücken um ein Muster zur &apos;Commented Code&apos; Whitelist hinzuzufügen</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2004"/>
         <source>Commented Code Whitelist Pattern</source>
         <translation>&apos;Commented Code&apos; Whitelist Muster</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2004"/>
         <source>Enter a Commented Code Whitelist Pattern</source>
         <translation>Ein &apos;Commented Code&apos; Whitelist Muster eingeben</translation>
     </message>
@@ -4997,7 +4996,7 @@
 <context>
     <name>CondaExecDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="96"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="102"/>
         <source>Conda Execution</source>
         <translation>Ausführung von conda</translation>
     </message>
@@ -5026,48 +5025,48 @@
 &lt;p&gt;Dies zeigt die Fehler des conda Kommandos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="96"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="102"/>
         <source>The conda executable could not be started. Is it configured correctly?</source>
         <translation>Das conda Programm konnte nicht gestartet werden. Is es korrekt konfiguriert?</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="103"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="109"/>
         <source>Operation started.
 </source>
         <translation>Ausführung gestartet.
 </translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="134"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="143"/>
         <source>Operation finished.
 </source>
         <translation>Ausführung beendet.
 </translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="154"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="163"/>
         <source>Conda command &apos;{0}&apos; did not return success.</source>
         <translation>Der conda Befehl &apos;{0}&apos; meldete keinen Erfolg.</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="164"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="173"/>
         <source>
 Conda Message: {0}</source>
         <translation>
 Conda Ausgabe: {0}</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="203"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="212"/>
         <source>{0} (Size: {1})</source>
         <translation>{0} (Größe: {1})</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="208"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="217"/>
         <source>Fetching {0} ...</source>
         <translation>Hole {0} ...</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="212"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="221"/>
         <source> Done.
 </source>
         <translation> Fertig.
@@ -5077,7 +5076,7 @@
 <context>
     <name>CondaExportDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="209"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="211"/>
         <source>Generate Requirements</source>
         <translation>Anforderungen erzeugen</translation>
     </message>
@@ -5157,27 +5156,27 @@
         <translation>&amp;Aktualisieren</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="209"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="211"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation>Textdateien (*.txt);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="109"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="111"/>
         <source>The requirements were changed. Do you want to overwrite these changes?</source>
         <translation>Die Anforderungen wurden verändert. Sollen die Änderungen überschrieben werden?</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="140"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="142"/>
         <source>No output generated by conda.</source>
         <translation>conda erzeugte keine Ausgaben.</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="177"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="179"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; already exists. Do you want to overwrite it?</source>
         <translation>Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Soll sie überschrieben werden?</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="189"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="191"/>
         <source>&lt;p&gt;The requirements could not be written to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Anforderungen konnten nicht in &lt;b&gt;{0}&lt;/b&gt; gespeichert werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
@@ -5359,7 +5358,7 @@
 <context>
     <name>CondaPackageDetailsDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaPackageDetailsWidget.py" line="91"/>
+        <location filename="../CondaInterface/CondaPackageDetailsWidget.py" line="93"/>
         <source>Package Details</source>
         <translation>Paketdetails</translation>
     </message>
@@ -5560,132 +5559,132 @@
         <translation>Conda Menü</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="123"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="125"/>
         <source>Clean</source>
         <translation>Bereinigen</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="124"/>
-        <source>All</source>
-        <translation>Alles</translation>
-    </message>
-    <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="126"/>
-        <source>Cache</source>
-        <translation>Zwischenspeicher</translation>
+        <source>All</source>
+        <translation>Alles</translation>
     </message>
     <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="128"/>
+        <source>Cache</source>
+        <translation>Zwischenspeicher</translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="130"/>
         <source>Lock Files</source>
         <translation>Lock-Dateien</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="131"/>
-        <source>Packages</source>
-        <translation>Pakete</translation>
-    </message>
-    <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="133"/>
+        <source>Packages</source>
+        <translation>Pakete</translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="135"/>
         <source>Tarballs</source>
         <translation>Tarballs</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="136"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="138"/>
         <source>About Conda...</source>
         <translation>Über Conda...</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="139"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="141"/>
         <source>Update Conda</source>
         <translation>Conda erneuern</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="575"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="581"/>
         <source>Install Packages</source>
         <translation>Pakete installieren</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="144"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="146"/>
         <source>Install Requirements</source>
         <translation>Paketanforderungen installieren</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="147"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="149"/>
         <source>Generate Requirements</source>
         <translation>Anforderungen erzeugen</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="150"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="152"/>
         <source>Create Environment from Requirements</source>
         <translation>Umgebung aus Anforderungen erstellen</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="617"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="623"/>
         <source>Clone Environment</source>
         <translation>Umgebung klonen</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="662"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="668"/>
         <source>Delete Environment</source>
         <translation>Umgebung löschen</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="160"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="162"/>
         <source>Edit User Configuration...</source>
         <translation>Nutzerkonfiguration bearbeiten...</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="164"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="166"/>
         <source>Configure...</source>
         <translation>Einstellungen...</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="221"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="223"/>
         <source>Getting installed packages...</source>
         <translation>Ermittle installierte Pakete...</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="234"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="236"/>
         <source>Getting outdated packages...</source>
         <translation>Ermittle veraltete Pakete...</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="256"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="260"/>
         <source>{0} (Build: {1})</source>
         <translation>{0} (Build: {1})</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="397"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="403"/>
         <source>Conda Search Package Error</source>
         <translation>Fehler bei der Conda Paketsuche</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="555"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="561"/>
         <source>Package Specifications (separated by whitespace):</source>
         <translation>Paketspezifikationen (getrennt durch Leerzeichen):</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="575"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="581"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation>Textdateien (*.txt);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="641"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="647"/>
         <source>Create Environment</source>
         <translation>Umgebung erzeugen</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="662"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="668"/>
         <source>&lt;p&gt;Shall the environment &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soll die Umgebung &lt;b&gt;{0}&lt;/b&gt; wirklich gelöscht werden?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="687"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="693"/>
         <source>Edit Configuration</source>
         <translation>Konfiguration bearbeiten</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="687"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="693"/>
         <source>The configuration file &quot;{0}&quot; does not exist or is not writable.</source>
         <translation>Die Konfigurationsdatei &quot;{0}&quot; existiert nicht oder ist nicht schreibbar.</translation>
     </message>
@@ -5881,12 +5880,12 @@
         <translation>Ansichtenmanager</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="661"/>
         <source>Configuration Page Error</source>
         <translation>Konfigurationsseitenfehler</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
+        <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;Die Konfigurationsseite &lt;b&gt;{0}&lt;/b&gt; konnte nicht geladen werden.&lt;/p&gt;</translation>
     </message>
@@ -5921,12 +5920,12 @@
         <translation>Einstellungen</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="571"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="578"/>
         <source>Preferences</source>
         <translation>Einstellungen</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="576"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="584"/>
         <source>Please select an entry of the list 
 to display the configuration page.</source>
         <translation>Wähle einen Listeneintrag aus,
@@ -6171,17 +6170,17 @@
         <translation>Status</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="82"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="87"/>
         <source>Allow</source>
         <translation>Erlauben</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="91"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="96"/>
         <source>Block</source>
         <translation>Blocken</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="100"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="105"/>
         <source>Allow For Session</source>
         <translation>Für diese Sitzung erlauben</translation>
     </message>
@@ -6322,7 +6321,7 @@
         <translation>Domain:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="175"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="176"/>
         <source>&lt;no cookie selected&gt;</source>
         <translation>&lt;kein Cookie ausgewählt&gt;</translation>
     </message>
@@ -6367,37 +6366,37 @@
         <translation>Drücken, um alle Cookies zu löschen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="143"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="144"/>
         <source>Remove All Cookies</source>
         <translation>Alle Cookies entfernen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="143"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="144"/>
         <source>Do you really want to remove all stored cookies?</source>
         <translation>Sollen wirklich alle gespeicherten Cookies entfernt werden?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="177"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="178"/>
         <source>Remove Cookies</source>
         <translation>Cookies entfernen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="186"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="187"/>
         <source>Secure connections only</source>
         <translation>Nur sichere Verbindungen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="188"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="189"/>
         <source>All connections</source>
         <translation>Alle Verbindungen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="190"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="191"/>
         <source>Session Cookie</source>
         <translation>Sitzungscookie</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="197"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="198"/>
         <source>Remove Cookie</source>
         <translation>Cookie entfernen</translation>
     </message>
@@ -6684,57 +6683,57 @@
         <translation>&amp;Filtere mit:</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="578"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="580"/>
         <source>Code Generation</source>
         <translation>Codeerzeugung</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="448"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="449"/>
         <source>&lt;p&gt;Could not open the code template file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Codevorlagendatei „{0}“ konnte nicht geöffnet werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="485"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="486"/>
         <source>&lt;p&gt;Could not open the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Quelltextdatei „{0}“ konnte nicht geöffnet werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="578"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="580"/>
         <source>&lt;p&gt;Could not write the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Quelltextdatei „{0}“ konnte nicht geschrieben werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="225"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="226"/>
         <source>uic error</source>
         <translation>uic-Fehler</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="216"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="217"/>
         <source>&lt;p&gt;There was an error loading the form &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Es gab einen Fehler beim Laden des Formulars &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="135"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="136"/>
         <source>Create Dialog Code</source>
         <translation>Formularcode-Generator</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="135"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="136"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; exists but does not contain any classes.</source>
         <translation>Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert, enthält jedoch keine Klassen.</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="225"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="226"/>
         <source>&lt;p&gt;The project specific Python interpreter &lt;b&gt;{0}&lt;/b&gt; could not be started or did not finish within 30 seconds.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Projekt spezifische Python Interpreter &lt;b&gt;{0}&lt;/b&gt; konnte nicht gestarted werden oder endete nicht innerhalb 30 Sekunden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="401"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="402"/>
         <source>&lt;p&gt;Code generation for project language &quot;{0}&quot; is not supported.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Codegenerierung für die Projektsprache &quot;{0}&quot; wird nicht unterstützt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="437"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="438"/>
         <source>&lt;p&gt;No code template file available for project type &quot;{0}&quot;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Es ist keine Code Vorlagedatei für den Projekttyp &quot;{0}&quot; verfügbar.&lt;/p&gt;</translation>
     </message>
@@ -6777,12 +6776,12 @@
         <translation>geändert</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="865"/>
+        <location filename="../Debugger/DebugServer.py" line="867"/>
         <source>Connection from illegal host</source>
         <translation>Verbindung von ungültigem Rechner</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1875"/>
+        <location filename="../Debugger/DebugServer.py" line="1877"/>
         <source>
 Not connected
 </source>
@@ -6791,41 +6790,41 @@
 </translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="865"/>
+        <location filename="../Debugger/DebugServer.py" line="867"/>
         <source>&lt;p&gt;A connection was attempted by the illegal host &lt;b&gt;{0}&lt;/b&gt;. Accept this connection?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Es wurde versucht, eine Verbindung von dem nicht zugelassenen Rechner &lt;b&gt;{0}&lt;/b&gt; aufzubauen. Soll die Verbindung angenommen werden?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="2144"/>
+        <location filename="../Debugger/DebugServer.py" line="2146"/>
         <source>Passive debug connection received
 </source>
         <translation>Verbindung für passives Debuggen empfangen
 </translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="2158"/>
+        <location filename="../Debugger/DebugServer.py" line="2160"/>
         <source>Passive debug connection closed
 </source>
         <translation>Verbindung für passives Debuggen geschlossen
 </translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="351"/>
+        <location filename="../Debugger/DebugServer.py" line="353"/>
         <source>Register Debugger Interface</source>
         <translation>Debuggerschnittstelle registrieren</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="351"/>
+        <location filename="../Debugger/DebugServer.py" line="353"/>
         <source>&lt;p&gt;The debugger interface &lt;b&gt;{0}&lt;/b&gt; has already been registered. Ignoring this request.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Debuggerschnittstelle &lt;b&gt;{0}&lt;/b&gt; wurde bereits registriert. Anfrage wird ignoriert.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1601"/>
         <source>Start Debugger</source>
         <translation>Debugger starten</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1601"/>
         <source>&lt;p&gt;The debugger type &lt;b&gt;{0}&lt;/b&gt; is not supported or not configured.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Debuggertyp &lt;b&gt;{0}&lt;/b&gt; wird nicht unterstützt oder ist nicht konfiguriert.&lt;/p&gt;</translation>
     </message>
@@ -6833,7 +6832,7 @@
 <context>
     <name>DebugUI</name>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1961"/>
+        <location filename="../Debugger/DebugUI.py" line="1964"/>
         <source>Run Script</source>
         <translation>Skript ausführen</translation>
     </message>
@@ -6848,7 +6847,7 @@
         <translation>Das aktuelle Skript ausführen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1973"/>
+        <location filename="../Debugger/DebugUI.py" line="1976"/>
         <source>Run Project</source>
         <translation>Projekt ausführen</translation>
     </message>
@@ -6858,152 +6857,152 @@
         <translation>Projekt &amp;ausführen …</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="220"/>
+        <location filename="../Debugger/DebugUI.py" line="221"/>
         <source>Run the current Project</source>
         <translation>Das aktuelle Projekt ausführen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="357"/>
+        <location filename="../Debugger/DebugUI.py" line="359"/>
         <source>Continue</source>
         <translation>Weiter</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="357"/>
+        <location filename="../Debugger/DebugUI.py" line="359"/>
         <source>&amp;Continue</source>
         <translation>&amp;Weiter</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="362"/>
-        <source>Continue running the program from the current line</source>
-        <translation>Führe das laufende Programm ab der aktuellen Zeile weiter aus</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="364"/>
+        <source>Continue running the program from the current line</source>
+        <translation>Führe das laufende Programm ab der aktuellen Zeile weiter aus</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="366"/>
         <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Weiter&lt;/b&gt;&lt;p&gt;Führe das laufende Programm ab der aktuellen Zeile weiter aus. Das Programm wird angehalten, wenn es das Ende oder einen Haltepunkt erreicht.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="426"/>
+        <location filename="../Debugger/DebugUI.py" line="429"/>
         <source>Single Step</source>
         <translation>Einzelschritt</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="431"/>
+        <location filename="../Debugger/DebugUI.py" line="434"/>
         <source>Execute a single Python statement</source>
         <translation>Führe eine einzelne Python-Anweisung aus</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="432"/>
+        <location filename="../Debugger/DebugUI.py" line="435"/>
         <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Einzelschritt&lt;/b&gt;&lt;p&gt;Führe eine einzelne Python-Anweisung aus. Ist die Anweisung eine &lt;tt&gt;import&lt;/tt&gt;-Anweisung, ein Klassenkonstruktor oder eine Methode oder Funktionsaufruf, so wird die Kontrolle bei der nächsten Anweisung an den Debugger zurückgegeben.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="442"/>
+        <location filename="../Debugger/DebugUI.py" line="445"/>
         <source>Step Over</source>
         <translation>Prozedurschritt</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="442"/>
+        <location filename="../Debugger/DebugUI.py" line="445"/>
         <source>Step &amp;Over</source>
         <translation>&amp;Prozedurschritt</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="447"/>
-        <source>Execute a single Python statement staying in the current frame</source>
-        <translation>Führe eine einzelne Python-Anweisung aus, bleibe aber in der aktuellen Ebene</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="450"/>
+        <source>Execute a single Python statement staying in the current frame</source>
+        <translation>Führe eine einzelne Python-Anweisung aus, bleibe aber in der aktuellen Ebene</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="453"/>
         <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Prozedurschritt&lt;/b&gt;&lt;p&gt;Führe eine einzelne Python-Anweisung aus, bleibe jedoch in der aktuellen Ebene. Ist die Anweisung eine &lt;tt&gt;import&lt;/tt&gt;-Anweisung, ein Klassenkonstruktor oder eine Methode oder Funktionsaufruf, so wird die Kontrolle nach Beendigung der Anweisung an den Debugger zurückgegeben.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="461"/>
+        <location filename="../Debugger/DebugUI.py" line="464"/>
         <source>Step Out</source>
         <translation>Rückschritt</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="461"/>
+        <location filename="../Debugger/DebugUI.py" line="464"/>
         <source>Step Ou&amp;t</source>
         <translation>&amp;Rückschritt</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="466"/>
-        <source>Execute Python statements until leaving the current frame</source>
-        <translation>Führe Python-Anweisung bis zum Rücksprung aus</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="469"/>
+        <source>Execute Python statements until leaving the current frame</source>
+        <translation>Führe Python-Anweisung bis zum Rücksprung aus</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="472"/>
         <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rücksprung&lt;/b&gt;&lt;p&gt;Führe Python-Anweisungen bis zum Rücksprung aus. Sind die Anweisungen innerhalb einer &lt;tt&gt;import&lt;/tt&gt;-Anweisung, eines Klassenkonstruktors oder einer Methode oder Funktionsaufrufes, so wird die Kontrolle nach dem Rücksprung an den Debugger zurückgegeben.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="480"/>
+        <location filename="../Debugger/DebugUI.py" line="483"/>
         <source>Stop</source>
         <translation>Anhalten</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="485"/>
+        <location filename="../Debugger/DebugUI.py" line="488"/>
         <source>Stop debugging</source>
         <translation>Beende das Debuggen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="486"/>
+        <location filename="../Debugger/DebugUI.py" line="489"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Anhalten&lt;/b&gt;&lt;p&gt;Beende das Debuggen des laufenden Programms.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1169"/>
+        <location filename="../Debugger/DebugUI.py" line="1172"/>
         <source>The program being debugged contains an unspecified syntax error.</source>
         <translation>Das untersuchte Programm enthält einen unspezifizierten Syntaxfehler.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1212"/>
+        <location filename="../Debugger/DebugUI.py" line="1215"/>
         <source>An unhandled exception occured. See the shell window for details.</source>
         <translation>Eine nicht abgefangene Ausnahme ist aufgetreten. Details finden Sie im Shell-Fenster.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1345"/>
+        <location filename="../Debugger/DebugUI.py" line="1348"/>
         <source>The program being debugged has terminated unexpectedly.</source>
         <translation>Das untersuchte Programm wurde unerwartet beendet.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2111"/>
+        <location filename="../Debugger/DebugUI.py" line="2114"/>
         <source>Debug Project</source>
         <translation>Projekt debuggen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2111"/>
+        <location filename="../Debugger/DebugUI.py" line="2114"/>
         <source>There is no main script defined for the current project. No debugging possible.</source>
         <translation>Das aktuelle Projekt besitzt kein Hauptskript. Debuggen ist nicht möglich.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="426"/>
+        <location filename="../Debugger/DebugUI.py" line="429"/>
         <source>Sin&amp;gle Step</source>
         <translation>&amp;Einzelschritt</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="480"/>
+        <location filename="../Debugger/DebugUI.py" line="483"/>
         <source>&amp;Stop</source>
         <translation>An&amp;halten</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="330"/>
+        <location filename="../Debugger/DebugUI.py" line="332"/>
         <source>Restart the last debugged script</source>
         <translation>Das zuletzt untersuchte Skript neu starten</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="509"/>
+        <location filename="../Debugger/DebugUI.py" line="512"/>
         <source>&amp;Exceptions Filter...</source>
         <translation>&amp;Ausnahmenfilter …</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="513"/>
+        <location filename="../Debugger/DebugUI.py" line="516"/>
         <source>Configure exceptions filter</source>
         <translation>Konfiguriert den Ausnahmenfilter</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="515"/>
+        <location filename="../Debugger/DebugUI.py" line="518"/>
         <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ausnahmen Filter&lt;/b&gt;&lt;p&gt;Konfiguriert den Ausnahmenfilter. Nur Ausnahmen, deren Typ aufgelistet sind, werden während einer Debug-Sitzung angezeigt.&lt;/p&gt;&lt;p&gt;Bitte beachten Sie, dass alle nicht abgefangenen Ausnahmen unabhängig von der Liste angezeigt werden.&lt;/p&gt;</translation>
     </message>
@@ -7013,426 +7012,426 @@
         <translation>&lt;b&gt;Skript ausführen&lt;/b&gt;&lt;p&gt;Bestimme die Kommandozeilenparameter und führe das Skript außerhalb des Debuggers aus. Falls die Datei ungesicherte Änderungen hat, so können diese zunächst gesichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2094"/>
+        <location filename="../Debugger/DebugUI.py" line="2097"/>
         <source>Debug Script</source>
         <translation>Skript debuggen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="293"/>
+        <location filename="../Debugger/DebugUI.py" line="294"/>
         <source>&amp;Debug Script...</source>
         <translation>Skript &amp;debuggen …</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="298"/>
-        <source>Debug the current Script</source>
-        <translation>Das aktuelle Skript debuggen</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="299"/>
+        <source>Debug the current Script</source>
+        <translation>Das aktuelle Skript debuggen</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="300"/>
         <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Skript debuggen&lt;/b&gt;&lt;p&gt;Bestimme die Kommandozeilenparameter und setze die erste ausführbare Python-Zeile des aktuellen Editors als aktuelle Zeile. Falls die Datei ungesicherte Änderungen hat, so können diese zunächst gesichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="309"/>
+        <location filename="../Debugger/DebugUI.py" line="310"/>
         <source>Debug &amp;Project...</source>
         <translation>&amp;Projekt debuggen…</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="314"/>
-        <source>Debug the current Project</source>
-        <translation>Das aktuelle Projekt debuggen</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="316"/>
+        <source>Debug the current Project</source>
+        <translation>Das aktuelle Projekt debuggen</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="318"/>
         <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Projekt debuggen&lt;/b&gt;&lt;p&gt;Bestimme die Kommandozeilenparameter und setze die erste ausführbare Python-Zeile des Hauptskriptes des aktuellen Projektes als aktuelle Zeile. Falls Dateien des aktuellen Projektes ungesicherte Änderungen haben, so können diese zunächst gesichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1973"/>
+        <location filename="../Debugger/DebugUI.py" line="1976"/>
         <source>There is no main script defined for the current project. Aborting</source>
         <translation>Für das aktuelle Projekt ist kein Hauptskript festgelegt. Abbruch</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="221"/>
+        <location filename="../Debugger/DebugUI.py" line="222"/>
         <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Projekt ausführen&lt;/b&gt;&lt;p&gt;Bestimme die Kommandozeilenparameter und führe das Hauptskript des aktuellen Projektes außerhalb des Debuggers aus. Falls Dateien des aktuellen Projektes ungesicherte Änderungen haben, so können diese zunächst gesichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="231"/>
+        <location filename="../Debugger/DebugUI.py" line="232"/>
         <source>Coverage run of Script</source>
         <translation>Abdeckungslauf des Skriptes</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="231"/>
+        <location filename="../Debugger/DebugUI.py" line="232"/>
         <source>Coverage run of Script...</source>
         <translation>Abdeckungslauf des Skriptes …</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="236"/>
+        <location filename="../Debugger/DebugUI.py" line="237"/>
         <source>Perform a coverage run of the current Script</source>
         <translation>Führe einen Abdeckungslauf des aktuellen Skriptes durch</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="238"/>
+        <location filename="../Debugger/DebugUI.py" line="239"/>
         <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Abdeckungslauf des Skriptes&lt;/b&gt;&lt;p&gt;Bestimme die Kommandozeilenparameter und führe das Skript unter Kontrolle eines Abdeckungsanalysetools aus. Falls die Datei ungesicherte Änderungen hat, so können diese zunächst gesichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="247"/>
+        <location filename="../Debugger/DebugUI.py" line="248"/>
         <source>Coverage run of Project</source>
         <translation>Abdeckungslauf des Projektes</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="247"/>
+        <location filename="../Debugger/DebugUI.py" line="248"/>
         <source>Coverage run of Project...</source>
         <translation>Abdeckungslauf des Projektes …</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="252"/>
+        <location filename="../Debugger/DebugUI.py" line="253"/>
         <source>Perform a coverage run of the current Project</source>
         <translation>Führe einen Abdeckungslauf des aktuellen Projektes durch</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="254"/>
+        <location filename="../Debugger/DebugUI.py" line="255"/>
         <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Abdeckungslauf des Projektes&lt;/b&gt;&lt;p&gt;Bestimme die Kommandozeilenparameter und führe das Hauptskript des aktuellen Projektes unter Kontrolle eines Abdeckungsanalysetools aus. Falls Dateien des aktuellen Projektes ungesicherte Änderungen haben, so können diese zunächst gesichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1700"/>
+        <location filename="../Debugger/DebugUI.py" line="1703"/>
         <source>Coverage of Project</source>
         <translation>Abdeckung des Projektes</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1687"/>
+        <location filename="../Debugger/DebugUI.py" line="1690"/>
         <source>Coverage of Script</source>
         <translation>Abdeckung des Skriptes</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="264"/>
+        <location filename="../Debugger/DebugUI.py" line="265"/>
         <source>Profile Script</source>
         <translation>Skriptprofil</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="264"/>
+        <location filename="../Debugger/DebugUI.py" line="265"/>
         <source>Profile Script...</source>
         <translation>Skriptprofil …</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="268"/>
-        <source>Profile the current Script</source>
-        <translation>Profil des aktuellen Skriptes erstellen</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="269"/>
+        <source>Profile the current Script</source>
+        <translation>Profil des aktuellen Skriptes erstellen</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="270"/>
         <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Skriptprofil&lt;/b&gt;&lt;p&gt;Bestimme die Kommandozeilenparameter und führe das Skript unter Kontrolle des Python-Profilers aus. Falls die Datei ungesicherte Änderungen hat, so können diese zunächst gesichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="277"/>
+        <location filename="../Debugger/DebugUI.py" line="278"/>
         <source>Profile Project</source>
         <translation>Projektprofil</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="277"/>
+        <location filename="../Debugger/DebugUI.py" line="278"/>
         <source>Profile Project...</source>
         <translation>Projektprofil …</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="282"/>
+        <location filename="../Debugger/DebugUI.py" line="283"/>
         <source>Profile the current Project</source>
         <translation>Profil des aktuellen Projektes erstellen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="284"/>
+        <location filename="../Debugger/DebugUI.py" line="285"/>
         <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Projektprofil&lt;/b&gt;&lt;p&gt;Bestimme die Kommandozeilenparameter und führe das Hauptskript des aktuellen Projektes unter Kontrolle des Python-Profilers aus. Falls Dateien des aktuellen Projektes ungesicherte Änderungen haben, so können diese zunächst gesichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1837"/>
+        <location filename="../Debugger/DebugUI.py" line="1840"/>
         <source>Profile of Project</source>
         <translation>Projektprofil</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1824"/>
+        <location filename="../Debugger/DebugUI.py" line="1827"/>
         <source>Profile of Script</source>
         <translation>Skriptprofil</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="509"/>
+        <location filename="../Debugger/DebugUI.py" line="512"/>
         <source>Exceptions Filter</source>
         <translation>Ausnahmen Filter</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="551"/>
+        <location filename="../Debugger/DebugUI.py" line="554"/>
         <source>Toggle Breakpoint</source>
         <translation>Haltepunkt setzen/löschen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="552"/>
+        <location filename="../Debugger/DebugUI.py" line="555"/>
         <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Haltepunkt setzen/löschen&lt;/b&gt;&lt;p&gt;Setzt/löscht einen Haltepunkt in der aktuellen Zeile des aktuellen Editors.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="582"/>
+        <location filename="../Debugger/DebugUI.py" line="585"/>
         <source>Next Breakpoint</source>
         <translation>Nächster Haltepunkt</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="583"/>
+        <location filename="../Debugger/DebugUI.py" line="586"/>
         <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nächster Haltepunkt&lt;/b&gt;&lt;p&gt;Gehe zum nächsten Haltepunkt des aktuellen Editors.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="597"/>
+        <location filename="../Debugger/DebugUI.py" line="600"/>
         <source>Previous Breakpoint</source>
         <translation>Vorheriger Haltepunkt</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="598"/>
+        <location filename="../Debugger/DebugUI.py" line="601"/>
         <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vorheriger Haltepunkt&lt;/b&gt;&lt;p&gt;Gehe zum vorherigen Haltepunkt des aktuellen Editors.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="610"/>
+        <location filename="../Debugger/DebugUI.py" line="613"/>
         <source>Clear Breakpoints</source>
         <translation>Haltepunkte löschen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="611"/>
+        <location filename="../Debugger/DebugUI.py" line="614"/>
         <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Haltepunkte löschen&lt;/b&gt;&lt;p&gt;Haltepunkte aller Editoren löschen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="641"/>
+        <location filename="../Debugger/DebugUI.py" line="644"/>
         <source>&amp;Breakpoints</source>
         <translation>&amp;Haltepunkte</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="566"/>
+        <location filename="../Debugger/DebugUI.py" line="569"/>
         <source>Edit Breakpoint</source>
         <translation>Haltepunkt bearbeiten</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="567"/>
+        <location filename="../Debugger/DebugUI.py" line="570"/>
         <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Haltepunkt bearbeiten&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zum Bearbeiten der Haltepunkteigenschaften. Es wird mit der aktuellen Zeile des aktuellen Editors gearbeitet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="373"/>
+        <location filename="../Debugger/DebugUI.py" line="375"/>
         <source>Continue to Cursor</source>
         <translation>Weiter bis Einfügemarke</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="373"/>
+        <location filename="../Debugger/DebugUI.py" line="375"/>
         <source>Continue &amp;To Cursor</source>
         <translation>Weiter bis Einfüge&amp;marke</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="378"/>
-        <source>Continue running the program from the current line to the current cursor position</source>
-        <translation>Das Programm von der aktuellen Zeile bis zur Einfügemarke ausführen</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="381"/>
+        <source>Continue running the program from the current line to the current cursor position</source>
+        <translation>Das Programm von der aktuellen Zeile bis zur Einfügemarke ausführen</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="384"/>
         <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Weiter bis Einfügemarke&lt;/b&gt;&lt;p&gt;Das Programm von der aktuellen Zeile bis zur Einfügemarke ausführen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="493"/>
+        <location filename="../Debugger/DebugUI.py" line="496"/>
         <source>Variables Type Filter</source>
         <translation>Variablentypenfilter</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="493"/>
+        <location filename="../Debugger/DebugUI.py" line="496"/>
         <source>Varia&amp;bles Type Filter...</source>
         <translation>&amp;Variablentypenfilter …</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="497"/>
+        <location filename="../Debugger/DebugUI.py" line="500"/>
         <source>Configure variables type filter</source>
         <translation>Konfiguriert die Variablentypenfilter</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="499"/>
+        <location filename="../Debugger/DebugUI.py" line="502"/>
         <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Variablenfilter&lt;/b&gt;&lt;p&gt;Konfigurieren der Variablenfilter. Nur Variablen mit einem Typ, der nicht ausgewählt ist, werden im globalen oder lokalen Variablenfenster während einer Debuggingsitzung angezeigt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1277"/>
+        <location filename="../Debugger/DebugUI.py" line="1280"/>
         <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das untersuchte Programm erzeugte die Ausnahme &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;„&lt;b&gt;{1}&lt;/b&gt;“&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1452"/>
+        <location filename="../Debugger/DebugUI.py" line="1455"/>
         <source>Breakpoint Condition Error</source>
         <translation>Fehler in Haltepunktbedingung</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1452"/>
+        <location filename="../Debugger/DebugUI.py" line="1455"/>
         <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Bedingung des Haltepunktes &lt;b&gt;{0}, {1}&lt;/b&gt; enthält einen Syntaxfehler.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="575"/>
+        <location filename="../Debugger/DebugUI.py" line="578"/>
         <source>Ctrl+Shift+PgDown</source>
         <comment>Debug|Next Breakpoint</comment>
         <translation>Ctrl+Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="590"/>
+        <location filename="../Debugger/DebugUI.py" line="593"/>
         <source>Ctrl+Shift+PgUp</source>
         <comment>Debug|Previous Breakpoint</comment>
         <translation>Ctrl+Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="637"/>
+        <location filename="../Debugger/DebugUI.py" line="640"/>
         <source>&amp;Debug</source>
         <translation>Debu&amp;g</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="684"/>
+        <location filename="../Debugger/DebugUI.py" line="687"/>
         <source>Start</source>
         <translation>Start</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="698"/>
+        <location filename="../Debugger/DebugUI.py" line="701"/>
         <source>Debug</source>
         <translation>Debug</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1262"/>
+        <location filename="../Debugger/DebugUI.py" line="1265"/>
         <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das untersuchte Programm erzeugte die Ausnahme &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;„&lt;b&gt;{1}&lt;/b&gt;“&lt;br&gt;Datei: &lt;b&gt;{2}&lt;/b&gt;, Zeile: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Anhalten?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1188"/>
+        <location filename="../Debugger/DebugUI.py" line="1191"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; enthält den Syntaxfehler &lt;b&gt;{1}&lt;/b&gt; in Zeile &lt;b&gt;{2}&lt;/b&gt;, Position &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="347"/>
+        <location filename="../Debugger/DebugUI.py" line="349"/>
         <source>Stop the running script.</source>
         <translation>Halte das laufende Skript an.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1491"/>
+        <location filename="../Debugger/DebugUI.py" line="1494"/>
         <source>Watch Expression Error</source>
         <translation>Fehler in Beobachtungsausdruck</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1491"/>
+        <location filename="../Debugger/DebugUI.py" line="1494"/>
         <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Beobachtungsausdrucks &lt;b&gt;{0}&lt;/b&gt; enthält einen Syntaxfehler.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1521"/>
+        <location filename="../Debugger/DebugUI.py" line="1524"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; already exists.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Ein Beobachtungsausdruck „&lt;b&gt;{0}&lt;/b&gt;“ existiert bereits.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1526"/>
+        <location filename="../Debugger/DebugUI.py" line="1529"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Ein Beobachtungsausdruck „&lt;b&gt;{0}&lt;/b&gt;“ für die Variable &lt;b&gt;{1}&lt;/b&gt; existiert bereits.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1531"/>
+        <location filename="../Debugger/DebugUI.py" line="1534"/>
         <source>Watch expression already exists</source>
         <translation>Beobachtungsausdruck existiert bereits</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="526"/>
+        <location filename="../Debugger/DebugUI.py" line="529"/>
         <source>Ignored Exceptions</source>
         <translation>Ignorierte Ausnahmen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="526"/>
+        <location filename="../Debugger/DebugUI.py" line="529"/>
         <source>&amp;Ignored Exceptions...</source>
         <translation>&amp;Ignorierte Ausnahmen …</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="530"/>
+        <location filename="../Debugger/DebugUI.py" line="533"/>
         <source>Configure ignored exceptions</source>
         <translation>Konfiguriert ignorierte Ausnahmen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="532"/>
+        <location filename="../Debugger/DebugUI.py" line="535"/>
         <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ignorierte Ausnahmen&lt;/b&gt;&lt;p&gt;Konfiguriert die ignorierten Ausnahmen. Nur Ausnahmen, deren Typ nicht aufgelistet sind, werden während einer Debug-Sitzung angezeigt.&lt;/p&gt;&lt;p&gt;Bitte beachten Sie, dass nicht abgefangenen Ausnahmen nicht ignoriert werden können.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="545"/>
+        <location filename="../Debugger/DebugUI.py" line="548"/>
         <source>Shift+F11</source>
         <comment>Debug|Toggle Breakpoint</comment>
         <translation>Shift+F11</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="560"/>
+        <location filename="../Debugger/DebugUI.py" line="563"/>
         <source>Shift+F12</source>
         <comment>Debug|Edit Breakpoint</comment>
         <translation>Shift+F12</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="560"/>
+        <location filename="../Debugger/DebugUI.py" line="563"/>
         <source>Edit Breakpoint...</source>
         <translation>Haltepunkt bearbeiten …</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1141"/>
+        <location filename="../Debugger/DebugUI.py" line="1144"/>
         <source>Program terminated</source>
         <translation>Programm beendet</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="326"/>
+        <location filename="../Debugger/DebugUI.py" line="328"/>
         <source>Restart</source>
         <translation>Neu starten</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="332"/>
+        <location filename="../Debugger/DebugUI.py" line="334"/>
         <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neu starten&lt;/b&gt;&lt;p&gt;Setzt die Kommandozeilenparameter und setzt die erste ausführbare Python-Zeile des zuletzt untersuchten Skriptes. Falls ungesicherte Änderungen vorliegen, so werden diese zunächst gesichert.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="348"/>
+        <location filename="../Debugger/DebugUI.py" line="350"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Anhalten&lt;/b&gt;&lt;p&gt;Dies hält das Skript, das im Debugger läuft, an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1331"/>
+        <location filename="../Debugger/DebugUI.py" line="1334"/>
         <source>&lt;p&gt;The program generate the signal &quot;{0}&quot;.&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Programm erzeugte das Signal &quot;{0}&quot;.&lt;br/&gt;Datei: &lt;b&gt;{1}&lt;/b&gt;, Zeile: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1122"/>
+        <location filename="../Debugger/DebugUI.py" line="1125"/>
         <source>Message: {0}</source>
         <translation>Nachricht: {0}</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="406"/>
+        <location filename="../Debugger/DebugUI.py" line="409"/>
         <source>Move Instruction Pointer to Cursor</source>
         <translation>Instruktionszeiger zur Cursorposition bewegen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="406"/>
+        <location filename="../Debugger/DebugUI.py" line="409"/>
         <source>&amp;Jump To Cursor</source>
         <translation>Zum Cursor &amp;springen</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="411"/>
-        <source>Skip the code from the current line to the current cursor position</source>
-        <translation>Überspringe den Programmteil von der aktuellen Zeile bis zur aktuellen Cursorposition</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="414"/>
+        <source>Skip the code from the current line to the current cursor position</source>
+        <translation>Überspringe den Programmteil von der aktuellen Zeile bis zur aktuellen Cursorposition</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="417"/>
         <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It&apos;s not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Instruktionszeiger zur Cursorposition bewegen&lt;/b&gt;&lt;p&gt;Bewege den Python Instruktionszeiger zur aktuellen Cursorposition, ohne Programmteile dazwischen auszuführen.&lt;/p&gt;&lt;p&gt;Es ist nicht möglich, aus einer Funktion herauszuspringen oder in eine Schleife hinein. In diesem Fall wird eine Fehlermeldung im Log-Fenster ausgegeben.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1409"/>
+        <location filename="../Debugger/DebugUI.py" line="1412"/>
         <source>No locals available.</source>
         <translation>Keine lokalen Variablen verfügbar.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="639"/>
+        <location filename="../Debugger/DebugUI.py" line="642"/>
         <source>Sta&amp;rt</source>
         <translation>Sta&amp;rt</translation>
     </message>
@@ -7442,32 +7441,32 @@
         <translation>Benachrichtigung</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="389"/>
+        <location filename="../Debugger/DebugUI.py" line="392"/>
         <source>Continue Until</source>
         <translation>Weiter Bis</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="389"/>
+        <location filename="../Debugger/DebugUI.py" line="392"/>
         <source>Continue &amp;Until</source>
         <translation>Weiter &amp;Bis</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="394"/>
-        <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
-        <translation>Das Programm von der aktuellen Zeile bis zur Einfügemarke oder dem Verlassen des aktuellen Frame ausführen</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="397"/>
+        <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
+        <translation>Das Programm von der aktuellen Zeile bis zur Einfügemarke oder dem Verlassen des aktuellen Frame ausführen</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="400"/>
         <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Weiter Bis&lt;/b&gt;&lt;p&gt;Das Programm von der aktuellen Zeile bis zur Einfügemarke /größer als die aktuelle Zeile) oder dem Verlassen des aktuellen Frame ausführen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1127"/>
+        <location filename="../Debugger/DebugUI.py" line="1130"/>
         <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Programm wurde mit dem Status {0} beendet.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1131"/>
+        <location filename="../Debugger/DebugUI.py" line="1134"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; wurde mit dem Status {1} beendet.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</translation>
     </message>
@@ -7804,22 +7803,22 @@
         <translation>Geänderte Skripte automatisch sichern</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="282"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="283"/>
         <source>Add allowed host</source>
         <translation>Zugelassene Rechner hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305"/>
         <source>Enter the IP address of an allowed host</source>
         <translation>Gib die IP-Adresse eines zugelassenen Rechners ein</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="316"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318"/>
         <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die eingegebene Adresse &lt;b&gt;{0}&lt;/b&gt; ist keine gültige IPv4- oder IPv6-Adresse. Abbruch …&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="316"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318"/>
         <source>Edit allowed host</source>
         <translation>Zugelassene Rechner bearbeiten</translation>
     </message>
@@ -8054,7 +8053,7 @@
 <context>
     <name>DebuggerPropertiesDialog</name>
     <message>
-        <location filename="../Project/DebuggerPropertiesDialog.py" line="129"/>
+        <location filename="../Project/DebuggerPropertiesDialog.py" line="130"/>
         <source>All Files (*)</source>
         <translation>Alle Dateien (*)</translation>
     </message>
@@ -8986,7 +8985,7 @@
 <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="316"/>
         <source>.desktop Wizard</source>
         <translation>.desktop Assistent</translation>
     </message>
@@ -9311,22 +9310,22 @@
         <translation>Von Projekt befüllen</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>FreeDesktop Standard .desktop</source>
         <translation>FreeDesktop Standard .desktop</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>KDE Plasma MetaData .desktop</source>
         <translation>KDE Plasma Metadaten .desktop</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>Ubuntu Unity QuickList .desktop</source>
         <translation>Ubuntu Unity QuickList .desktop</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="316"/>
         <source>Only one of &apos;Only Show In&apos; or  &apos;Not Show In&apos; allowed.</source>
         <translation>Nur einer von &apos;Nur Anzeigen In&apos; oder &apos;Nicht Anzeigen In&apos; ist zugelassen.</translation>
     </message>
@@ -9422,32 +9421,32 @@
         <translation>Drücken, um die geladenen Datei zu öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="220"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="223"/>
         <source>Download canceled: {0}</source>
         <translation>Download abgebrochen: {0}</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="210"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="213"/>
         <source>Save File</source>
         <translation>Datei speichern</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="249"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="252"/>
         <source>Download directory ({0}) couldn&apos;t be created.</source>
         <translation>Das Downloadverzeichnis ({0}) konnte nicht erzeugt werden.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="439"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="442"/>
         <source>?</source>
         <translation>?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="452"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="455"/>
         <source>{0} of {1} - Stopped</source>
         <translation>{0} von {1} – Angehalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="193"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="196"/>
         <source>VirusTotal scan scheduled: {0}</source>
         <translation>Prüfung mit VirusTotal beauftragt: {0}</translation>
     </message>
@@ -9457,7 +9456,7 @@
         <translation>Drücken, um den Download zu pausieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="448"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="451"/>
         <source>{0} downloaded</source>
         <translation>{0} heruntergeladen</translation>
     </message>
@@ -9467,7 +9466,7 @@
         <translation>Datum und Zeit</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="437"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="440"/>
         <source>{0} of {1} ({2}/sec) {3}</source>
         <translation>{0} von {1} ({2}/s) {3}</translation>
     </message>
@@ -9480,7 +9479,7 @@
         <translation>Drücken, um die Liste der Downloads zu löschen</translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="168"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="169"/>
         <source>There are %n downloads in progress.
 Do you want to quit anyway?</source>
         <translation>
@@ -9496,67 +9495,67 @@
         <translation>Liste löschen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="107"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="108"/>
         <source>Open</source>
         <translation>Öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="111"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="112"/>
         <source>Cancel</source>
         <translation>Abbrechen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="115"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="116"/>
         <source>Open Containing Folder</source>
         <translation>Übergeordnetes Verzeichnis öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="119"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="120"/>
         <source>Go to Download Page</source>
         <translation>Zur Downloadseite gehen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="122"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="123"/>
         <source>Copy Download Link</source>
         <translation>Downloadlink kopieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="126"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="127"/>
         <source>Select All</source>
         <translation>Alles auswählen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="135"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="136"/>
         <source>Remove From List</source>
         <translation>Aus der Liste löschen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="257"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="258"/>
         <source>Suspicuous URL detected</source>
         <translation>Fragwürdige URL entdeckt</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="257"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="258"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
         <translation>&lt;p&gt;Die URL &lt;b&gt;{0}&lt;/b&gt; wurde in der Safe Browsing Datenbank gefunden.&lt;/p&gt;{1}</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="588"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="589"/>
         <source>Download Manager</source>
         <translation>Downloads</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="500"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="501"/>
         <source>Downloads finished</source>
         <translation>Downloads erledigt</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="500"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="501"/>
         <source>All files have been downloaded.</source>
         <translation>Alle Dateien wurden heruntergeladen.</translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="622"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="623"/>
         <source>{0}% of %n file(s) ({1}) {2}</source>
         <translation>
             <numerusform>{0}% von einer Datei ({1}) {2}</numerusform>
@@ -9564,7 +9563,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="629"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="630"/>
         <source>{0}% - Download Manager</source>
         <translation>{0}% - Downloads</translation>
     </message>
@@ -9696,27 +9695,27 @@
 <context>
     <name>E5GoogleMail</name>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="159"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="160"/>
         <source>The client secrets file is not present. Has the Gmail API been enabled?</source>
         <translation>Die Datei mit den Clientdaten liegt nicht vor. Wurde das Gmail API aktiviert?</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="196"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="197"/>
         <source>OAuth2 Authorization Code</source>
         <translation>OAuth2 Autorisierungscode</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="196"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="197"/>
         <source>Enter the OAuth2 authorization code:</source>
         <translation>Gib den OAuth2 Autorisierungscode ein:</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="240"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="241"/>
         <source>No authorized session available.</source>
         <translation>Keine authorisierte Sitzung verfügbar.</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="258"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="259"/>
         <source>Message #{0} sent.</source>
         <translation>Nachrich #{0} gesendet.</translation>
     </message>
@@ -9724,7 +9723,7 @@
 <context>
     <name>E5GraphicsView</name>
     <message>
-        <location filename="../E5Graphics/E5GraphicsView.py" line="57"/>
+        <location filename="../E5Graphics/E5GraphicsView.py" line="59"/>
         <source>&lt;b&gt;Graphics View&lt;/b&gt;
 &lt;p&gt;This graphics view is used to show a diagram. 
 There are various actions available to manipulate the 
@@ -9757,7 +9756,7 @@
 </translation>
     </message>
     <message>
-        <location filename="../E5Graphics/E5GraphicsView.py" line="415"/>
+        <location filename="../E5Graphics/E5GraphicsView.py" line="417"/>
         <source>{0}, Page {1}</source>
         <translation>{0}, Seite {1}</translation>
     </message>
@@ -10190,7 +10189,7 @@
 <context>
     <name>E5NetworkProxyFactory</name>
     <message>
-        <location filename="../E5Network/E5NetworkProxyFactory.py" line="227"/>
+        <location filename="../E5Network/E5NetworkProxyFactory.py" line="229"/>
         <source>Proxy Configuration Error</source>
         <translation>Proxykonfigurationsfehler</translation>
     </message>
@@ -10200,7 +10199,7 @@
         <translation>&lt;b&gt;Verbinden zu Proxy „{0}“ mit:&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5NetworkProxyFactory.py" line="227"/>
+        <location filename="../E5Network/E5NetworkProxyFactory.py" line="229"/>
         <source>Proxy usage was activated but no proxy host for protocol &apos;{0}&apos; configured.</source>
         <translation>Proxyverwendung ist aktiviert, aber es ist kein Proxyrechner für das Protokoll „{0}“ konfiguriert.</translation>
     </message>
@@ -10208,32 +10207,32 @@
 <context>
     <name>E5PathPickerBase</name>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="161"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="162"/>
         <source>Enter Path Name</source>
         <translation>Gib den Pfadnamen ein</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="158"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="159"/>
         <source>Enter Path Names separated by &apos;;&apos;</source>
         <translation>Gib Pfadnamen getrennt durch &quot;;&quot; ein</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="499"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="500"/>
         <source>Choose a file to open</source>
         <translation>Wähle eine zu öffnende Datei aus</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="501"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="502"/>
         <source>Choose files to open</source>
         <translation>Wähle zu öffnende Dateien aus</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="506"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="507"/>
         <source>Choose a file to save</source>
         <translation>Wähle eine zu schreibende Datei aus</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="508"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="509"/>
         <source>Choose a directory</source>
         <translation>Wähle ein Verzeichnis aus</translation>
     </message>
@@ -10299,32 +10298,32 @@
         <translation>Alt+K</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="107"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="117"/>
         <source>Process canceled.</source>
         <translation>Vorgang abgebrochen.</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="121"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="134"/>
         <source>Process finished successfully.</source>
         <translation>Vorgang erfolgreich beendet.</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="123"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="136"/>
         <source>Process crashed.</source>
         <translation>Prozess gestorben.</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="125"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="138"/>
         <source>Process finished with exit code {0}</source>
         <translation>Prozess endete mit Code {0}</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="179"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="192"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="179"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="192"/>
         <source>&lt;p&gt;The process &lt;b&gt;{0}&lt;/b&gt; could not be started.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Prozess &lt;b&gt;{0}&lt;/b&gt; konnte nicht gestartet werden.&lt;/p&gt;</translation>
     </message>
@@ -10370,12 +10369,12 @@
         <translation>&amp;Ansehen …</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="80"/>
+        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="82"/>
         <source>(Unknown)</source>
         <translation>(Unbekannt)</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="82"/>
+        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="84"/>
         <source>(Unknown common name)</source>
         <translation>(Unbekannter allgemeiner Name)</translation>
     </message>
@@ -10463,72 +10462,72 @@
         <translation>Sie haben Zertifikate für diese Zertifizierungsstellen gespeichert:</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="300"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="305"/>
         <source>(Unknown)</source>
         <translation>(Unbekannt)</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="302"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="307"/>
         <source>(Unknown common name)</source>
         <translation>(Unbekannter allgemeiner Name)</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="150"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="152"/>
         <source>Delete Server Certificate</source>
         <translation>Serverzertifikat löschen</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="150"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="152"/>
         <source>&lt;p&gt;Shall the server certificate really be deleted?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;&lt;p&gt;If the server certificate is deleted, the normal security checks will be reinstantiated and the server has to present a valid certificate.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soll das Serverzertifikat wirklich gelöscht werden?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;&lt;p&gt;Wenn das Serverzertifikat gelöscht wird, werden die normalen Sicherheitsprüfungen reaktiviert und der Server muss ein gültiges Zertifikat vorweisen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="489"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="495"/>
         <source>Import Certificate</source>
         <translation>Zertifikat importieren</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="399"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="405"/>
         <source>&lt;p&gt;The certificate &lt;b&gt;{0}&lt;/b&gt; already exists. Skipping.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Zertifikat &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überspringe es.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="354"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="359"/>
         <source>Delete CA Certificate</source>
         <translation>Zertifikat einer Zertifizierungsstelle löschen</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="354"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="359"/>
         <source>&lt;p&gt;Shall the CA certificate really be deleted?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;&lt;p&gt;If the CA certificate is deleted, the browser will not trust any certificate issued by this CA.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soll das Zertifikat der Zertifizierungsstelle wirklich gelöscht werden?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;&lt;p&gt;Wenn das Zertifikat einer Zertifizierungsstelle gelöscht wird, vertraut der Browser keinem Zertifikat, das von dieser Zertifizierungsstelle herausgegeben wurde.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="499"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="505"/>
         <source>Export Certificate</source>
         <translation>Zertifikat exportieren</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="440"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="446"/>
         <source>Certificate File (PEM) (*.pem);;Certificate File (DER) (*.der)</source>
         <translation>Zertifikatdatei (PEM) (*.pem);;Zertifikatdatei (DER) (*.der)</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="456"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="462"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="467"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="473"/>
         <source>&lt;p&gt;The certificate could not be written to file &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Zertifikat konnte nicht in die Datei &lt;b&gt;{0}&lt;/b&gt; geschrieben werden.&lt;/p&gt;&lt;p&gt;Fehler: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="489"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="495"/>
         <source>Certificate Files (*.pem *.crt *.der *.cer *.ca);;All Files (*)</source>
         <translation>Zertifikatdateien (*.pem *.crt *.der *.cer *.ca);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="499"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="505"/>
         <source>&lt;p&gt;The certificate could not be read from file &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Zertifikat konnte nicht aus der Datei &lt;b&gt;{0}&lt;/b&gt; gelesen werden.&lt;/p&gt;&lt;p&gt;Fehler: {1}&lt;/p&gt;</translation>
     </message>
@@ -10624,7 +10623,7 @@
         <translation>MD5-Prüfsumme:</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesInfoWidget.py" line="151"/>
+        <location filename="../E5Network/E5SslCertificatesInfoWidget.py" line="156"/>
         <source>&lt;not part of the certificate&gt;</source>
         <translation>&lt;kein Teil des Zertifikates&gt;</translation>
     </message>
@@ -10632,42 +10631,42 @@
 <context>
     <name>E5SslErrorHandler</name>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="141"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="142"/>
         <source>SSL Errors</source>
         <translation>SSL Fehler</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="141"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="142"/>
         <source>&lt;p&gt;SSL Errors for &lt;br /&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Do you want to ignore these errors?&lt;/p&gt;</source>
         <translation>&lt;p&gt;SSL Fehler für &lt;br /&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Sollen diese Fehler ignoriert werden?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="156"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="157"/>
         <source>Certificates</source>
         <translation>Zertifikate</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="156"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="157"/>
         <source>&lt;p&gt;Certificates:&lt;br/&gt;{0}&lt;br/&gt;Do you want to accept all these certificates?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Zertifikate:&lt;br/&gt;{0}&lt;br/&gt;Sollen alle diese Zertifikate akzeptiert werden?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="210"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="212"/>
         <source>Name: {0}</source>
         <translation>Name: {0}</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="220"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="223"/>
         <source>&lt;br/&gt;Organization: {0}</source>
         <translation>&lt;br/&gt;Organisation: {0}</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="230"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="234"/>
         <source>&lt;br/&gt;Issuer: {0}</source>
         <translation>&lt;br/&gt;Aussteller: {0}</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="239"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="244"/>
         <source>&lt;br/&gt;Not valid before: {0}&lt;br/&gt;Valid Until: {1}</source>
         <translation>&lt;br/&gt;Gültig ab: {0}&lt;br/&gt;Gültig bis: {1}</translation>
     </message>
@@ -10675,56 +10674,56 @@
 <context>
     <name>E5SslInfoWidget</name>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="55"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="56"/>
         <source>Identity</source>
         <translation>Identität</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="65"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="66"/>
         <source>Warning: this site is NOT carrying a certificate.</source>
         <translation>Warnung: Diese Seite führt KEIN Zertifikat mit sich.</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="73"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="74"/>
         <source>The certificate for this site is valid and has been verified by:
 {0}</source>
         <translation>Das Zertifikat dieser Seite ist gültig und wurd verifiziert durch:
 {0}</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="89"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="90"/>
         <source>Certificate Information</source>
         <translation>Zertifikatsinformation</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="104"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="105"/>
         <source>Encryption</source>
         <translation>Verschlüsselung</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="115"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="116"/>
         <source>Your connection to &quot;{0}&quot; is NOT encrypted.
 </source>
         <translation>Ihre Verbindung zu „{0}“ ist NICHT verschlüsselt.
 </translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="124"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="125"/>
         <source>Your connection to &quot;{0}&quot; is encrypted.</source>
         <translation>Ihre Verbindung zu „{0}“ ist verschlüsselt.</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="143"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="144"/>
         <source>unknown</source>
         <translation>unbekannt</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="166"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="167"/>
         <source>It uses protocol: {0}</source>
         <translation>Verwendetes Protokoll: {0}</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="173"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="174"/>
         <source>It is encrypted using {0} at {1} bits, with {2} for message authentication and {3} as key exchange mechanism.
 
 </source>
@@ -10733,7 +10732,7 @@
 </translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="80"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="81"/>
         <source>The certificate for this site is NOT valid.</source>
         <translation>Das Zertifikat dieser Seite ist NICHT gültig.</translation>
     </message>
@@ -10776,12 +10775,12 @@
         <translation>&amp;Alle entfernen</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5StringListEditWidget.py" line="99"/>
+        <location filename="../E5Gui/E5StringListEditWidget.py" line="100"/>
         <source>Add Entry</source>
         <translation>Eintrag hinzufügen</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5StringListEditWidget.py" line="99"/>
+        <location filename="../E5Gui/E5StringListEditWidget.py" line="100"/>
         <source>Enter the entry to add to the list:</source>
         <translation>Gib den hinzuzufügenden Eintrag ein:</translation>
     </message>
@@ -10799,32 +10798,32 @@
 <context>
     <name>E5TextEditSearchWidget</name>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="81"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="83"/>
         <source>Find:</source>
         <translation>Suchen:</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="104"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="107"/>
         <source>Match case</source>
         <translation>Groß-/Kleinschreibung</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="109"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="112"/>
         <source>Whole word</source>
         <translation>Ganzes Wort</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="119"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="122"/>
         <source>Press to find the previous occurrence</source>
         <translation>Drücken, um das vorherige Vorkommen zu suchen</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="126"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="129"/>
         <source>Press to find the next occurrence</source>
         <translation>Drücken, um das nächste Vorkommen zu suchen</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="341"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="347"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation>„{0}“ wurde nicht gefunden.</translation>
     </message>
@@ -10940,42 +10939,42 @@
         <translation>Drücken, um die Aktion nach unten zu verschieben.</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="84"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="85"/>
         <source>--Separator--</source>
         <translation>--Trenner--</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="145"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="151"/>
         <source>New Toolbar</source>
         <translation>Neue Werkzeugleiste</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="137"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="143"/>
         <source>Toolbar Name:</source>
         <translation>Name der Werkzeugleiste:</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="208"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="214"/>
         <source>A toolbar with the name &lt;b&gt;{0}&lt;/b&gt; already exists.</source>
         <translation>Eine Werkzeugleiste mit dem Namen &lt;b&gt;{0}&lt;/b&gt; existiert bereits.</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="170"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="176"/>
         <source>Remove Toolbar</source>
         <translation>Werkzeugleiste entfernen</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="170"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="176"/>
         <source>Should the toolbar &lt;b&gt;{0}&lt;/b&gt; really be removed?</source>
         <translation>Soll die Werkzeugleiste &lt;b&gt;{0}&lt;/b&gt; wirklich entfernt werden?</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="208"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="214"/>
         <source>Rename Toolbar</source>
         <translation>Werkzeugleiste umbenennen</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="197"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="203"/>
         <source>New Toolbar Name:</source>
         <translation>Neuer Name der Werkzeugleiste:</translation>
     </message>
@@ -10983,7 +10982,7 @@
 <context>
     <name>E5XmlRpcClient</name>
     <message>
-        <location filename="../E5Network/E5XmlRpcClient.py" line="108"/>
+        <location filename="../E5Network/E5XmlRpcClient.py" line="111"/>
         <source>SSL Error</source>
         <translation>SSL Fehler</translation>
     </message>
@@ -11079,7 +11078,7 @@
         <translation>Aktiv</translation>
     </message>
     <message>
-        <location filename="../Debugger/EditBreakpointDialog.py" line="86"/>
+        <location filename="../Debugger/EditBreakpointDialog.py" line="87"/>
         <source>Add Breakpoint</source>
         <translation>Haltepunkt hinzufügen</translation>
     </message>
@@ -11160,932 +11159,932 @@
 <context>
     <name>Editor</name>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3146"/>
+        <location filename="../QScintilla/Editor.py" line="3153"/>
         <source>Open File</source>
         <translation>Datei öffnen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3333"/>
+        <location filename="../QScintilla/Editor.py" line="3340"/>
         <source>Save File</source>
         <translation>Datei sichern</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="795"/>
+        <location filename="../QScintilla/Editor.py" line="797"/>
         <source>Undo</source>
         <translation>Rückgängig</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="798"/>
+        <location filename="../QScintilla/Editor.py" line="800"/>
         <source>Redo</source>
         <translation>Wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="805"/>
+        <location filename="../QScintilla/Editor.py" line="807"/>
         <source>Cut</source>
         <translation>Ausschneiden</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="808"/>
+        <location filename="../QScintilla/Editor.py" line="810"/>
         <source>Copy</source>
         <translation>Kopieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="811"/>
+        <location filename="../QScintilla/Editor.py" line="813"/>
         <source>Paste</source>
         <translation>Einfügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="819"/>
+        <location filename="../QScintilla/Editor.py" line="821"/>
         <source>Indent</source>
         <translation>Einrücken</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="822"/>
+        <location filename="../QScintilla/Editor.py" line="824"/>
         <source>Unindent</source>
         <translation>Einrücken rückgängig</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="825"/>
+        <location filename="../QScintilla/Editor.py" line="827"/>
         <source>Comment</source>
         <translation>Kommentar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="828"/>
+        <location filename="../QScintilla/Editor.py" line="830"/>
         <source>Uncomment</source>
         <translation>Kommentar entfernen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="918"/>
+        <location filename="../QScintilla/Editor.py" line="920"/>
         <source>Close</source>
         <translation>Schließen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="924"/>
+        <location filename="../QScintilla/Editor.py" line="926"/>
         <source>Save</source>
         <translation>Speichern</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="927"/>
+        <location filename="../QScintilla/Editor.py" line="929"/>
         <source>Save As...</source>
         <translation>Speichern unter...</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Editor.py" line="846"/>
+        <source>Select all</source>
+        <translation>Alles auswählen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="847"/>
+        <source>Deselect all</source>
+        <translation>Auswahl aufheben</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Editor.py" line="844"/>
-        <source>Select all</source>
-        <translation>Alles auswählen</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="845"/>
-        <source>Deselect all</source>
-        <translation>Auswahl aufheben</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="842"/>
         <source>Select to brace</source>
         <translation>Zur Klammer auswählen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="943"/>
+        <location filename="../QScintilla/Editor.py" line="945"/>
         <source>Print</source>
         <translation>Drucken</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2711"/>
+        <location filename="../QScintilla/Editor.py" line="2715"/>
         <source>Printing...</source>
         <translation>Drucke...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2728"/>
+        <location filename="../QScintilla/Editor.py" line="2735"/>
         <source>Printing completed</source>
         <translation>Drucken beendet</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2730"/>
+        <location filename="../QScintilla/Editor.py" line="2737"/>
         <source>Error while printing</source>
         <translation>Fehler beim Drucken</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2733"/>
+        <location filename="../QScintilla/Editor.py" line="2740"/>
         <source>Printing aborted</source>
         <translation>Drucken abgebrochen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7076"/>
+        <location filename="../QScintilla/Editor.py" line="7116"/>
         <source>File changed</source>
         <translation>Datei geändert</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="990"/>
+        <location filename="../QScintilla/Editor.py" line="992"/>
         <source>Check</source>
         <translation>Prüfen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3088"/>
+        <location filename="../QScintilla/Editor.py" line="3095"/>
         <source>File Modified</source>
         <translation>Datei geändert</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Editor.py" line="1014"/>
+        <source>Code metrics...</source>
+        <translation>Quelltextmetriken...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1015"/>
+        <source>Code coverage...</source>
+        <translation>Quelltext Abdeckung...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1023"/>
+        <source>Profile data...</source>
+        <translation>Profildaten...</translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Editor.py" line="1012"/>
-        <source>Code metrics...</source>
-        <translation>Quelltextmetriken...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1013"/>
-        <source>Code coverage...</source>
-        <translation>Quelltext Abdeckung...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1021"/>
-        <source>Profile data...</source>
-        <translation>Profildaten...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1010"/>
         <source>Show</source>
         <translation>Zeige</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="831"/>
+        <location filename="../QScintilla/Editor.py" line="833"/>
         <source>Stream Comment</source>
         <translation>Stream Kommentar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="834"/>
+        <location filename="../QScintilla/Editor.py" line="836"/>
         <source>Box Comment</source>
         <translation>Box Kommentar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1989"/>
+        <location filename="../QScintilla/Editor.py" line="1991"/>
         <source>Modification of Read Only file</source>
         <translation>Änderungsversuch für eine schreibgeschützte Datei</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1989"/>
+        <location filename="../QScintilla/Editor.py" line="1991"/>
         <source>You are attempting to change a read only file. Please save to a different file first.</source>
         <translation>Sie versuchen, eine schreibgeschützte Datei zu ändern. Bitte speichern Sie sie zuerst in eine andere Datei.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1060"/>
+        <location filename="../QScintilla/Editor.py" line="1062"/>
         <source>Languages</source>
         <translation>Sprachen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="801"/>
+        <location filename="../QScintilla/Editor.py" line="803"/>
         <source>Revert to last saved state</source>
         <translation>Zurück zum letzten gesichert Zustand</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Macro Name</source>
         <translation>Makro Name</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Select a macro name:</source>
         <translation>Wähle einen Makro Namen:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6835"/>
+        <location filename="../QScintilla/Editor.py" line="6875"/>
         <source>Macro files (*.macro)</source>
         <translation>Makrodateien (*.macro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6793"/>
+        <location filename="../QScintilla/Editor.py" line="6833"/>
         <source>Load macro file</source>
         <translation>Lade Makrodatei</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6815"/>
+        <location filename="../QScintilla/Editor.py" line="6855"/>
         <source>Error loading macro</source>
         <translation>Fehler beim Makro Laden</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6835"/>
+        <location filename="../QScintilla/Editor.py" line="6875"/>
         <source>Save macro file</source>
         <translation>Makrodatei schreiben</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6852"/>
+        <location filename="../QScintilla/Editor.py" line="6892"/>
         <source>Save macro</source>
         <translation>Makro speichern</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6867"/>
+        <location filename="../QScintilla/Editor.py" line="6907"/>
         <source>Error saving macro</source>
         <translation>Fehler beim Makro speichern</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6880"/>
+        <location filename="../QScintilla/Editor.py" line="6920"/>
         <source>Start Macro Recording</source>
         <translation>Makroaufzeichnung starten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6906"/>
+        <location filename="../QScintilla/Editor.py" line="6946"/>
         <source>Macro Recording</source>
         <translation>Makroaufzeichnung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6906"/>
+        <location filename="../QScintilla/Editor.py" line="6946"/>
         <source>Enter name of the macro:</source>
         <translation>Gib einen Namen für das Makro ein:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1240"/>
-        <source>Toggle bookmark</source>
-        <translation>Lesezeichen setzen/löschen</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1242"/>
-        <source>Next bookmark</source>
-        <translation>Nächstes Lesezeichen</translation>
+        <source>Toggle bookmark</source>
+        <translation>Lesezeichen setzen/löschen</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1244"/>
-        <source>Previous bookmark</source>
-        <translation>Vorheriges Lesezeichen</translation>
+        <source>Next bookmark</source>
+        <translation>Nächstes Lesezeichen</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1246"/>
+        <source>Previous bookmark</source>
+        <translation>Vorheriges Lesezeichen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1248"/>
         <source>Clear all bookmarks</source>
         <translation>Alle Lesezeichen löschen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1255"/>
+        <location filename="../QScintilla/Editor.py" line="1257"/>
         <source>Toggle breakpoint</source>
         <translation>Haltepunkt setzen/löschen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1265"/>
-        <source>Next breakpoint</source>
-        <translation>Nächster Haltepunkt</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1267"/>
+        <source>Next breakpoint</source>
+        <translation>Nächster Haltepunkt</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1269"/>
         <source>Previous breakpoint</source>
         <translation>Vorheriger Haltepunkt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1272"/>
+        <location filename="../QScintilla/Editor.py" line="1274"/>
         <source>Clear all breakpoints</source>
         <translation>Alle Haltepunkte löschen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1260"/>
+        <location filename="../QScintilla/Editor.py" line="1262"/>
         <source>Edit breakpoint...</source>
         <translation>Haltepunkt bearbeiten...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5656"/>
+        <location filename="../QScintilla/Editor.py" line="5696"/>
         <source>Enable breakpoint</source>
         <translation>Haltepunkt aktivieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5659"/>
+        <location filename="../QScintilla/Editor.py" line="5699"/>
         <source>Disable breakpoint</source>
         <translation>Haltepunkt deaktivieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6034"/>
+        <location filename="../QScintilla/Editor.py" line="6074"/>
         <source>Code Coverage</source>
         <translation>Quelltext Abdeckung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6034"/>
+        <location filename="../QScintilla/Editor.py" line="6074"/>
         <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="6214"/>
+        <location filename="../QScintilla/Editor.py" line="6254"/>
         <source>Profile Data</source>
         <translation>Profildaten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6214"/>
+        <location filename="../QScintilla/Editor.py" line="6254"/>
         <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="4811"/>
+        <location filename="../QScintilla/Editor.py" line="4838"/>
         <source>Autocompletion</source>
         <translation>Automatische Vervollständigung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4811"/>
+        <location filename="../QScintilla/Editor.py" line="4838"/>
         <source>Autocompletion is not available because there is no autocompletion source set.</source>
         <translation>Die automatische Vervollständigung ist nicht verfügbar, da keine Quelle gesetzt ist.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="870"/>
+        <location filename="../QScintilla/Editor.py" line="872"/>
         <source>Use Monospaced Font</source>
         <translation>Benutze Monospace Font</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="863"/>
+        <location filename="../QScintilla/Editor.py" line="865"/>
         <source>Shorten empty lines</source>
         <translation>Leere Zeilen verkürzen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1320"/>
+        <location filename="../QScintilla/Editor.py" line="1322"/>
         <source>Goto syntax error</source>
         <translation>Zu Syntaxfehler gehen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1329"/>
+        <location filename="../QScintilla/Editor.py" line="1331"/>
         <source>Clear syntax error</source>
         <translation>Syntaxfehler löschen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="875"/>
+        <location filename="../QScintilla/Editor.py" line="877"/>
         <source>Autosave enabled</source>
         <translation>Autom. Speicherung aktiv</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7408"/>
+        <location filename="../QScintilla/Editor.py" line="7451"/>
         <source>Drop Error</source>
         <translation>Drop Fehler</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1324"/>
+        <location filename="../QScintilla/Editor.py" line="1326"/>
         <source>Show syntax error message</source>
         <translation>Zeige Syntaxfehlermeldung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6376"/>
+        <location filename="../QScintilla/Editor.py" line="6416"/>
         <source>Syntax Error</source>
         <translation>Syntaxfehler</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6376"/>
+        <location filename="../QScintilla/Editor.py" line="6416"/>
         <source>No syntax error message available.</source>
         <translation>Keine Syntaxfehlermeldung verfügbar.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1257"/>
+        <location filename="../QScintilla/Editor.py" line="1259"/>
         <source>Toggle temporary breakpoint</source>
         <translation>Temporären Haltepunkt setzen/löschen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1015"/>
+        <location filename="../QScintilla/Editor.py" line="1017"/>
         <source>Show code coverage annotations</source>
         <translation>Markiere Zeilen ohne Abdeckung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1018"/>
+        <location filename="../QScintilla/Editor.py" line="1020"/>
         <source>Hide code coverage annotations</source>
         <translation>Lösche Abdeckungsmarkierungen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1351"/>
+        <location filename="../QScintilla/Editor.py" line="1353"/>
         <source>Next uncovered line</source>
         <translation>Nächste nichtabgedeckte Zeile</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1355"/>
+        <location filename="../QScintilla/Editor.py" line="1357"/>
         <source>Previous uncovered line</source>
         <translation>Vorige nichtabgedeckte Zeile</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6097"/>
+        <location filename="../QScintilla/Editor.py" line="6137"/>
         <source>Show Code Coverage Annotations</source>
         <translation>Zeilen ohne Abdeckung Markieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6090"/>
+        <location filename="../QScintilla/Editor.py" line="6130"/>
         <source>All lines have been covered.</source>
         <translation>Alle Zeilen sind abgedeckt.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6097"/>
+        <location filename="../QScintilla/Editor.py" line="6137"/>
         <source>There is no coverage file available.</source>
         <translation>Es gibt keine Datei mit Abdeckungsinformationen.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3088"/>
+        <location filename="../QScintilla/Editor.py" line="3095"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; enthält ungesicherte Änderungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6806"/>
+        <location filename="../QScintilla/Editor.py" line="6846"/>
         <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="6815"/>
+        <location filename="../QScintilla/Editor.py" line="6855"/>
         <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="6867"/>
+        <location filename="../QScintilla/Editor.py" line="6907"/>
         <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="7408"/>
+        <location filename="../QScintilla/Editor.py" line="7451"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; ist keine Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="389"/>
+        <location filename="../QScintilla/Editor.py" line="391"/>
         <source>&lt;p&gt;The size of the file &lt;b&gt;{0}&lt;/b&gt; is &lt;b&gt;{1} KB&lt;/b&gt;. Do you really want to load it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Größe der Datei &lt;b&gt;{0}&lt;/b&gt; ist &lt;b&gt;{1} KB&lt;7B&gt;. Soll sie wirklich geladen werden?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1034"/>
-        <source>Diagrams</source>
-        <translation>Diagramme</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1036"/>
-        <source>Class Diagram...</source>
-        <translation>Klassendiagramm...</translation>
+        <source>Diagrams</source>
+        <translation>Diagramme</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1038"/>
-        <source>Package Diagram...</source>
-        <translation>Package Diagramm...</translation>
+        <source>Class Diagram...</source>
+        <translation>Klassendiagramm...</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1040"/>
-        <source>Imports Diagram...</source>
-        <translation>Imports-Diagramm...</translation>
+        <source>Package Diagram...</source>
+        <translation>Package Diagramm...</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1042"/>
+        <source>Imports Diagram...</source>
+        <translation>Imports-Diagramm...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1044"/>
         <source>Application Diagram...</source>
         <translation>Applikations-Diagramm...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1193"/>
+        <location filename="../QScintilla/Editor.py" line="1195"/>
         <source>No Language</source>
         <translation>Keine Sprache</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7267"/>
+        <location filename="../QScintilla/Editor.py" line="7310"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7429"/>
+        <location filename="../QScintilla/Editor.py" line="7472"/>
         <source>Resources</source>
         <translation>Ressourcen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7431"/>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
         <source>Add file...</source>
         <translation>Datei hinzufügen...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7433"/>
+        <location filename="../QScintilla/Editor.py" line="7476"/>
         <source>Add files...</source>
         <translation>Dateien hinzufügen...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7435"/>
+        <location filename="../QScintilla/Editor.py" line="7478"/>
         <source>Add aliased file...</source>
         <translation>Aliased-Datei hinzufügen...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7438"/>
+        <location filename="../QScintilla/Editor.py" line="7481"/>
         <source>Add localized resource...</source>
         <translation>Lokalisierte Ressource hinzufügen...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7461"/>
-        <source>Add file resource</source>
-        <translation>Dateiressource hinzufügen</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7477"/>
-        <source>Add file resources</source>
-        <translation>Dateiressourcen hinzufügen</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="7504"/>
+        <source>Add file resource</source>
+        <translation>Dateiressource hinzufügen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7520"/>
+        <source>Add file resources</source>
+        <translation>Dateiressourcen hinzufügen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7547"/>
         <source>Add aliased file resource</source>
         <translation>Aliased-Dateiressourcen hinzufügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7504"/>
+        <location filename="../QScintilla/Editor.py" line="7547"/>
         <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="7570"/>
+        <location filename="../QScintilla/Editor.py" line="7613"/>
         <source>Package Diagram</source>
         <translation>Package-Diagramm</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7570"/>
+        <location filename="../QScintilla/Editor.py" line="7613"/>
         <source>Include class attributes?</source>
         <translation>Klassenattribute anzeigen?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7606"/>
+        <location filename="../QScintilla/Editor.py" line="7649"/>
         <source>Application Diagram</source>
         <translation>Applikations-Diagramm</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7606"/>
+        <location filename="../QScintilla/Editor.py" line="7649"/>
         <source>Include module names?</source>
         <translation>Modulnamen anzeigen?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7442"/>
+        <location filename="../QScintilla/Editor.py" line="7485"/>
         <source>Add resource frame</source>
         <translation>Ressourcenrahmen hinzufügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6880"/>
+        <location filename="../QScintilla/Editor.py" line="6920"/>
         <source>Macro recording is already active. Start new?</source>
         <translation>Eine Makroaufzeichnung ist bereits aktiv. Neu starten?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1360"/>
+        <location filename="../QScintilla/Editor.py" line="1362"/>
         <source>Next task</source>
         <translation>Nächste Aufgabe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1364"/>
+        <location filename="../QScintilla/Editor.py" line="1366"/>
         <source>Previous task</source>
         <translation>Vorherige Aufgabe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="972"/>
-        <source>Complete from Document</source>
-        <translation>Vervollständigung vom Dokument</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="974"/>
-        <source>Complete from APIs</source>
-        <translation>Vervollständigung von APIs</translation>
+        <source>Complete from Document</source>
+        <translation>Vervollständigung vom Dokument</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="976"/>
+        <source>Complete from APIs</source>
+        <translation>Vervollständigung von APIs</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="978"/>
         <source>Complete from Document and APIs</source>
         <translation>Vervollständigung vom Dokument und von APIs</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1218"/>
+        <location filename="../QScintilla/Editor.py" line="1220"/>
         <source>Export as</source>
         <translation>Exportieren als</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1414"/>
+        <location filename="../QScintilla/Editor.py" line="1416"/>
         <source>Export source</source>
         <translation>Quelltext exportieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1406"/>
+        <location filename="../QScintilla/Editor.py" line="1408"/>
         <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Für das Exportformat &lt;b&gt;{0}&lt;/b&gt; steht kein Exporter zur Verfügung. Abbruch...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1414"/>
+        <location filename="../QScintilla/Editor.py" line="1416"/>
         <source>No export format given. Aborting...</source>
         <translation>Kein Exportformat angegeben. Abbruch...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7592"/>
+        <location filename="../QScintilla/Editor.py" line="7635"/>
         <source>Imports Diagram</source>
         <translation>Imports Diagramm</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7592"/>
+        <location filename="../QScintilla/Editor.py" line="7635"/>
         <source>Include imports from external modules?</source>
         <translation>Imports externer Module anzeigen?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="894"/>
-        <source>Calltip</source>
-        <translation>Calltip</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="940"/>
-        <source>Print Preview</source>
-        <translation>Druckvorschau</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="478"/>
-        <source>&lt;b&gt;A Source Editor Window&lt;/b&gt;&lt;p&gt;This window is used to display and edit a source file.  You can open as many of these as you like. The name of the file is displayed in the window&apos;s titlebar.&lt;/p&gt;&lt;p&gt;In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.&lt;/p&gt;&lt;p&gt;In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.&lt;/p&gt;&lt;p&gt;These actions can be reversed via the context menu.&lt;/p&gt;&lt;p&gt;Ctrl clicking on a syntax error marker shows some info about this error.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Quelltexteditorfenster&lt;/b&gt;&lt;p&gt;Dieses Fenster wird zum Bearbeiten von Quelltexten benutzt. Sie können beliebig viele dieser Fenster öffnen. Der Name der Datei wird im Titel des Fensters dargestellt.&lt;/p&gt;&lt;p&gt;Um Haltepunkte zu setzen, klicken sie in den Raum zwischen den Zeilennummern und der Faltungsspalte. Über das Kontextmenü des Bereiches links des Editors können Haltepunkte bearbeitet werden.&lt;/p&gt;&lt;p&gt;Um Lesezeichen zu setzen, drücken Sie die Shift-Taste und klicken in den Raum zwischen den Zeilennummern und der Faltungsspalte.&lt;/p&gt;&lt;p&gt;Diese Aktionen können über das Kontextmenü umgedreht werden.&lt;/p&gt;&lt;p&gt;Ein Klick auf einen Syntaxfehler-Marker mit gedrückter Strg-Taste zeigt die zugehörige Fehlermeldung an.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="879"/>
-        <source>Typing aids enabled</source>
-        <translation>Eingabehilfen aktiv</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1150"/>
-        <source>End-of-Line Type</source>
-        <translation>Zeilenendemarkierung</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1154"/>
-        <source>Unix</source>
-        <translation>Unix</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1161"/>
-        <source>Windows</source>
-        <translation>Windows</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1168"/>
-        <source>Macintosh</source>
-        <translation>Macintosh</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1109"/>
-        <source>Encodings</source>
-        <translation>Kodierungen</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1089"/>
-        <source>Guessed</source>
-        <translation>Ermittelt</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
-        <source>Alternatives</source>
-        <translation>Alternativen</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1425"/>
-        <source>Alternatives ({0})</source>
-        <translation>Alternativen ({0})</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1445"/>
-        <source>Pygments Lexer</source>
-        <translation>Pygments Lexer</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1445"/>
-        <source>Select the Pygments lexer to apply.</source>
-        <translation>Wähle den anzuwendenden Pygments Lexer.</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7935"/>
-        <source>Check spelling...</source>
-        <translation>Rechtschreibprüfung...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="853"/>
-        <source>Check spelling of selection...</source>
-        <translation>Rechtschreibprüfung für Auswahl...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7938"/>
-        <source>Add to dictionary</source>
-        <translation>Zum Wörterbuch hinzufügen</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7940"/>
-        <source>Ignore All</source>
-        <translation>Alle ignorieren</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="857"/>
-        <source>Remove from dictionary</source>
-        <translation>Aus dem Wörterbuch entfernen</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="3146"/>
-        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht geöffnet werden.&lt;br /&gt;Ursache: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="3270"/>
-        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gesichert werden.&lt;br/&gt;Grund: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1334"/>
-        <source>Next warning</source>
-        <translation>Nächste Warnung</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1338"/>
-        <source>Previous warning</source>
-        <translation>Vorherige Warnung</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1342"/>
-        <source>Show warning message</source>
-        <translation>Zeige Warnung</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1346"/>
-        <source>Clear warnings</source>
-        <translation>Warnungen löschen</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="3333"/>
-        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6852"/>
-        <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="6653"/>
-        <source>Warning: {0}</source>
-        <translation>Warnung: {0}</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6660"/>
-        <source>Error: {0}</source>
-        <translation>Fehler: {0}</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7072"/>
-        <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
-        <translation>&lt;br&gt;&lt;b&gt;Warnung:&lt;/b&gt; Vorgenommenen Änderungen gehen beim neu einlesen verloren.</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="936"/>
-        <source>Open &apos;rejection&apos; file</source>
-        <translation>Öffne „Ablehnungs“-Datei</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1046"/>
-        <source>Load Diagram...</source>
-        <translation>Diagramm laden...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1369"/>
-        <source>Next change</source>
-        <translation>Nächste Änderung</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1373"/>
-        <source>Previous change</source>
-        <translation>Vorherige Änderung</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8356"/>
-        <source>Sort Lines</source>
-        <translation>Zeilen sortieren</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8356"/>
-        <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="6588"/>
-        <source>Warning</source>
-        <translation>Warnung</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6588"/>
-        <source>No warning messages available.</source>
-        <translation>Keine Warnmeldungen verfügbar.</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6650"/>
-        <source>Style: {0}</source>
-        <translation>Stil: {0}</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="910"/>
-        <source>New Document View</source>
-        <translation>Neue Dokumentenansicht</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="913"/>
-        <source>New Document View (with new split)</source>
-        <translation>Neue Dokumentenansicht (in neuem Abschnitt)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1000"/>
-        <source>Tools</source>
-        <translation>Werkzeuge</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1131"/>
-        <source>Re-Open With Encoding</source>
-        <translation>Öffnen mit Kodierung</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="886"/>
-        <source>Automatic Completion enabled</source>
-        <translation>Automatische Vervollständigung aktiv</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="966"/>
-        <source>Complete</source>
-        <translation>Vervollständigen</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="4943"/>
-        <source>Auto-Completion Provider</source>
-        <translation>Provider für automatische Vervollständigungen</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="4943"/>
-        <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="5222"/>
-        <source>Call-Tips Provider</source>
-        <translation>Calltipps-Provider</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="5222"/>
-        <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="8445"/>
-        <source>Register Mouse Click Handler</source>
-        <translation>Maus Klick Handler registrieren</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8445"/>
-        <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
-        <translation>Ein Maus Klick Handler für &quot;{0}&quot; wurde bereits durch &quot;{1}&quot; registriert. Die Anfrage durch &quot;{2}&quot; wird abgebrochen...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="930"/>
-        <source>Save Copy...</source>
-        <translation>Kopie speichern...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="969"/>
-        <source>Clear Completions Cache</source>
-        <translation>Vervollständigungsspeicher löschen</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="896"/>
+        <source>Calltip</source>
+        <translation>Calltip</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="942"/>
+        <source>Print Preview</source>
+        <translation>Druckvorschau</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="480"/>
+        <source>&lt;b&gt;A Source Editor Window&lt;/b&gt;&lt;p&gt;This window is used to display and edit a source file.  You can open as many of these as you like. The name of the file is displayed in the window&apos;s titlebar.&lt;/p&gt;&lt;p&gt;In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.&lt;/p&gt;&lt;p&gt;In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.&lt;/p&gt;&lt;p&gt;These actions can be reversed via the context menu.&lt;/p&gt;&lt;p&gt;Ctrl clicking on a syntax error marker shows some info about this error.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Quelltexteditorfenster&lt;/b&gt;&lt;p&gt;Dieses Fenster wird zum Bearbeiten von Quelltexten benutzt. Sie können beliebig viele dieser Fenster öffnen. Der Name der Datei wird im Titel des Fensters dargestellt.&lt;/p&gt;&lt;p&gt;Um Haltepunkte zu setzen, klicken sie in den Raum zwischen den Zeilennummern und der Faltungsspalte. Über das Kontextmenü des Bereiches links des Editors können Haltepunkte bearbeitet werden.&lt;/p&gt;&lt;p&gt;Um Lesezeichen zu setzen, drücken Sie die Shift-Taste und klicken in den Raum zwischen den Zeilennummern und der Faltungsspalte.&lt;/p&gt;&lt;p&gt;Diese Aktionen können über das Kontextmenü umgedreht werden.&lt;/p&gt;&lt;p&gt;Ein Klick auf einen Syntaxfehler-Marker mit gedrückter Strg-Taste zeigt die zugehörige Fehlermeldung an.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="881"/>
+        <source>Typing aids enabled</source>
+        <translation>Eingabehilfen aktiv</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1152"/>
+        <source>End-of-Line Type</source>
+        <translation>Zeilenendemarkierung</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1156"/>
+        <source>Unix</source>
+        <translation>Unix</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1163"/>
+        <source>Windows</source>
+        <translation>Windows</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1170"/>
+        <source>Macintosh</source>
+        <translation>Macintosh</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1111"/>
+        <source>Encodings</source>
+        <translation>Kodierungen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1091"/>
+        <source>Guessed</source>
+        <translation>Ermittelt</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1431"/>
+        <source>Alternatives</source>
+        <translation>Alternativen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1427"/>
+        <source>Alternatives ({0})</source>
+        <translation>Alternativen ({0})</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1447"/>
+        <source>Pygments Lexer</source>
+        <translation>Pygments Lexer</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1447"/>
+        <source>Select the Pygments lexer to apply.</source>
+        <translation>Wähle den anzuwendenden Pygments Lexer.</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7978"/>
+        <source>Check spelling...</source>
+        <translation>Rechtschreibprüfung...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="855"/>
+        <source>Check spelling of selection...</source>
+        <translation>Rechtschreibprüfung für Auswahl...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7981"/>
+        <source>Add to dictionary</source>
+        <translation>Zum Wörterbuch hinzufügen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7983"/>
+        <source>Ignore All</source>
+        <translation>Alle ignorieren</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="859"/>
+        <source>Remove from dictionary</source>
+        <translation>Aus dem Wörterbuch entfernen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="3153"/>
+        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht geöffnet werden.&lt;br /&gt;Ursache: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="3277"/>
+        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gesichert werden.&lt;br/&gt;Grund: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1336"/>
+        <source>Next warning</source>
+        <translation>Nächste Warnung</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1340"/>
+        <source>Previous warning</source>
+        <translation>Vorherige Warnung</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1344"/>
+        <source>Show warning message</source>
+        <translation>Zeige Warnung</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1348"/>
+        <source>Clear warnings</source>
+        <translation>Warnungen löschen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="3340"/>
+        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6892"/>
+        <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="6693"/>
+        <source>Warning: {0}</source>
+        <translation>Warnung: {0}</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6700"/>
+        <source>Error: {0}</source>
+        <translation>Fehler: {0}</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7112"/>
+        <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
+        <translation>&lt;br&gt;&lt;b&gt;Warnung:&lt;/b&gt; Vorgenommenen Änderungen gehen beim neu einlesen verloren.</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="938"/>
+        <source>Open &apos;rejection&apos; file</source>
+        <translation>Öffne „Ablehnungs“-Datei</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1048"/>
+        <source>Load Diagram...</source>
+        <translation>Diagramm laden...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1371"/>
+        <source>Next change</source>
+        <translation>Nächste Änderung</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1375"/>
+        <source>Previous change</source>
+        <translation>Vorherige Änderung</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="8399"/>
+        <source>Sort Lines</source>
+        <translation>Zeilen sortieren</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="8399"/>
+        <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="6628"/>
+        <source>Warning</source>
+        <translation>Warnung</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6628"/>
+        <source>No warning messages available.</source>
+        <translation>Keine Warnmeldungen verfügbar.</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6690"/>
+        <source>Style: {0}</source>
+        <translation>Stil: {0}</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="912"/>
+        <source>New Document View</source>
+        <translation>Neue Dokumentenansicht</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="915"/>
+        <source>New Document View (with new split)</source>
+        <translation>Neue Dokumentenansicht (in neuem Abschnitt)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1002"/>
+        <source>Tools</source>
+        <translation>Werkzeuge</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1133"/>
+        <source>Re-Open With Encoding</source>
+        <translation>Öffnen mit Kodierung</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="888"/>
+        <source>Automatic Completion enabled</source>
+        <translation>Automatische Vervollständigung aktiv</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="968"/>
+        <source>Complete</source>
+        <translation>Vervollständigen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="4980"/>
+        <source>Auto-Completion Provider</source>
+        <translation>Provider für automatische Vervollständigungen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="4980"/>
+        <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="5262"/>
+        <source>Call-Tips Provider</source>
+        <translation>Calltipps-Provider</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="5262"/>
+        <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="8488"/>
+        <source>Register Mouse Click Handler</source>
+        <translation>Maus Klick Handler registrieren</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="8488"/>
+        <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
+        <translation>Ein Maus Klick Handler für &quot;{0}&quot; wurde bereits durch &quot;{1}&quot; registriert. Die Anfrage durch &quot;{2}&quot; wird abgebrochen...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="932"/>
+        <source>Save Copy...</source>
+        <translation>Kopie speichern...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="971"/>
+        <source>Clear Completions Cache</source>
+        <translation>Vervollständigungsspeicher löschen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="898"/>
         <source>Code Info</source>
         <translation>Code Info</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1377"/>
+        <location filename="../QScintilla/Editor.py" line="1379"/>
         <source>Clear changes</source>
         <translation>Änderungsmarker löschen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="815"/>
+        <location filename="../QScintilla/Editor.py" line="817"/>
         <source>Execute Selection In Console</source>
         <translation>Auswahl in Konsole ausführen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8566"/>
+        <location filename="../QScintilla/Editor.py" line="8609"/>
         <source>EditorConfig Properties</source>
         <translation>EditorConfig Eigenschaften</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8566"/>
+        <location filename="../QScintilla/Editor.py" line="8609"/>
         <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/Editor.py" line="1281"/>
+        <location filename="../QScintilla/Editor.py" line="1283"/>
         <source>Toggle all folds</source>
         <translation>Alle Faltungen umschalten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1286"/>
+        <location filename="../QScintilla/Editor.py" line="1288"/>
         <source>Toggle all folds (including children)</source>
         <translation>Alle Faltungen umschalten (inkl. Unterfaltungen)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1291"/>
+        <location filename="../QScintilla/Editor.py" line="1293"/>
         <source>Toggle current fold</source>
         <translation>Aktuelle Faltung umschalten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1297"/>
+        <location filename="../QScintilla/Editor.py" line="1299"/>
         <source>Expand (including children)</source>
         <translation>Ausklappen (inkl. Unterfaltungen)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1302"/>
+        <location filename="../QScintilla/Editor.py" line="1304"/>
         <source>Collapse (including children)</source>
         <translation>Einklappen (inkl. Unterfaltungen)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1308"/>
+        <location filename="../QScintilla/Editor.py" line="1310"/>
         <source>Clear all folds</source>
         <translation>Alle Faltungen aufklappen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1189"/>
+        <location filename="../QScintilla/Editor.py" line="1191"/>
         <source>Spell Check Languages</source>
         <translation>Sprachen für Rechtschreibprüfung</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7106"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; wurde geändert, während sie in eric geöffnet war. Neu einlesen?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8760"/>
+        <location filename="../QScintilla/Editor.py" line="8803"/>
         <source>Generate Docstring</source>
         <translation>Docstring erzeugen</translation>
     </message>
@@ -12477,82 +12476,82 @@
 <context>
     <name>EditorButtonsWidget</name>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="174"/>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="176"/>
         <source>Bold</source>
         <translation>Fett</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="176"/>
-        <source>Italic</source>
-        <translation>Kursiv</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="178"/>
+        <source>Italic</source>
+        <translation>Kursiv</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="180"/>
         <source>Strike Through</source>
         <translation>Durchgestrichen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="181"/>
-        <source>Header 1</source>
-        <translation>Überschrift 1</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="183"/>
-        <source>Header 2</source>
-        <translation>Überschrift 2</translation>
+        <source>Header 1</source>
+        <translation>Überschrift 1</translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="185"/>
-        <source>Header 3</source>
-        <translation>Überschrift 3</translation>
+        <source>Header 2</source>
+        <translation>Überschrift 2</translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="187"/>
+        <source>Header 3</source>
+        <translation>Überschrift 3</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="189"/>
         <source>Header</source>
         <translation>Überschrift</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="192"/>
-        <source>Inline Code</source>
-        <translation>Code-Bereich</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="194"/>
-        <source>Code Block</source>
-        <translation>Code Block</translation>
+        <source>Inline Code</source>
+        <translation>Code-Bereich</translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="196"/>
+        <source>Code Block</source>
+        <translation>Code Block</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="198"/>
         <source>Quote</source>
         <translation>Zitat</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="199"/>
-        <source>Add Hyperlink</source>
-        <translation>Hyperlink hinzufügen</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="201"/>
-        <source>Add Horizontal Line</source>
-        <translation>Horizontale Linie hinzufügen</translation>
+        <source>Add Hyperlink</source>
+        <translation>Hyperlink hinzufügen</translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="203"/>
+        <source>Add Horizontal Line</source>
+        <translation>Horizontale Linie hinzufügen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="205"/>
         <source>Add Image</source>
         <translation>Grafik hinzufügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="206"/>
-        <source>Add Bulleted List</source>
-        <translation>Aufzählungsliste hinzufügen</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="208"/>
+        <source>Add Bulleted List</source>
+        <translation>Aufzählungsliste hinzufügen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="210"/>
         <source>Add Numbered List</source>
         <translation>Nummerierte Liste hinzufügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="274"/>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="276"/>
         <source>Level {0}</source>
         <translation>Ebene {0}</translation>
     </message>
@@ -13494,12 +13493,12 @@
         <translation>Drücken, um die ausgewählte Sprachen spezifische Änderung zu bearbeiten</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="243"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="244"/>
         <source>Tab and Indent Override</source>
         <translation>Tabulator und Einrückung Änderung</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="243"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="244"/>
         <source>Shall the selected entries really be removed?</source>
         <translation>Sollen die ausgewählten Einträge wirklich gelöscht werden?</translation>
     </message>
@@ -13665,7 +13664,7 @@
         <translation>Wähle den Modus „Füllen bis zum Zeilenende“.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="426"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="427"/>
         <source>Fill to end of line</source>
         <translation>Füllen bis zum Zeilenende</translation>
     </message>
@@ -13710,17 +13709,17 @@
         <translation>Alle Füllen bis Ende</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="424"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="425"/>
         <source>Enabled</source>
         <translation>Eingeschaltet</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="425"/>
-        <source>Disabled</source>
-        <translation>Ausgeschaltet</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="426"/>
+        <source>Disabled</source>
+        <translation>Ausgeschaltet</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="427"/>
         <source>Select fill to end of line for all styles</source>
         <translation>Wähle Füllen bis Zeilenende für alle Stile</translation>
     </message>
@@ -13770,12 +13769,12 @@
         <translation>Alle Stile exportieren</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="591"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="592"/>
         <source>Export Highlighting Styles</source>
         <translation>Hervorhebungsstile exportieren</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="642"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="643"/>
         <source>Import Highlighting Styles</source>
         <translation>Hervorhebungsstile importieren</translation>
     </message>
@@ -13835,27 +13834,27 @@
         <translation>Drücken, um den ausgewählten Unterstil zu kopieren</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="783"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="784"/>
         <source>Delete Sub-Style</source>
         <translation>Unterstil löschen</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="783"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="784"/>
         <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="823"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="824"/>
         <source>{0} - Copy</source>
         <translation>{0} - Kopie</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="851"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="852"/>
         <source>Reset Sub-Styles to Default</source>
         <translation>Unterstile auf Standardwerte setzen</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="851"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="852"/>
         <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>
@@ -13905,27 +13904,27 @@
         <translation>Exportiert alle Stile von auszuwählenden Sprachen</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="548"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="549"/>
         <source>Highlighting Styles File (*.ehj);;XML Highlighting Styles File (*.e6h)</source>
         <translation>Dateien für Hervorhebungsstile (*.ehj);;XML Dateien für Hervorhebungsstile (*.e6h)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="567"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="568"/>
         <source>&lt;p&gt;The highlighting styles file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei für Hervorhebungsstile &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="591"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="592"/>
         <source>&lt;p&gt;The highlighting styles 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 Hervorhebungsstile konnten nicht in die Datei &lt;b&gt;{0}&lt;/b&gt; exportiert werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="610"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="611"/>
         <source>Highlighting Styles File (*.ehj);;XML Highlighting Styles File (*.e6h *.e4h)</source>
         <translation>Dateien für Hervorhebungsstile (*.ehj);;XML Dateien für Hervorhebungsstile (*.e6h *.e4h)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="642"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="643"/>
         <source>&lt;p&gt;The highlighting styles 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 Hervorhebungsstile konnten nicht von der Datei &lt;b&gt;{0}&lt;/b&gt; gelesen werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
@@ -14136,47 +14135,47 @@
 <context>
     <name>EditorOutlineView</name>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="268"/>
+        <location filename="../QScintilla/EditorOutline.py" line="269"/>
         <source>Goto</source>
         <translation>Gehe zu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="310"/>
+        <location filename="../QScintilla/EditorOutline.py" line="311"/>
         <source>Refresh</source>
         <translation>Aktualisieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="314"/>
+        <location filename="../QScintilla/EditorOutline.py" line="315"/>
         <source>Copy Path to Clipboard</source>
         <translation>Pfad in die Zwischenablage kopieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="319"/>
+        <location filename="../QScintilla/EditorOutline.py" line="320"/>
         <source>Expand All</source>
         <translation>Alle aufklappen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="323"/>
+        <location filename="../QScintilla/EditorOutline.py" line="324"/>
         <source>Collapse All</source>
         <translation>Alle einklappen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="328"/>
+        <location filename="../QScintilla/EditorOutline.py" line="329"/>
         <source>Increment Width</source>
         <translation>Breite vergrößern</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="332"/>
+        <location filename="../QScintilla/EditorOutline.py" line="333"/>
         <source>Decrement Width</source>
         <translation>Breite verringern</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="390"/>
+        <location filename="../QScintilla/EditorOutline.py" line="391"/>
         <source>Line {0}</source>
         <translation>Zeile {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="336"/>
+        <location filename="../QScintilla/EditorOutline.py" line="337"/>
         <source>Set Default Width</source>
         <translation>Auf Standardbreite setzen</translation>
     </message>
@@ -15555,32 +15554,32 @@
         <translation>Wähle aus, wie umbrochene Zeilen angezeigt werden sollen</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="59"/>
         <source>Word Boundary</source>
         <translation>Wortgrenze</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="60"/>
-        <source>Character Boundary</source>
-        <translation>Buchstabengrenze</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="62"/>
+        <source>Character Boundary</source>
+        <translation>Buchstabengrenze</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="65"/>
         <source>No Indicator</source>
         <translation>keine Anzeige</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="64"/>
-        <source>Indicator by Text</source>
-        <translation>Anzeige neben dem Text</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="66"/>
-        <source>Indicator by Margin</source>
-        <translation>Anzeige am Rand</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="68"/>
+        <source>Indicator by Text</source>
+        <translation>Anzeige neben dem Text</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="71"/>
+        <source>Indicator by Margin</source>
+        <translation>Anzeige am Rand</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="74"/>
         <source>Indicator in Line Number Margin</source>
         <translation>Anzeige in der Zeilennummernspalte</translation>
     </message>
@@ -15837,22 +15836,22 @@
         <translation> Zeichen</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="72"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="78"/>
         <source>Fixed</source>
         <translation>Fest</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="74"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="80"/>
         <source>Aligned</source>
         <translation>Bündig</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="76"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="82"/>
         <source>Aligned plus One</source>
         <translation>Bündig plus Eine</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="79"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="85"/>
         <source>Aligned plus Two</source>
         <translation>Bündig plus Zwei</translation>
     </message>
@@ -16436,27 +16435,27 @@
         <translation>Sende Fehlerbericht</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="423"/>
+        <location filename="../UI/EmailDialog.py" line="424"/>
         <source>Attach file</source>
         <translation>Datei anhängen</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="410"/>
+        <location filename="../UI/EmailDialog.py" line="411"/>
         <source>&lt;p&gt;Message could not be sent.&lt;br&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Nachricht konnte nicht gesendet werden.&lt;br&gt;Grund: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="321"/>
+        <location filename="../UI/EmailDialog.py" line="322"/>
         <source>Mail Server Password</source>
         <translation>Mail Server Kennwort</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="321"/>
+        <location filename="../UI/EmailDialog.py" line="322"/>
         <source>Enter your mail server password</source>
         <translation>Geben Sie Ihr Mailserver-Kennwort ein</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="341"/>
+        <location filename="../UI/EmailDialog.py" line="342"/>
         <source>&lt;p&gt;Authentication failed.&lt;br&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Autorisierung fehlgeschlagen.&lt;br&gt;Grund: {0}&lt;/p&gt;</translation>
     </message>
@@ -16516,12 +16515,12 @@
         <translation>Senden</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="133"/>
+        <location filename="../UI/EmailDialog.py" line="134"/>
         <source>Close dialog</source>
         <translation>Dialog schließen</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="133"/>
+        <location filename="../UI/EmailDialog.py" line="134"/>
         <source>Do you really want to close the dialog?</source>
         <translation>Soll der Dialog wirklich geschlossen werden?</translation>
     </message>
@@ -16556,22 +16555,22 @@
         <translation>Google Mail API Hilfe</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="157"/>
+        <location filename="../UI/EmailDialog.py" line="158"/>
         <source>Gmail API Help</source>
         <translation>Gmail API Hilfe</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="366"/>
+        <location filename="../UI/EmailDialog.py" line="367"/>
         <source>Send Message</source>
         <translation>Nachricht senden</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="151"/>
+        <location filename="../UI/EmailDialog.py" line="152"/>
         <source>&lt;p&gt;The Google Mail Client API is not installed. Use &lt;code&gt;{0}&lt;/code&gt; to install it.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Google Mail Client API ist nicht installiert. Führe &lt;code&gt;{0}&lt;/code&gt; aus, um es zu installieren.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="410"/>
+        <location filename="../UI/EmailDialog.py" line="411"/>
         <source>Send Message via Gmail</source>
         <translation>Nachricht über Gmail senden</translation>
     </message>
@@ -17047,22 +17046,22 @@
 &lt;p&gt;Dies zeigt die Fehler des Ericapi Befehls.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="82"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="84"/>
         <source>{0} - {1}</source>
         <translation>{0} – {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="89"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="89"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="128"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="137"/>
         <source>
 {0} finished.
 </source>
@@ -17347,7 +17346,7 @@
         <translation>Erzeuge QtHelp Kollektionsdateien</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="62"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="63"/>
         <source>&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot;&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;&lt;html&gt;&lt;head&gt;&lt;title&gt;&lt;/title&gt;&lt;/head&gt;&lt;body style=&quot;background-color:{BodyBgColor};color:{BodyColor}&quot;&gt;&lt;h1 style=&quot;background-color:{Level1HeaderBgColor};color:{Level1HeaderColor}&quot;&gt;Level 1 Header&lt;/h1&gt;&lt;h3 style=&quot;background-color:{Level2HeaderBgColor};color:{Level2HeaderColor}&quot;&gt;Level 2 Header&lt;/h3&gt;&lt;h2 style=&quot;background-color:{CFBgColor};color:{CFColor}&quot;&gt;Class and Function Header&lt;/h2&gt;Standard body text with &lt;a style=&quot;color:{LinkColor}&quot;&gt;some links&lt;/a&gt; embedded.&lt;/body&gt;&lt;/html&gt;</source>
         <translation>&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot;&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;&lt;html&gt;&lt;head&gt;&lt;title&gt;&lt;/title&gt;&lt;/head&gt;&lt;body style=&quot;background-color:{BodyBgColor};color:{BodyColor}&quot;&gt;&lt;h1 style=&quot;background-color:{Level1HeaderBgColor};color:{Level1HeaderColor}&quot;&gt;Ebene-1-Titel&lt;/h1&gt;&lt;h3 style=&quot;background-color:{Level2HeaderBgColor};color:{Level2HeaderColor}&quot;&gt;Ebene-2-Titel&lt;/h3&gt;&lt;h2 style=&quot;background-color:{CFBgColor};color:{CFColor}&quot;&gt;Klassen- und Funktionen-Titel&lt;/h2&gt;Normaler Text mit eingebetteten &lt;a style=&quot;color:{LinkColor}&quot;&gt;Verweisen&lt;/a&gt;.&lt;/body&gt;&lt;/html&gt;</translation>
     </message>
@@ -17434,22 +17433,22 @@
 &lt;p&gt;Dies zeigt die Ausgaben des Ericdoc Befehls.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="82"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="84"/>
         <source>{0} - {1}</source>
         <translation>{0} – {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="89"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="89"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="129"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="138"/>
         <source>
 {0} finished.
 </source>
@@ -17468,7 +17467,7 @@
         <translation>Fehler</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="120"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="126"/>
         <source>
 {0} crashed.
 </source>
@@ -17553,17 +17552,17 @@
         <translation>Ignorieren aber Behalten</translation>
     </message>
     <message>
-        <location filename="../UI/ErrorLogDialog.py" line="44"/>
+        <location filename="../UI/ErrorLogDialog.py" line="45"/>
         <source>Delete</source>
         <translation>Löschen</translation>
     </message>
     <message>
-        <location filename="../UI/ErrorLogDialog.py" line="45"/>
-        <source>Close</source>
-        <translation>Schließen</translation>
-    </message>
-    <message>
         <location filename="../UI/ErrorLogDialog.py" line="46"/>
+        <source>Close</source>
+        <translation>Schließen</translation>
+    </message>
+    <message>
+        <location filename="../UI/ErrorLogDialog.py" line="47"/>
         <source>Error Log</source>
         <translation>Fehlerdatei</translation>
     </message>
@@ -18081,22 +18080,22 @@
         <translation>{0} möchte die Position nutzen.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="110"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="111"/>
         <source>Allow</source>
         <translation>Erlauben</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="111"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="112"/>
         <source>Deny</source>
         <translation>Ablehnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="133"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="134"/>
         <source>{0} wants to use an unknown feature.</source>
         <translation>{0} möchte ein unbekanntes Feature nutzen.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="108"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="109"/>
         <source>Remember</source>
         <translation>Merken</translation>
     </message>
@@ -18144,27 +18143,27 @@
         <translation>Benachrichtigungen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="161"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="165"/>
         <source>Host</source>
         <translation>Rechner</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="162"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="166"/>
         <source>Permission</source>
         <translation>Berechtigung</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="68"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="69"/>
         <source>Geolocation</source>
         <translation>Geolokalisierung</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="186"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="191"/>
         <source>Allow</source>
         <translation>Erlauben</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="187"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="193"/>
         <source>Deny</source>
         <translation>Ablehnen</translation>
     </message>
@@ -18179,32 +18178,32 @@
         <translation>&amp;Alle entfernen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="83"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="85"/>
         <source>Microphone</source>
         <translation>Mikrofon</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="98"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="101"/>
         <source>Camera</source>
         <translation>Kamera</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="113"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="117"/>
         <source>Microphone &amp;&amp; Camera</source>
         <translation>Mikrofon &amp;&amp; Kamera</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="129"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="133"/>
         <source>Mouse Lock</source>
         <translation>Maussperre</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="147"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="151"/>
         <source>Desktop Video</source>
         <translation>Bildschirminhalt</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="163"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="167"/>
         <source>Desktop Audio &amp;&amp; Video</source>
         <translation>Bildschirmaudio &amp;&amp; -inhalt</translation>
     </message>
@@ -18260,17 +18259,17 @@
         <translation>Hinzufügen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="86"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="87"/>
         <source>Add RSS Feed</source>
         <translation>RSS-Feed hinzufügen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="81"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="82"/>
         <source>The feed was added successfully.</source>
         <translation>Der Feed wurde erfolgreich hinzugefügt.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="86"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="87"/>
         <source>The feed was already added before.</source>
         <translation>Der Feed wurde bereits früher hinzugefügt.</translation>
     </message>
@@ -18328,67 +18327,67 @@
         <translation>Feed &amp;löschen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="182"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="183"/>
         <source>Duplicate Feed URL</source>
         <translation>Doppelte Feed-URL</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="182"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="183"/>
         <source>A feed with the URL {0} exists already. Aborting...</source>
         <translation>Ein Feed mit der URL {0} existiert bereits. Abbruch...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="204"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="205"/>
         <source>Delete Feed</source>
         <translation>Feed löschen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="204"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="205"/>
         <source>&lt;p&gt;Do you really want to delete the feed &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soll der Feed &lt;b&gt;{0}&lt;/b&gt; wirklich gelöscht werden?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="316"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="317"/>
         <source>Error fetching feed</source>
         <translation>Fehler beim Laden des Feeds</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="346"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="347"/>
         <source>&amp;Open</source>
         <translation>Ö&amp;ffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="348"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="349"/>
         <source>Open in New &amp;Tab</source>
         <translation>In neuem &amp;Register öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="359"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="360"/>
         <source>&amp;Copy URL to Clipboard</source>
         <translation>URL in die Zwischenablage &amp;kopieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="366"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="367"/>
         <source>&amp;Show error data</source>
         <translation>&amp;Zeige Fehlerdaten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="483"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="490"/>
         <source>Error loading feed</source>
         <translation>Fehler beim Laden des Feeds</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="350"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="351"/>
         <source>Open in New &amp;Background Tab</source>
         <translation>In neuem &amp;Hintergrundregister öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="353"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="354"/>
         <source>Open in New &amp;Window</source>
         <translation>In neuem &amp;Fenster öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="355"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="356"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation>In neuem &amp;privaten Fenster öffnen</translation>
     </message>
@@ -19015,17 +19014,17 @@
         <translation>Ersetzen</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="740"/>
+        <location filename="../UI/FindFileDialog.py" line="744"/>
         <source>Replace in Files</source>
         <translation>Ersetzen in Dateien</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="699"/>
+        <location filename="../UI/FindFileDialog.py" line="703"/>
         <source>&lt;p&gt;Could not read the file &lt;b&gt;{0}&lt;/b&gt;. Skipping it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden. Überspringe sie.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="740"/>
+        <location filename="../UI/FindFileDialog.py" line="744"/>
         <source>&lt;p&gt;Could not save the file &lt;b&gt;{0}&lt;/b&gt;. Skipping it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gespeichert werden. Überspringe sie.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
@@ -19050,27 +19049,27 @@
         <translation>Ersttreffer öffnen</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="767"/>
+        <location filename="../UI/FindFileDialog.py" line="771"/>
         <source>Open</source>
         <translation>Öffnen</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="768"/>
+        <location filename="../UI/FindFileDialog.py" line="772"/>
         <source>Copy Path to Clipboard</source>
         <translation>Pfad in die Zwischenablage kopieren</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="450"/>
+        <location filename="../UI/FindFileDialog.py" line="453"/>
         <source>Invalid search expression</source>
         <translation>Ungültiger Suchausdruck</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="450"/>
+        <location filename="../UI/FindFileDialog.py" line="453"/>
         <source>&lt;p&gt;The search expression is not valid.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Suchausdruck ist nicht gültig.&lt;/p&gt;&lt;p&gt;Fehler: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="714"/>
+        <location filename="../UI/FindFileDialog.py" line="718"/>
         <source>&lt;p&gt;The current and the original hash of the file &lt;b&gt;{0}&lt;/b&gt; are different. Skipping it.&lt;/p&gt;&lt;p&gt;Hash 1: {1}&lt;/p&gt;&lt;p&gt;Hash 2: {2}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der aktuelle und der originale Hash-Wert der Datei &lt;b&gt;{0}&lt;/b&gt; sind unterschiedlich. Überspringe sie.&lt;/p&gt;&lt;p&gt;Hash 1: {1}&lt;/p&gt;&lt;p&gt;Hash 2: {2}&lt;/p&gt;</translation>
     </message>
@@ -19080,13 +19079,13 @@
         <translation>%v/%m Dateien</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="573"/>
+        <location filename="../UI/FindFileDialog.py" line="576"/>
         <source>{0} / {1}</source>
         <comment>occurrences / files</comment>
         <translation>{0} / {1}</translation>
     </message>
     <message numerus="yes">
-        <location filename="../UI/FindFileDialog.py" line="574"/>
+        <location filename="../UI/FindFileDialog.py" line="577"/>
         <source>%n occurrence(s)</source>
         <translation>
             <numerusform>ein Vorkommen</numerusform>
@@ -19094,7 +19093,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../UI/FindFileDialog.py" line="574"/>
+        <location filename="../UI/FindFileDialog.py" line="577"/>
         <source>%n file(s)</source>
         <translation>
             <numerusform>eine Datei</numerusform>
@@ -19205,7 +19204,7 @@
         <translation>Pfad</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileNameDialog.py" line="58"/>
+        <location filename="../UI/FindFileNameDialog.py" line="59"/>
         <source>Opens the selected file</source>
         <translation>Öffnet die ausgewählte Datei</translation>
     </message>
@@ -20214,7 +20213,7 @@
         <translation>Gib eine Vorsatz, der jeder Datei hinzugefügt wird, ein</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitArchiveDataDialog.py" line="83"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitArchiveDataDialog.py" line="85"/>
         <source>Select Archive File</source>
         <translation>Archivdatei auswählen</translation>
     </message>
@@ -20292,22 +20291,22 @@
         <translation>Alt+K</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="52"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="54"/>
         <source>&amp;Refresh</source>
         <translation>&amp;Aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="54"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="56"/>
         <source>Press to refresh the list of commits</source>
         <translation>Drücken, um die Protokollliste zu aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="173"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="173"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
@@ -20428,12 +20427,12 @@
         <translation>Alt+K</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
@@ -20647,7 +20646,7 @@
         <translation>Wähle das entfernte Repository</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBranchPushDialog.py" line="34"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBranchPushDialog.py" line="35"/>
         <source>&lt;all branches&gt;</source>
         <translation>&lt;alle Zweige&gt;</translation>
     </message>
@@ -20966,7 +20965,7 @@
         <translation>Git Verschiebe</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitCopyDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitCopyDialog.py" line="90"/>
         <source>Select target</source>
         <translation>Wähle Ziel aus</translation>
     </message>
@@ -21034,12 +21033,12 @@
         <translation>Alt+K</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="115"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="115"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
@@ -21102,37 +21101,37 @@
         <translation>Alt+K</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="110"/>
         <source>Process canceled.</source>
         <translation>Vorgang abgebrochen.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="112"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="125"/>
         <source>Process finished successfully.</source>
         <translation>Vorgang erfolgreich beendet.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="127"/>
         <source>Process crashed.</source>
         <translation>Prozess gestorben.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="129"/>
         <source>Process finished with exit code {0}</source>
         <translation>Prozess endete mit Code {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="182"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="182"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="82"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="88"/>
         <source>Additional Output</source>
         <translation>Zusätzliche Ausgabe</translation>
     </message>
@@ -21160,47 +21159,47 @@
         <translation>Fehler</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="174"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="174"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="198"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="200"/>
         <source>There is no difference.</source>
         <translation>Es gibt keinen Unterschied.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="219"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="225"/>
         <source>&lt;Start&gt;</source>
         <translation>&lt;Anfang&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="220"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="226"/>
         <source>&lt;End&gt;</source>
         <translation>&lt;Ende&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="355"/>
         <source>Save Diff</source>
         <translation>Diff speichern</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="314"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="322"/>
         <source>Patch Files (*.diff)</source>
         <translation>Patchdateien (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="331"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="339"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Patchdatei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="355"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Patchdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gespeichert werden.&lt;br&gt;Grund: {1}&lt;/p&gt;</translation>
     </message>
@@ -21220,37 +21219,37 @@
         <translation>Drücken, um die Anzeige zu aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="90"/>
         <source>Working Tree to Staging Area</source>
         <translation>Arbeitsverzeichnis nach Vormerkung</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="89"/>
-        <source>Staging Area to HEAD Commit</source>
-        <translation>Vormerkung nach HEAD Revision</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="90"/>
-        <source>Working Tree to HEAD Commit</source>
-        <translation>Arbeitsverzeichnis nach HEAD Revision</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="91"/>
-        <source>Working to Staging (top) and Staging to HEAD (bottom)</source>
-        <translation>Arbeitsverzeichnis zu Vormerkung (oben) und Vormerkung zu Repository (unten)</translation>
+        <source>Staging Area to HEAD Commit</source>
+        <translation>Vormerkung nach HEAD Revision</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="92"/>
+        <source>Working Tree to HEAD Commit</source>
+        <translation>Arbeitsverzeichnis nach HEAD Revision</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="93"/>
+        <source>Working to Staging (top) and Staging to HEAD (bottom)</source>
+        <translation>Arbeitsverzeichnis zu Vormerkung (oben) und Vormerkung zu Repository (unten)</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="95"/>
         <source>Stash Contents</source>
         <translation>Ablageinhalt</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="96"/>
         <source>Stash Contents of {0}</source>
         <translation>Inhalt von Ablage {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="166"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="168"/>
         <source>Difference ({0})</source>
         <translation>Unterschiede ({0})</translation>
     </message>
@@ -21429,22 +21428,22 @@
         <translation>Wähle das als Filter zu verwendende Feld</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="111"/>
         <source>Author</source>
         <translation>Autor</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="112"/>
         <source>Committer</source>
         <translation>Revisionsersteller</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1789"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1807"/>
         <source>Branch</source>
         <translation>Zweig</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="110"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="113"/>
         <source>Subject</source>
         <translation>Betreff</translation>
     </message>
@@ -21514,178 +21513,178 @@
         <translation>Wähle eine Aktion aus dem Menü</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="97"/>
         <source>&amp;Refresh</source>
         <translation>&amp;Aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="96"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="99"/>
         <source>Press to refresh the list of commits</source>
         <translation>Drücken, um die Protokollliste zu aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="203"/>
-        <source>Added</source>
-        <translation>Hinzugefügt</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="204"/>
-        <source>Deleted</source>
-        <translation>Gelöscht</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="205"/>
-        <source>Modified</source>
-        <translation>Modifiziert</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="206"/>
-        <source>Copied</source>
-        <translation>Kopiert</translation>
+        <source>Added</source>
+        <translation>Hinzugefügt</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="207"/>
-        <source>Renamed</source>
-        <translation>Umbenannt</translation>
+        <source>Deleted</source>
+        <translation>Gelöscht</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="208"/>
-        <source>Type changed</source>
-        <translation>Typ geändert</translation>
+        <source>Modified</source>
+        <translation>Modifiziert</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="209"/>
+        <source>Copied</source>
+        <translation>Kopiert</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="210"/>
+        <source>Renamed</source>
+        <translation>Umbenannt</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="211"/>
+        <source>Type changed</source>
+        <translation>Typ geändert</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="212"/>
         <source>Unmerged</source>
         <translation>Nicht zusammengeführt</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="256"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="259"/>
         <source>Show Author Columns</source>
         <translation>Autor Spalten anzeigen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="258"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="261"/>
         <source>Press to show the author columns</source>
         <translation>Drücken, um die Autor Spalten anzuzeigen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="266"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="269"/>
         <source>Show Committer Columns</source>
         <translation>Revisionsersteller Spalten anzeigen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="268"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="271"/>
         <source>Press to show the committer columns</source>
         <translation>Drücken, um die Revisionsersteller Spalten anzuzeigen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="315"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="318"/>
         <source>Copy Commits</source>
         <translation>Revisionen kopieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="317"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="320"/>
         <source>Cherry-pick the selected commits to the current branch</source>
         <translation>Die ausgewählten Revisionen in den aktuellen Zweig kopieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="322"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="325"/>
         <source>Tag</source>
         <translation>Marke setzen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="324"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="327"/>
         <source>Tag the selected commit</source>
         <translation>Ausgewählte Revision mit einer Marke versehen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="328"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="331"/>
         <source>Create a new branch at the selected commit.</source>
         <translation>Neuen Zweig mit der ausgewählten Revision erzeugen.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="330"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="333"/>
         <source>Branch &amp;&amp; Switch</source>
         <translation>Zweig erzeugen &amp;&amp; Umschalten</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="332"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="335"/>
         <source>Create a new branch at the selected commit and switch the work tree to it.</source>
         <translation>Neuen Zweig mit der ausgewählten Revision erzeugen und das Arbeitsverzeichnis umschalten.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1859"/>
         <source>Switch</source>
         <translation>Umschalten</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="338"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="341"/>
         <source>Switch the working directory to the selected commit</source>
         <translation>Schaltet das Arbeitsverzeichnis auf die ausgewählte Revision um</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1867"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1885"/>
         <source>Show Short Log</source>
         <translation>Kurzprotokoll anzeigen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="344"/>
-        <source>Show a dialog with a log output for release notes</source>
-        <translation>Zeigt einen Dialog mit einem Kurzprotokoll zur Verwendung in Freigabemitteilungen</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="347"/>
+        <source>Show a dialog with a log output for release notes</source>
+        <translation>Zeigt einen Dialog mit einem Kurzprotokoll zur Verwendung in Freigabemitteilungen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="350"/>
         <source>Describe</source>
         <translation>Beschreibe</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="349"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="352"/>
         <source>Show the most recent tag reachable from a commit</source>
         <translation>Zeigt die letzte von einer Revision erreichbare Marke</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="634"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="639"/>
         <source>The git process did not finish within 30s.</source>
         <translation>Der git-Prozess endete nicht innerhalb von 30s.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="637"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="642"/>
         <source>Could not start the git executable.</source>
         <translation>Das git Programm konnte nicht gestartet werden.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="640"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="645"/>
         <source>Git Error</source>
         <translation>Git Fehler</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="756"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="761"/>
         <source>{0} ({1}%)</source>
         <comment>action, confidence</comment>
         <translation>{0} ({1}%)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="819"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="827"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="819"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="827"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1721"/>
         <source>Copy Changesets</source>
         <translation>Änderungssätze kopieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1859"/>
         <source>The project should be reread. Do this now?</source>
         <translation>Das Projekt sollte neu gelesen werde. Jetzt durchführen?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="210"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="213"/>
         <source>Unknown</source>
         <translation>Unbekannt</translation>
     </message>
@@ -21695,17 +21694,17 @@
         <translation>Zweige</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1867"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1885"/>
         <source>Select a branch</source>
         <translation>Zweig auswählen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1820"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1838"/>
         <source>Select a default branch</source>
         <translation>Standardzweig auswählen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1820"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1838"/>
         <source>Branch &amp; Switch</source>
         <translation>Zweig erzeugen &amp; Umschalten</translation>
     </message>
@@ -21725,37 +21724,37 @@
         <translation>Drücken, um das nächste Vorkommen zu finden</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="110"/>
         <source>Commit ID</source>
         <translation>Revisions-ID</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
         <source>Find</source>
         <translation>Finden</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="108"/>
         <source>Filter</source>
         <translation>Filtern</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="146"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Zweige&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="149"/>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Zweige&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="152"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Marken&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2049"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2067"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation>&apos;{0}&apos; wurde nicht gefunden.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2049"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2067"/>
         <source>Find Commit</source>
         <translation>Revision finden</translation>
     </message>
@@ -21765,7 +21764,7 @@
         <translation>Gib den regulären Ausdruck zum Filtern oder Suchen ein</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="111"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="114"/>
         <source>File</source>
         <translation>Datei</translation>
     </message>
@@ -21790,7 +21789,7 @@
         <translation>Löschungen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2095"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2113"/>
         <source>Differences</source>
         <translation>Unterschiede</translation>
     </message>
@@ -21800,97 +21799,97 @@
         <translation>&lt;a href=&quot;save:me&quot;&gt;Speichern&lt;/a&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="131"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit ID&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2} &amp;lt;{3}&amp;gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5} &amp;lt;{6}&amp;gt;&lt;/td&gt;&lt;/tr&gt;{7}&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;{9}&lt;/table&gt;</source>
         <translation>&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Revisions-ID&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Datum&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Autor&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2} &amp;lt;{3}&amp;gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Revisionsdatum&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Revisionsersteller&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5} &amp;lt;{6}&amp;gt;&lt;/td&gt;&lt;/tr&gt;{7}&lt;tr&gt;&lt;td&gt;&lt;b&gt;Betreff&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;{9}&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="140"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Vorgänger&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="143"/>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Vorgänger&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="146"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Children&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;Nachfolger&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="152"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="155"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Message&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;Beschreibung&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1262"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1280"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation>Unterschiede nebeneinander zu Vorgänger {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1274"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1292"/>
         <source>&lt;a href=&quot;sbsdiff:{0}_{1}&quot;&gt;Side-by-Side Compare&lt;/a&gt;</source>
         <translation>&lt;a href=&quot;sbsdiff:{0}_{1}&quot;&gt;Unterschiede nebeneinander&lt;/a&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2127"/>
         <source>Differences to Parent {0}</source>
         <translation>Unterschiede zu Vorgänger {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2124"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2142"/>
         <source>Diff to Parent {0}</source>
         <translation>Diff zu Vorgänger {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2150"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2168"/>
         <source>There is no difference.</source>
         <translation>Es gibt keinen Unterschied.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2312"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2330"/>
         <source>Save Diff</source>
         <translation>Diff speichern</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2279"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2297"/>
         <source>Patch Files (*.diff)</source>
         <translation>Patchdateien (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2296"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2314"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Patchdatei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2312"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2330"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Patchdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gespeichert werden.&lt;br&gt;Grund: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="246"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="249"/>
         <source>Show Commit ID Column</source>
         <translation>Commit ID Spalte anzeigen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="248"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="251"/>
         <source>Press to show the commit ID column</source>
         <translation>Drücken, um die Commit ID Spalte anzuzeigen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="276"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="279"/>
         <source>Show Branches Column</source>
         <translation>Zweige Spalte anzeigen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="278"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="281"/>
         <source>Press to show the branches column</source>
         <translation>Drücken, um die Zweige Spalte anzuzeigen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="286"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="289"/>
         <source>Show Tags Column</source>
         <translation>Marken Spalte anzeigen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="291"/>
         <source>Press to show the Tags column</source>
         <translation>Drücken, um die Marken Spalte anzuzeigen</translation>
     </message>
@@ -22055,12 +22054,12 @@
 und in dieses Verzeichnis geschrieben.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="87"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="88"/>
         <source>Select Repository-Directory</source>
         <translation>Wähle Repositoryverzeichnis</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="102"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="103"/>
         <source>Select Project Directory</source>
         <translation>Wähle Projektverzeichnis</translation>
     </message>
@@ -22237,7 +22236,7 @@
 <context>
     <name>GitPatchFilesDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="82"/>
         <source>Patch Files</source>
         <translation>Patchdateien</translation>
     </message>
@@ -22292,7 +22291,7 @@
         <translation>Zeileninformationen nicht vertrauen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="82"/>
         <source>Patch Files (*.diff *.patch);;All Files (*)</source>
         <translation>Patchdateien (*.diff *.patch);;Alle Dateien (*)</translation>
     </message>
@@ -22330,12 +22329,12 @@
         <translation>Zusammenfassende Informationen:</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
@@ -24360,22 +24359,22 @@
         <translation>Alt+K</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="54"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="56"/>
         <source>&amp;Refresh</source>
         <translation>&amp;Aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="56"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="58"/>
         <source>Press to refresh the list of commits</source>
         <translation>Drücken, um die Protokollliste zu aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="198"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="198"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
@@ -24568,12 +24567,12 @@
         <translation>Drücken, um die Repositoryanzeige zu aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="144"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="148"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="144"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="148"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
@@ -24872,52 +24871,52 @@
         <translation>Alt+K</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="60"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="63"/>
         <source>&amp;Refresh</source>
         <translation>&amp;Aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="77"/>
-        <source>Show</source>
-        <translation>Zeige</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="80"/>
+        <source>Show</source>
+        <translation>Zeige</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="83"/>
         <source>Restore &amp;&amp; Keep</source>
         <translation>Wiederherstellen &amp;&amp; Behalten</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="82"/>
-        <source>Restore &amp;&amp; Delete</source>
-        <translation>Wiederherstellen &amp;&amp; Löschen</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="85"/>
-        <source>Create Branch</source>
-        <translation>Zweig erzeugen</translation>
+        <source>Restore &amp;&amp; Delete</source>
+        <translation>Wiederherstellen &amp;&amp; Löschen</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="88"/>
+        <source>Create Branch</source>
+        <translation>Zweig erzeugen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="91"/>
         <source>Delete</source>
         <translation>Löschen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="93"/>
         <source>Delete All</source>
         <translation>Alle Löschen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="176"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="183"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="176"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="183"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="363"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="377"/>
         <source>%n file(s) changed</source>
         <translation>
             <numerusform>%n Datei geändert</numerusform>
@@ -24925,7 +24924,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="365"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="379"/>
         <source>%n line(s) inserted</source>
         <translation>
             <numerusform>%n Zeile eingefügt</numerusform>
@@ -24933,7 +24932,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="367"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="381"/>
         <source>%n line(s) deleted</source>
         <translation>
             <numerusform>%n Zeile gelöscht</numerusform>
@@ -24941,7 +24940,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="62"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="65"/>
         <source>Press to refresh the list of stashes</source>
         <translation>Drücken, um die Liste der Ablagen zu aktualisieren</translation>
     </message>
@@ -25007,7 +25006,7 @@
 <context>
     <name>GitStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="379"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="386"/>
         <source>Git Status</source>
         <translation>Git Status</translation>
     </message>
@@ -25029,7 +25028,7 @@
         <translation>Wähle den Status anzuzeigender Einträge</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="647"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="665"/>
         <source>Commit</source>
         <translation>Einpflegen</translation>
     </message>
@@ -25049,12 +25048,12 @@
         <translation>Pfad</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="188"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="190"/>
         <source>Commit the selected changes</source>
         <translation>Ausgewählte Änderungen einpflegen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="191"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="193"/>
         <source>Amend the latest commit with the selected changes</source>
         <translation>Letzte Revision mit ausgewählten Änderungen ergänzen</translation>
     </message>
@@ -25114,192 +25113,192 @@
         <translation>Drücken, um die Statusanzeige zu aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="193"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="195"/>
         <source>Select all for commit</source>
         <translation>Alle zum Einpflegen auswählen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="202"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="204"/>
         <source>Stage changes</source>
         <translation>Änderungen vormerken</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="206"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="208"/>
         <source>Unstage changes</source>
         <translation>Vormerkung rückgängig</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="233"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="235"/>
         <source>Forget missing</source>
         <translation>Fehlende vergessen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="237"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="239"/>
         <source>Restore missing</source>
         <translation>Fehlende wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="246"/>
         <source>Edit file</source>
         <translation>Datei bearbeiten</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="251"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253"/>
         <source>Adjust column sizes</source>
         <translation>Spaltengrößen anpassen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="163"/>
-        <source>added</source>
-        <translation>hinzugefügt</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="164"/>
-        <source>copied</source>
-        <translation>kopiert</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="165"/>
-        <source>deleted</source>
-        <translation>gelöscht</translation>
+        <source>added</source>
+        <translation>hinzugefügt</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="166"/>
-        <source>modified</source>
-        <translation>modifiziert</translation>
+        <source>copied</source>
+        <translation>kopiert</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="167"/>
-        <source>renamed</source>
-        <translation>umbenannt</translation>
+        <source>deleted</source>
+        <translation>gelöscht</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="168"/>
+        <source>modified</source>
+        <translation>modifiziert</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="169"/>
+        <source>renamed</source>
+        <translation>umbenannt</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="171"/>
         <source>not tracked</source>
         <translation>nicht versioniert</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="168"/>
-        <source>unmerged</source>
-        <translation>nicht zusammengeführt</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="162"/>
-        <source>unmodified</source>
-        <translation>nicht verändert</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
+        <source>unmerged</source>
+        <translation>nicht zusammengeführt</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="164"/>
+        <source>unmodified</source>
+        <translation>nicht verändert</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="172"/>
         <source>ignored</source>
         <translation>ignoriert</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="414"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="414"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="581"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="599"/>
         <source>all</source>
         <translation>alle</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="647"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="665"/>
         <source>There are no entries selected to be committed.</source>
         <translation>Es sind keine Einträge zum Einpflegen ausgewählt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="688"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="706"/>
         <source>Add</source>
         <translation>Hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="688"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="706"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation>Es sind keine unversionierten Einträge vorhanden/ausgewählt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="710"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="728"/>
         <source>Stage</source>
         <translation>Vormerken</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="710"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="728"/>
         <source>There are no stageable entries available/selected.</source>
         <translation>Es sind keine vorzumerkenden Einträge vorhanden/ausgewählt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="732"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="750"/>
         <source>Unstage</source>
         <translation>Vormerkung rückgängig</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="732"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="750"/>
         <source>There are no unstageable entries available/selected.</source>
         <translation>Es sind keine Vormerkungen vorhanden/ausgewählt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="754"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="772"/>
         <source>Forget Missing</source>
         <translation>Fehlende vergessen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="795"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="813"/>
         <source>There are no missing entries available/selected.</source>
         <translation>Es sind keine fehlenden Einträge vorhanden/ausgewählt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789"/>
         <source>Revert</source>
         <translation>Rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789"/>
         <source>There are no uncommitted, unstaged changes available/selected.</source>
         <translation>Es sind keine nicht eingepflegten, nicht vorgemerkten Änderungen vorhanden/ausgewählt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="795"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="813"/>
         <source>Restore Missing</source>
         <translation>Fehlende wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="824"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="842"/>
         <source>Differences</source>
         <translation>Unterschiede</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="824"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="842"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation>Es sind keine nicht eingepflegten Änderungen vorhanden/ausgewählt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="876"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
         <source>Working Tree to Staging Area</source>
         <translation>Arbeitsverzeichnis nach Vormerkung</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="855"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="873"/>
         <source>Staging Area to HEAD Commit</source>
         <translation>Vormerkung nach HEAD Revision</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="877"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="895"/>
         <source>Working Tree to HEAD Commit</source>
         <translation>Arbeitsverzeichnis nach HEAD Revision</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="879"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="897"/>
         <source>Side-by-Side Difference</source>
         <translation>Unterschiede nebeneinander anzeigen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="879"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="897"/>
         <source>Select the compare method.</source>
         <translation>Vergleichsmethode auswählen.</translation>
     </message>
@@ -25314,47 +25313,47 @@
         <translation>Unterschied Vormerkung zu HEAD</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="102"/>
         <source>Stage Selected Lines</source>
         <translation>Ausgewählte Zeilen vormerken</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="106"/>
         <source>Revert Selected Lines</source>
         <translation>Ausgewählte Zeilen rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="110"/>
         <source>Stage Hunk</source>
         <translation>Abschnitt vormerken</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="112"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="114"/>
         <source>Revert Hunk</source>
         <translation>Abschnitt rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="120"/>
         <source>Unstage Selected Lines</source>
         <translation>Ausgewählte Zeilen nicht vormerken</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="122"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="124"/>
         <source>Unstage Hunk</source>
         <translation>Abschnitt nicht vormerken</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1188"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1212"/>
         <source>Revert selected lines</source>
         <translation>Ausgewählte Zeilen rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1190"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1214"/>
         <source>Revert hunk</source>
         <translation>Abschnitt rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1191"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1215"/>
         <source>Are you sure you want to revert the selected changes?</source>
         <translation>Sind sie sicher, dass die ausgewählten Änderungen rückgängig gemacht werden sollen?</translation>
     </message>
@@ -25364,67 +25363,67 @@
         <translation>Wähle eine Aktion aus dem Menü</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="189"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="191"/>
         <source>Amend</source>
         <translation>Ergänzen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="195"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="197"/>
         <source>Unselect all from commit</source>
         <translation>Alle vom Einpflegen abwählen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="201"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="203"/>
         <source>Add the selected files</source>
         <translation>Ausgewählte Dateien hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="204"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="206"/>
         <source>Stages all changes of the selected files</source>
         <translation>Alle Änderungen der ausgewählten Dateien vormerken</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="208"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210"/>
         <source>Unstages all changes of the selected files</source>
         <translation>Vormerkung von Änderungen der ausgewählten Dateien rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="215"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="217"/>
         <source>Shows the differences of the selected entry in a separate dialog</source>
         <translation>Zeigt die Unterschiede des gewählten Eintrages in einem separaten Dialog</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="218"/>
-        <source>Differences Side-By-Side</source>
-        <translation>Unterschiede nebeneinander anzeigen</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="220"/>
+        <source>Differences Side-By-Side</source>
+        <translation>Unterschiede nebeneinander anzeigen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="222"/>
         <source>Shows the differences of the selected entry side-by-side in a separate dialog</source>
         <translation>Zeigt die Unterschiede des gewählten Eintrages nebeneinander in einem separaten Dialog</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="228"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="230"/>
         <source>Reverts the changes of the selected files</source>
         <translation>Macht alle Änderungen der ausgewählten Dateien rückgängig</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="235"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="237"/>
         <source>Forgets about the selected missing files</source>
         <translation>Die ausgewählten fehlenden Dateien vergessen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="239"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="241"/>
         <source>Restores the selected missing files</source>
         <translation>Stellt die ausgewählten, fehlenden Dateien wieder her</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="246"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="248"/>
         <source>Edit the selected conflicting file</source>
         <translation>Bearbeitet die ausgewählte Datei mit Konflikten</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="255"/>
         <source>Adjusts the width of all columns to their contents</source>
         <translation>Passt die Breite aller Spalten an ihren Inhalt an</translation>
     </message>
@@ -25521,12 +25520,12 @@
         <translation>Aktion &amp;erzwingen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="103"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="105"/>
         <source>Select Submodule Repository Directory</source>
         <translation>Submodulrepositoryverzeichnis auswählen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="129"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="131"/>
         <source>Select Submodule Directory</source>
         <translation>Submodulverzeichnis auswählen</translation>
     </message>
@@ -25913,12 +25912,12 @@
 &lt;p&gt;Dies zeigt eine Liste alle Marken oder Zweige des Projektes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="95"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="97"/>
         <source>Commit</source>
         <translation>Einpflegen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="95"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="97"/>
         <source>Name</source>
         <translation>Name</translation>
     </message>
@@ -25968,22 +25967,22 @@
         <translation>Alt+K</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="92"/>
         <source>Annotation Message</source>
         <translation>Annotation</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="96"/>
         <source>Git Branches List</source>
         <translation>Git Zweigliste</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="133"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="133"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
@@ -26573,7 +26572,7 @@
 <context>
     <name>HelpDocsInstaller</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpDocsInstaller.py" line="239"/>
+        <location filename="../WebBrowser/QtHelp/HelpDocsInstaller.py" line="241"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be registered. &lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht registriert werden.&lt;br/&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
@@ -26724,22 +26723,22 @@
         <translation>Suche &amp;nach:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="205"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="211"/>
         <source>Open Link</source>
         <translation>Link öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="206"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="212"/>
         <source>Open Link in New Tab</source>
         <translation>Link in neuem Register öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="207"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="213"/>
         <source>Open Link in Background Tab</source>
         <translation>Link in Hintergrundregister öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="209"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="215"/>
         <source>Open Link in New Window</source>
         <translation>Link in neuem Fenster öffnen</translation>
     </message>
@@ -26747,22 +26746,22 @@
 <context>
     <name>HelpSearchWidget</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="145"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="150"/>
         <source>Open Link</source>
         <translation>Link öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="146"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="151"/>
         <source>Open Link in New Tab</source>
         <translation>Link in neuem Register öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="147"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="152"/>
         <source>Open Link in Background Tab</source>
         <translation>Link in Hintergrundregister öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="149"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="154"/>
         <source>Open Link in New Window</source>
         <translation>Link in neuem Fenster öffnen</translation>
     </message>
@@ -26770,22 +26769,22 @@
 <context>
     <name>HelpTocWidget</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="158"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="164"/>
         <source>Open Link</source>
         <translation>Link öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="159"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="165"/>
         <source>Open Link in New Tab</source>
         <translation>Link in neuem Register öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="160"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="166"/>
         <source>Open Link in Background Tab</source>
         <translation>Link in Hintergrundregister öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="162"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="168"/>
         <source>Open Link in New Window</source>
         <translation>Link in neuem Fenster öffnen</translation>
     </message>
@@ -27674,12 +27673,12 @@
         <translation>Hilfe</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="798"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="801"/>
         <source>&lt;p&gt;This part of the status bar displays the edit mode.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt den Editiermodus an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="806"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="810"/>
         <source>&lt;p&gt;This part of the status bar displays the read only mode.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt den Ansichtsmodus an.&lt;/p&gt;</translation>
     </message>
@@ -27689,111 +27688,111 @@
         <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt die Adresse der Einfügemarke an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="790"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="792"/>
         <source>&lt;p&gt;This part of the status bar displays the size of the binary data.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt die Größe der Binärdaten an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="862"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="867"/>
         <source>ro</source>
         <translation>ro</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="862"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="867"/>
         <source>rw</source>
         <translation>rw</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="880"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="885"/>
         <source>Overwrite</source>
         <translation>Überschreiben</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="880"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="885"/>
         <source>Insert</source>
         <translation>Einfügen</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="942"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="947"/>
         <source>Open binary file in new window</source>
         <translation>Öffne Binärdatei in neuem Fenster</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1061"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1066"/>
         <source>All Files (*)</source>
         <translation>Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="963"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="968"/>
         <source>The loaded file has unsaved changes.</source>
         <translation>Die geladene Datei hat ungesicherte Änderungen.</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="981"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="986"/>
         <source>The file &apos;{0}&apos; does not exist.</source>
         <translation>Die Datei „{0}“ existiert nicht.</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="988"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="993"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation>Datei {0} kann nicht gelesen werden:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1014"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1019"/>
         <source>Open binary file</source>
         <translation>Binärdatei öffnen</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1071"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1076"/>
         <source>Save binary file</source>
         <translation>Binärdatei speichern</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1156"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1161"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1181"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1186"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation>Datei {0} kann nicht geschrieben werden:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1187"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1192"/>
         <source>File saved</source>
         <translation>Datei gespeichert</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1156"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1161"/>
         <source>Save to readable file</source>
         <translation>In lesbare Datei speichern</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1140"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1145"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation>Textdateien (*.txt);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1140"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1145"/>
         <source>Text Files (*.txt)</source>
         <translation>Textdateien (*.txt)</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1223"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1228"/>
         <source>Untitled</source>
         <translation>Unbenannt</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1227"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1232"/>
         <source>{0}[*] - {1}</source>
         <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1227"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1232"/>
         <source>Hex Editor</source>
         <translation>Hex-Editor</translation>
     </message>
@@ -27813,12 +27812,12 @@
         <translation>&lt;b&gt;Ersetzen&lt;/b&gt;&lt;p&gt;Dies sucht nach Daten und ersetzt sie. Es wird ein Dialog zur Eingabe der Suchdaten und der Ersetzungsdaten in verschiedenen Formaten angezeigt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="782"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="783"/>
         <source>&lt;p&gt;This part of the status bar displays some selection information.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt Informationen zur Auswahl an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="851"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="856"/>
         <source>Selection: -</source>
         <comment>no selection available</comment>
         <translation>Auswahl: -</translation>
@@ -27839,18 +27838,18 @@
         <translation>&lt;b&gt;Gehe zu Offset&lt;/b&gt;&lt;p&gt;Springe zu eine bestimmten Adresse. Es wird dein Dialog zur Eingabe der Sprungparameter angezeigt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="826"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="831"/>
         <source>Address: {0}</source>
         <translation>Adresse: {0}</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="845"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="850"/>
         <source>Selection: {0} - {1} ({2} Bytes)</source>
         <comment>0: start, 1: end, 2: selection length</comment>
         <translation>Auswahl: {0} - {1} ({2} Bytes)</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="899"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="904"/>
         <source>Size: {0}</source>
         <translation>Größe: {0}</translation>
     </message>
@@ -27860,22 +27859,22 @@
         <translation>Zu&amp;letzt geöffnete Dateien</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1431"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1436"/>
         <source>&amp;Clear</source>
         <translation>&amp;Löschen</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1181"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1186"/>
         <source>eric Hex Editor</source>
         <translation>eric Hex-Editor</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1284"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1289"/>
         <source>About eric Hex Editor</source>
         <translation>Über den eric Hex-Editor</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1284"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1289"/>
         <source>The eric Hex Editor is a simple editor component to edit binary files.</source>
         <translation>Der eric Hex-Editor ist eine einfache Komponente zur Anzeige oder Bearbeitung von Binärdateien.</translation>
     </message>
@@ -28966,7 +28965,7 @@
         <translation>Mit aktuellem Vorgänger zusammenführen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBackoutDialog.py" line="174"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBackoutDialog.py" line="176"/>
         <source>Backed out changeset &lt;{0}&gt;.</source>
         <translation>Änderungssatz &lt;{0}&gt; umgekehrt.</translation>
     </message>
@@ -28994,7 +28993,7 @@
 <context>
     <name>HgBookmarkDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="46"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="47"/>
         <source>Define Bookmark</source>
         <translation>Lesezeichen hinzufügen</translation>
     </message>
@@ -29099,7 +29098,7 @@
         <translation>Wähle neueste Revision des Repository</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="43"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="44"/>
         <source>Move Bookmark</source>
         <translation>Lesezeichen verschieben</translation>
     </message>
@@ -29162,17 +29161,17 @@
         <translation>Fehler</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="46"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="48"/>
         <source>Mercurial Incoming Bookmarks</source>
         <translation>Eingehende Mercurial-Lesezeichen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="48"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="50"/>
         <source>Mercurial Outgoing Bookmarks</source>
         <translation>Ausgehende Mercurial-Lesezeichen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="121"/>
         <source>no bookmarks found</source>
         <translation>keine Lesezeichen vorhanden</translation>
     </message>
@@ -29224,7 +29223,7 @@
         <translation>Fehler</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="125"/>
         <source>no bookmarks defined</source>
         <translation>keine Lesezeichen vorhanden</translation>
     </message>
@@ -29239,67 +29238,67 @@
         <translation>Drücken, um die Lesezeichenanzeige zu erneuern</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="247"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="258"/>
         <source>Switch to</source>
         <translation>Umschalten</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="251"/>
-        <source>Delete</source>
-        <translation>Löschen</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="254"/>
-        <source>Rename</source>
-        <translation>Umbenennen</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="258"/>
-        <source>Pull</source>
-        <translation>Herunterladen</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="262"/>
+        <source>Delete</source>
+        <translation>Löschen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="265"/>
+        <source>Rename</source>
+        <translation>Umbenennen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="269"/>
+        <source>Pull</source>
+        <translation>Herunterladen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="273"/>
         <source>Push</source>
         <translation>Hochladen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="299"/>
         <source>Switch</source>
         <translation>Umschalten</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="299"/>
         <source>The project should be reread. Do this now?</source>
         <translation>Das Projekt sollte neu gelesen werde. Jetzt durchführen?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="318"/>
         <source>Delete Bookmark</source>
         <translation>Lesezeichen löschen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="318"/>
         <source>&lt;p&gt;Shall the bookmark &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soll das Lesezeichen &lt;b&gt;{0}&lt;/b&gt; wirklich gelöscht werden?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="323"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="334"/>
         <source>Rename Bookmark</source>
         <translation>Lesezeichen umbenennen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="323"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="334"/>
         <source>&lt;p&gt;Enter the new name for bookmark &lt;b&gt;{0}&lt;/b&gt;:&lt;/p&gt;</source>
         <translation>&lt;p&gt;Gib einen neuen Namen für das Lesezeichen &lt;b&gt;{0}&lt;/b&gt; ein:&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="267"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="278"/>
         <source>Push Current</source>
         <translation>Aktuelles hochladen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="272"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="283"/>
         <source>Push All</source>
         <translation>Alle hochladen</translation>
     </message>
@@ -29723,7 +29722,7 @@
         <translation>Drücken, um die ausgewählten Einträge als &apos;aufgelöst&apos; zu markieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="173"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="183"/>
         <source>Resolved</source>
         <translation>Aufgelöst</translation>
     </message>
@@ -29733,7 +29732,7 @@
         <translation>Drücken, um die ausgewählten Einträge als &apos;nicht aufgelöst&apos; zu markieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="171"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="181"/>
         <source>Unresolved</source>
         <translation>Nicht Aufgelöst</translation>
     </message>
@@ -29763,17 +29762,17 @@
         <translation>Fehler</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="51"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="54"/>
         <source>&amp;Refresh</source>
         <translation>&amp;Erneuern</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="53"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="56"/>
         <source>Press to refresh the list of conflicts</source>
         <translation>Drücken, um die Liste der Konflikte zu erneuern</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="175"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="185"/>
         <source>Unknown Status</source>
         <translation>Unbekanter Status</translation>
     </message>
@@ -29916,52 +29915,52 @@
         <translation>Fehler</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="101"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="101"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="120"/>
         <source>There is no difference.</source>
         <translation>Es gibt keinen Unterschied.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="245"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="254"/>
         <source>Save Diff</source>
         <translation>Diff speichern</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="213"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="222"/>
         <source>Patch Files (*.diff)</source>
         <translation>Patchdateien (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="245"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="254"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Patchdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gespeichert werden.&lt;br&gt;Grund: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="230"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="239"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Patchdatei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="91"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="93"/>
         <source>Patch Contents</source>
         <translation>Patchinhalt</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="137"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="143"/>
         <source>&lt;Start&gt;</source>
         <translation>&lt;Anfang&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="138"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="144"/>
         <source>&lt;End&gt;</source>
         <translation>&lt;Ende&gt;</translation>
     </message>
@@ -30238,7 +30237,7 @@
         <translation>Wähle die als Filter zu verwendende Kategorie</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="218"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="228"/>
         <source>Revision</source>
         <translation>Revision</translation>
     </message>
@@ -30273,7 +30272,7 @@
         <translation>&lt;b&gt;Mercurial-Fehler&lt;/b&gt;&lt;p&gt;Dies zeigt mögliche Fehlermeldungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="95"/>
         <source>no signatures found</source>
         <translation>keine Signaturen gefunden</translation>
     </message>
@@ -30751,17 +30750,17 @@
         <translation>Wähle das als Filter zu verwendende Feld</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="131"/>
         <source>Revision</source>
         <translation>Revision</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="129"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="132"/>
         <source>Author</source>
         <translation>Autor</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="130"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="133"/>
         <source>Message</source>
         <translation>Nachricht</translation>
     </message>
@@ -30831,22 +30830,22 @@
         <translation>&lt;b&gt;Mercurial-Log-Fehler&lt;/b&gt;&lt;p&gt;Dies zeigt mögliche Fehlermeldungen des hg log-Befehls.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="208"/>
         <source>Added</source>
         <translation>Hinzugefügt</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="206"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="209"/>
         <source>Deleted</source>
         <translation>Gelöscht</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="207"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="210"/>
         <source>Modified</source>
         <translation>Modifiziert</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="842"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="847"/>
         <source>Mercurial Error</source>
         <translation>Mercurial-Fehler</translation>
     </message>
@@ -30866,7 +30865,7 @@
         <translation>Wähle den als Filter zu verwendenden Zweig</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="190"/>
         <source>All</source>
         <translation>Alle</translation>
     </message>
@@ -30881,48 +30880,48 @@
         <translation>Mercurial-Log (Ausgang)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="222"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="225"/>
         <source>Bookmarks</source>
         <translation>Lesezeichen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="117"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="120"/>
         <source>Press to refresh the list of changesets</source>
         <translation>Drücken, um die Liste der Änderungssätze zu erneuern</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="118"/>
         <source>&amp;Refresh</source>
         <translation>&amp;Erneuern</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="132"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="135"/>
         <source>Phase</source>
         <translation>Phase</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="274"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="277"/>
         <source>Change the phase of the selected revisions</source>
         <translation>Ändert die Phase der ausgewählten Revisionen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="276"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="279"/>
         <source>&lt;b&gt;Change Phase&lt;/b&gt;
 &lt;p&gt;This changes the phase of the selected revisions. The selected revisions have to have the same current phase.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Phase ändern&lt;/b&gt;&lt;p&gt;Dies ändert die Phase der ausgewählten Revisionen. Die ausgewählten Revisionen müssen sich in der gleichen Phase befinden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="272"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="275"/>
         <source>Change Phase</source>
         <translation>Phase ändern</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1997"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2016"/>
         <source>Copy Changesets</source>
         <translation>Änderungssätze kopieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2302"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2321"/>
         <source>The project should be reread. Do this now?</source>
         <translation>Das Projekt sollte neu gelesen werde. Jetzt durchführen?</translation>
     </message>
@@ -30932,42 +30931,42 @@
         <translation>Wähle eine Aktion aus dem Menü</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="266"/>
         <source>Copy the selected changesets to the current branch</source>
         <translation>Ausgewählte Änderungssätze in den aktuellen Zweig kopieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="281"/>
-        <source>Tag</source>
-        <translation>Marke setzen</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="284"/>
+        <source>Tag</source>
+        <translation>Marke setzen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="287"/>
         <source>Tag the selected revision</source>
         <translation>Ausgewählte Revision mit einer Marke versehen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2068"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2087"/>
         <source>Switch</source>
         <translation>Umschalten</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="294"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="297"/>
         <source>Switch the working directory to the selected revision</source>
         <translation>Schaltet das Arbeitsverzeichnis auf die ausgewählte Revision um</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="317"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="320"/>
         <source>Pull Large Files</source>
         <translation>Binärriesen herunterladen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="319"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="322"/>
         <source>Pull large files for selected revisions</source>
         <translation>Binärriesen der ausgewählten Revisionen herunterladen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1135"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1146"/>
         <source>{0} (large file)</source>
         <translation>{0} (Binärriese)</translation>
     </message>
@@ -30992,137 +30991,137 @@
         <translation>Drücken, um das nächste Vorkommen zu suchen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="128"/>
         <source>Find</source>
         <translation>Suchen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="126"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="129"/>
         <source>Filter</source>
         <translation>Filter</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="172"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Marken&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="175"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="178"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Lesezeichen&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2443"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2462"/>
         <source>Find Commit</source>
         <translation>Revision finden</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2443"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2462"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation>„{0}“ wurde nicht gefunden.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="134"/>
         <source>File</source>
         <translation>Datei</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="211"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="214"/>
         <source>Draft</source>
         <translation>Entwurf</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="212"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="215"/>
         <source>Public</source>
         <translation>Öffentlich</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="213"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="216"/>
         <source>Secret</source>
         <translation>Geheim</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2165"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2184"/>
         <source>Pull Changes</source>
         <translation>Änderungen herunterladen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="315"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="318"/>
         <source>Pull changes from a remote repository</source>
         <translation>Änderungen von einem entfernten Repository herunterladen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="324"/>
-        <source>Push Selected Changes</source>
-        <translation>Ausgewählte Änderungen hochladen</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="327"/>
-        <source>Push changes of the selected changeset and its ancestors to a remote repository</source>
-        <translation>Änderungen des ausgewählten Änderungssatzes und aller Vorgänger in ein entferntes Repository hochladen</translation>
+        <source>Push Selected Changes</source>
+        <translation>Ausgewählte Änderungen hochladen</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="330"/>
-        <source>Push All Changes</source>
-        <translation>Alle Änderungen hochladen</translation>
+        <source>Push changes of the selected changeset and its ancestors to a remote repository</source>
+        <translation>Änderungen des ausgewählten Änderungssatzes und aller Vorgänger in ein entferntes Repository hochladen</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="333"/>
+        <source>Push All Changes</source>
+        <translation>Alle Änderungen hochladen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="336"/>
         <source>Push all changes to a remote repository</source>
         <translation>Alle Änderungen an ein entferntes Repository hochladen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2211"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2230"/>
         <source>Strip Changesets</source>
         <translation>Änderungssätze löschen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="376"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="379"/>
         <source>Strip changesets from a repository</source>
         <translation>Änderungssätze aus einem Repository löschen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="299"/>
-        <source>Define Bookmark...</source>
-        <translation>Lesezeichen hinzufügen …</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="302"/>
+        <source>Define Bookmark...</source>
+        <translation>Lesezeichen hinzufügen …</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="305"/>
         <source>Bookmark the selected revision</source>
         <translation>Lesezeichen für die ausgewählte Revision erzeugen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="304"/>
-        <source>Move Bookmark...</source>
-        <translation>Lesezeichen verschieben …</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="307"/>
+        <source>Move Bookmark...</source>
+        <translation>Lesezeichen verschieben …</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="310"/>
         <source>Move bookmark to the selected revision</source>
         <translation>Verschiebe ein Lesezeichen zur ausgewählten Revision</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2091"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2110"/>
         <source>Define Bookmark</source>
         <translation>Lesezeichen hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2091"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2110"/>
         <source>Enter bookmark name for changeset &quot;{0}&quot;:</source>
         <translation>Gib einen Lesezeichennamen für den Änderungssatz &quot;{0}&quot; ein:</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2134"/>
         <source>Move Bookmark</source>
         <translation>Lesezeichen verschieben</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2134"/>
         <source>Select the bookmark to be moved  to changeset &quot;{0}&quot;:</source>
         <translation>Wähle ein Lesezeichen aus, das zum Änderungssatz &quot;{0}&quot; verschoben werden soll:</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2054"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2073"/>
         <source>Select bookmark to switch to (leave empty to use revision):</source>
         <translation>Wähle das Lesezeichen aus, auf das umgeschaltet werden soll (leer lassen, um Revision zu verwenden):</translation>
     </message>
@@ -31137,144 +31136,144 @@
         <translation>Drücken, um in der Historie nach unten zu gehen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="175"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Latest Tag&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;Letzte Marke&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="156"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branch&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;{4}&lt;tr&gt;&lt;td&gt;&lt;b&gt;Message&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation>&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Datum&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Autor&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Zweig&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;{4}&lt;tr&gt;&lt;td&gt;&lt;b&gt;Nachricht&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="163"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Vorgänger&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="166"/>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Vorgänger&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="169"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Children&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;Nachfolger&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="266"/>
-        <source>Merge with Changeset</source>
-        <translation>Mit Änderungssatz zusammenführen</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="269"/>
+        <source>Merge with Changeset</source>
+        <translation>Mit Änderungssatz zusammenführen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="272"/>
         <source>Merge the working directory with the selected changeset</source>
         <translation>Führe das Arbeitsverzeichnis mit dem gewählten Änderungssatz zusammen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="338"/>
-        <source>Create Changegroup</source>
-        <translation>Änderungsgruppe erzeugen</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="341"/>
+        <source>Create Changegroup</source>
+        <translation>Änderungsgruppe erzeugen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="344"/>
         <source>Create a changegroup file containing the selected changesets</source>
         <translation>Erzeuge eine Änderungsgruppendatei für die ausgewählten Änderungssätze</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="343"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="346"/>
         <source>&lt;b&gt;Create Changegroup&lt;/b&gt;
 &lt;p&gt;This creates a changegroup file containing the selected revisions. If no revisions are selected, all changesets will be bundled. If one revision is selected, it will be interpreted as the base revision. Otherwise the lowest revision will be used as the base revision and all other revision will be bundled. If the dialog is showing outgoing changesets, all selected changesets will be bundled.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Änderungsgruppe erzeugen&lt;/b&gt;
 &lt;p&gt;Dies erzeugt eine Änderungsgruppendatei für die ausgewählten Änderungssätze. Ist keine Änderung ausgewählt, werden alle in die Datei geschrieben. Ist ein Änderungssatz ausgewählt, so wird er als Basis verwendet. Ansonsten wird die kleinste, ausgewählte Revision als Basis verwendet und alle anderen werden in die Datei geschrieben. Zeigt der Dialog ausgehende Änderungssätze an, so werden alle ausgewählten in die Datei geschrieben.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2302"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2321"/>
         <source>Apply Changegroup</source>
         <translation>Änderungsgruppe anwenden</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="355"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="358"/>
         <source>Apply the currently viewed changegroup file</source>
         <translation>Wende die aktuell inspizierte Änderungsgruppendatei an</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="360"/>
-        <source>Sign Revisions</source>
-        <translation>Revisionen signieren</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="363"/>
+        <source>Sign Revisions</source>
+        <translation>Revisionen signieren</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="366"/>
         <source>Add a signature for the selected revisions</source>
         <translation>Den ausgewählten Revisionen eine Signatur hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="365"/>
-        <source>Verify Signatures</source>
-        <translation>Signaturen verifizieren</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="368"/>
+        <source>Verify Signatures</source>
+        <translation>Signaturen verifizieren</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="371"/>
         <source>Verify all signatures there may be for the selected revision</source>
         <translation>Alle Signaturen der ausgewählten Revision verifizieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="381"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="384"/>
         <source>Select All Entries</source>
         <translation>Alle Einträge auswählen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="383"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="386"/>
         <source>Deselect All Entries</source>
         <translation>Alle Einträge abwählen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1376"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1392"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation>Unterschiede nebeneinander zu Vorgänger {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1387"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1403"/>
         <source>&lt;a href=&quot;sbsdiff:{0}_{1}&quot;&gt;Side-by-Side Compare&lt;/a&gt;</source>
         <translation>&lt;a href=&quot;sbsdiff:{0}_{1}&quot;&gt;Unterschiede nebeneinander&lt;/a&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1523"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1539"/>
         <source>Pull Selected Changes</source>
         <translation>Ausgewählte Änderungen herunterladen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2487"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2506"/>
         <source>Differences</source>
         <translation>Unterschiede</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2497"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2516"/>
         <source>Differences to Parent {0}</source>
         <translation>Unterschiede zu Vorgänger {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2513"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2532"/>
         <source>Diff to Parent {0}{1}</source>
         <translation>Diff zu Vorgänger {0}{1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2538"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2557"/>
         <source>There is no difference.</source>
         <translation>Es gibt keinen Unterschied.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2680"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2699"/>
         <source>Save Diff</source>
         <translation>Diff speichern</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2648"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2667"/>
         <source>Patch Files (*.diff)</source>
         <translation>Patchdateien (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2665"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2684"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Patchdatei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2680"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2699"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Patchdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gespeichert werden.&lt;br&gt;Grund: {1}&lt;/p&gt;</translation>
     </message>
@@ -31284,7 +31283,7 @@
         <translation>&lt;a href=&quot;save:me&quot;&gt;Speichern&lt;/a&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2486"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2505"/>
         <source>Generating differences ...</source>
         <translation>Erzeuge Unterschiede ...</translation>
     </message>
@@ -31294,12 +31293,12 @@
         <translation>Mercurial-Log (vollständig)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="286"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="289"/>
         <source>Close Heads</source>
         <translation>Köpfe schließen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="289"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="292"/>
         <source>Close the selected heads</source>
         <translation>Schließe die ausgewählten Köpfe</translation>
     </message>
@@ -33338,22 +33337,22 @@
         <translation>Die Liste der Guards wurde verändert. Sollen die Änderungen angewendet werden?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="206"/>
         <source>Remove Guards</source>
         <translation>Guards löschen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="206"/>
         <source>Do you really want to remove the selected guards?</source>
         <translation>Sollen die ausgewählten Guards wirklich gelöscht werden?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="253"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="258"/>
         <source>Apply Guard Definitions</source>
         <translation>Guard Definitionen anlegen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="253"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="258"/>
         <source>&lt;p&gt;The defined guards could not be applied.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die definierten Guards konnten nicht angelegt werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
@@ -33414,7 +33413,7 @@
         <translation>Guards auswählen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesGuardsSelectionDialog.py" line="44"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesGuardsSelectionDialog.py" line="46"/>
         <source>Active Guards</source>
         <translation>Aktive Guards</translation>
     </message>
@@ -33427,7 +33426,7 @@
         <translation>Änderungsbeschreibung</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py" line="118"/>
         <source>Error: </source>
         <translation>Fehler: </translation>
     </message>
@@ -33497,32 +33496,32 @@
         <translation>Fehler</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="138"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="145"/>
         <source>no patches found</source>
         <translation>keine Patches gefunden</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="43"/>
-        <source>applied</source>
-        <translation>angewandt</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="44"/>
-        <source>not applied</source>
-        <translation>nicht angewandt</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="45"/>
-        <source>guarded</source>
-        <translation>geschützt</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="46"/>
+        <source>applied</source>
+        <translation>angewandt</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="47"/>
+        <source>not applied</source>
+        <translation>nicht angewandt</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="48"/>
+        <source>guarded</source>
+        <translation>geschützt</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="49"/>
         <source>missing</source>
         <translation>fehlt</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="193"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="205"/>
         <source>unknown</source>
         <translation>unbekannt</translation>
     </message>
@@ -33676,12 +33675,12 @@
         <translation>Dies zeigt eine Liste verfügbarere Patchschlangen (aktive Patchschlange fett)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="67"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="68"/>
         <source>Refresh</source>
         <translation>Erneuern</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="69"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="70"/>
         <source>Press to refresh the queues list</source>
         <translation>Drücken, um die Liste der Patchschlangen zu erneuern</translation>
     </message>
@@ -34400,32 +34399,32 @@
         <translation>Fehler</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="49"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="52"/>
         <source>&amp;Refresh</source>
         <translation>&amp;Erneuern</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="51"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="54"/>
         <source>Press to refresh the list of shelves</source>
         <translation>Drücken, um die Liste der Ablagen zu erneuern</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="60"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="63"/>
         <source>Restore selected shelve</source>
         <translation>Ausgewählte Ablage wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="62"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="65"/>
         <source>Delete selected shelves</source>
         <translation>Ausgewählte Ablagen löschen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="64"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="67"/>
         <source>Delete all shelves</source>
         <translation>Alle Ablagen löschen</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="266"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="280"/>
         <source>%n file(s) changed</source>
         <translation>
             <numerusform>%n Datei geändert</numerusform>
@@ -34433,7 +34432,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="268"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="282"/>
         <source>%n line(s) inserted</source>
         <translation>
             <numerusform>%n Zeile eingefügt</numerusform>
@@ -34441,7 +34440,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="270"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="284"/>
         <source>%n line(s) deleted</source>
         <translation>
             <numerusform>%n Zeile gelöscht</numerusform>
@@ -34523,7 +34522,7 @@
 <context>
     <name>HgStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="310"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="314"/>
         <source>Mercurial Status</source>
         <translation>Mercurial-Status</translation>
     </message>
@@ -34560,82 +34559,82 @@
         <translation>Drücken, um die Statusanzeige zu erneuern</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="124"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="126"/>
         <source>Commit the selected changes</source>
         <translation>Ausgewählte Änderungen einpflegen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="190"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="192"/>
         <source>Adjust column sizes</source>
         <translation>Spaltengrößen anpassen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="94"/>
-        <source>added</source>
-        <translation>hinzugefügt</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="97"/>
-        <source>modified</source>
-        <translation>modifiziert</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="98"/>
-        <source>removed</source>
-        <translation>gelöscht</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="99"/>
-        <source>not tracked</source>
-        <translation>nicht versioniert</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="95"/>
-        <source>normal</source>
-        <translation>normal</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="96"/>
-        <source>ignored</source>
-        <translation>ignoriert</translation>
+        <source>added</source>
+        <translation>hinzugefügt</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="99"/>
+        <source>modified</source>
+        <translation>modifiziert</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="100"/>
+        <source>removed</source>
+        <translation>gelöscht</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="101"/>
+        <source>not tracked</source>
+        <translation>nicht versioniert</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="97"/>
+        <source>normal</source>
+        <translation>normal</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="98"/>
+        <source>ignored</source>
+        <translation>ignoriert</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="102"/>
         <source>missing</source>
         <translation>fehlt</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="494"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="506"/>
         <source>Commit</source>
         <translation>Einpflegen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="660"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="672"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation>Es sind keine nicht eingepflegten Änderungen vorhanden/ausgewählt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="558"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="570"/>
         <source>Add</source>
         <translation>Hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="558"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="570"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation>Es sind keine unversionierten Einträge vorhanden/ausgewählt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="622"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="634"/>
         <source>Revert</source>
         <translation>Rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="581"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="593"/>
         <source>Remove</source>
         <translation>Entfernen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="622"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="634"/>
         <source>There are no missing entries available/selected.</source>
         <translation>Es sind keine fehlenden Einträge vorhanden/ausgewählt.</translation>
     </message>
@@ -34650,102 +34649,102 @@
         <translation>Wähle den Status anzuzeigender Einträge</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="174"/>
         <source>Restore missing</source>
         <translation>Fehlende wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="416"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="428"/>
         <source>all</source>
         <translation>alle</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="640"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="652"/>
         <source>Differences</source>
         <translation>Unterschiede</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="494"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="506"/>
         <source>There are no entries selected to be committed.</source>
         <translation>Es sind keine Einträge zum Einpflegen ausgewählt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="125"/>
-        <source>Select all for commit</source>
-        <translation>Alle zum Einpflegen auswählen</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="307"/>
-        <source>Mercurial Queue Repository Status</source>
-        <translation>Mercurial Status des Queue-Repositories</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="667"/>
-        <source>Side-by-Side Diff</source>
-        <translation>Unterschiede nebeneinander</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="667"/>
-        <source>Only one file with uncommitted changes must be selected.</source>
-        <translation>Es darf nur eine Datei ausgewählt werden.</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="135"/>
-        <source>Add as Large Files</source>
-        <translation>Als Binärriesen hinzufügen</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="140"/>
-        <source>Add as Normal Files</source>
-        <translation>Als Normale Dateien hinzufügen</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="168"/>
-        <source>Forget missing</source>
-        <translation>Fehlende vergessen</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="127"/>
-        <source>Unselect all from commit</source>
-        <translation>Alle vom Einpflegen abwählen</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="134"/>
-        <source>Add the selected files</source>
-        <translation>Fügt die ausgewählten Dateien hinzu</translation>
+        <source>Select all for commit</source>
+        <translation>Alle zum Einpflegen auswählen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="311"/>
+        <source>Mercurial Queue Repository Status</source>
+        <translation>Mercurial Status des Queue-Repositories</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="679"/>
+        <source>Side-by-Side Diff</source>
+        <translation>Unterschiede nebeneinander</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="679"/>
+        <source>Only one file with uncommitted changes must be selected.</source>
+        <translation>Es darf nur eine Datei ausgewählt werden.</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="137"/>
-        <source>Add the selected files as a large files using the &apos;Large Files&apos; extension</source>
-        <translation>Fügt die ausgewählten Dateien als Binärriesen mittels der &apos;Large Files&apos; Erweiterung hinzu</translation>
+        <source>Add as Large Files</source>
+        <translation>Als Binärriesen hinzufügen</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="142"/>
+        <source>Add as Normal Files</source>
+        <translation>Als Normale Dateien hinzufügen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="170"/>
+        <source>Forget missing</source>
+        <translation>Fehlende vergessen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="129"/>
+        <source>Unselect all from commit</source>
+        <translation>Alle vom Einpflegen abwählen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="136"/>
+        <source>Add the selected files</source>
+        <translation>Fügt die ausgewählten Dateien hinzu</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="139"/>
+        <source>Add the selected files as a large files using the &apos;Large Files&apos; extension</source>
+        <translation>Fügt die ausgewählten Dateien als Binärriesen mittels der &apos;Large Files&apos; Erweiterung hinzu</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="144"/>
         <source>Add the selected files as a normal files using the &apos;Large Files&apos; extension</source>
         <translation>Fügt die ausgewählten Dateien als normale Dateien mittels der &apos;Large Files&apos; Erweiterung hinzu</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="150"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="152"/>
         <source>Shows the differences of the selected entry in a separate dialog</source>
         <translation>Zeigt die Unterschiede des ausgewählten Eintrages in einem separaten Dialog an</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="153"/>
-        <source>Differences Side-By-Side</source>
-        <translation>Unterschiede nebeneinander</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="155"/>
+        <source>Differences Side-By-Side</source>
+        <translation>Unterschiede nebeneinander</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="157"/>
         <source>Shows the differences of the selected entry side-by-side in a separate dialog</source>
         <translation>Zeigt die Unterschiede des ausgewählten Eintrages nebeneinander in einem separaten Dialog an</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="163"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="165"/>
         <source>Reverts the changes of the selected files</source>
         <translation>Macht die Änderungen an den ausgewählten Dateien rückgängig</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="172"/>
         <source>Forgets about the selected missing files</source>
         <translation>Die ausgewählten fehlenden Dateien vergessen</translation>
     </message>
@@ -34755,37 +34754,37 @@
         <translation>Wähle eine Aktion aus dem Menü</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="174"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="176"/>
         <source>Restores the selected missing files</source>
         <translation>Stellt die ausgewählten, fehlenden Dateien wieder her</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="194"/>
         <source>Adjusts the width of all columns to their contents</source>
         <translation>Passt die Spaltenbreiten aller Spalten an ihren Inhalt an</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="179"/>
-        <source>Commit Merge</source>
-        <translation>Merge einpflegen</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="181"/>
-        <source>Commit all the merged changes.</source>
-        <translation>Alle zusammengeführten Änderungen einpflegen.</translation>
+        <source>Commit Merge</source>
+        <translation>Merge einpflegen</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="183"/>
-        <source>Abort Merge</source>
-        <translation>Zusammenführung abbrechen</translation>
+        <source>Commit all the merged changes.</source>
+        <translation>Alle zusammengeführten Änderungen einpflegen.</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="185"/>
+        <source>Abort Merge</source>
+        <translation>Zusammenführung abbrechen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="187"/>
         <source>Abort an uncommitted merge and lose all changes</source>
         <translation>Bricht eine nicht eingepflegte Zusammenführung unter Verlust aller Änderungen ab</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="761"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="779"/>
         <source>Merge</source>
         <translation>Zusammenführen</translation>
     </message>
@@ -34940,152 +34939,152 @@
         <translation>Drücken, um die Informationsanzeige zu erneuern</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="234"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="236"/>
         <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;Vorgänger&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="238"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="240"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Marken&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="242"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="244"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Message&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;Änderungsbeschreibung&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="248"/>
-        <source>empty repository</source>
-        <translation>leeres Repository</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="250"/>
+        <source>empty repository</source>
+        <translation>leeres Repository</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="252"/>
         <source>no revision checked out</source>
         <translation>keine Revision ausgecheckt</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="251"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="253"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Remarks&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;Anmerkungen&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="255"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="257"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branch&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;Zweig&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="265"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Lesezeichen&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="270"/>
-        <source>{0} modified</source>
-        <translation>{0} modifiziert</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="272"/>
-        <source>{0} added</source>
-        <translation>{0} hinzugefügt</translation>
+        <source>{0} modified</source>
+        <translation>{0} modifiziert</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="274"/>
-        <source>{0} removed</source>
-        <translation>{0} entfernt</translation>
+        <source>{0} added</source>
+        <translation>{0} hinzugefügt</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="276"/>
-        <source>{0} renamed</source>
-        <translation>{0} umbenannt</translation>
+        <source>{0} removed</source>
+        <translation>{0} entfernt</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="278"/>
-        <source>{0} copied</source>
-        <translation>{0} kopiert</translation>
+        <source>{0} renamed</source>
+        <translation>{0} umbenannt</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="280"/>
-        <source>{0} deleted</source>
-        <translation>{0} gelöscht</translation>
+        <source>{0} copied</source>
+        <translation>{0} kopiert</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="282"/>
-        <source>{0} unknown</source>
-        <translation>{0} unbekannt</translation>
+        <source>{0} deleted</source>
+        <translation>{0} gelöscht</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="284"/>
-        <source>{0} ignored</source>
-        <translation>{0} ignoriert</translation>
+        <source>{0} unknown</source>
+        <translation>{0} unbekannt</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="286"/>
+        <source>{0} ignored</source>
+        <translation>{0} ignoriert</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="288"/>
         <source>{0} unresolved</source>
         <translation>{0} nicht aufgelöst</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="289"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="291"/>
         <source>{0} subrepos</source>
         <translation>{0} Subrepositories</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="292"/>
-        <source>Merge needed</source>
-        <translation>Zusammenführung notwendig</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="294"/>
-        <source>New Branch</source>
-        <translation>Neuer Zweig</translation>
+        <source>Merge needed</source>
+        <translation>Zusammenführung notwendig</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="296"/>
-        <source>Head is closed</source>
-        <translation>Kopf ist geschlossen</translation>
+        <source>New Branch</source>
+        <translation>Neuer Zweig</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="298"/>
-        <source>No commit required</source>
-        <translation>Kein Einpflegen erforderlich</translation>
+        <source>Head is closed</source>
+        <translation>Kopf ist geschlossen</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="300"/>
+        <source>No commit required</source>
+        <translation>Kein Einpflegen erforderlich</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="302"/>
         <source>New Branch Head</source>
         <translation>Neuer Zweigkopf</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="301"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="303"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Status&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;Änderungsstatus&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="306"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="308"/>
         <source>current</source>
         <translation>aktuell</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="321"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="323"/>
         <source>unknown status</source>
         <translation>unbekannter Status</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="322"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="324"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Update Status&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;Aktualisierungsstatus&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="327"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="329"/>
         <source>synched</source>
         <translation>synchron</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="331"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="333"/>
         <source>1 or more incoming changesets</source>
         <translation>1 oder mehr eingehende Änderungssätze</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="335"/>
         <source>%n outgoing changeset(s)</source>
         <translation>
             <numerusform>%n ausgehender Änderungssatz</numerusform>
@@ -35093,42 +35092,42 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="342"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="344"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Remote Status&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;Entfernter Status&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="349"/>
         <source>empty queue</source>
         <translation>leere Patchschlange</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="351"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="353"/>
         <source>{0} applied</source>
         <translation>{0} angewendet</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="354"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="356"/>
         <source>{0} unapplied</source>
         <translation>{0} nicht angewendet</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="357"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="359"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Queues Status&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;Patchschlangenstatus&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="371"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="373"/>
         <source>&lt;p&gt;No status information available.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Es sind keine Statusinformationen vorhanden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="230"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="232"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Vorgänger #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="308"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="310"/>
         <source>%n new changeset(s)&lt;br/&gt;Update required</source>
         <translation>
             <numerusform>%n neuer Änderungssatz&lt;br/&gt;Aktualisierung erforderlich</numerusform>
@@ -35136,7 +35135,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="312"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="314"/>
         <source>%n new changeset(s)</source>
         <translation>
             <numerusform>%n neuer Änderungssatz</numerusform>
@@ -35144,7 +35143,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="314"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="316"/>
         <source>%n branch head(s)</source>
         <translation>
             <numerusform>%n Zweigkopf</numerusform>
@@ -35152,13 +35151,13 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="316"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="318"/>
         <source>{0}&lt;br/&gt;{1}&lt;br/&gt;Merge required</source>
         <comment>0 is changesets, 1 is branch heads</comment>
         <translation>{0}&lt;br/&gt;{1}&lt;br/&gt;Zusammenführung erforderlich</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="336"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="338"/>
         <source>%n incoming bookmark(s)</source>
         <translation>
             <numerusform>%n eingehendes Lesezeichen</numerusform>
@@ -35166,7 +35165,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="339"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="341"/>
         <source>%n outgoing bookmark(s)</source>
         <translation>
             <numerusform>%n ausgehendes Lesezeichen</numerusform>
@@ -35174,12 +35173,12 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="362"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="364"/>
         <source>No files to upload</source>
         <translation>Keine Dateien hochzuladen</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="364"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="366"/>
         <source>%n file(s) to upload</source>
         <translation>
             <numerusform>%n Datei hochzuladen</numerusform>
@@ -35187,7 +35186,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="368"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Large Files&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;Binärriesen&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
@@ -35239,72 +35238,72 @@
         <translation>Fehler</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="90"/>
         <source>Mercurial Branches List</source>
         <translation>Mercurial-Zweigliste</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="91"/>
         <source>Status</source>
         <translation>Status</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="200"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="211"/>
         <source>active</source>
         <translation>aktiv</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="216"/>
         <source>yes</source>
         <translation>ja</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="42"/>
-        <source>&amp;Refresh</source>
-        <translation>&amp;Erneuern</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="44"/>
+        <source>&amp;Refresh</source>
+        <translation>&amp;Erneuern</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="46"/>
         <source>Press to refresh the list</source>
         <translation>Drücken, um die Liste zu aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="278"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="292"/>
         <source>Switch to</source>
         <translation>Umschalten</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="347"/>
         <source>Close Branch</source>
         <translation>Zweig schließen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="321"/>
         <source>Switch</source>
         <translation>Umschalten</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="321"/>
         <source>The project should be reread. Do this now?</source>
         <translation>Das Projekt sollte neu gelesen werde. Jetzt durchführen?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="326"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="340"/>
         <source>The branch &quot;default&quot; cannot be closed. Aborting...</source>
         <translation>Der Zweig &quot;default&quot; kann nicht geschlossen werden. Abbruch...</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="347"/>
         <source>&lt;p&gt;Shall the branch &lt;b&gt;{0}&lt;/b&gt; really be closed?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soll der Zweig &lt;b&gt;{0}&lt;/b&gt; wirklich geschlossen werden?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="380"/>
         <source>Close Branches</source>
         <translation>Zweige schließen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="380"/>
         <source>Do you really want to close all listed branches?</source>
         <translation>Sollen wirklich alle aufgeführten Zweige geschlossen werden?</translation>
     </message>
@@ -36075,7 +36074,7 @@
         <translation>Drücken, um die ausgwählten Einträge zu löschen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="122"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="123"/>
         <source>&amp;Remove</source>
         <translation>&amp;Entfernen</translation>
     </message>
@@ -36090,32 +36089,32 @@
         <translation>&amp;Alle entfernen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="105"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="106"/>
         <source>&amp;Open</source>
         <translation>Ö&amp;ffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="108"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="109"/>
         <source>Open in New &amp;Tab</source>
         <translation>In neuem &amp;Register öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="121"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="122"/>
         <source>&amp;Copy</source>
         <translation>&amp;Kopieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="111"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="112"/>
         <source>Open in New &amp;Background Tab</source>
         <translation>In neuem &amp;Hintergrundregister öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="114"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="115"/>
         <source>Open in New &amp;Window</source>
         <translation>In neuem &amp;Fenster öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="117"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="118"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation>In neuem &amp;privaten Fenster öffnen</translation>
     </message>
@@ -36181,12 +36180,12 @@
         <translation>Geschlossene Tabs</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryMenu.py" line="447"/>
+        <location filename="../WebBrowser/History/HistoryMenu.py" line="448"/>
         <source>Restore All Closed Tabs</source>
         <translation>Alle geschlossenen Tabs wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryMenu.py" line="450"/>
+        <location filename="../WebBrowser/History/HistoryMenu.py" line="451"/>
         <source>Clear List</source>
         <translation>Liste löschen</translation>
     </message>
@@ -36212,12 +36211,12 @@
 <context>
     <name>HistoryTreeModel</name>
     <message>
-        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="64"/>
+        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="65"/>
         <source>Earlier Today</source>
         <translation>Heute</translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="67"/>
+        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="68"/>
         <source>%n item(s)</source>
         <translation>
             <numerusform>%n Eintrag</numerusform>
@@ -36330,12 +36329,12 @@
 <context>
     <name>IbmWatsonEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="251"/>
+        <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="251"/>
+        <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>
@@ -36350,12 +36349,12 @@
         <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="243"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="244"/>
         <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="231"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="232"/>
         <source>IBM Watson: The server sent an error indication.
  Error: {0}</source>
         <translation>IBM Watson: Der Server sendete eine Fehlermeldung.
@@ -36365,102 +36364,102 @@
 <context>
     <name>IconEditorGrid</name>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="208"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="211"/>
         <source>Set Pixel</source>
         <translation>Pixel setzen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="209"/>
-        <source>Erase Pixel</source>
-        <translation>Pixel löschen</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="210"/>
-        <source>Draw Line</source>
-        <translation>Linie zeichnen</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="211"/>
-        <source>Draw Rectangle</source>
-        <translation>Rechteck zeichnen</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="212"/>
-        <source>Draw Filled Rectangle</source>
-        <translation>Gefülltes Rechteck zeichnen</translation>
+        <source>Erase Pixel</source>
+        <translation>Pixel löschen</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="213"/>
-        <source>Draw Circle</source>
-        <translation>Kreis zeichnen</translation>
+        <source>Draw Line</source>
+        <translation>Linie zeichnen</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="214"/>
-        <source>Draw Filled Circle</source>
-        <translation>Gefüllten Kreis zeichnen</translation>
+        <source>Draw Rectangle</source>
+        <translation>Rechteck zeichnen</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="215"/>
-        <source>Draw Ellipse</source>
-        <translation>Ellipse zeichnen</translation>
+        <source>Draw Filled Rectangle</source>
+        <translation>Gefülltes Rechteck zeichnen</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="216"/>
-        <source>Draw Filled Ellipse</source>
-        <translation>Gefüllte Ellipse zeichnen</translation>
+        <source>Draw Circle</source>
+        <translation>Kreis zeichnen</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="217"/>
+        <source>Draw Filled Circle</source>
+        <translation>Gefüllten Kreis zeichnen</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="218"/>
+        <source>Draw Ellipse</source>
+        <translation>Ellipse zeichnen</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="219"/>
+        <source>Draw Filled Ellipse</source>
+        <translation>Gefüllte Ellipse zeichnen</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="220"/>
         <source>Fill Region</source>
         <translation>Bereich füllen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="846"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="853"/>
         <source>Cut Selection</source>
         <translation>Auswahl ausschneiden</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="905"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="912"/>
         <source>Paste</source>
         <translation>Einfügen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="905"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="912"/>
         <source>&lt;p&gt;The clipboard image is larger than the current image.&lt;br/&gt;Paste as new image?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Bild der zwischenablage ist größer als das aktuelle Bild.&lt;br/&gt;Als neues Bild einfügen?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="918"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="925"/>
         <source>Paste Clipboard</source>
         <translation>Zwischenablage einfügen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="936"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="943"/>
         <source>Pasting Image</source>
         <translation>Einfügen des Bildes</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="936"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="943"/>
         <source>Invalid image data in clipboard.</source>
         <translation>Die Zwischenablage enthält ungültige Bilddaten.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="947"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="954"/>
         <source>Paste Clipboard as New Image</source>
         <translation>Zwischenablage als neues Bild einfügen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="976"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="983"/>
         <source>Clear Image</source>
         <translation>Bild löschen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="996"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="1003"/>
         <source>Resize Image</source>
         <translation>Bildgröße ändern</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="1023"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="1030"/>
         <source>Convert to Grayscale</source>
         <translation>In Grauwerte umwandeln</translation>
     </message>
@@ -36468,57 +36467,57 @@
 <context>
     <name>IconEditorPalette</name>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="48"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="49"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This is a 1:1 preview of the current icon.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vorschau&lt;/b&gt;&lt;p&gt;Dies ist eine 1:1-Vorschau des aktuellen Symbols.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="58"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="60"/>
         <source>&lt;b&gt;Current Color&lt;/b&gt;&lt;p&gt;This is the currently selected color used for drawing.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aktuelle Farbe&lt;/b&gt;&lt;p&gt;Dies ist die aktuell zum Zeichnen verwendete Farbe.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="66"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="69"/>
         <source>&lt;b&gt;Current Color Value&lt;/b&gt;&lt;p&gt;This is the currently selected color value used for drawing.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aktueller Farbwert&lt;/b&gt;&lt;p&gt;Dies ist der aktuell zum Zeichnen verwendete Farbwert.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="73"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="76"/>
         <source>Select Color</source>
         <translation>Farbe auswählen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="74"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="77"/>
         <source>&lt;b&gt;Select Color&lt;/b&gt;&lt;p&gt;Select the current drawing color via a color selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Farbe auswählen&lt;/b&gt;&lt;p&gt;Wähle die aktuelle Zeichenfarbe über einen Farbauswahldialog aus.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="84"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="87"/>
         <source>&lt;b&gt;Select alpha channel value&lt;/b&gt;&lt;p&gt;Select the value for the alpha channel of the current color.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Wähle Werte für Transparenz&lt;/b&gt;&lt;p&gt;Wähle den Wert für die Transparent der aktuellen Zeichenfarbe.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="92"/>
-        <source>Compositing</source>
-        <translation>Compositing</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorPalette.py" line="95"/>
+        <source>Compositing</source>
+        <translation>Compositing</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorPalette.py" line="98"/>
         <source>Replace</source>
         <translation>Ersetzen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="97"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="100"/>
         <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Replace the existing pixel with a new color.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ersetzen&lt;/b&gt;&lt;p&gt;Ersetzt das existierend Pixel mit einer neuen Farbe.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="103"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="106"/>
         <source>Blend</source>
         <translation>Überblenden</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="105"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="108"/>
         <source>&lt;b&gt;Blend&lt;/b&gt;&lt;p&gt;Blend the new color over the existing pixel.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Überblenden&lt;/b&gt;&lt;p&gt;Überblendet das existierend Pixel mit einer neuen Farbe.&lt;/p&gt;</translation>
     </message>
@@ -36526,1092 +36525,1092 @@
 <context>
     <name>IconEditorWindow</name>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="125"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="126"/>
         <source>Windows Bitmap File (*.bmp)</source>
         <translation>Windows-Bitmap-Datei (*.bmp)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="128"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="129"/>
         <source>Graphic Interchange Format File (*.gif)</source>
         <translation>Graphic-Interchange-Format-Datei (*.gif)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="130"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="131"/>
         <source>Windows Icon File (*.ico)</source>
         <translation>Windows Icon-Datei (*.ico)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="132"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="133"/>
         <source>JPEG File (*.jpg)</source>
         <translation>JPEG-Datei (*.jpg)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="135"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="136"/>
         <source>Portable Bitmap File (*.pbm)</source>
         <translation>Portable-Bitmap-Datei (*.pbm)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="137"/>
-        <source>Portable Graymap File (*.pgm)</source>
-        <translation>Portable-Graymap-Datei (*.pgm)</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="138"/>
-        <source>Portable Network Graphics File (*.png)</source>
-        <translation>Portable-Network-Graphics-Datei (*.png)</translation>
+        <source>Portable Graymap File (*.pgm)</source>
+        <translation>Portable-Graymap-Datei (*.pgm)</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="139"/>
+        <source>Portable Network Graphics File (*.png)</source>
+        <translation>Portable-Network-Graphics-Datei (*.png)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="140"/>
         <source>Portable Pixmap File (*.ppm)</source>
         <translation>Portable-Pixmap-Datei (*.ppm)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="141"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="142"/>
         <source>Scalable Vector Graphics File (*.svg)</source>
         <translation>Scalable-Vector-Graphics-Datei (*.svg)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="145"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="146"/>
         <source>TIFF File (*.tif)</source>
         <translation>TIFF-Datei (*.tif)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="149"/>
-        <source>X11 Bitmap File (*.xbm)</source>
-        <translation>X11-Bitmap-Datei (*.xbm)</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="150"/>
+        <source>X11 Bitmap File (*.xbm)</source>
+        <translation>X11-Bitmap-Datei (*.xbm)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="151"/>
         <source>X11 Pixmap File (*.xpm)</source>
         <translation>X11-Pixmap-Datei (*.xpm)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="161"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="162"/>
         <source>All Files (*)</source>
         <translation>Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
         <source>New</source>
         <translation>Neu</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
         <source>&amp;New</source>
         <translation>&amp;Neu</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="199"/>
-        <source>Create a new icon</source>
-        <translation>Erzeuge ein neues Icon</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="200"/>
+        <source>Create a new icon</source>
+        <translation>Erzeuge ein neues Icon</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="201"/>
         <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;This creates a new icon.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neu&lt;/b&gt;&lt;p&gt;Dies erzeugt ein neues Icon.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="207"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="208"/>
         <source>New Window</source>
         <translation>Neues Fenster</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="207"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="208"/>
         <source>New &amp;Window</source>
         <translation>Neues &amp;Fenster</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="212"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="213"/>
         <source>Open a new icon editor window</source>
         <translation>Öffne ein neues Icon-Editor-Fenster</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="214"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="215"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new icon editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neues Fenster&lt;/b&gt;&lt;p&gt;Dies öffnet ein neues Icon-Editor-Fenster.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
         <source>Open</source>
         <translation>Öffnen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
         <source>&amp;Open...</source>
         <translation>&amp;Öffnen...</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="227"/>
-        <source>Open an icon file for editing</source>
-        <translation>Öffne eine Icon-Datei zum Editieren</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="228"/>
+        <source>Open an icon file for editing</source>
+        <translation>Öffne eine Icon-Datei zum Editieren</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="229"/>
         <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new icon file for editing. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Datei öffnen&lt;/b&gt;&lt;p&gt;Dies öffnet eine neue Icon-Datei zum editieren. Es wird zunächst ein Dateiauswahldialog angezeigt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
         <source>Save</source>
         <translation>Speichern</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
         <source>&amp;Save</source>
         <translation>&amp;Speichern</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation>Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="242"/>
-        <source>Save the current icon</source>
-        <translation>Speichert das aktuelle Icon</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="243"/>
+        <source>Save the current icon</source>
+        <translation>Speichert das aktuelle Icon</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="244"/>
         <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of the icon editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Datei speichern&lt;/b&gt;&lt;p&gt;Dies speichert den Inhalt des Icon-Editor-Fensters.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
         <source>Save As</source>
         <translation>Speichern unter</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
         <source>Save &amp;As...</source>
         <translation>Speichern &amp;unter...</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="256"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="257"/>
         <source>Save the current icon to a new file</source>
         <translation>Speichert das aktuelle Icon in eine neue Datei</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="258"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="259"/>
         <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current icon to a new file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Speichern unter&lt;/b&gt;&lt;p&gt;Dies speichert das aktuelle Icon in eine Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
         <source>Close</source>
         <translation>Schließen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
         <source>&amp;Close</source>
         <translation>Schl&amp;ießen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="271"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="272"/>
         <source>Close the current icon editor window</source>
         <translation>Schließt das aktuelle Icon-Editor-Fenster</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="273"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="274"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current icon editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Schließen&lt;/b&gt;&lt;p&gt;Schließt das aktuelle Icon-Editor-Fenster.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="280"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="281"/>
         <source>Close All</source>
         <translation>Alle schließen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="280"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="281"/>
         <source>Close &amp;All</source>
         <translation>Alle &amp;schließen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="284"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="285"/>
         <source>Close all icon editor windows</source>
         <translation>Schließt alle Icon-Editor-Fenster</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="286"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="287"/>
         <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all icon editor windows except the first one.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Alle schließen&lt;/b&gt;&lt;p&gt;Schließt alle Icon-Editor-Fenster mit Ausnahme des ersten.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
         <source>Quit</source>
         <translation>Beenden</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
         <source>&amp;Quit</source>
         <translation>B&amp;eenden</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="312"/>
-        <source>Quit the icon editor</source>
-        <translation>Beendet den Icon-Editor</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="313"/>
+        <source>Quit the icon editor</source>
+        <translation>Beendet den Icon-Editor</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="314"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the icon editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Beenden&lt;/b&gt;&lt;p&gt;Beendet den Icon-Editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>Undo</source>
         <translation>Rückgängig</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>&amp;Undo</source>
         <translation>&amp;Rückgängig</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="332"/>
-        <source>Undo the last change</source>
-        <translation>Die letzte Änderung rückgängig machen</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="333"/>
+        <source>Undo the last change</source>
+        <translation>Die letzte Änderung rückgängig machen</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="334"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rückgängig&lt;/b&gt;&lt;p&gt;Dies macht die letzte Änderung rückgängig.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
         <source>Redo</source>
         <translation>Wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
         <source>&amp;Redo</source>
         <translation>Wieder&amp;herstellen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="346"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="347"/>
         <source>Redo the last change</source>
         <translation>Die letzte Änderung wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="347"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="348"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Wiederherstellen&lt;/b&gt;&lt;p&gt;Dies stellt die letzte Änderung wieder her.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Cut</source>
         <translation>Ausschneiden</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Cu&amp;t</source>
         <translation>&amp;Ausschneiden</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="361"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="362"/>
         <source>Cut the selection</source>
         <translation>Schneidet die Auswahl aus</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="362"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="363"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ausschneiden&lt;/b&gt;&lt;p&gt;Dies schneidet den ausgewählten Bildbereich aus.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>Copy</source>
         <translation>Kopieren</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>&amp;Copy</source>
         <translation>&amp;Kopieren</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Einfg</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="376"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="377"/>
         <source>Copy the selection</source>
         <translation>Kopiert die Auswahl</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="377"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="378"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kopieren&lt;/b&gt;&lt;p&gt;Dies kopiert den ausgewählten Bildbereich in die Zwischenablage.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>Paste</source>
         <translation>Einfügen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>&amp;Paste</source>
         <translation>Ein&amp;fügen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="391"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="392"/>
         <source>Paste the clipboard image</source>
         <translation>Fügt das Bild der Zwischenablage ein</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="392"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="393"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Einfügen&lt;/b&gt;&lt;p&gt;Fügt das Bild der Zwischenablage ein.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="399"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
         <source>Paste as New</source>
         <translation>Als Neu einfügen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="399"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
         <source>Paste as &amp;New</source>
         <translation>Als &amp;Neu einfügen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="403"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="404"/>
         <source>Paste the clipboard image replacing the current one</source>
         <translation>Fügt das Bild der Zwischenablage ein und ersetzt das aktuelle Bild</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="405"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="406"/>
         <source>&lt;b&gt;Paste as New&lt;/b&gt;&lt;p&gt;Paste the clipboard image replacing the current one.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Als Neu einfügen&lt;/b&gt;&lt;p&gt;Fügt das Bild der Zwischenablage ein und ersetzt das aktuelle Bild.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
         <source>Clear</source>
         <translation>Löschen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
         <source>Cl&amp;ear</source>
         <translation>&amp;Löschen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="419"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="420"/>
         <source>Clear the icon image</source>
         <translation>Löscht das Icon</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="420"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="421"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Clear the icon image and set it to be completely transparent.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Löschen&lt;/b&gt;&lt;p&gt;Löscht das Icon und setzt es auf vollständig transparent.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
         <source>Select All</source>
         <translation>Alles auswählen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
         <source>&amp;Select All</source>
         <translation>&amp;Alles auswählen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation>Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="434"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="435"/>
         <source>Select the complete icon image</source>
         <translation>Wählt das komplette Icon aus</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="436"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="437"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Selects the complete icon image.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Alles auswählen&lt;/b&gt;&lt;p&gt;Wählt das komplette Icon aus.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="444"/>
         <source>Change Size</source>
         <translation>Größe ändern</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="444"/>
         <source>Change Si&amp;ze...</source>
         <translation>&amp;Größe ändern...</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="449"/>
-        <source>Change the icon size</source>
-        <translation>Ändert die Größe des Icons</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="450"/>
+        <source>Change the icon size</source>
+        <translation>Ändert die Größe des Icons</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="451"/>
         <source>&lt;b&gt;Change Size...&lt;/b&gt;&lt;p&gt;Changes the icon size.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Größe ändern...&lt;/b&gt;&lt;p&gt;Ändert die Größe des Icons.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="457"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="458"/>
         <source>Grayscale</source>
         <translation>Graustufen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="457"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="458"/>
         <source>&amp;Grayscale</source>
         <translation>Gra&amp;ustufen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="463"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="464"/>
         <source>Change the icon to grayscale</source>
         <translation>Konvertiert das Icon in Graustufen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="465"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="466"/>
         <source>&lt;b&gt;Grayscale&lt;/b&gt;&lt;p&gt;Changes the icon to grayscale.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Graustufen&lt;/b&gt;&lt;p&gt;Konvertiert das Icon in Graustufen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
         <source>Zoom in</source>
         <translation>Vergrößern</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
         <source>Zoom &amp;in</source>
         <translation>Ver&amp;größern</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="500"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="501"/>
         <source>Zoom in on the icon</source>
         <translation>Iconansicht vergrößern</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="501"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="502"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the icon. This makes the grid bigger.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vergrößern&lt;/b&gt;&lt;p&gt;Das angezeigte Icon vergrößern. Dies stellt das Gitter größer dar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
         <source>Zoom out</source>
         <translation>Verkleinern</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
         <source>Zoom &amp;out</source>
         <translation>Ver&amp;kleinern</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="514"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="515"/>
         <source>Zoom out on the icon</source>
         <translation>Iconansicht verkleinern</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="515"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="516"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the icon. This makes the grid smaller.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Verkleinern&lt;/b&gt;&lt;p&gt;Das angezeigte Icon verkleinern. Dies stellt das Gitter kleiner dar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
         <source>Zoom reset</source>
         <translation>Vergrößerung zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
         <source>Zoom &amp;reset</source>
         <translation>Vergrößerung &amp;zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="538"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="539"/>
         <source>Show Grid</source>
         <translation>Gitter anzeigen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="538"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="539"/>
         <source>Show &amp;Grid</source>
         <translation>&amp;Gitter anzeigen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="544"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="545"/>
         <source>Toggle the display of the grid</source>
         <translation>Schaltet die Anzeige des Gitters um</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="546"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="547"/>
         <source>&lt;b&gt;Show Grid&lt;/b&gt;&lt;p&gt;Toggle the display of the grid.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gitter anzeigen&lt;/b&gt;&lt;p&gt;Schaltet die Anzeige des Gitters um.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="565"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
         <source>Freehand</source>
         <translation>Freihand</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="565"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
         <source>&amp;Freehand</source>
         <translation>&amp;Freihand</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="571"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="572"/>
         <source>&lt;b&gt;Free hand&lt;/b&gt;&lt;p&gt;Draws non linear lines.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Freihand&lt;/b&gt;&lt;p&gt;Zeichnet nichtlineare Linien.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="580"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="581"/>
         <source>Color Picker</source>
         <translation>Farbauswahl</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="580"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="581"/>
         <source>&amp;Color Picker</source>
         <translation>Far&amp;bauswahl</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="586"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="587"/>
         <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Farbauswahl&lt;/b&gt;&lt;p&gt;Die farbe des Pixels, auf das geklickt wurde, wird die aktuelle Zeichenfarbe.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="597"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
         <source>Rectangle</source>
         <translation>Rechteck</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="597"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
         <source>&amp;Rectangle</source>
         <translation>&amp;Rechteck</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="603"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="604"/>
         <source>&lt;b&gt;Rectangle&lt;/b&gt;&lt;p&gt;Draw a rectangle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rechteck&lt;/b&gt;&lt;p&gt;Zeichnet ein Rechteck.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="612"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="613"/>
         <source>Filled Rectangle</source>
         <translation>Gefülltes Rechteck</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="612"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="613"/>
         <source>F&amp;illed Rectangle</source>
         <translation>&amp;Gefülltes Rechteck</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="618"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="619"/>
         <source>&lt;b&gt;Filled Rectangle&lt;/b&gt;&lt;p&gt;Draw a filled rectangle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gefülltes Rechteck&lt;/b&gt;&lt;p&gt;Zeichnet ein gefülltes Rechteck.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="628"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
         <source>Circle</source>
         <translation>Kreis</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="634"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="635"/>
         <source>&lt;b&gt;Circle&lt;/b&gt;&lt;p&gt;Draw a circle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kreis&lt;/b&gt;&lt;p&gt;Zeichnet einen Kreis.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="643"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="644"/>
         <source>Filled Circle</source>
         <translation>Gefüllter Kreis</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="643"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="644"/>
         <source>Fille&amp;d Circle</source>
         <translation>Gef&amp;üllter Kreis</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="649"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="650"/>
         <source>&lt;b&gt;Filled Circle&lt;/b&gt;&lt;p&gt;Draw a filled circle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gefüllter Kreis&lt;/b&gt;&lt;p&gt;Zeichnet einen gefüllten Kreis.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="659"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
         <source>Ellipse</source>
         <translation>Ellipse</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="659"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
         <source>&amp;Ellipse</source>
         <translation>&amp;Ellipse</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="665"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="666"/>
         <source>&lt;b&gt;Ellipse&lt;/b&gt;&lt;p&gt;Draw an ellipse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ellipse&lt;/b&gt;&lt;p&gt;Zeichnet eine Ellipse.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="674"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="675"/>
         <source>Filled Ellipse</source>
         <translation>Gefüllte Ellipse</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="674"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="675"/>
         <source>Fille&amp;d Elli&amp;pse</source>
         <translation>Gefüllte Elli&amp;pse</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="680"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="681"/>
         <source>&lt;b&gt;Filled Ellipse&lt;/b&gt;&lt;p&gt;Draw a filled ellipse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gefüllte Ellipse&lt;/b&gt;&lt;p&gt;Zeichnet eine gefüllte Ellipse.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="690"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="691"/>
         <source>Flood Fill</source>
         <translation>Durchgehende Füllung</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="690"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="691"/>
         <source>Fl&amp;ood Fill</source>
         <translation>&amp;Durchgehende Füllung</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="696"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="697"/>
         <source>&lt;b&gt;Flood Fill&lt;/b&gt;&lt;p&gt;Fill adjoining pixels with the same color with the current color.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Durchgehende Füllung&lt;/b&gt;&lt;p&gt;Benchbarte Pixel der selben Farbe werden mit der aktuellen Farbe gefüllt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="706"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
         <source>Line</source>
         <translation>Linie</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="706"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
         <source>&amp;Line</source>
         <translation>&amp;Linie</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="712"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="713"/>
         <source>&lt;b&gt;Line&lt;/b&gt;&lt;p&gt;Draw a line.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Linie&lt;/b&gt;&lt;p&gt;Zeichnet eine Linie.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="721"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
         <source>Eraser (Transparent)</source>
         <translation>Radierer (transparent)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="721"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
         <source>Eraser (&amp;Transparent)</source>
         <translation>Radierer (&amp;transparent)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="727"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="728"/>
         <source>&lt;b&gt;Eraser (Transparent)&lt;/b&gt;&lt;p&gt;Erase pixels by setting them to transparent.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Radierer (transparent)&lt;/b&gt;&lt;p&gt;Löscht Pixel indem sie auf transparent gesetzt werden.&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="736"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="737"/>
         <source>Rectangular Selection</source>
         <translation>Rechteck-Auswahl</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="753"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="754"/>
         <source>Rect&amp;angular Selection</source>
         <translation>Rechteck-&amp;Auswahl</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="742"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="743"/>
         <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rechteck-Auswahl&lt;/b&gt;&lt;p&gt;Wählt einen rechteckigen Bereich des Icons mit der Maus aus.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="753"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="754"/>
         <source>Circular Selection</source>
         <translation>Kreisförmige Auswahl</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="759"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="760"/>
         <source>&lt;b&gt;Circular Selection&lt;/b&gt;&lt;p&gt;Select a circular section of the icon using the mouse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kreisförmige Auswahl&lt;/b&gt;&lt;p&gt;Wählt einen kreisförmigen Bereich des Icons mit der Maus aus.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="776"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
         <source>About</source>
         <translation>Über</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="776"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
         <source>&amp;About</source>
         <translation>Ü&amp;ber</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="780"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="781"/>
         <source>Display information about this software</source>
         <translation>Zeigt Informationen zu diesem Programm an</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="782"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="783"/>
         <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="../IconEditor/IconEditorWindow.py" line="788"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
         <source>About Qt</source>
         <translation>Über Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="788"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
         <source>About &amp;Qt</source>
         <translation>Über &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="792"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="793"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Zeige Informationen über das Qt-Toolkit an</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="794"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="795"/>
         <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="../IconEditor/IconEditorWindow.py" line="801"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
         <source>What&apos;s This?</source>
         <translation>Was ist das?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="801"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Was ist das?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="801"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="807"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="808"/>
         <source>Context sensitive help</source>
         <translation>Kontextsensitive Hilfe</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="808"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="809"/>
         <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="../IconEditor/IconEditorWindow.py" line="825"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="826"/>
         <source>&amp;File</source>
         <translation>&amp;Datei</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="842"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="843"/>
         <source>&amp;Edit</source>
         <translation>&amp;Bearbeiten</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="858"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="859"/>
         <source>&amp;View</source>
         <translation>&amp;Ansicht</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="866"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="867"/>
         <source>&amp;Tools</source>
         <translation>&amp;Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="885"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="886"/>
         <source>&amp;Help</source>
         <translation>&amp;Hilfe</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="895"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="896"/>
         <source>File</source>
         <translation>Datei</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="909"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="910"/>
         <source>Edit</source>
         <translation>Bearbeiten</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="922"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="923"/>
         <source>View</source>
         <translation>Ansicht</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="927"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="928"/>
         <source>Tools</source>
         <translation>Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="945"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="946"/>
         <source>Help</source>
         <translation>Hilfe</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="959"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="960"/>
         <source>&lt;p&gt;This part of the status bar displays the icon size.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt die aktuelle Icongröße an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="966"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="967"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt die Cursorposition an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1062"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1069"/>
         <source>Open icon file</source>
         <translation>Icon-Datei öffnen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1112"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1119"/>
         <source>Save icon file</source>
         <translation>Icon-Datei speichern</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1201"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1208"/>
         <source>Icon saved</source>
         <translation>Icon gespeichert</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1216"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1223"/>
         <source>Untitled</source>
         <translation>Unbenannt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1227"/>
         <source>{0}[*] - {1}</source>
         <translation>{0}[*] – {1}</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1227"/>
         <source>Icon Editor</source>
         <translation>Icon-Editor</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="134"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="135"/>
         <source>Multiple-Image Network Graphics File (*.mng)</source>
         <translation>Multiple-Image-Network-Graphics-Datei (*.mng)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="528"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="529"/>
         <source>Reset the zoom of the icon</source>
         <translation>Die Vergrößerung des Icons zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="530"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="531"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the icon. 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 des Icons zurück. Es setzt die Vergrößerung auf den Wert 100 % zurück.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="136"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="137"/>
         <source>Paintbrush Bitmap File (*.pcx)</source>
         <translation>Paintbrush-Bitmap-Datei (*.pcx)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="140"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="141"/>
         <source>Silicon Graphics Image File (*.sgi)</source>
         <translation>Silicon-Graphics-Bild-Datei (*.sgi)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="144"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="145"/>
         <source>Targa Graphic File (*.tga)</source>
         <translation>Targa-Grafik-Datei (*.tga)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1148"/>
-        <source>The file &apos;{0}&apos; does not exist.</source>
-        <translation>Die Datei „{0}“ existiert nicht.</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="1155"/>
+        <source>The file &apos;{0}&apos; does not exist.</source>
+        <translation>Die Datei „{0}“ existiert nicht.</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1162"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation>Datei {0} kann nicht gelesen werden:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1189"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1196"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation>Datei {0} kann nicht geschrieben werden:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1112"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1119"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1241"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1248"/>
         <source>The icon image has unsaved changes.</source>
         <translation>Das Icon-Bild hat ungesicherte Änderungen.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="133"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="134"/>
         <source>JPEG File (*.jpeg)</source>
         <translation>JPEG-Datei (*.jpeg)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="142"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="143"/>
         <source>Compressed Scalable Vector Graphics File (*.svgz)</source>
         <translation>Komprimierte Scalable-Vector-Graphics-Datei (*.svgz)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="146"/>
-        <source>TIFF File (*.tiff)</source>
-        <translation>TIFF-Datei (*.tiff)</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="147"/>
-        <source>WAP Bitmap File (*.wbmp)</source>
-        <translation>WAP-Bitmap-Datei (*.wbmp)</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="293"/>
-        <source>Close Others</source>
-        <translation>Andere schließen</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="297"/>
-        <source>Close all other icon editor windows</source>
-        <translation>Schließt alle anderen Icon-Editor Fenster</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="299"/>
-        <source>&lt;b&gt;Close Others&lt;/b&gt;&lt;p&gt;Closes all other icon editor windows.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Andere schließen&lt;/b&gt;&lt;p&gt;Dies schließt alle anderen Icon-Editor Fenster.&lt;/p&gt;</translation>
+        <source>TIFF File (*.tiff)</source>
+        <translation>TIFF-Datei (*.tiff)</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="148"/>
+        <source>WAP Bitmap File (*.wbmp)</source>
+        <translation>WAP-Bitmap-Datei (*.wbmp)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="294"/>
+        <source>Close Others</source>
+        <translation>Andere schließen</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="298"/>
+        <source>Close all other icon editor windows</source>
+        <translation>Schließt alle anderen Icon-Editor Fenster</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="300"/>
+        <source>&lt;b&gt;Close Others&lt;/b&gt;&lt;p&gt;Closes all other icon editor windows.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Andere schließen&lt;/b&gt;&lt;p&gt;Dies schließt alle anderen Icon-Editor Fenster.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="149"/>
         <source>WebP Image File (*.webp)</source>
         <translation>WebP Bild-Datei (*.webp)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="126"/>
-        <source>Windows Cursor File (*.cur)</source>
-        <translation>Windows Zeiger-Datei (*.cur)</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="127"/>
+        <source>Windows Cursor File (*.cur)</source>
+        <translation>Windows Zeiger-Datei (*.cur)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="128"/>
         <source>DirectDraw-Surface File (*.dds)</source>
         <translation>DirectDraw Oberflächendatei (*.dds)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="129"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="130"/>
         <source>Apple Icon File (*.icns)</source>
         <translation>Apple Icon-Datei (*.icns)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="131"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="132"/>
         <source>JPEG2000 File (*.jp2)</source>
         <translation>JPEG2000-Datei (*.jp2)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1241"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1248"/>
         <source>eric Icon Editor</source>
         <translation>eric Icon-Editor</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1331"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1338"/>
         <source>About eric Icon Editor</source>
         <translation>Über den eric Icon-Editor</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1331"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1338"/>
         <source>The eric Icon Editor is a simple editor component to perform icon drawing tasks.</source>
         <translation>Der eric Icon-Editor ist ein Komponente zur Ausführung einfacher Icon-Bearbeitungsfunktionen.</translation>
     </message>
@@ -37881,22 +37880,22 @@
         <translation>Gelöschte Namen</translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="175"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="176"/>
         <source>Include Directory</source>
         <translation>Include Verzeichnis</translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="175"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="176"/>
         <source>Select Include Directory</source>
         <translation>Include Verzeichnis auswählen</translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="388"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="391"/>
         <source>Undefine Name</source>
         <translation>Gelöschter Name</translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="388"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="391"/>
         <source>Enter a variable name to be undefined:</source>
         <translation>Gib einen zu löschenden Variablennamen ein:</translation>
     </message>
@@ -38407,52 +38406,52 @@
         <translation>Bemerkungen:</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="70"/>
+        <location filename="../UI/InstallInfoDialog.py" line="71"/>
         <source>Yes</source>
         <translation>Ja</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="70"/>
+        <location filename="../UI/InstallInfoDialog.py" line="71"/>
         <source>No</source>
         <translation>Nein</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="74"/>
+        <location filename="../UI/InstallInfoDialog.py" line="75"/>
         <source>&apos;eric-ide&apos; was installed from PyPI using the pip command.</source>
         <translation>&apos;eric-ide&apos; wurde von PyPI mittel pip Befehl installiert.</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="80"/>
+        <location filename="../UI/InstallInfoDialog.py" line="81"/>
         <source>The information shown in this dialog was guessed at the first start of eric.</source>
         <translation>Die in diesem Dialog angezeigte Information wurde beim ersten Start von eric erraten.</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="98"/>
+        <location filename="../UI/InstallInfoDialog.py" line="99"/>
         <source>Load Install Information</source>
         <translation>Installationsinformation laden</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="98"/>
+        <location filename="../UI/InstallInfoDialog.py" line="99"/>
         <source>&lt;p&gt;The file containing the install information could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei mit den Installationsinformationen konnte nicht geladen werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="150"/>
+        <location filename="../UI/InstallInfoDialog.py" line="151"/>
         <source>Install Information</source>
         <translation>Installationsinformationen</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="150"/>
+        <location filename="../UI/InstallInfoDialog.py" line="151"/>
         <source>The install information was edited. Unsaved changes will be lost. Save first?</source>
         <translation>Die Installationsinformation wurde editiert. Ungesicherte Änderungen gehen verloren. Sichern?</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="187"/>
+        <location filename="../UI/InstallInfoDialog.py" line="188"/>
         <source>Save Install Information</source>
         <translation>Installationsinformation sichern</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="187"/>
+        <location filename="../UI/InstallInfoDialog.py" line="188"/>
         <source>&lt;p&gt;The file containing the install information could not be written.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei mit den Installationsinformationen konnte nicht geschrieben werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
@@ -38462,17 +38461,17 @@
         <translation>Installationszeitpunkt:</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="60"/>
+        <location filename="../UI/InstallInfoDialog.py" line="61"/>
         <source>Installed as Administrator:</source>
         <translation>Als Administrator installiert:</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="62"/>
+        <location filename="../UI/InstallInfoDialog.py" line="63"/>
         <source>Installed with sudo:</source>
         <translation>Mit &apos;sudo&apos; installiert:</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="92"/>
+        <location filename="../UI/InstallInfoDialog.py" line="93"/>
         <source>unknown</source>
         <translation>unbekannt</translation>
     </message>
@@ -38482,7 +38481,7 @@
         <translation>Installiert von:</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="86"/>
+        <location filename="../UI/InstallInfoDialog.py" line="87"/>
         <source>The installation information was provided by the user.</source>
         <translation>Die Installationsinformationen wurden durch den Nutzer eingegeben.</translation>
     </message>
@@ -38492,22 +38491,22 @@
         <translation>Info löschen</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="254"/>
+        <location filename="../UI/InstallInfoDialog.py" line="255"/>
         <source>Upgrade Instructions</source>
         <translation>Aktualisierungsanweisungen</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="200"/>
+        <location filename="../UI/InstallInfoDialog.py" line="201"/>
         <source>Delete Installation Information</source>
         <translation>Löscht die Installationsinformationen</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="200"/>
+        <location filename="../UI/InstallInfoDialog.py" line="201"/>
         <source>Do you really want to delete the installation information? It will be recreated at the next start.</source>
         <translation>Sollen die Installationsinformationen wirklich gelöscht werden? Sie werden beim nächsten Start neu erzeugt.</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="227"/>
+        <location filename="../UI/InstallInfoDialog.py" line="228"/>
         <source>Perform the following step(s) with Administrator privileges.
 </source>
         <translation>Führe die folgenden Schritte mit Administratorrechten aus.
@@ -39646,62 +39645,62 @@
         <translation>Gib eine Nachricht ein, die beim Verlassen eines Kanals geschickt wird</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="189"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="191"/>
         <source>Edit Identity</source>
         <translation>Identität bearbeiten</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="172"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="174"/>
         <source>The identity must contain at least one nick name.</source>
         <translation>Die Identität muss mindestens einen Spitznamen enthalten.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="189"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="191"/>
         <source>The identity must have a real name.</source>
         <translation>Die Identität muss einen realen namen enthalten.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="237"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="239"/>
         <source>Add Identity</source>
         <translation>Identität hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="287"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="289"/>
         <source>Identity Name:</source>
         <translation>Name der Identität:</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="297"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="299"/>
         <source>An identity named &lt;b&gt;{0}&lt;/b&gt; already exists. You must provide a different name.</source>
         <translation>Eine Identität mit Namen &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Sie müssen einen anderen Namen angeben.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="312"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="314"/>
         <source>The identity has to have a name.</source>
         <translation>Die Identität muss einen Namen haben.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="312"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="314"/>
         <source>Copy Identity</source>
         <translation>Identität kopieren</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="297"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="299"/>
         <source>Rename Identity</source>
         <translation>Identität umbenennen</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="336"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="338"/>
         <source>This identity is in use. If you remove it, the network settings using it will fall back to the default identity. Should it be deleted anyway?</source>
         <translation>Diese Identität wird genutzt. Wenn Sie sie löschen, werden alle Netzwerkeinstellungen, die diese Identität verwenden auf die Standardidentität wechseln. Soll sie trotzdem gelöscht werden?</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="341"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="343"/>
         <source>Do you really want to delete all information for this identity?</source>
         <translation>Sollen wirklich alle Informationen dieser Identität gelöscht werden?</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="344"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="346"/>
         <source>Delete Identity</source>
         <translation>Identität löschen</translation>
     </message>
@@ -39711,12 +39710,12 @@
         <translation>Auswählen, um die aktuelle Position im Kanalfenster zu markieren, wenn ein AWAY Befehl geschickt wird.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="477"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="480"/>
         <source>Press to show the password</source>
         <translation>Drücken, um das Kennwort anzuzeigen</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="471"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="474"/>
         <source>Press to hide the password</source>
         <translation>Drücken, um das Kennwort auszublenden</translation>
     </message>
@@ -39817,22 +39816,22 @@
         <translation>Zeigt den Namen des Server</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="254"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="258"/>
         <source>Yes</source>
         <translation>Ja</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="256"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="260"/>
         <source>No</source>
         <translation>Nein</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="185"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="189"/>
         <source>Delete Channel</source>
         <translation>Kanal löschen</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="185"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="189"/>
         <source>Do you really want to delete channel &lt;b&gt;{0}&lt;/b&gt;?</source>
         <translation>Soll der Kanal &lt;b&gt;{0}&lt;/b&gt; wirklich gelöscht werden?</translation>
     </message>
@@ -39948,7 +39947,7 @@
         <translation>Wähle ein zu verbindendes Netzwerk aus</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="346"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="348"/>
         <source>Press to connect to the selected network</source>
         <translation>Drücken, um zum ausgewählten Netzwerk zu verbinden</translation>
     </message>
@@ -39978,57 +39977,57 @@
         <translation>Drücken, um den Kanal zu betreten</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="434"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="436"/>
         <source>Save Messages</source>
         <translation>Nachrichten speichern</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="417"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="419"/>
         <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source>
         <translation>HTML-Dateien (*.{0});;Textdateien (*.txt);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="434"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="436"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="452"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="454"/>
         <source>Error saving Messages</source>
         <translation>Fehler beim Speichern der Nachrichten</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="452"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="454"/>
         <source>&lt;p&gt;The messages contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Nachrichteninhalt konnte nicht nach &lt;b&gt;{0}&lt;/b&gt; gespeichert werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="465"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="467"/>
         <source>Copy</source>
         <translation>Kopieren</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="469"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="471"/>
         <source>Cut all</source>
         <translation>Alles ausschneiden</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="472"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="474"/>
         <source>Copy all</source>
         <translation>Alles kopieren</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="476"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="478"/>
         <source>Clear</source>
         <translation>Löschen</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="480"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="482"/>
         <source>Save</source>
         <translation>Speichern</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="341"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="343"/>
         <source>Press to disconnect from the network</source>
         <translation>Drücken, um die Verbindung zum Netzwerk zu beenden</translation>
     </message>
@@ -40473,253 +40472,253 @@
         <translation>Drücken, um den aktuellen Kanal zu verlassen</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="244"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="245"/>
         <source>Disconnect from Server</source>
         <translation>Verbindung zum Server beenden</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="244"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="245"/>
         <source>&lt;p&gt;Do you really want to disconnect from &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;&lt;p&gt;All channels will be closed.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soll die Verbindung zu &lt;b&gt;{0}&lt;/b&gt; wirklich unterbrochen werden?&lt;/p&gt;&lt;p&gt;Alle Kanäle werden geschlossen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="186"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="187"/>
         <source>SSL Connection</source>
         <translation>SSL Verbindung</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="186"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="187"/>
         <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source>
         <translation>Eine verschlüsselte Verbindung zum IRC-Netzwerk wurde angefragt, SSL steht jedoch nicht zur Verfügung. Bitte ändern Sie die Serverkonfiguration.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="564"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="565"/>
         <source>Info</source>
         <translation>Info</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="219"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="220"/>
         <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source>
         <translation>Suche nach Server {0} (Port {1}) über eine SSL verschlüsselte Verbindung...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="230"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="231"/>
         <source>Looking for server {0} (port {1})...</source>
         <translation>Suche nach Server {0} (Port {1})...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="253"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="254"/>
         <source>Disconnecting from server {0}...</source>
         <translation>Verbindung zum Server {0} wird unterbrochen...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="519"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="520"/>
         <source>Server found,connecting...</source>
         <translation>Server gefunden, Verbindung wird hergesteltl...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="528"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="529"/>
         <source>Connected,logging in...</source>
         <translation>Verbunden, Anmeldung läuft...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="564"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="565"/>
         <source>Server disconnected.</source>
         <translation>Serververbindung unterbrochen.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="611"/>
         <source>Message Error</source>
         <translation>Nachrichtenfehler</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="611"/>
         <source>Unknown message received from server:&lt;br/&gt;{0}</source>
         <translation>Unbekannte Nachricht vom Server empfangen:&lt;br/&gt;{0}</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="676"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="677"/>
         <source>Notice</source>
         <translation>Notiz</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="694"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="695"/>
         <source>Mode</source>
         <translation>Modus</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="701"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="702"/>
         <source>You have left channel {0}.</source>
         <translation>Sie haben den Kanal {0} verlassen.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="712"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="713"/>
         <source>You are now known as {0}.</source>
         <translation>Sie sind jetzt als {0} bekannt.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="717"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="718"/>
         <source>User {0} is now known as {1}.</source>
         <translation>Nutzer {0} ist nun als {1} bekannt.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="727"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="728"/>
         <source>Server Error</source>
         <translation>Server Fehler</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="763"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="764"/>
         <source>Error</source>
         <translation>Fehler</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="778"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="779"/>
         <source>Welcome</source>
         <translation>Willkommen</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="780"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="781"/>
         <source>Support</source>
         <translation>Support</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="782"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="783"/>
         <source>User</source>
         <translation>Nutzer</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="784"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="785"/>
         <source>MOTD</source>
         <translation>MOTD</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="786"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="787"/>
         <source>Away</source>
         <translation>Abwesend</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="788"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="789"/>
         <source>Info ({0})</source>
         <translation>Info ({0})</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="792"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="793"/>
         <source>Message of the day</source>
         <translation>Nachricht des Tages</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="794"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="795"/>
         <source>End of message of the day</source>
         <translation>Ende der Nachricht des Tages</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="797"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="798"/>
         <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
         <translation>Server {0} (Version {1}), Benutzermodi: {2}, Kanalmodi: {3}</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="803"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="804"/>
         <source>Current users on {0}: {1}, max. {2}</source>
         <translation>Anzahl der Benutzer auf {0}: {1}, max. {2}</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="808"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="809"/>
         <source>Current users on the network: {0}, max. {1}</source>
         <translation>Anzahl der Benutzer im Netzwerk: {0}, max. {1}</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="812"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="813"/>
         <source>You are no longer marked as being away.</source>
         <translation>Sie sind nicht länger als „abwesend“ gekennzeichnet.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="814"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="815"/>
         <source>You have been marked as being away.</source>
         <translation>Sie sind als „abwesend“ gekennzeichnet.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="934"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
         <source>SSL Error</source>
         <translation>SSL Fehler</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="876"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="877"/>
         <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
         <translation>Die Verbindung zum Server {0} (Port {1}) wurde während des Wartens auf eine Benutzerantwort auf einen SSL Fehler verloren.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="907"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
         <source>Socket Error</source>
         <translation>Socker Fehler</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="884"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="885"/>
         <source>The host was not found. Please check the host name and port settings.</source>
         <translation>Der Server wurde nicht gefunden. Bitte prüfen Sie den Servernamen und die Porteinstellungen.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="890"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="891"/>
         <source>The connection was refused by the peer. Please check the host name and port settings.</source>
         <translation>Die Verbindung wurde von der Gegenseite abgelehnt. Bitte prüfen Sie den Servernamen und die Porteinstellungen.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="901"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="902"/>
         <source>The following network error occurred:&lt;br/&gt;{0}</source>
         <translation>Der folgende Netzwerkfehler trat auf:&lt;br/&gt;{0}</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1030"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1031"/>
         <source>{0} ({1})</source>
         <comment>channel name, users count</comment>
         <translation>{0} ({1})</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1071"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1072"/>
         <source>Critical</source>
         <translation>Kritischer Fehler</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1052"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1053"/>
         <source>No nickname acceptable to the server configured for &lt;b&gt;{0}&lt;/b&gt;. Disconnecting...</source>
         <translation>Es ist kein für den Server &lt;b&gt;{0}&lt;/b&gt; akzeptabler Spitzname konfiguriert. Verbindungsabbruch...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1071"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1072"/>
         <source>The given nickname is already in use.</source>
         <translation>Der übergebene Spitzname wird bereits verwendet.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1015"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1016"/>
         <source>CTCP</source>
         <translation>CTCP</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="992"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="993"/>
         <source>Received Version request from {0}.</source>
         <translation>Versionsanfrage von {0} empfangen.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="998"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="999"/>
         <source>Received CTCP-PING request from {0}, sending answer.</source>
         <translation>CTCP-PING-Anfrage von {0} empfangen, Antwort wird gesendet.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1006"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1007"/>
         <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
         <translation>CTCP-CLIENTINFO-Anfrage von {0} empfangen, Antwort wird gesendet.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1015"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1016"/>
         <source>Received unknown CTCP-{0} request from {1}.</source>
         <translation>Unbekannte CTCP-{0}-Anfrage von {1} empfangen.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="687"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="688"/>
         <source>You have set your personal modes to &lt;b&gt;[{0}]&lt;/b&gt;.</source>
         <translation>Sie haben Ihre persönlichen Modi auf &lt;b&gt;[{0}]&lt;/b&gt; gesetzt.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="691"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="692"/>
         <source>{0} has changed your personal modes to &lt;b&gt;[{1}]&lt;/b&gt;.</source>
         <translation>{0} hat Ihre persönlichen Modi auf &lt;b&gt;[{0}]&lt;/b&gt; geändert.</translation>
     </message>
@@ -40734,47 +40733,47 @@
         <translation>Netzwerk</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="896"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="897"/>
         <source>The SSL handshake failed.</source>
         <translation>Der SSL Handshake schlug fehl.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="907"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
         <source>A network error occurred.</source>
         <translation>Ein Netzwerkfehler trat auf.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="920"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="921"/>
         <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source>
         <translation>Es konnte keine SSL-verschlüsselte Verbindung zum Server {0} (Port {1}) aufgebaut werden. Entweder unterstützt der Server kein SSL (haben Sie den richtigen Port verwendet?) oder Sie haben das Zertifikat abgelehnt.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="934"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
         <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source>
         <translation>Das SSL-Zertifikat für den Server {0} (Port {1}) hat die Authentizitätsprüfung nicht bestanden. Die SSL-Fehler wurden von Ihnen akzeptiert.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="258"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="259"/>
         <source>Disconnecting from network {0}...</source>
         <translation>Verbindung zum Netzwerk {0} wird unterbrochen...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="263"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="264"/>
         <source>Disconnecting from server.</source>
         <translation>Verbindung zum Server wird unterbrochen.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="643"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="644"/>
         <source>Received CTCP-PING response from {0} with latency of {1} ms.</source>
         <translation>CTCP-PING-Antwort von {0} mit einer Latenz von {1} ms empfangen.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="649"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="650"/>
         <source>Received unknown CTCP-{0} response from {1}.</source>
         <translation>Unbekannte CTCP-{0}-Antwort von {1} empfangen.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="723"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="724"/>
         <source>Received PONG from {0}</source>
         <translation>PONG von {0} empfangen</translation>
     </message>
@@ -42920,57 +42919,57 @@
 <context>
     <name>Listspace</name>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="440"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="441"/>
         <source>Untitled {0}</source>
         <translation>Unbenannt {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="257"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="258"/>
         <source>Close</source>
         <translation>Schließen</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="264"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="265"/>
         <source>Close All</source>
         <translation>Alle schließen</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="267"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="268"/>
         <source>Save</source>
         <translation>Speichern</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="270"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="271"/>
         <source>Save As...</source>
         <translation>Speichern unter...</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="273"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="274"/>
         <source>Save All</source>
         <translation>Alle speichern</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="281"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="282"/>
         <source>Print</source>
         <translation>Drucken</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="581"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="582"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="277"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="278"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation>Öffne „Ablehnungs“-Datei</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="285"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="286"/>
         <source>Copy Path to Clipboard</source>
         <translation>Pfad in die Zwischenablage kopieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="260"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="261"/>
         <source>Close Others</source>
         <translation>Andere schließen</translation>
     </message>
@@ -43192,67 +43191,67 @@
         <translation>Ausgewählte installieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="57"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="58"/>
         <source>Uninstall Selected</source>
         <translation>Ausgewählte deinstallieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="60"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="62"/>
         <source>Cancel</source>
         <translation>Abbrechen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="177"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="180"/>
         <source>Error downloading dictionaries list</source>
         <translation>Fehler beim Herunterladen der Wörterbuchliste</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="177"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="180"/>
         <source>&lt;p&gt;Could not download the dictionaries list from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Wörterbuchliste konnte nicht von {0} heruntergeladen werden.&lt;/p&gt;&lt;p&gt;Fehler: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="200"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="203"/>
         <source>Dictionaries URL Changed</source>
         <translation>URL der Wörterbücher geändert</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="200"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="203"/>
         <source>The URL of the spell check dictionaries has changed. Select the &quot;Refresh&quot; button to get the new dictionaries list.</source>
         <translation>Die URL für die Rechtschreibwörterbücher hat sich geändert. Wählen Sie den „Aktualisieren“-Knopf, um die neue Liste zu erhalten.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="212"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="215"/>
         <source>Error installing dictionaries</source>
         <translation>Fehler beid er Installation von Wörterbücher</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="212"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="215"/>
         <source>&lt;p&gt;None of the dictionary locations is writable by you. Please download required dictionaries manually and install them as administrator.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Keines der Wörterbuchverzeichnisse ist durch sie veränderbar. Bitte laden sie die benötigten Wörterbücher manuell herunter und installieren sie sie als Administrator.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="263"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="266"/>
         <source>{0} ({1})</source>
         <translation>{0} ({1})</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="372"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="376"/>
         <source>Error downloading dictionary</source>
         <translation>Fehler beim Herunterladen der Wörterbuchdatei</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="357"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="361"/>
         <source>&lt;p&gt;Could not download the requested dictionary file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die angefragte Wörterbuchdatei konnte nicht von {0} heruntergeladen werden.&lt;/p&gt;&lt;p&gt;Fehler: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="357"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="361"/>
         <source>Error downloading dictionary file</source>
         <translation>Fehler beim Herunterladen der Wörterbuchdatei</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="372"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="376"/>
         <source>&lt;p&gt;The downloaded dictionary archive is invalid. Skipping it.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das heruntergeladene Wörterbucharchiv ist fehlerhaft. Überspringe es.&lt;/p&gt;</translation>
     </message>
@@ -43323,22 +43322,22 @@
         <translation>(noch nicht definiert)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="50"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="51"/>
         <source>Wrong password entered.</source>
         <translation>Falsches Kennwort eingegeben.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="54"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="55"/>
         <source>New password must not be empty.</source>
         <translation>Neues Kennwort darf nicht leer sein.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="61"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="62"/>
         <source>Repeated password is wrong.</source>
         <translation>Wiederholtes Kennwort ist falsch.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="66"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="67"/>
         <source>Old and new password must not be the same.</source>
         <translation>Altes und neues Kennwort dürfen nicht gleich sein.</translation>
     </message>
@@ -43824,7 +43823,7 @@
 <context>
     <name>MicroPythonCommandsInterface</name>
     <message>
-        <location filename="../MicroPython/MicroPythonCommandsInterface.py" line="284"/>
+        <location filename="../MicroPython/MicroPythonCommandsInterface.py" line="285"/>
         <source>Detected an error without indications.</source>
         <translation>Es wurde ein Fehler ohne nähere Angaben entdeckt.</translation>
     </message>
@@ -44156,22 +44155,22 @@
         <translation>Drücken, um die Rohdaten zu speichern</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="72"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="73"/>
         <source>max. X:</source>
         <translation>max. X:</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="81"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="83"/>
         <source>Enter the maximum number of data points to be plotted.</source>
         <translation>Gib die maximale Anzahl an zu zeichnenden Datenpunkten ein.</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="330"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="332"/>
         <source>Save Chart Data</source>
         <translation>Chartdaten speichern</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="330"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="332"/>
         <source>&lt;p&gt;The chart data could not be saved into file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Chartdaten konnten nicht in die Datei &lt;b&gt;{0}&lt;/b&gt; gespeichert werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
@@ -44254,7 +44253,7 @@
         <translation>Gib den Pfad für den Crosscompiler ein</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="69"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="77"/>
         <source>All Files (*)</source>
         <translation>Alle Dateien (*)</translation>
     </message>
@@ -44324,37 +44323,37 @@
         <translation>Hell</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="48"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="49"/>
         <source>Dark</source>
         <translation>Dunkel</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="50"/>
-        <source>Blue Cerulean</source>
-        <translation>Zweckhaftes Blau</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="52"/>
+        <source>Blue Cerulean</source>
+        <translation>Zweckhaftes Blau</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="55"/>
         <source>Brown Sand</source>
         <translation>Brauner Sand</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="54"/>
-        <source>Blue NCS</source>
-        <translation>NCS Blau</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="56"/>
-        <source>High Contrast</source>
-        <translation>Hoher Kontrast</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="58"/>
+        <source>Blue NCS</source>
+        <translation>NCS Blau</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="61"/>
+        <source>High Contrast</source>
+        <translation>Hoher Kontrast</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="64"/>
         <source>Blue Icy</source>
         <translation>Eisblau</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="60"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="67"/>
         <source>Qt</source>
         <translation>Qt</translation>
     </message>
@@ -44495,17 +44494,17 @@
         <translation>Drücken, um ein Chartfenster zur Darstellung der vom ausgewählten Gerät empfangenen Daten zu öffnen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="562"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="566"/>
         <source>Press to connect the selected device</source>
         <translation>Drücken, um eine Verbindung mit den ausgewählten Gerät herzustellen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="276"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="278"/>
         <source>&lt;h3&gt;The QtSerialPort package is not available.&lt;br/&gt;MicroPython support is deactivated.&lt;/h3&gt;</source>
         <translation>&lt;h3&gt;Das Paket QtSerialPort ist nicht verfügbar.&lt;br/&gt;Die MicroPython Unterstützung wird deaktiviert.&lt;/h3&gt;</translation>
     </message>
     <message numerus="yes">
-        <location filename="../MicroPython/MicroPythonWidget.py" line="318"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="320"/>
         <source>%n supported device(s) detected.</source>
         <translation>
             <numerusform>%n unterstütztes Gerät gefunden.</numerusform>
@@ -44513,37 +44512,37 @@
         </translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="340"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="342"/>
         <source>No supported devices detected.</source>
         <translation>Keine unterstützten Geräte gefunden.</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="532"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="536"/>
         <source>Clear</source>
         <translation>Löschen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="534"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="538"/>
         <source>Copy</source>
         <translation>Kopieren</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="535"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="539"/>
         <source>Paste</source>
         <translation>Einfügen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="557"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="561"/>
         <source>Press to disconnect the current device</source>
         <translation>Drücken, um die Verbindung zum aktuelle Geräte zu trennen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="578"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="582"/>
         <source>No device attached</source>
         <translation>Kein Gerät angeschlossen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="578"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="582"/>
         <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -44556,212 +44555,212 @@
 Drücke zum Abschluss den Resetknopf des Gerätes und warte ein paar Sekunden vor einem neuen Versuch.</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="605"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="609"/>
         <source>Start REPL</source>
         <translation>REPL starten</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="605"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="609"/>
         <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Eingabeaufforderung kann nicht gestartet werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1054"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1068"/>
         <source>Serial Device Connect</source>
         <translation>Serielle Verbindung</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1054"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1068"/>
         <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Kann keine Verbindung zum Gerät an der seriellen Schnittstelle &lt;b&gt;{0}&lt;/b&gt; herstellen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1099"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1113"/>
         <source>Run Script</source>
         <translation>Skript ausführen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1082"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1096"/>
         <source>There is no editor open. Abort...</source>
         <translation>Es ist kein Editor offen. Abbruch...</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1090"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1104"/>
         <source>The current editor does not contain a script. Abort...</source>
         <translation>Der aktuelle Editortext enthält kein Skript. Abbruch...</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1099"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1113"/>
         <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Skript kann nicht ausgeführt werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1123"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1137"/>
         <source>Open Python File</source>
         <translation>Pythondatei öffnen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1123"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1137"/>
         <source>Python3 Files (*.py);;All Files (*)</source>
         <translation>Python3 Dateien (*.py);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1168"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1182"/>
         <source>Start Chart</source>
         <translation>Chart starten</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1168"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1182"/>
         <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Chart kann nicht gestartet werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1197"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1211"/>
         <source>Unsaved Chart Data</source>
         <translation>Nich gesicherte Chart Daten</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1197"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1211"/>
         <source>The chart contains unsaved data.</source>
         <translation>Das Chart enthält ungesicherte Daten.</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1248"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1262"/>
         <source>Start File Manager</source>
         <translation>Dateimanager starten</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1248"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1262"/>
         <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Dateimanager kann nicht gestartet werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1322"/>
-        <source>Show Version</source>
-        <translation>Version anzeigen</translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1325"/>
-        <source>Show Implementation</source>
-        <translation>Implementierung anzeigen</translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1452"/>
-        <source>Synchronize Time</source>
-        <translation>Zeit synchronisieren</translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1333"/>
-        <source>Show Device Time</source>
-        <translation>Gerätezeit anzeigen</translation>
-    </message>
-    <message>
         <location filename="../MicroPython/MicroPythonWidget.py" line="1336"/>
+        <source>Show Version</source>
+        <translation>Version anzeigen</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1339"/>
+        <source>Show Implementation</source>
+        <translation>Implementierung anzeigen</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1466"/>
+        <source>Synchronize Time</source>
+        <translation>Zeit synchronisieren</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1347"/>
+        <source>Show Device Time</source>
+        <translation>Gerätezeit anzeigen</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1350"/>
         <source>Show Local Time</source>
         <translation>Lokale Zeit anzeigen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1673"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1687"/>
         <source>Compile Python File</source>
         <translation>Python Datei übersetzen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1693"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1707"/>
         <source>Compile Current Editor</source>
         <translation>Aktuellen Editor übersetzen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1388"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1402"/>
         <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
         <translation>&lt;h3&gt;Versionsinformationen des Gerätes&lt;/h3&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1397"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1411"/>
         <source>No version information available.</source>
         <translation>Keine Versionsinformationen verfügbar.</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1399"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1413"/>
         <source>Device Version Information</source>
         <translation>Versionsinformationen des Gerätes</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1422"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1436"/>
         <source>unknown</source>
         <translation>unbekannt</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1426"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1440"/>
         <source>Device Implementation Information</source>
         <translation>Informationen zur Implementierung</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1426"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1440"/>
         <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;h3&gt;Informationen zur Implementierung&lt;/h3&gt;&lt;p&gt;Dieses Gerät enthält &lt;b&gt;{0} {1}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1452"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1466"/>
         <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Zeit des angeschlossenen Gerätes wurde mit der lokalen Zeit synchronisiert.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1475"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1489"/>
         <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation>&lt;h3&gt;Datum und Zeit des Gerätes&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Datum&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Zeit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1483"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1497"/>
         <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;h3&gt;Datum und Zeit des Gerätes&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1500"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1514"/>
         <source>Device Date and Time</source>
         <translation>Datum und Zeit des Gerätes</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1513"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1527"/>
         <source>Local Date and Time</source>
         <translation>Lokales Datum und Zeit</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1513"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1527"/>
         <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation>&lt;h3&gt;Lokales Datum und Zeit&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Datum&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Zeit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1581"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1595"/>
         <source>Error handling device</source>
         <translation>Fehler bei Gerätekommunikation</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1581"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1595"/>
         <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Es trat ein Fehler bei der Kommunikation mit dem Gerät auf.&lt;/p&gt;&lt;p&gt;Methode: {0}&lt;/p&gt;&lt;p&gt;Nachricht: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1621"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1635"/>
         <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
         <translation>Der MicroPython Crosscompiler &lt;b&gt;mpy-cross&lt;/b&gt; kann nicht gefunden werden. Stelle sicher, dass er im Suchpfad liegt oder konfiguriere ihn auf der MicroPython Konfigurationsseite.</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1643"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1657"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation>Python-Dateien (*.py);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1653"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1667"/>
         <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
         <translation>Die Python Datei &lt;b&gt;{0}&lt;/b&gt; existiert nicht. Abbruch...</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1663"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1677"/>
         <source>&apos;mpy-cross&apos; Output</source>
         <translation>&apos;mpy-cross&apos; Ausgabe</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1686"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1700"/>
         <source>The current editor does not contain a Python file. Aborting...</source>
         <translation>Der aktuelle Editortext enthält keine Pythondatei. Abbruch...</translation>
     </message>
@@ -44776,114 +44775,114 @@
         <translation>Drücken, um einen Dateimanager zum ausgewählten Gerät zu öffnen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1181"/>
-        <source>µPy Chart</source>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1195"/>
+        <source>&#xc2;&#xb5;Py Chart</source>
         <translation>µPy Chart</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1264"/>
-        <source>µPy Files</source>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1278"/>
+        <source>&#xc2;&#xb5;Py Files</source>
         <translation>µPy Dateien</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1365"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1379"/>
         <source>Show Documentation</source>
         <translation>Dokumentation anzeigen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1378"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1392"/>
         <source>Configure</source>
         <translation>Einstellungen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1339"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1353"/>
         <source>Show Time</source>
         <translation>Zeit anzeigen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1358"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1372"/>
         <source>Download Firmware</source>
         <translation>Firmware herunterladen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1556"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1570"/>
         <source>Date and Time</source>
         <translation>Datum und Zeit</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1539"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1553"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{0}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Lokales Datum und Zeit&lt;/th&gt;&lt;th&gt;Datum und Zeit des Gerätes&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Datum&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{0}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Zeit&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1556"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1570"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align=&apos;center&apos;&gt;{0} {1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Lokales Datum und Zeit&lt;/th&gt;&lt;th&gt;Datum und Zeit des Gerätes&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align=&apos;center&apos;&gt;{0} {1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="410"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="412"/>
         <source>Unknown MicroPython Device</source>
         <translation>Unbekanntes MicroPython Gerät</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1375"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1389"/>
         <source>Ignored Serial Devices</source>
         <translation>Ignorierte Serielle Geräte</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1304"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1318"/>
         <source>Downloads</source>
         <translation>Downloads</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="323"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="325"/>
         <source>{0} - {1} ({2})</source>
         <comment>board name, description, port name</comment>
         <translation>{0} - {1} ({2})</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="382"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="384"/>
         <source>&lt;p&gt;Detected these unknown serial devices&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please report them together with the board name and a short description to &lt;a href=&quot;mailto:{1}&quot;&gt; the eric bug reporting address&lt;/a&gt; if it is a MicroPython board.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Diese ubekannten seriellen Geräte wurden erkannt.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Falls es sich um ein MicroPython Board handelt, melden sie es bitte zusammen mit dem Boardnamen und einer Kurzbeschreibung an &lt;a href=&quot;mailto:{1}&quot;&gt; die eric Fehlermitteilungsadresse&lt;/a&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="410"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="412"/>
         <source>Would you like to add them to the list of manually configured devices?</source>
         <translation>Sollen sie zur Liste der manuell konfigurierten Geräte hinzugefügt werden?</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1373"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1387"/>
         <source>Manage Unknown Devices</source>
         <translation>Unbekannte Geräte verwalten</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1778"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1792"/>
         <source>Add Unknown Devices</source>
         <translation>Unbekannte Geräte hinzufügen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1778"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1792"/>
         <source>Select the devices to be added:</source>
         <translation>Wähle die hinzuzufügenden unbekannten Geräte:</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="382"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="384"/>
         <source>{0} (0x{1:04x}/0x{2:04x})</source>
         <comment>description, VId, PId</comment>
         <translation>{0} (0x{1:04x}/0x{2:04x})</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1370"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1384"/>
         <source>Flash UF2 Device</source>
         <translation>UF2 Gerät flashen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="350"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="352"/>
         <source>Manual Selection</source>
         <translation>Manuelle Auswahl</translation>
     </message>
     <message numerus="yes">
-        <location filename="../MicroPython/MicroPythonWidget.py" line="344"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="346"/>
         <source>
 %n unknown device(s) for manual selection.</source>
         <translation>
@@ -45081,674 +45080,674 @@
 <context>
     <name>MiniEditor</name>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>New</source>
         <translation>Neu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>&amp;New</source>
         <translation>&amp;Neu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="551"/>
-        <source>Open an empty editor window</source>
-        <translation>Öffnet ein leeres Editorfenster</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="552"/>
+        <source>Open an empty editor window</source>
+        <translation>Öffnet ein leeres Editorfenster</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="553"/>
         <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="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>Open</source>
         <translation>Öffnen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>&amp;Open...</source>
         <translation>&amp;Öffnen...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="565"/>
+        <location filename="../QScintilla/MiniEditor.py" line="566"/>
         <source>Open a file</source>
         <translation>Datei öffnen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="566"/>
+        <location filename="../QScintilla/MiniEditor.py" line="567"/>
         <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;Datei öffnen&lt;/b&gt;&lt;p&gt;Sie werden nach dem Namen einer Datei gefragt, die geöffnet werden soll.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>Save</source>
         <translation>Speichern</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>&amp;Save</source>
         <translation>&amp;Speichern</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation>Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="579"/>
-        <source>Save the current file</source>
-        <translation>Speichert die aktuelle Datei</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="580"/>
+        <source>Save the current file</source>
+        <translation>Speichert die aktuelle Datei</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="581"/>
         <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="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Save as</source>
         <translation>Speichern unter</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Save &amp;as...</source>
         <translation>Speichern &amp;unter...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="593"/>
+        <location filename="../QScintilla/MiniEditor.py" line="594"/>
         <source>Save the current file to a new one</source>
         <translation>Speichere die aktuelle Datei unter neuem Namen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="595"/>
+        <location filename="../QScintilla/MiniEditor.py" line="596"/>
         <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="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>Close</source>
         <translation>Schließen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>&amp;Close</source>
         <translation>Schl&amp;ießen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="624"/>
+        <location filename="../QScintilla/MiniEditor.py" line="625"/>
         <source>Close the editor window</source>
         <translation>Schließt das Editorfenster</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="625"/>
+        <location filename="../QScintilla/MiniEditor.py" line="626"/>
         <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="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Undo</source>
         <translation>Rückgängig</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>&amp;Undo</source>
         <translation>&amp;Rückgängig</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="671"/>
+        <location filename="../QScintilla/MiniEditor.py" line="672"/>
         <source>Undo the last change</source>
         <translation>Die letzte Änderung rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="672"/>
+        <location filename="../QScintilla/MiniEditor.py" line="673"/>
         <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="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>Redo</source>
         <translation>Wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>&amp;Redo</source>
         <translation>Wieder&amp;herstellen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="685"/>
+        <location filename="../QScintilla/MiniEditor.py" line="686"/>
         <source>Redo the last change</source>
         <translation>Die letzte Änderung wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="686"/>
+        <location filename="../QScintilla/MiniEditor.py" line="687"/>
         <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="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Cut</source>
         <translation>Ausschneiden</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Cu&amp;t</source>
         <translation>&amp;Ausschneiden</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="700"/>
-        <source>Cut the selection</source>
-        <translation>Schneidet die Auswahl aus</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="701"/>
+        <source>Cut the selection</source>
+        <translation>Schneidet die Auswahl aus</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="702"/>
         <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="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Copy</source>
         <translation>Kopieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>&amp;Copy</source>
         <translation>&amp;Kopieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Einfg</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="716"/>
-        <source>Copy the selection</source>
-        <translation>Kopiert die Auswahl</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="717"/>
+        <source>Copy the selection</source>
+        <translation>Kopiert die Auswahl</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="718"/>
         <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="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Paste</source>
         <translation>Einfügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>&amp;Paste</source>
         <translation>Ein&amp;fügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="732"/>
+        <location filename="../QScintilla/MiniEditor.py" line="733"/>
         <source>Paste the last cut/copied text</source>
         <translation>Fügt den Inhalt der Zwischenablage ein</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="734"/>
+        <location filename="../QScintilla/MiniEditor.py" line="735"/>
         <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="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Clear</source>
         <translation>Löschen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Cl&amp;ear</source>
         <translation>All&amp;es löschen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="749"/>
-        <source>Clear all text</source>
-        <translation>Löscht den gesamten Text</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="750"/>
+        <source>Clear all text</source>
+        <translation>Löscht den gesamten Text</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="751"/>
         <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="../QScintilla/MiniEditor.py" line="2353"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2354"/>
         <source>About</source>
         <translation>Über</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2353"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2354"/>
         <source>&amp;About</source>
         <translation>&amp;Über</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2358"/>
         <source>Display information about this software</source>
         <translation>Zeigt Informationen zu diesem Programm an</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2359"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2360"/>
         <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="2365"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2366"/>
         <source>About Qt</source>
         <translation>Über Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2365"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2366"/>
         <source>About &amp;Qt</source>
         <translation>Über &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2369"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2370"/>
         <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="2371"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2372"/>
         <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="2401"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2402"/>
         <source>&amp;File</source>
         <translation>&amp;Datei</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2413"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2414"/>
         <source>&amp;Edit</source>
         <translation>&amp;Bearbeiten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2439"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2440"/>
         <source>&amp;Help</source>
         <translation>&amp;Hilfe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2516"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2517"/>
         <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="2523"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2524"/>
         <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="2540"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2541"/>
         <source>Ready</source>
         <translation>Bereit</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2622"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2623"/>
         <source>File loaded</source>
         <translation>Datei geladen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3055"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3066"/>
         <source>Untitled</source>
         <translation>Unbenannt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2737"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2738"/>
         <source>{0}[*] - {1}</source>
         <translation>{0} [*] – {1}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2737"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2738"/>
         <source>Mini Editor</source>
         <translation>Mini Editor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3096"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3107"/>
         <source>Select all</source>
         <translation>Alles auswählen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3097"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3108"/>
         <source>Deselect all</source>
         <translation>Auswahl aufheben</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3111"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3122"/>
         <source>Languages</source>
         <translation>Sprachen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3114"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3125"/>
         <source>No Language</source>
         <translation>Keine Sprache</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2594"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2595"/>
         <source>Open File</source>
         <translation>Datei öffnen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2708"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2709"/>
         <source>File saved</source>
         <translation>Datei gespeichert</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2509"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2510"/>
         <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="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>What&apos;s This?</source>
         <translation>Was ist das?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Was ist das?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2384"/>
-        <source>Context sensitive help</source>
-        <translation>Kontextsensitive Hilfe</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2385"/>
+        <source>Context sensitive help</source>
+        <translation>Kontextsensitive Hilfe</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
         <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="2451"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2452"/>
         <source>File</source>
         <translation>Datei</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2464"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2465"/>
         <source>Edit</source>
         <translation>Bearbeiten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2474"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2475"/>
         <source>Find</source>
         <translation>Suchen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2488"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2489"/>
         <source>Help</source>
         <translation>Hilfe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>Print</source>
         <translation>Drucken</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>&amp;Print</source>
         <translation>&amp;Drucken</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation>Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="638"/>
-        <source>Print the current file</source>
-        <translation>Druckt die aktuelle Datei</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3018"/>
-        <source>Printing...</source>
-        <translation>Drucke...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3036"/>
-        <source>Printing completed</source>
-        <translation>Drucken beendet</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3038"/>
-        <source>Error while printing</source>
-        <translation>Fehler beim Drucken</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3041"/>
-        <source>Printing aborted</source>
-        <translation>Drucken abgebrochen</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="639"/>
+        <source>Print the current file</source>
+        <translation>Druckt die aktuelle Datei</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3026"/>
+        <source>Printing...</source>
+        <translation>Drucke...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3047"/>
+        <source>Printing completed</source>
+        <translation>Drucken beendet</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3049"/>
+        <source>Error while printing</source>
+        <translation>Fehler beim Drucken</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3052"/>
+        <source>Printing aborted</source>
+        <translation>Drucken abgebrochen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="640"/>
         <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;Datei drucken&lt;/b&gt;&lt;p&gt;Dies druckt den Inhalt der aktuellen Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="646"/>
+        <location filename="../QScintilla/MiniEditor.py" line="647"/>
         <source>Print Preview</source>
         <translation>Druckvorschau</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="651"/>
+        <location filename="../QScintilla/MiniEditor.py" line="652"/>
         <source>Print preview of the current file</source>
         <translation>Druckvorschau der aktuellen Datei</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="653"/>
+        <location filename="../QScintilla/MiniEditor.py" line="654"/>
         <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;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="3138"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3149"/>
         <source>Guessed</source>
         <translation>Ermittelt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3160"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3171"/>
         <source>Alternatives</source>
         <translation>Alternativen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3156"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3167"/>
         <source>Alternatives ({0})</source>
         <translation>Alternativen ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3184"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3195"/>
         <source>Pygments Lexer</source>
         <translation>Pygments Lexer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3184"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3195"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>Wähle den anzuwendenden Pygments Lexer.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="467"/>
+        <location filename="../QScintilla/MiniEditor.py" line="468"/>
         <source>Line: {0:5}</source>
         <translation>Zeile: {0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="471"/>
+        <location filename="../QScintilla/MiniEditor.py" line="472"/>
         <source>Pos: {0:5}</source>
         <translation>Pos: {0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2594"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2595"/>
         <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="2701"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2702"/>
         <source>Save File</source>
         <translation>Datei speichern</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2701"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2702"/>
         <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="2567"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2568"/>
         <source>The document has unsaved changes.</source>
         <translation>Das Dokument hat ungesicherte Änderungen.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save Copy</source>
         <translation>Kopie speichern</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save &amp;Copy...</source>
         <translation>&amp;Kopie speichern...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="608"/>
+        <location filename="../QScintilla/MiniEditor.py" line="609"/>
         <source>Save a copy of the current file</source>
         <translation>Speichert eine Kopie der aktuellen Datei</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="610"/>
+        <location filename="../QScintilla/MiniEditor.py" line="611"/>
         <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>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3698"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3709"/>
         <source>EditorConfig Properties</source>
         <translation>EditorConfig Eigenschaften</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3698"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3709"/>
         <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="2720"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2721"/>
         <source>[*] - {0}</source>
         <translation>[*] - {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="486"/>
+        <location filename="../QScintilla/MiniEditor.py" line="487"/>
         <source>Language: {0}</source>
         <translation>Sprache: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2431"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2432"/>
         <source>&amp;View</source>
         <translation>&amp;Ansicht</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2481"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2482"/>
         <source>View</source>
         <translation>Ansicht</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2501"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2502"/>
         <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt die Sprache des Editors an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2534"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2535"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Dieser Teil der Statusleiste ermöglicht das Zoomen des Editors.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="397"/>
+        <location filename="../QScintilla/MiniEditor.py" line="398"/>
         <source>About eric Mini Editor</source>
         <translation>Über den eric Mini Editor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="397"/>
+        <location filename="../QScintilla/MiniEditor.py" line="398"/>
         <source>The eric 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>Der eric 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="2567"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2568"/>
         <source>eric Mini Editor</source>
         <translation>eric Mini Editor</translation>
     </message>
@@ -46249,12 +46248,12 @@
 <context>
     <name>MouseUtilities</name>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="29"/>
+        <location filename="../Utilities/MouseUtilities.py" line="31"/>
         <source>Shift</source>
         <translation>Umschalt</translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="31"/>
+        <location filename="../Utilities/MouseUtilities.py" line="33"/>
         <source>Alt</source>
         <translation>Alt</translation>
     </message>
@@ -46264,37 +46263,37 @@
         <translation>Cmd</translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="33"/>
+        <location filename="../Utilities/MouseUtilities.py" line="35"/>
         <source>Ctrl</source>
         <translation>Strg</translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="35"/>
+        <location filename="../Utilities/MouseUtilities.py" line="37"/>
         <source>Meta</source>
         <translation>Meta</translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="43"/>
-        <source>Left Button</source>
-        <translation>Linke Taste</translation>
-    </message>
-    <message>
-        <location filename="../Utilities/MouseUtilities.py" line="45"/>
-        <source>Right Button</source>
-        <translation>Rechte Taste</translation>
-    </message>
-    <message>
         <location filename="../Utilities/MouseUtilities.py" line="47"/>
-        <source>Middle Button</source>
-        <translation>Mittlere Taste</translation>
+        <source>Left Button</source>
+        <translation>Linke Taste</translation>
     </message>
     <message>
         <location filename="../Utilities/MouseUtilities.py" line="49"/>
-        <source>Extra Button 1</source>
-        <translation>Zusatztaste 1</translation>
+        <source>Right Button</source>
+        <translation>Rechte Taste</translation>
     </message>
     <message>
         <location filename="../Utilities/MouseUtilities.py" line="51"/>
+        <source>Middle Button</source>
+        <translation>Mittlere Taste</translation>
+    </message>
+    <message>
+        <location filename="../Utilities/MouseUtilities.py" line="53"/>
+        <source>Extra Button 1</source>
+        <translation>Zusatztaste 1</translation>
+    </message>
+    <message>
+        <location filename="../Utilities/MouseUtilities.py" line="55"/>
         <source>Extra Button 2</source>
         <translation>Zusatztaste 2</translation>
     </message>
@@ -46780,32 +46779,32 @@
 <context>
     <name>NavigationBar</name>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="55"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="56"/>
         <source>Move one screen backward</source>
         <translation>Eine Seite zurück</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="65"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="67"/>
         <source>Move one screen forward</source>
         <translation>Eine Seite vorwärts</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="83"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="86"/>
         <source>Move to the initial screen</source>
         <translation>Zur Startseite wechseln</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="95"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="99"/>
         <source>Exit Fullscreen</source>
         <translation>Vollbild verlassen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="273"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="281"/>
         <source>Clear History</source>
         <translation>Chronik löschen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="108"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="113"/>
         <source>Main Menu</source>
         <translation>Hauptmenü</translation>
     </message>
@@ -46843,12 +46842,12 @@
         <translation>&lt;b&gt;Gib Nutzernamen und Kennwort für „{0}“ ein&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/NetworkManager.py" line="336"/>
+        <location filename="../WebBrowser/Network/NetworkManager.py" line="338"/>
         <source>Authentication required</source>
         <translation>Authentisierung erforderlich</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/NetworkManager.py" line="337"/>
+        <location filename="../WebBrowser/Network/NetworkManager.py" line="339"/>
         <source>Authentication is required to access:</source>
         <translation>Eine Authentisierung ist zum Zugriff auf diese URL erforderlich:</translation>
     </message>
@@ -47473,27 +47472,27 @@
         <translation>Bytefolge umkehren</translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="184"/>
+        <location filename="../UI/NumbersWidget.py" line="194"/>
         <source>Auto</source>
         <translation>Auto</translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="185"/>
+        <location filename="../UI/NumbersWidget.py" line="195"/>
         <source>Dec</source>
         <translation>Dez</translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="186"/>
+        <location filename="../UI/NumbersWidget.py" line="196"/>
         <source>Hex</source>
         <translation>Hex</translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="187"/>
+        <location filename="../UI/NumbersWidget.py" line="197"/>
         <source>Oct</source>
         <translation>Okt</translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="188"/>
+        <location filename="../UI/NumbersWidget.py" line="198"/>
         <source>Bin</source>
         <translation>Bin</translation>
     </message>
@@ -47632,12 +47631,12 @@
 <context>
     <name>OpenSearchEngineModel</name>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="136"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="143"/>
         <source>&lt;strong&gt;Description:&lt;/strong&gt; {0}</source>
         <translation>&lt;strong&gt;Beschreibung:&lt;/strong&gt; {0}</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="141"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="148"/>
         <source>&lt;strong&gt;Provides contextual suggestions&lt;/strong&gt;</source>
         <translation>&lt;strong&gt;Unterstützt Kontext sensitive Vorschläge&lt;/strong&gt;</translation>
     </message>
@@ -47652,7 +47651,7 @@
         <translation>Schlüsselwörter</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="149"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="156"/>
         <source>Comma-separated list of keywords that may be entered in the location bar followed by search terms to search with this engine</source>
         <translation>Komma separierte Liste von Schlüsselwörtern, die in der Pfadeingabe gefolgt von Suchbegriffen eingegeben werden können, um mit dieser Suchmaschine zu suchen</translation>
     </message>
@@ -47660,7 +47659,7 @@
 <context>
     <name>OpenSearchManager</name>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchManager.py" line="462"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchManager.py" line="463"/>
         <source>&lt;p&gt;Do you want to add the following engine to your list of search engines?&lt;br/&gt;&lt;br/&gt;Name: {0}&lt;br/&gt;Searches on: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Do you want to add the following engine to your list of search engines?&lt;br/&gt;&lt;br/&gt;Name: {0}&lt;br/&gt;Searches on: {1}&lt;/p&gt;</translation>
     </message>
@@ -48272,12 +48271,12 @@
         <translation>Fehler</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="146"/>
+        <location filename="../PipInterface/PipDialog.py" line="156"/>
         <source>Process Generation Error</source>
         <translation>Prozessfehler</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="146"/>
+        <location filename="../PipInterface/PipDialog.py" line="156"/>
         <source>The process {0} could not be started.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden.</translation>
     </message>
@@ -48353,7 +48352,7 @@
 <context>
     <name>PipFreezeDialog</name>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="225"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="227"/>
         <source>Generate Requirements</source>
         <translation>Anforderungen erzeugen</translation>
     </message>
@@ -48438,27 +48437,27 @@
         <translation>&amp;Aktualisieren</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="225"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="227"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation>Text Dateien (*.txt);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="114"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="116"/>
         <source>The requirements were changed. Do you want to overwrite these changes?</source>
         <translation>Die Anforderungen wurden verändert. Sollen die Änderungen überschrieben werden?</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="156"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="158"/>
         <source>No output generated by &apos;pip freeze&apos;.</source>
         <translation>&apos;pip freeze&apos; erzeugte keine Ausgabe.</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="193"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="195"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; already exists. Do you want to overwrite it?</source>
         <translation>Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Soll sie überschrieben werden?</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="205"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="207"/>
         <source>&lt;p&gt;The requirements could not be written to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Anforderungen konnten nicht in &lt;b&gt;{0}&lt;/b&gt; gespeichert werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
@@ -48526,7 +48525,7 @@
         <translation>Klassifizierungen:</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="190"/>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="193"/>
         <source>any</source>
         <translation>beliebig</translation>
     </message>
@@ -48636,27 +48635,27 @@
         <translation>Archiv</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="229"/>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="232"/>
         <source>B</source>
         <translation>B</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="232"/>
-        <source>KB</source>
-        <translation>KB</translation>
-    </message>
-    <message>
         <location filename="../PipInterface/PipPackageDetailsDialog.py" line="235"/>
-        <source>MB</source>
-        <translation>MB</translation>
+        <source>KB</source>
+        <translation>KB</translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackageDetailsDialog.py" line="238"/>
+        <source>MB</source>
+        <translation>MB</translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="241"/>
         <source>GB</source>
         <translation>GB</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="239"/>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="242"/>
         <source>{0:.1f} {1}</source>
         <comment>value, unit</comment>
         <translation>{0:.1f} {1}</translation>
@@ -48808,7 +48807,7 @@
         <translation>Umschalten, um das Suchfenster anzuzeigen bzw. zu verstecken</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="189"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="192"/>
         <source>Name:</source>
         <translation>Name:</translation>
     </message>
@@ -48823,7 +48822,7 @@
         <translation>Gib den Suchtext ein</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="193"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="196"/>
         <source>Summary:</source>
         <translation>Kurzbeschreibung:</translation>
     </message>
@@ -48853,77 +48852,77 @@
         <translation>pip Menü</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="190"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="193"/>
         <source>Version:</source>
         <translation>Version:</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="191"/>
-        <source>Location:</source>
-        <translation>Speicherort:</translation>
-    </message>
-    <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="192"/>
-        <source>Requires:</source>
-        <translation>Erfordert:</translation>
-    </message>
-    <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="194"/>
-        <source>Homepage:</source>
-        <translation>Homepage:</translation>
+        <source>Location:</source>
+        <translation>Speicherort:</translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="195"/>
-        <source>Author:</source>
-        <translation>Autor:</translation>
-    </message>
-    <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="196"/>
-        <source>Author Email:</source>
-        <translation>Autor Email:</translation>
+        <source>Requires:</source>
+        <translation>Erfordert:</translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="197"/>
-        <source>License:</source>
-        <translation>Lizenz:</translation>
+        <source>Homepage:</source>
+        <translation>Homepage:</translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="198"/>
-        <source>Metadata Version:</source>
-        <translation>Metadaten Version:</translation>
+        <source>Author:</source>
+        <translation>Autor:</translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="199"/>
-        <source>Installer:</source>
-        <translation>Installer:</translation>
+        <source>Author Email:</source>
+        <translation>Autor Email:</translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="200"/>
-        <source>Classifiers:</source>
-        <translation>Klassifizierungen:</translation>
+        <source>License:</source>
+        <translation>Lizenz:</translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="201"/>
-        <source>Entry Points:</source>
-        <translation>Einsprungpunkte:</translation>
+        <source>Metadata Version:</source>
+        <translation>Metadaten Version:</translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="202"/>
+        <source>Installer:</source>
+        <translation>Installer:</translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="203"/>
+        <source>Classifiers:</source>
+        <translation>Klassifizierungen:</translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="204"/>
+        <source>Entry Points:</source>
+        <translation>Einsprungpunkte:</translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="205"/>
         <source>Files:</source>
         <translation>Dateien:</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="351"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="360"/>
         <source>Getting installed packages...</source>
         <translation>Ermittle installierte Pakete...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="366"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="375"/>
         <source>Getting outdated packages...</source>
         <translation>Ermittle veraltete Pakete...</translation>
     </message>
     <message numerus="yes">
-        <location filename="../PipInterface/PipPackagesWidget.py" line="776"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="791"/>
         <source>%n package(s) found.</source>
         <translation>
             <numerusform>%n Paket gefunden.</numerusform>
@@ -48931,97 +48930,97 @@
         </translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
         <source>Search PyPI</source>
         <translation>PyPI durchsuchen</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
         <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Keine detaillierten Paketinformationen für &lt;b&gt;{0}&lt;/b&gt; verfügbar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="960"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="975"/>
         <source>Install Pip</source>
         <translation>Pip installieren</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="963"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="978"/>
         <source>Install Pip to User-Site</source>
         <translation>Pip in Nutzerverzeichnis installieren</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="966"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="981"/>
         <source>Repair Pip</source>
         <translation>Pip reparieren</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1083"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1098"/>
         <source>Install Packages</source>
         <translation>Pakete installieren</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="973"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="988"/>
         <source>Install Local Package</source>
         <translation>Lokales Paket installieren</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="977"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="992"/>
         <source>Install Requirements</source>
         <translation>Paketanforderungen installieren</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="980"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="995"/>
         <source>Uninstall Requirements</source>
         <translation>Paketanforderungen deinstallieren</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="983"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="998"/>
         <source>Generate Requirements...</source>
         <translation>Anforderungen erzeugen...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1001"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1016"/>
         <source>Edit User Configuration...</source>
         <translation>Nutzerkonfiguration bearbeiten...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1004"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1019"/>
         <source>Edit Environment Configuration...</source>
         <translation>Umgebungskonfiguration bearbeiten...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1009"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1024"/>
         <source>Configure...</source>
         <translation>Einstellungen...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1194"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1209"/>
         <source>Edit Configuration</source>
         <translation>Konfiguration bearbeiten</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1194"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1209"/>
         <source>No valid configuration path determined. Aborting</source>
         <translation>Es konnte kein gültiger Konfigurationspfad ermittelt werden. Abbruch</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="987"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1002"/>
         <source>Show Cache Info...</source>
         <translation>Zwischenspeicherinfo...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="990"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1005"/>
         <source>Show Cached Files...</source>
         <translation>Zwischengespeicherte Dateien...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="993"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1008"/>
         <source>Remove Cached Files...</source>
         <translation>Zwischengespeicherte Dateien löschen...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="996"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1011"/>
         <source>Purge Cache...</source>
         <translation>Zwischenspeicher leeren...</translation>
     </message>
@@ -49031,17 +49030,17 @@
         <translation>Veröffentlicht</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="759"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="774"/>
         <source>&lt;p&gt;Received an error while searching for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Fehler während der Suche nach &lt;b&gt;{0}&lt;/b&gt; empfangen.&lt;/p&gt;&lt;p&gt;Fehler: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="778"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="793"/>
         <source>Showing first 20 packages found.</source>
         <translation>Zeige die ersten 20 gefundenen Pakete.</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="785"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="800"/>
         <source>&lt;p&gt;There were no results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Es gab keine Ergebnisse für &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
@@ -49261,12 +49260,12 @@
         <translation>Beschreibung</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInfoDialog.py" line="101"/>
+        <location filename="../PluginManager/PluginInfoDialog.py" line="105"/>
         <source>Yes</source>
         <translation>Ja</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInfoDialog.py" line="77"/>
+        <location filename="../PluginManager/PluginInfoDialog.py" line="78"/>
         <source>No</source>
         <translation>Nein</translation>
     </message>
@@ -49296,7 +49295,7 @@
         <translation>Version</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInfoDialog.py" line="76"/>
+        <location filename="../PluginManager/PluginInfoDialog.py" line="77"/>
         <source>On-Demand</source>
         <translation>Bei Bedarf</translation>
     </message>
@@ -49372,17 +49371,17 @@
         <translation>Weiter &gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="75"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="77"/>
         <source>User plugins directory</source>
         <translation>Nutzer-Pluginverzeichnis</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="81"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="83"/>
         <source>Global plugins directory</source>
         <translation>Globales Pluginverzeichnis</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="145"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="147"/>
         <source>Plugin ZIP-Archives:
 {0}
 
@@ -49395,72 +49394,72 @@
 {1} ({2})</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="162"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="164"/>
         <source>Select plugin ZIP-archives</source>
         <translation>Wähle Plugin-ZIP-Archive</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="162"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="164"/>
         <source>Plugin archive (*.zip)</source>
         <translation>Pluginarchiv (*.zip)</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="231"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="233"/>
         <source>Installing {0} ...</source>
         <translation>Installiere {0} ...</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="236"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="238"/>
         <source>  ok</source>
         <translation>  ok</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="243"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="245"/>
         <source>The plugins were installed successfully.</source>
         <translation>Die Plugins wurden erfolgreich installiert.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="246"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="248"/>
         <source>Some plugins could not be installed.</source>
         <translation>Einige Plugins konnten nicht installiert werden.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="274"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="276"/>
         <source>&lt;p&gt;The archive file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Archivdatei &lt;b&gt;{0}&lt;/b&gt; existiert nicht. Abbruch...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="315"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="317"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not a valid plugin ZIP-archive. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; ist kein gültiges Plugin-ZIP-Archiv. Abbruch...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="294"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="296"/>
         <source>&lt;p&gt;The destination directory &lt;b&gt;{0}&lt;/b&gt; is not writeable. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;In das Zielverzeichnis &lt;b&gt;{0}&lt;/b&gt; kann nicht geschrieben werden. Abbruch...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="364"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="366"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; does not contain a &apos;packageName&apos; attribute. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Pluginmodul &lt;b&gt;{0}&lt;/b&gt; besitzt kein Attribut „packageName“. Abbruch...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="389"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="391"/>
         <source>&lt;p&gt;The plugin package &lt;b&gt;{0}&lt;/b&gt; exists. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Pluginpackage &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Abbruch...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="402"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="404"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; exists. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Pluginmodul &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Abbruch...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="496"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="498"/>
         <source>Error installing plugin. Reason: {0}</source>
         <translation>Fehler bei der Plugin-Installation. Ursache: {0}</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="505"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="507"/>
         <source>Unspecific exception installing plugin.</source>
         <translation>Unbekannte Ausnahme bei der Plugin-Installation.</translation>
     </message>
@@ -49470,7 +49469,7 @@
         <translation>Installieren</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="374"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="376"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; does not conform with the PyQt v2 API. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Pluginmodul &lt;b&gt;{0}&lt;/b&gt; verwendet nicht die PyQt-API Version 2. Abbruch...&lt;/p&gt;</translation>
     </message>
@@ -49518,22 +49517,22 @@
         <translation>Das interne Pluginverzeichnis &lt;b&gt;{0}&lt;/b&gt; existiert nicht.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1292"/>
+        <location filename="../PluginManager/PluginManager.py" line="1293"/>
         <source>Error downloading file</source>
         <translation>Fehler beim Herunterladen der Datei</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1292"/>
+        <location filename="../PluginManager/PluginManager.py" line="1293"/>
         <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die angefragte Datei konnte nicht von {0} gedownloaded werden.&lt;/p&gt;&lt;p&gt;Fehler: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1329"/>
+        <location filename="../PluginManager/PluginManager.py" line="1330"/>
         <source>New plugin versions available</source>
         <translation>Neue Plugin Versionen verfügbar</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1329"/>
+        <location filename="../PluginManager/PluginManager.py" line="1330"/>
         <source>&lt;p&gt;There are new plug-ins or plug-in updates available. Use the plug-in repository dialog to get them.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Es sind neue Plugins oder neue Plugin Versionen verfügbar. Benutze den Plugin-Repository Dialog, um sie zu laden.&lt;/p&gt;</translation>
     </message>
@@ -49807,54 +49806,54 @@
         <translation>Schließen &amp;&amp; Installieren</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="359"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="362"/>
         <source>Download Plugin Files</source>
         <translation>Plugindateien herunterladen</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="359"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="362"/>
         <source>The requested plugins were downloaded.</source>
         <translation>Die angeforderten Plugins wurden heruntergeladen.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="415"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="418"/>
         <source>Read plugins repository file</source>
         <translation>Plugins Repositorydatei lesen</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="415"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="418"/>
         <source>&lt;p&gt;The plugins repository file &lt;b&gt;{0}&lt;/b&gt; could not be read. Select Update&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Plugins Repositorydatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="423"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="426"/>
         <source>No plugin repository file available.
 Select Update.</source>
         <translation>Es ist keine Plugins-Repositorydatei verfügbar.
 Bitte „Aktualisieren“ drücken.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="484"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="491"/>
         <source>Error downloading file</source>
         <translation>Fehler beim Herunterladen der Datei</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="484"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="491"/>
         <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die angefragte Datei konnte nicht von {0} gedownloaded werden.&lt;/p&gt;&lt;p&gt;Fehler: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="568"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="575"/>
         <source>Stable</source>
         <translation>Stabil</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="574"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="581"/>
         <source>Unstable</source>
         <translation>Instabil</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="586"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="593"/>
         <source>Unknown</source>
         <translation>Unbekannt</translation>
     </message>
@@ -49864,87 +49863,87 @@
         <translation>Download &amp;&amp; Installieren</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="407"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="410"/>
         <source>Plugins Repository URL Changed</source>
         <translation>Plugin-Repository-URL Geändert</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="407"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="410"/>
         <source>The URL of the Plugins Repository has changed. Select the &quot;Update&quot; button to get the new repository file.</source>
         <translation>Die URL des Plugin-Repositorys hat sich geändert. Wählen Sie den „Aktualisieren“-Knopf, um die neue Repositorydatei zu erhalten.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="117"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="120"/>
         <source>Hide</source>
         <translation>Ausblenden</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="119"/>
-        <source>Hide Selected</source>
-        <translation>Ausgewählte ausblenden</translation>
-    </message>
-    <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="122"/>
-        <source>Show All</source>
-        <translation>Alle anzeigen</translation>
+        <source>Hide Selected</source>
+        <translation>Ausgewählte ausblenden</translation>
     </message>
     <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="125"/>
+        <source>Show All</source>
+        <translation>Alle anzeigen</translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="128"/>
         <source>Cleanup Downloads</source>
         <translation>Downloadswartung</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="600"/>
-        <source>up-to-date</source>
-        <translation>aktuell</translation>
-    </message>
-    <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="603"/>
-        <source>new download available</source>
-        <translation>neuer Download verfügbar</translation>
-    </message>
-    <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="607"/>
+        <source>up-to-date</source>
+        <translation>aktuell</translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="610"/>
+        <source>new download available</source>
+        <translation>neuer Download verfügbar</translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="614"/>
         <source>update installable</source>
         <translation>Aktualisierung installierbar</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="611"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="618"/>
         <source>updated download available</source>
         <translation>aktualisiertes Download verfügbar</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="979"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="986"/>
         <source>Cleanup of Plugin Downloads</source>
         <translation>Wartung der Plugin Downloads</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="979"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="986"/>
         <source>&lt;p&gt;The plugin download &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Plugindatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelöscht werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="430"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="433"/>
         <source>New: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation>Neu:&lt;b&gt;{0}&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="432"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="435"/>
         <source>Local Updates: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation>Lokale Aktualisierungen: &lt;b&gt;{0}&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="434"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="437"/>
         <source>Remote Updates: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation>Entfernte Aktualisierungen: &lt;b&gt;{0}&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="580"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="587"/>
         <source>Obsolete</source>
         <translation>Überholt</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="615"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="622"/>
         <source>error determining status</source>
         <translation>Fehler bei der Ermittlung des Status</translation>
     </message>
@@ -49952,17 +49951,17 @@
 <context>
     <name>PluginRepositoryWindow</name>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>&lt;p&gt;Could not start the process.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Prozess konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass er als &lt;b&gt;{0}&lt;/b&gt; verfügbar ist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>OK</source>
         <translation>OK</translation>
     </message>
@@ -50314,17 +50313,17 @@
 <context>
     <name>Preferences</name>
     <message>
-        <location filename="../Preferences/__init__.py" line="1640"/>
+        <location filename="../Preferences/__init__.py" line="1649"/>
         <source>Export Preferences</source>
         <translation>Einstellungen exportieren</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1668"/>
+        <location filename="../Preferences/__init__.py" line="1677"/>
         <source>Import Preferences</source>
         <translation>Einstellungen importieren</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1668"/>
+        <location filename="../Preferences/__init__.py" line="1677"/>
         <source>Properties File (*.ini);;All Files (*)</source>
         <translation>Properties-Dateien (*.ini);;Alle Dateien (*)</translation>
     </message>
@@ -50345,7 +50344,7 @@
 <context>
     <name>PreviewModel</name>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="432"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="434"/>
         <source>Variable Name</source>
         <translation>Variablenname</translation>
     </message>
@@ -50353,27 +50352,27 @@
 <context>
     <name>PreviewProcessingThread</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="463"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="466"/>
         <source>&lt;p&gt;No preview available for this type of file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Für diesen Dateityp ist keine Vorschau verfügbar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="632"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="635"/>
         <source>&lt;p&gt;ReStructuredText preview requires the &lt;b&gt;python-docutils&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager, &apos;pip install docutils&apos; or see &lt;a href=&quot;http://pypi.python.org/pypi/docutils&quot;&gt;this page.&lt;/a&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die ReStructuredText-Vorschau erfordert das &lt;b&gt;python-docutils&lt;/b&gt;-Paket.&lt;br/&gt;Installiere es mit dem Paketmanager,&apos;pip install docutils&apos; oder siehe &lt;a href=&quot;http://pypi.python.org/pypi/docutils&quot;&gt;diese Seite.&lt;/a&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="572"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="575"/>
         <source>&lt;p&gt;ReStructuredText preview requires the &lt;b&gt;sphinx&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager,&apos;pip install Sphinx&apos; or see &lt;a href=&quot;http://pypi.python.org/pypi/Sphinx&quot;&gt;this page.&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Alternatively you may disable Sphinx usage on the Editor, Filehandling configuration page.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die ReStructuredText-Vorschau erfordert das &lt;b&gt;sphinx&lt;/b&gt;-Paket.&lt;br/&gt;Installiere es mit dem Paketmanager,&apos;pip install Sphinx&apos; oder siehe &lt;a href=&quot;http://pypi.python.org/pypi/Sphinx&quot;&gt;diese Seite.&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Alternativ kann die Verwendung von Sphinx auf der Konfigurationsseite Editor, Dateibehandlung deaktiviert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="675"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="678"/>
         <source>&lt;p&gt;Markdown preview requires the &lt;b&gt;Markdown&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager, &apos;pip install Markdown&apos; or see &lt;a href=&quot;http://pythonhosted.org/Markdown/install.html&quot;&gt;installation instructions.&lt;/a&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Markdown-Vorschau erfordert das &lt;b&gt;Markdown&lt;/b&gt;-Paket.&lt;br/&gt;Installiere es mit dem Paketmanager, &apos;pip install Markdown&apos; oder siehe &lt;a href=&quot;http://pythonhosted.org/Markdown/install.html&quot;&gt;die Installationsanleitung.&lt;/a&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="647"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="650"/>
         <source>&lt;p&gt;Docutils returned an error:&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Docutils lieferte einen Fehler zurück:&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
@@ -50381,42 +50380,42 @@
 <context>
     <name>PreviewerHTML</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="75"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="78"/>
         <source>Select to enable JavaScript for HTML previews</source>
         <translation>Auswählen, um JavaScript für die Vorschau zu aktivieren</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="74"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="77"/>
         <source>Enable JavaScript</source>
         <translation>JavaScript aktivieren</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="81"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="84"/>
         <source>Select to enable support for Server Side Includes</source>
         <translation>Auswählen, um Unterstützung für Server Side Includes zu aktivieren</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="79"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="82"/>
         <source>Enable Server Side Includes</source>
         <translation>Server Side Includes aktivieren</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="194"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="197"/>
         <source>&lt;p&gt;No preview available for this type of file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Für diesen Dateityp ist keine Vorschau verfügbar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="253"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="256"/>
         <source>Preview - {0}</source>
         <translation>Vorschau – {0}</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="255"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="258"/>
         <source>Preview</source>
         <translation>Vorschau</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="57"/>
+        <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;HTML Vorschau ist nicht verfügbar!&lt;br/&gt;Installiere PyQtWebEngine.&lt;/b&gt;</translation>
     </message>
@@ -50467,17 +50466,17 @@
         <translation>PDF-Dateien (*.pdf);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="76"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="80"/>
         <source>Portrait</source>
         <translation>Hochformat</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="78"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="82"/>
         <source>Landscape</source>
         <translation>Querformat</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="79"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="83"/>
         <source>{0}, {1}</source>
         <comment>page size, page orientation</comment>
         <translation>{0}, {1}</translation>
@@ -50657,12 +50656,12 @@
         <translation>(nicht konfiguriert)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="436"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="437"/>
         <source>(not executable)</source>
         <translation>(nicht ausführbar)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="479"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="481"/>
         <source>(not found)</source>
         <translation>(nicht gefunden)</translation>
     </message>
@@ -50672,7 +50671,7 @@
         <translation>Externe Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="433"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="434"/>
         <source>(unknown)</source>
         <translation>(unbekannt)</translation>
     </message>
@@ -50732,7 +50731,7 @@
         <translation>gRPC Compiler</translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="398"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="399"/>
         <source>(module not found)</source>
         <translation>(Modul nicht gefunden)</translation>
     </message>
@@ -52097,32 +52096,32 @@
 <context>
     <name>ProjectBaseBrowser</name>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="128"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="132"/>
         <source>Open</source>
         <translation>Öffnen</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="496"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="503"/>
         <source>local</source>
         <translation>lokal</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="537"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="544"/>
         <source>Select entries</source>
         <translation>Einträge auswählen</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="537"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="544"/>
         <source>There were no matching entries found.</source>
         <translation>Es wurden keine passenden Einträge gefunden.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="294"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="300"/>
         <source>Delete directories</source>
         <translation>Verzeichnisse löschen</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="294"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="300"/>
         <source>Do you really want to delete these directories from the project?</source>
         <translation>Wollen Sie wirklich diese Verzeichnisse aus dem Projekt löschen?</translation>
     </message>
@@ -52183,7 +52182,7 @@
         <translation>VCS-Status</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBrowserModel.py" line="797"/>
+        <location filename="../Project/ProjectBrowserModel.py" line="803"/>
         <source>local</source>
         <translation>lokal</translation>
     </message>
@@ -52372,7 +52371,7 @@
 <context>
     <name>ProjectFormsBrowser</name>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1009"/>
         <source>Forms</source>
         <translation>Formulare</translation>
     </message>
@@ -52402,22 +52401,22 @@
         <translation>Löschen</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="784"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="788"/>
         <source>Form Compilation</source>
         <translation>Formular übersetzen</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="768"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="772"/>
         <source>The compilation of the form file was successful.</source>
         <translation>Die Übersetzung des Formulars war erfolgreich.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="962"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="966"/>
         <source>Compiling forms...</source>
         <translation>Formular übersetzen...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>Abort</source>
         <translation>Abbrechen</translation>
     </message>
@@ -52427,7 +52426,7 @@
         <translation>Mit Qt Designer öffnen</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="870"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="874"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
@@ -52437,7 +52436,7 @@
         <translation>Formularverzeichnis hinzufügen...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="784"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="788"/>
         <source>The compilation of the form file failed.</source>
         <translation>Die Übersetzung des Formulars ist fehlgeschlagen.</translation>
     </message>
@@ -52527,12 +52526,12 @@
         <translation>Übersetzungsvorschau</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="775"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="779"/>
         <source>&lt;p&gt;The compilation of the form file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Übersetzung des Formulars ist fehlgeschlagen.&lt;/p&lt;p&gt;Grund: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="870"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="874"/>
         <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
         <translation>{0} konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass es sich im Suchpfad befindet.</translation>
     </message>
@@ -52552,12 +52551,12 @@
         <translation>Dialog mit Knöpfen (unten Mitte)</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>Determining changed forms...</source>
         <translation>Ermittle veränderte Formulare...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1031"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1035"/>
         <source>Compiling changed forms...</source>
         <translation>Übersetze veränderte Formulare...</translation>
     </message>
@@ -52652,7 +52651,7 @@
         <translation>QStackedWidget</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>%v/%m Forms</source>
         <translation>%v/%m Formulare</translation>
     </message>
@@ -53292,7 +53291,7 @@
 <context>
     <name>ProjectResourcesBrowser</name>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="861"/>
         <source>Resources</source>
         <translation>Ressourcen</translation>
     </message>
@@ -53387,52 +53386,52 @@
         <translation>Wollen Sie wirklich diese Ressourcendateien aus dem Projekt löschen?</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="624"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="628"/>
         <source>Resource Compilation</source>
         <translation>Ressourcenübersetzung</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="610"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="614"/>
         <source>The compilation of the resource file was successful.</source>
         <translation>Die Übersetzung der Ressourcendatei war erfolgreich.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="617"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="621"/>
         <source>&lt;p&gt;The compilation of the resource file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Übersetzung der Ressourcendatei ist fehlgeschlagen.&lt;/p&lt;p&gt;Grund: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="624"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="628"/>
         <source>The compilation of the resource file failed.</source>
         <translation>Die Übersetzung der Ressourcendatei ist fehlgeschlagen.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="713"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="717"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="713"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="717"/>
         <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
         <translation>{0} konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass es sich im Suchpfad befindet.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="779"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="783"/>
         <source>Compiling resources...</source>
         <translation>Übersetze Ressourcendateien...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>Abort</source>
         <translation>Abbrechen</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>Determining changed resources...</source>
         <translation>Ermittle veränderte Ressourcen...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="889"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="893"/>
         <source>Compiling changed resources...</source>
         <translation>Übersetze veränderte Ressourcen...</translation>
     </message>
@@ -53452,7 +53451,7 @@
         <translation>Pfad in die Zwischenablage kopieren</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>%v/%m Resources</source>
         <translation>%v/%m Resourcen</translation>
     </message>
@@ -54465,32 +54464,32 @@
 <context>
     <name>PyCoverageDialog</name>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="61"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="63"/>
         <source>Annotate</source>
         <translation>Kommentieren</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="63"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="65"/>
         <source>Annotate all</source>
         <translation>Alle kommentieren</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="64"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="66"/>
         <source>Delete annotated files</source>
         <translation>Lösche kommentierte Dateien</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="67"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="69"/>
         <source>Erase Coverage Info</source>
         <translation>Lösche Abdeckungsinfo</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>Annotating files...</source>
         <translation>Dateien kommentieren...</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>Abort</source>
         <translation>Abbrechen</translation>
     </message>
@@ -54556,7 +54555,7 @@
         <translation>Ausgeführt</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="349"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="361"/>
         <source>Coverage</source>
         <translation>Abdeckung</translation>
     </message>
@@ -54588,17 +54587,17 @@
         <translation>Zeigt den Fortschritt der Quelltextabdeckungsermittlung an</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="58"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="60"/>
         <source>Open</source>
         <translation>Öffnen</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="243"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="246"/>
         <source>Parse Error</source>
         <translation>Parsefehler</translation>
     </message>
     <message numerus="yes">
-        <location filename="../DataViews/PyCoverageDialog.py" line="243"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="246"/>
         <source>%n file(s) could not be parsed. Coverage info for these is not available.</source>
         <translation>
             <numerusform>Eine Datei konnte nicht geparst werden. Coverage Informationen sind für diese nicht verfügbar.</numerusform>
@@ -54606,7 +54605,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>%v/%m Files</source>
         <translation>%v/%m Dateien</translation>
     </message>
@@ -54614,62 +54613,62 @@
 <context>
     <name>PyProfileDialog</name>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="89"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="92"/>
         <source>Erase Profiling Info</source>
         <translation>Lösche Profilinformationen</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="91"/>
-        <source>Erase Timing Info</source>
-        <translation>Lösche Timinginformationen</translation>
-    </message>
-    <message>
         <location filename="../DataViews/PyProfileDialog.py" line="94"/>
+        <source>Erase Timing Info</source>
+        <translation>Lösche Timinginformationen</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="97"/>
         <source>Erase All Infos</source>
         <translation>Lösche alle Informationen</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="234"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="239"/>
         <source>Profile Results</source>
         <translation>Profilergebnisse</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="246"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="251"/>
         <source>Loading Profiling Data</source>
         <translation>Profildaten laden</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="215"/>
-        <source>function calls</source>
-        <translation>Funktionsaufrufe</translation>
-    </message>
-    <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="218"/>
-        <source>primitive calls</source>
-        <translation>Einfache Aufrufe</translation>
-    </message>
-    <message>
         <location filename="../DataViews/PyProfileDialog.py" line="220"/>
+        <source>function calls</source>
+        <translation>Funktionsaufrufe</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="223"/>
+        <source>primitive calls</source>
+        <translation>Einfache Aufrufe</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="225"/>
         <source>CPU seconds</source>
         <translation>CPU Zeit (s)</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="337"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="354"/>
         <source>Exclude Python Library</source>
         <translation>Python-Bibliothek ausblenden</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="333"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="350"/>
         <source>Include Python Library</source>
         <translation>Python-Bibliothek einblenden</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="234"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="239"/>
         <source>&lt;p&gt;There is no profiling data available for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Es sind keine Profildaten für &lt;b&gt;{0}&lt;/b&gt; verfügbar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="246"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="251"/>
         <source>&lt;p&gt;The profiling data could not be read from file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Profildaten konnten nicht aus der Datei &lt;b&gt;{0}&lt;/b&gt; gelesen werden.&lt;/p&gt;</translation>
     </message>
@@ -55366,132 +55365,132 @@
         <translation>Zeige die nächste Übereinstimmung des Regulären Ausdrucks</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="102"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="103"/>
         <source>Copy</source>
         <translation>Kopieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="104"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="105"/>
         <source>Copy the regular expression to the clipboard</source>
         <translation>Den regulären Ausdruck in die Zwischenablage kopieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="188"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="190"/>
         <source>Named reference</source>
         <translation>Benannte Referenz</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="182"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="184"/>
         <source>No named groups have been defined yet.</source>
         <translation>Es wurden noch keine benannten Gruppen erstellt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="188"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="190"/>
         <source>Select group name:</source>
         <translation>Wähle einen Gruppennamen:</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="372"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="374"/>
         <source>Save regular expression</source>
         <translation>Sichere den Regulären Ausdruck</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="360"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="362"/>
         <source>RegExp Files (*.rx);;All Files (*)</source>
         <translation>RegExp-Dateien (*.rx);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="372"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="374"/>
         <source>&lt;p&gt;The regular expression could not be saved.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Reguläre Ausdruck konnte nicht gespeichert werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="360"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="362"/>
         <source>Load regular expression</source>
         <translation>Lade einen Regulären Ausdruck</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="414"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="416"/>
         <source>The regular expression is valid.</source>
         <translation>Der reguläre Ausdruck ist gültig.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="578"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="581"/>
         <source>Error</source>
         <translation>Fehler</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="564"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="567"/>
         <source>Invalid regular expression: {0}</source>
         <translation>Ungültiger regulärer Ausdruck: {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="571"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="574"/>
         <source>Invalid regular expression: missing group name</source>
         <translation>Ungültiger regulärer Ausdruck: Gruppenname fehlt</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="433"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="435"/>
         <source>A regular expression must be given.</source>
         <translation>Ein regulärer Ausdruck muss eingegeben werden.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="478"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="480"/>
         <source>Regexp</source>
         <translation>Regexp</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="488"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="490"/>
         <source>Offset</source>
         <translation>Offset</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="496"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="498"/>
         <source>Captures</source>
         <translation>Speicherung</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="503"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="505"/>
         <source>Text</source>
         <translation>Text</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="506"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="508"/>
         <source>Characters</source>
         <translation>Zeichen</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="511"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="513"/>
         <source>Match</source>
         <translation>Übereinstimmung</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="526"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="528"/>
         <source>Capture #{0}</source>
         <translation>Speicher #{0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="546"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="549"/>
         <source>No more matches</source>
         <translation>Keine weitere Übereinstimmung</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="550"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="553"/>
         <source>No matches</source>
         <translation>Keine Übereinstimmung</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="578"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="581"/>
         <source>A regular expression and a text must be given.</source>
         <translation>Ein regulärer Ausdruck und ein Text müssen eingegeben werden.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="334"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="336"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="414"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="416"/>
         <source>Validation</source>
         <translation>Validation</translation>
     </message>
@@ -56072,37 +56071,37 @@
         <translation>Qelltextbereich</translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="247"/>
+        <location filename="../UI/PythonAstViewer.py" line="249"/>
         <source>Module</source>
         <translation>Modul</translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="279"/>
+        <location filename="../UI/PythonAstViewer.py" line="281"/>
         <source>{0}: {1}</source>
         <translation>{0}: {1}</translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="300"/>
+        <location filename="../UI/PythonAstViewer.py" line="302"/>
         <source>{0},{1}</source>
         <translation>{0},{1}</translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="307"/>
+        <location filename="../UI/PythonAstViewer.py" line="309"/>
         <source>{0}  -  {1}</source>
         <translation>{0}  -  {1}</translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="211"/>
+        <location filename="../UI/PythonAstViewer.py" line="213"/>
         <source>No editor has been opened.</source>
         <translation>Es wurde kein Editor geöffnet.</translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="222"/>
+        <location filename="../UI/PythonAstViewer.py" line="224"/>
         <source>The current editor does not contain any source code.</source>
         <translation>Der aktuelle Editor enthält keinen Quelltext.</translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="228"/>
+        <location filename="../UI/PythonAstViewer.py" line="230"/>
         <source>The current editor does not contain Python source code.</source>
         <translation>Der aktuelle Editor enthält keinen Python Quelltext.</translation>
     </message>
@@ -56155,7 +56154,7 @@
         <translation>Alle einklappen</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="695"/>
+        <location filename="../UI/PythonDisViewer.py" line="698"/>
         <source>Code Object &apos;{0}&apos;</source>
         <translation>Codeobjekt &apos;{0}&apos;</translation>
     </message>
@@ -56210,72 +56209,72 @@
         <translation>Ausblenden</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="810"/>
+        <location filename="../UI/PythonDisViewer.py" line="813"/>
         <source>Name</source>
         <translation>Name</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="812"/>
+        <location filename="../UI/PythonDisViewer.py" line="815"/>
         <source>Filename</source>
         <translation>Dateiname</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="814"/>
+        <location filename="../UI/PythonDisViewer.py" line="817"/>
         <source>First Line</source>
         <translation>Erste Zeile</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="816"/>
+        <location filename="../UI/PythonDisViewer.py" line="819"/>
         <source>Argument Count</source>
         <translation>Anzahl Argumente</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="818"/>
+        <location filename="../UI/PythonDisViewer.py" line="821"/>
         <source>Positional-only Arguments</source>
         <translation>Positional-only Argumente</translation>
     </message>
     <message>
+        <location filename="../UI/PythonDisViewer.py" line="827"/>
+        <source>Number of Locals</source>
+        <translation>Anzahle lokaler Variablen</translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="829"/>
+        <source>Stack Size</source>
+        <translation>Stackgröße</translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="831"/>
+        <source>Flags</source>
+        <translation>Flags</translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="834"/>
+        <source>Constants</source>
+        <translation>Konstanten</translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="837"/>
+        <source>Names</source>
+        <translation>Namen</translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="840"/>
+        <source>Variable Names</source>
+        <translation>Namen von Variablen</translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="843"/>
+        <source>Free Variables</source>
+        <translation>Freie Variable</translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="846"/>
+        <source>Cell Variables</source>
+        <translation>Zellenvariable</translation>
+    </message>
+    <message>
         <location filename="../UI/PythonDisViewer.py" line="824"/>
-        <source>Number of Locals</source>
-        <translation>Anzahle lokaler Variablen</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="826"/>
-        <source>Stack Size</source>
-        <translation>Stackgröße</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="828"/>
-        <source>Flags</source>
-        <translation>Flags</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="831"/>
-        <source>Constants</source>
-        <translation>Konstanten</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="834"/>
-        <source>Names</source>
-        <translation>Namen</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="837"/>
-        <source>Variable Names</source>
-        <translation>Namen von Variablen</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="840"/>
-        <source>Free Variables</source>
-        <translation>Freie Variable</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="843"/>
-        <source>Cell Variables</source>
-        <translation>Zellenvariable</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="821"/>
         <source>Keyword-only Arguments</source>
         <translation>Keyword-only Argumente</translation>
     </message>
@@ -57866,197 +57865,197 @@
 <context>
     <name>QRegularExpressionWizardWidget</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="96"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="97"/>
         <source>Save</source>
         <translation>Speichern</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="98"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="99"/>
         <source>Save the regular expression to a file</source>
         <translation>Speichere den Regulären Ausdruck in einer Datei</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="100"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="101"/>
         <source>Load</source>
         <translation>Laden</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="102"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="103"/>
         <source>Load a regular expression from a file</source>
         <translation>Lade einen Regulären Ausdruck aus einer Datei</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="105"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="106"/>
         <source>Validate</source>
         <translation>Validieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="107"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="108"/>
         <source>Validate the regular expression</source>
         <translation>Den regulären Ausdruck validieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="109"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="110"/>
         <source>Execute</source>
         <translation>Ausführen</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="111"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="112"/>
         <source>Execute the regular expression</source>
         <translation>Den regulären Ausdruck ausführen</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="113"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="114"/>
         <source>Next match</source>
         <translation>Nächste Position</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="115"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="116"/>
         <source>Show the next match of the regular expression</source>
         <translation>Zeige die nächste Übereinstimmung des Regulären Ausdrucks</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="128"/>
-        <source>Copy</source>
-        <translation>Kopieren</translation>
-    </message>
-    <message>
         <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="130"/>
+        <source>Copy</source>
+        <translation>Kopieren</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="132"/>
         <source>Copy the regular expression to the clipboard</source>
         <translation>Den regulären Ausdruck in die Zwischenablage kopieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="292"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="295"/>
         <source>Named reference</source>
         <translation>Benannte Referenz</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="286"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="289"/>
         <source>No named groups have been defined yet.</source>
         <translation>Es wurden noch keine benannten Gruppen erstellt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="292"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="295"/>
         <source>Select group name:</source>
         <translation>Wähle einen Gruppennamen:</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="454"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="457"/>
         <source>Save regular expression</source>
         <translation>Sichere den Regulären Ausdruck</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="416"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="419"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="454"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="457"/>
         <source>&lt;p&gt;The regular expression could not be saved.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Reguläre Ausdruck konnte nicht gespeichert werden.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="442"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="445"/>
         <source>Load regular expression</source>
         <translation>Lade einen Regulären Ausdruck</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="507"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="510"/>
         <source>Validation</source>
         <translation>Validation</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="507"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="510"/>
         <source>The regular expression is valid.</source>
         <translation>Der reguläre Ausdruck ist gültig.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="708"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="712"/>
         <source>Error</source>
         <translation>Fehler</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="582"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="585"/>
         <source>Invalid regular expression: {0}</source>
         <translation>Ungültiger regulärer Ausdruck: {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="538"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="541"/>
         <source>A regular expression must be given.</source>
         <translation>Ein regulärer Ausdruck muss eingegeben werden.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="602"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="605"/>
         <source>Regexp</source>
         <translation>Regexp</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="613"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="616"/>
         <source>Offset</source>
         <translation>Offset</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="621"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="624"/>
         <source>Captures</source>
         <translation>Speicherung</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="629"/>
-        <source>Text</source>
-        <translation>Text</translation>
-    </message>
-    <message>
         <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="632"/>
+        <source>Text</source>
+        <translation>Text</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="635"/>
         <source>Characters</source>
         <translation>Zeichen</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="637"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="640"/>
         <source>Match</source>
         <translation>Übereinstimmung</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="652"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="655"/>
         <source>Capture #{0}</source>
         <translation>Speicher #{0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="676"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="680"/>
         <source>No more matches</source>
         <translation>Keine weitere Übereinstimmung</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="681"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="685"/>
         <source>No matches</source>
         <translation>Keine Übereinstimmung</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="708"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="712"/>
         <source>A regular expression and a text must be given.</source>
         <translation>Ein regulärer Ausdruck und ein Text müssen eingegeben werden.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="442"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="445"/>
         <source>RegExp Files (*.rx);;All Files (*)</source>
         <translation>RegExp-Dateien (*.rx);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="702"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="706"/>
         <source>Communication Error</source>
         <translation>Kommunikationsfehler</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="169"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="172"/>
         <source>&lt;p&gt;The PyQt5 backend reported an error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das PyQt5 Backend hat einen Fehler gemeldet.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="696"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="700"/>
         <source>Invalid response received from PyQt5 backend.</source>
         <translation>Es wurde eine ungültige Antwort vom PyQt5 Backend empfangen.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="702"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="706"/>
         <source>Communication with PyQt5 backend failed.</source>
         <translation>Die Kommunikation mit dem PyQt5 Backend ist fehlgeschlagen.</translation>
     </message>
@@ -58084,7 +58083,7 @@
         <translation>Entfernen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="174"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="176"/>
         <source>Add Documentation</source>
         <translation>Dokumentation hinzufügen</translation>
     </message>
@@ -58099,12 +58098,12 @@
         <translation>Die Datei &lt;b&gt;{0}&lt;/b&gt; ist keine gültige Qt Hilfedatei.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="174"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="176"/>
         <source>The namespace &lt;b&gt;{0}&lt;/b&gt; is already registered.</source>
         <translation>Der namensraum &lt;b&gt;{0}&lt;/b&gt; ist bereits registriert.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="211"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="213"/>
         <source>Remove Documentation</source>
         <translation>Dokumentation entfernen</translation>
     </message>
@@ -58119,12 +58118,12 @@
         <translation>Die ausgewählten Dokumente entfernen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="196"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="198"/>
         <source>Do you really want to remove the selected documentation sets from the database?</source>
         <translation>Sollen die ausgewählten Dokumentationen wirklich entfernt werden?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="211"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="213"/>
         <source>Some documents currently opened reference the documentation you are attempting to remove. Removing the documentation will close those documents. Remove anyway?</source>
         <translation>Einige der geöffneten Dokumente beziehen sich auf die zu entfernende Dokumentation. Das Entfernen der Dokumentation wird diese schließen. Trotzdem löschen?</translation>
     </message>
@@ -58179,7 +58178,7 @@
         <translation>Drücken, um die ausgewählten Filter zu löschen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="406"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="410"/>
         <source>Remove Filters</source>
         <translation>Filter löschen</translation>
     </message>
@@ -58189,7 +58188,7 @@
         <translation>Drücken, um die ausgewählten Attribute zu löschen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="434"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="438"/>
         <source>Remove Attributes</source>
         <translation>Attribute löschen</translation>
     </message>
@@ -58234,22 +58233,22 @@
         <translation>Die Seite enthält ungesicherte Änderungen. Sollen sie gesichert werden?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="385"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="389"/>
         <source>Add Filter</source>
         <translation>Filter hinzufügen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="385"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="389"/>
         <source>Filter name:</source>
         <translation>Filtername:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="406"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="410"/>
         <source>Do you really want to remove the selected filters from the database?</source>
         <translation>Sollen die ausgewählten Filter wirklich aus der Datenbank gelöscht werden?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="434"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="438"/>
         <source>Do you really want to remove the selected attributes from the database?</source>
         <translation>Sollen die ausgewählten Attribute wirklich aus der Datenbank gelöscht werden?</translation>
     </message>
@@ -58267,27 +58266,27 @@
         <translation>Wähle die zu installierenden Dokumentationsdateien:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="139"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="142"/>
         <source>Delete Documentation Sets</source>
         <translation>Dokumentationssätze löschen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="86"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="89"/>
         <source>Shall the selected documentation sets really be deleted?</source>
         <translation>Sollen die ausgewählten Dokumentationssätze wirklich gelöscht werden?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="102"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="105"/>
         <source>&lt;p&gt;The documentation set &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Dokumentationssatz &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelöscht werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="121"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="124"/>
         <source>Shall the selected documentation set categories really be deleted?</source>
         <translation>Sollen die gewählten Dumentenkategorien wirklich gelöscht werden?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="139"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="142"/>
         <source>Shall all documentation sets really be deleted?</source>
         <translation>Sollen wirklich alle Dokumentationssätze gelöscht werden?</translation>
     </message>
@@ -59768,87 +59767,87 @@
 <context>
     <name>SafeBrowsingAPI</name>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="391"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="400"/>
         <source>&lt;h3&gt;Malware Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to install harmful programs on your computer in order to steal or destroy your data.&lt;/p&gt;</source>
         <translation>&lt;h3&gt;Warnung vor Schadsoftware&lt;/h3&gt;&lt;p&gt;Die Website, die sie besuchen wollen, könnte möglicherweise versuchen, Schadsoftware zum Diebstahl oder zur Zerstörung ihrer Daten auf ihrem Computer zu installieren.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="398"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="407"/>
         <source>&lt;h3&gt;Phishing Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to trick you into doing something dangerous online, such as revealing passwords or personal information, usually through a fake website.&lt;/p&gt;</source>
         <translation>&lt;h3&gt;Phishing Warnung&lt;/h3&gt;&lt;p&gt;Die Website, die sie besuchen wollen, könnte möglicherweise versuchen, sie zu veranlassen, gefährliche Onlineaktivitäten wie z.B. Eingabe von Kennwörtern oder persönlicher Informationen durchzuführen. Dies geschieht meist durch eine gefälschte Website.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="406"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="415"/>
         <source>&lt;h3&gt;Unwanted Software Warning&lt;/h3&gt;&lt;p&gt;The software you are about to download may negatively affect your browsing or computing experience.&lt;/p&gt;</source>
         <translation>&lt;h3&gt;Warnung vor unerwünschter Software&lt;/h3&gt;&lt;p&gt;Die Software, die sie herunterladen möchten, könnte möglicherweise ihre Surf- oder Computererfahrung negativ beeinträchtigen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="412"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="421"/>
         <source>&lt;h3&gt;Potentially Harmful Application&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to trick you into installing applications, that may negatively affect your browsing experience.&lt;/p&gt;</source>
         <translation>&lt;h3&gt;Potentiell gefährliche Anwendung&lt;/h3&gt;&lt;p&gt;Die Website, die sie besuchen wollen, könnte möglicherweise versuchen, sie zur Installation einer Anwendung, die ihre Surf- und Computererfahrung negativ beeinflussen könnte, zu verleiten.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="426"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="435"/>
         <source>&lt;h3&gt;Unknown Threat Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit was found in the Safe Browsing Database but was not classified yet.&lt;/p&gt;</source>
         <translation>&lt;h3&gt;Warnung vor unbekannter Gefahr&lt;/h3&gt;Die Website, die sie besuchen wollen, wurde in der Safe Browsing Datenbank gefunden, ist jedoch bisher noch nicht klassifiziert.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="446"/>
-        <source>Malware</source>
-        <translation>Schadsoftware</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="449"/>
-        <source>Phishing</source>
-        <translation>Phishing</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="452"/>
-        <source>Unwanted Software</source>
-        <translation>Unerwünschte Software</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="455"/>
-        <source>Harmful Application</source>
-        <translation>Gefährliche Anwendung</translation>
+        <source>Malware</source>
+        <translation>Schadsoftware</translation>
     </message>
     <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="458"/>
-        <source>Malicious Binary</source>
-        <translation>Bösartiges Binary</translation>
+        <source>Phishing</source>
+        <translation>Phishing</translation>
     </message>
     <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="461"/>
+        <source>Unwanted Software</source>
+        <translation>Unerwünschte Software</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="464"/>
+        <source>Harmful Application</source>
+        <translation>Gefährliche Anwendung</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="467"/>
+        <source>Malicious Binary</source>
+        <translation>Bösartiges Binary</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="470"/>
         <source>Unknown Threat</source>
         <translation>Unbekannte Gefahr</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="532"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="541"/>
         <source>any defined platform</source>
         <translation>einige der definierten Plattformen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="535"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="544"/>
         <source>all defined platforms</source>
         <translation>ale definierten Plattformen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="538"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="547"/>
         <source>unknown platform</source>
         <translation>unbekannte Plattform</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="492"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="501"/>
         <source>executable program</source>
         <translation>ausführbares Programm</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="495"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="504"/>
         <source>unknown type</source>
         <translation>unbekannter Typ</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="419"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="428"/>
         <source>&lt;h3&gt;Malicious Binary Warning&lt;/h3&gt;&lt;p&gt;The software you are about to download may be harmful to your computer.&lt;/p&gt;</source>
         <translation>&lt;h3&gt;Warnung vor bösartigem Binary&lt;/h3&gt;&lt;p&gt;Die Software, die sie herunterladen möchten, könnte möglicherweise für ihren Computer gefährlich sein.&lt;/p&gt;</translation>
     </message>
@@ -59856,7 +59855,7 @@
 <context>
     <name>SafeBrowsingDialog</name>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="171"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="173"/>
         <source>Safe Browsing Management</source>
         <translation>Safe Browsing Verwaltung</translation>
     </message>
@@ -59946,52 +59945,52 @@
         <translation>Drücken, um die eingegebene URL zu prüfen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="312"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="314"/>
         <source>Check URL</source>
         <translation>URL prüfen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="171"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="173"/>
         <source>The dialog contains unsaved changes.</source>
         <translation>Der Dialog enthält ungesicherte Änderungen.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="213"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="215"/>
         <source>Update Safe Browsing Cache</source>
         <translation>Safe Browsing Zwischenspeicher aktualisieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="196"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="198"/>
         <source>Updating the Safe Browsing cache might be a lengthy operation. Please be patient!</source>
         <translation>Die Aktualisierung des Safe Browsing Zwischenspeichers kann eine längerdauernde Aktion sein. Bitte haben sie Geduld!</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="207"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="209"/>
         <source>&lt;p&gt;Updating the Safe Browsing cache failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Aktualisierung des Safe Browsing Zwischenspeichers ist fehlgeschlagen.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="213"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="215"/>
         <source>&lt;p&gt;Updating the Safe Browsing cache failed.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Aktualisierung des Safe Browsing Zwischenspeichers ist fehlgeschlagen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="224"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="226"/>
         <source>Clear Safe Browsing Cache</source>
         <translation>Safe Browsing Zwischenspeicher löschen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="224"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="226"/>
         <source>Do you really want to clear the Safe Browsing cache? Re-populating it might take some time.</source>
         <translation>Soll der Safe Browsing Zwischenspeicher wirklich gelöscht werden? Der Neuaufbau kann eine längere Zeit beanspruchen.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="304"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="306"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing Database.&lt;/p&gt;{1}</source>
         <translation>&lt;p&gt;Die URL &lt;b&gt;{0}&lt;/b&gt; wurde in der Safe Browsing Datenbank gefunden.&lt;/p&gt;{1}</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="312"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="314"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was not found in the Safe Browsing Database and may be considered safe.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die URL &lt;b&gt;{0}&lt;/b&gt; wurde nicht in der Safe Browsing Datenbank gefunden und kann als sicher betrachtet werden.&lt;/p&gt;</translation>
     </message>
@@ -60021,17 +60020,17 @@
         <translation>Zeige Aktualisierungszeit</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="339"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="341"/>
         <source>The next automatic threat list update will be done now.</source>
         <translation>Die nächste Aktualisierung der Bedrohungslisten wird in Kürze ausgeführt.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="342"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="344"/>
         <source>&lt;p&gt;The next automatic threat list update will be done at &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die nächste Aktualisierung der Bedrohungslisten wird um &lt;b&gt;{0}&lt;/b&gt; ausgeführt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="346"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="348"/>
         <source>Update Time</source>
         <translation>Aktualisierungszeit</translation>
     </message>
@@ -60051,7 +60050,7 @@
         <translation>Lokalen Zwischenspeicher verwalten (nur für Update API)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="296"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="298"/>
         <source>&lt;p&gt;The Google Safe Browsing Server reported an error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Google Safe Browsing Server meldete einen Fehler.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
@@ -60120,17 +60119,17 @@
 <context>
     <name>SearchReplaceWidget</name>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="982"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="984"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation>„{0}“ wurde nicht gefunden.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="1128"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="1130"/>
         <source>Replaced {0} occurrences.</source>
         <translation>{0} Vorkommen ersetzt.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="1133"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="1135"/>
         <source>Nothing replaced because &apos;{0}&apos; was not found.</source>
         <translation>Es wurde nichts ersetzt, da „{0}“ nicht gefunden wurde.</translation>
     </message>
@@ -60140,7 +60139,7 @@
         <translation>Weitersuchen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="173"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="174"/>
         <source>Find Prev</source>
         <translation>Rückwärtssuchen</translation>
     </message>
@@ -60172,17 +60171,17 @@
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="181"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="183"/>
         <source>Replace and Search</source>
         <translation>Ersetzen und Suchen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="191"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="193"/>
         <source>Replace Occurrence</source>
         <translation>Fundstelle ersetzen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="201"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="203"/>
         <source>Replace All</source>
         <translation>Alle ersetzen</translation>
     </message>
@@ -60305,12 +60304,12 @@
         <translation>Drücken, um das Fenster zu schließen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SearchWidget.py" line="98"/>
+        <location filename="../WebBrowser/SearchWidget.py" line="100"/>
         <source>Expression was not found.</source>
         <translation>Ausdruck nicht gefunden.</translation>
     </message>
     <message>
-        <location filename="../UI/SearchWidget.py" line="208"/>
+        <location filename="../UI/SearchWidget.py" line="210"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation>„{0}“ wurde nicht gefunden.</translation>
     </message>
@@ -60787,7 +60786,7 @@
 <context>
     <name>SendRefererWhitelistDialog</name>
     <message>
-        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="50"/>
+        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="51"/>
         <source>Send Referer Whitelist</source>
         <translation>Referer Whitelist</translation>
     </message>
@@ -60827,7 +60826,7 @@
         <translation>&amp;Alle entfernen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="50"/>
+        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="51"/>
         <source>Enter host name to add to the whitelist:</source>
         <translation>Gib den hinzuzufügenden Hostnamen ein:</translation>
     </message>
@@ -60958,7 +60957,7 @@
         <translation>Bitte wähle die Startsitzung:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Session/SessionManager.py" line="710"/>
+        <location filename="../WebBrowser/Session/SessionManager.py" line="712"/>
         <source>{0} (last session)</source>
         <translation>{0} (letzte Sitzung)</translation>
     </message>
@@ -61362,42 +61361,42 @@
         <translation>setuptools</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="544"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="549"/>
         <source>Package Directory</source>
         <translation>Paketverzeichnis</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="576"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="581"/>
         <source>Packages Root Directory</source>
         <translation>Paketwurzelverzeichnis</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="615"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="620"/>
         <source>Add Package</source>
         <translation>Paket hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="615"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="620"/>
         <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; is not a Python package.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Verzeichnis &lt;b&gt;{0}&lt;/b&gt; ist kein Python Paket.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="671"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="676"/>
         <source>Add Scripts</source>
         <translation>Skripte hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="671"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="676"/>
         <source>Python Files (*.py);;All Files(*)</source>
         <translation>Python Dateien (*.py);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="710"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="715"/>
         <source>Add Python Modules</source>
         <translation>Python Module hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="710"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="715"/>
         <source>Python Files (*.py)</source>
         <translation>Python Dateien (*.py)</translation>
     </message>
@@ -61447,12 +61446,12 @@
         <translation>Gib die Schlüsselworte durch Komma getrennt ein</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="153"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="155"/>
         <source>Reading Trove Classifiers</source>
         <translation>Lese Trove Klassifizierer</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="153"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="155"/>
         <source>&lt;p&gt;The Trove Classifiers 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 Trove Klassifiziererdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
@@ -61512,7 +61511,7 @@
         <translation>&apos;include_package_data&apos; Zeile einfügen</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="789"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="796"/>
         <source>Source Directory</source>
         <translation>Quellverzeichnis</translation>
     </message>
@@ -61545,7 +61544,7 @@
         <translation>Shell</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="311"/>
+        <location filename="../QScintilla/Shell.py" line="312"/>
         <source>Clear</source>
         <translation>Löschen</translation>
     </message>
@@ -61555,104 +61554,104 @@
         <translation>Shell – Passiv</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="248"/>
+        <location filename="../QScintilla/Shell.py" line="249"/>
         <source>Passive &gt;&gt;&gt; </source>
         <translation>Passiv &gt;&gt;&gt; </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="304"/>
-        <source>Copy</source>
-        <translation>Kopieren</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="305"/>
+        <source>Copy</source>
+        <translation>Kopieren</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="306"/>
         <source>Paste</source>
         <translation>Einfügen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2178"/>
+        <location filename="../QScintilla/Shell.py" line="2199"/>
         <source>Drop Error</source>
         <translation>Drop Fehler</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="843"/>
+        <location filename="../QScintilla/Shell.py" line="851"/>
         <source>No.</source>
         <translation>Nr.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2178"/>
+        <location filename="../QScintilla/Shell.py" line="2199"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; ist keine Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="291"/>
+        <location filename="../QScintilla/Shell.py" line="292"/>
         <source>Start</source>
         <translation>Starten</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="839"/>
+        <location filename="../QScintilla/Shell.py" line="847"/>
         <source>Passive Debug Mode</source>
         <translation>Passiver Debugmodus</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1033"/>
-        <source>StdOut: {0}</source>
-        <translation>StdOut: {0}</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="1041"/>
+        <source>StdOut: {0}</source>
+        <translation>StdOut: {0}</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="1049"/>
         <source>StdErr: {0}</source>
         <translation>StdErr: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="296"/>
-        <source>History</source>
-        <translation>Historie</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="297"/>
-        <source>Select entry</source>
-        <translation>Eintrag auswählen</translation>
+        <source>History</source>
+        <translation>Historie</translation>
     </message>
     <message>
         <location filename="../QScintilla/Shell.py" line="298"/>
+        <source>Select entry</source>
+        <translation>Eintrag auswählen</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="299"/>
         <source>Show</source>
         <translation>Zeige</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="773"/>
+        <location filename="../QScintilla/Shell.py" line="781"/>
         <source>Select History</source>
         <translation>Eintrag auswählen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="773"/>
+        <location filename="../QScintilla/Shell.py" line="781"/>
         <source>Select the history entry to execute (most recent shown last).</source>
         <translation>Wähle den auszuführenden Eintrag aus (aktuellster ist zuletzt dargestellt).</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="840"/>
+        <location filename="../QScintilla/Shell.py" line="848"/>
         <source>
 Not connected</source>
         <translation>
 nicht verbunden</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="319"/>
+        <location filename="../QScintilla/Shell.py" line="320"/>
         <source>Configure...</source>
         <translation>Einstellungen...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="303"/>
+        <location filename="../QScintilla/Shell.py" line="304"/>
         <source>Cut</source>
         <translation>Ausschneiden</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="309"/>
+        <location filename="../QScintilla/Shell.py" line="310"/>
         <source>Find</source>
         <translation>Suchen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="891"/>
+        <location filename="../QScintilla/Shell.py" line="899"/>
         <source>Exception &quot;{0}&quot;
 {1}
 File: {2}, Line: {3}
@@ -61663,14 +61662,14 @@
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="926"/>
+        <location filename="../QScintilla/Shell.py" line="934"/>
         <source>Unspecified syntax error.
 </source>
         <translation>Unspezifischer Syntaxfehler.
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="901"/>
+        <location filename="../QScintilla/Shell.py" line="909"/>
         <source>Exception &quot;{0}&quot;
 {1}
 </source>
@@ -61679,51 +61678,41 @@
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="928"/>
+        <location filename="../QScintilla/Shell.py" line="936"/>
         <source>Syntax error &quot;{1}&quot; in file {0} at line {2}, character {3}.
 </source>
         <translation>Syntaxfehler &quot;{1}&quot; in Datei {0}, Zeile {2}, Zeichen {3}.
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="951"/>
+        <location filename="../QScintilla/Shell.py" line="959"/>
         <source>Signal &quot;{0}&quot; generated in file {1} at line {2}.
 Function: {3}({4})</source>
         <translation>Signal &quot;{0}&quot; in der Datei {1} in Zeile {2} erzeugt.
 Funktion: {3}({4})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2035"/>
+        <location filename="../QScintilla/Shell.py" line="2056"/>
         <source>Project</source>
         <translation>Projekt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="159"/>
-        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;restart&apos; kills the shell and starts a new one. &apos;clear&apos; clears the display of the shell window. &apos;start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;envs&apos; or &apos;environments&apos; commands. The active virtual environment can be questioned by the &apos;which&apos; command. &apos;quit&apos; or &apos;exit&apos; is used to exit the application. These commands (except environments&apos;, &apos;envs&apos; and &apos;which&apos;) are available through the window menus as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Das Shell-Fenster&lt;/b&gt;&lt;p&gt;Benutzen Sie die Cursortasten während der Eingabe von Befehlen. Es existiert auch eine Chronik-Funktion, die mit den Cursortasten Hoch und Runter unter Halten der Strg-Taste bedient wird. Dies kann über die Shell Seite des Konfigurationsdialoges auf Cursortasten Hoch und Runter alleine umgeschaltet werden. Eine inkrementelle Suche wird gestartet, indem diese Tasten nach Eingabe von Text gedrückt werden.&lt;/p&gt;&lt;p&gt;Die Shell hat einige spezielle Kommandos. „restart“ beendet den Interpreter und startet einen neuen. „clear“ löscht die Anzeige des Shell-Fensters. „start“ wird benutzt, um eine Shell für eine virtuelle Umgebung zu starten, und sollte vom Namen einer virtuellen Umgebung gefolgt werden. &apos;start&apos; ohne Angebe einer virtuellen Umgebung started die Standard-Shell. Verfügbare virtuelle Umgebungen können mit den Befehlen &apos;envs&apos; oder &apos;environments&apos; aufgelistet werden. Die aktive virtuelle Umgebung kann mit dem Befehl &apos;which&apos; abgefragt werden. &apos;quit&apos; oder &apos;exit&apos; beenden die Anwendung. Diese Befehle (mit Ausnahme von &apos;environments&apos;, &apos;envs&apos; und &apos;which&apos;) sind auch über die Anwendungsmenüs verfügbar.&lt;/p&gt;&lt;p&gt;Nachdem Text eingegeben wurde, kann durch Drücken der Tab-Taste eine Liste möglicher Kommandozeilenvervollständigungen angezeigt werden. Der gewünschte Eintrag kann aus dieser Liste ausgewählt werden. Ist nur ein Eintrag vorhanden, so wird dieser automatisch eingefügt.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="186"/>
-        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.&lt;/p&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;restart&apos; kills the shell and starts a new one. &apos;clear&apos; clears the display of the shell window. &apos;start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;envs&apos; or &apos;environments&apos; commands. The active virtual environment can be questioned by the &apos;which&apos; command. These commands (except environments&apos; and &apos;envs&apos;) are available through the context menu as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;&lt;p&gt;In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Das Shell-Fenster&lt;/b&gt;&lt;p&gt;Dies ist ein Interpreter Ihres Systems. Es ist derjenige, der benutzt wird, um das zu untersuchende Programm auszuführen. Dies bedeutet, dass Sie jedes Pythonkommando ausführen können, auch während Ihr Programm läuft.&lt;/p&gt;&lt;p&gt;Benutzen Sie die Cursortasten während der Eingabe von Befehlen. Es existiert auch eine Chronik-Funktion, die mit den Cursortasten Hoch und Runter unter Halten der Strg-Taste bedient wird. Dies kann über die Shell Seite des Konfigurationsdialoges auf Cursortasten Hoch und Runter alleine umgeschaltet werden. Eine inkrementelle Suche wird gestartet, indem diese Tasten nach Eingabe von Text gedrückt werden.&lt;/p&gt;&lt;p&gt;Die Shell hat einige spezielle Kommandos. „restart“ beendet den Interpreter und startet einen neuen. „clear“ löscht die Anzeige des Shell-Fensters. „start“ wird benutzt, um eine Shell für eine virtuelle Umgebung zu starten, und sollte vom Namen einer virtuellen Umgebung gefolgt werden. &apos;start&apos; ohne Angebe einer virtuellen Umgebung started die Standard-Shell. Verfügbare virtuelle Umgebungen können mit den Befehlen &apos;envs&apos; oder &apos;environments&apos; aufgelistet werden. Die aktive virtuelle Umgebung kann mit dem Befehl &apos;which&apos; abgefragt werden. Diese Befehle (mit Ausnahme von &apos;environments&apos;, &apos;envs&apos; und &apos;which&apos;) sind auch über das Kontextmenu verfügbar.&lt;/p&gt;&lt;p&gt;Nachdem Text eingegeben wurde, kann durch Drücken der Tab-Taste eine Liste möglicher Kommandozeilenvervollständigungen angezeigt werden. Der gewünschte Eintrag kann aus dieser Liste ausgewählt werden. Ist nur ein Eintrag vorhanden, so wird dieser automatisch eingefügt.&lt;/p&gt;&lt;p&gt;Im passiven Debugmodus ist die Shell nur dann verfügbar, wenn das zu debuggende Skript mit der IDE verbunden ist. Dies wird durch einen anderen Prompt und eine Anzeige im Fensterkopf dargestellt.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="312"/>
-        <source>Restart</source>
-        <translation>Neu starten</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="313"/>
+        <source>Restart</source>
+        <translation>Neu starten</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="314"/>
         <source>Restart and Clear</source>
         <translation>Neu starten und löschen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="317"/>
+        <location filename="../QScintilla/Shell.py" line="318"/>
         <source>Active Name</source>
         <translation>Aktiver Name</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1850"/>
+        <location filename="../QScintilla/Shell.py" line="1867"/>
         <source>Available Virtual Environments:
 {0}
 </source>
@@ -61732,22 +61721,32 @@
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1896"/>
+        <location filename="../QScintilla/Shell.py" line="1917"/>
         <source>Current Virtual Environment: &apos;{0}&apos;
 </source>
         <translation>Aktuelle virtuelle Umgebung: &apos;{0}&apos;
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="845"/>
+        <location filename="../QScintilla/Shell.py" line="853"/>
         <source>{0} on {1}</source>
         <translation>{0} auf {1}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1067"/>
+        <location filename="../QScintilla/Shell.py" line="1075"/>
         <source>&lt;{0}&gt; {1}</source>
         <translation>&lt;{0}&gt; {1}</translation>
     </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="159"/>
+        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;%restart&apos; kills the shell and starts a new one. &apos;%clear&apos; clears the display of the shell window. &apos;%start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. &apos;%start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;%envs&apos; or &apos;%environments&apos; commands. The active virtual environment can be questioned by the &apos;%which&apos; command. &apos;%quit&apos; or &apos;%exit&apos; is used to exit the application. These commands (except &apos;%environments&apos;, &apos;%envs&apos; and &apos;%which&apos;) are available through the window menus as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Das Shell-Fenster&lt;/b&gt;&lt;p&gt;Benutzen Sie die Cursortasten während der Eingabe von Befehlen. Es existiert auch eine Chronik-Funktion, die mit den Cursortasten Hoch und Runter unter Halten der Strg-Taste bedient wird. Dies kann über die Shell Seite des Konfigurationsdialoges auf Cursortasten Hoch und Runter alleine umgeschaltet werden. Eine inkrementelle Suche wird gestartet, indem diese Tasten nach Eingabe von Text gedrückt werden.&lt;/p&gt;&lt;p&gt;Die Shell hat einige spezielle Kommandos. &apos;%restart&apos; beendet den Interpreter und startet einen neuen. &apos;%clear&apos; löscht die Anzeige des Shell-Fensters. &apos;%start&apos; wird benutzt, um eine Shell für eine virtuelle Umgebung zu starten, und sollte vom Namen einer virtuellen Umgebung gefolgt werden. &apos;%start&apos; ohne Angebe einer virtuellen Umgebung started die Standard-Shell. Verfügbare virtuelle Umgebungen können mit den Befehlen &apos;%envs&apos; oder &apos;%environments&apos; aufgelistet werden. Die aktive virtuelle Umgebung kann mit dem Befehl &apos;%which&apos; abgefragt werden. &apos;%quit&apos; oder &apos;%exit&apos; beenden die Anwendung. Diese Befehle (mit Ausnahme von &apos;%environments&apos;, &apos;%envs&apos; und &apos;%which&apos;) sind auch über die Anwendungsmenüs verfügbar.&lt;/p&gt;&lt;p&gt;Nachdem Text eingegeben wurde, kann durch Drücken der Tab-Taste eine Liste möglicher Kommandozeilenvervollständigungen angezeigt werden. Der gewünschte Eintrag kann aus dieser Liste ausgewählt werden. Ist nur ein Eintrag vorhanden, so wird dieser automatisch eingefügt.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="187"/>
+        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.&lt;/p&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;%restart&apos; kills the shell and starts a new one. &apos;%clear&apos; clears the display of the shell window. &apos;%start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. &apos;%start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;%envs&apos; or &apos;%environments&apos; commands. The active virtual environment can be questioned by the &apos;%which&apos; command. These commands (except &apos;%environments&apos; and &apos;%envs&apos;) are available through the context menu as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;&lt;p&gt;In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Das Shell-Fenster&lt;/b&gt;&lt;p&gt;Dies ist ein Interpreter Ihres Systems. Es ist derjenige, der benutzt wird, um das zu untersuchende Programm auszuführen. Dies bedeutet, dass Sie jedes Pythonkommando ausführen können, auch während Ihr Programm läuft.&lt;/p&gt;&lt;p&gt;Benutzen Sie die Cursortasten während der Eingabe von Befehlen. Es existiert auch eine Chronik-Funktion, die mit den Cursortasten Hoch und Runter unter Halten der Strg-Taste bedient wird. Dies kann über die Shell Seite des Konfigurationsdialoges auf Cursortasten Hoch und Runter alleine umgeschaltet werden. Eine inkrementelle Suche wird gestartet, indem diese Tasten nach Eingabe von Text gedrückt werden.&lt;/p&gt;&lt;p&gt;Die Shell hat einige spezielle Kommandos. &apos;%restart&apos; beendet den Interpreter und startet einen neuen. &apos;%clear&apos; löscht die Anzeige des Shell-Fensters. &apos;%start&apos; wird benutzt, um eine Shell für eine virtuelle Umgebung zu starten, und sollte vom Namen einer virtuellen Umgebung gefolgt werden. &apos;%start&apos; ohne Angebe einer virtuellen Umgebung started die Standard-Shell. Verfügbare virtuelle Umgebungen können mit den Befehlen &apos;%envs&apos; oder &apos;%environments&apos; aufgelistet werden. Die aktive virtuelle Umgebung kann mit dem Befehl &apos;%which&apos; abgefragt werden. Diese Befehle (mit Ausnahme von &apos;%environments&apos; und &apos;%envs&apos;) sind auch über das Kontextmenü verfügbar.&lt;/p&gt;&lt;p&gt;Nachdem Text eingegeben wurde, kann durch Drücken der Tab-Taste eine Liste möglicher Kommandozeilenvervollständigungen angezeigt werden. Der gewünschte Eintrag kann aus dieser Liste ausgewählt werden. Ist nur ein Eintrag vorhanden, so wird dieser automatisch eingefügt.&lt;/p&gt;&lt;p&gt;Im passiven Debugmodus ist die Shell nur dann verfügbar, wenn das zu debuggende Skript mit der IDE verbunden ist. Dies wird durch einen anderen Prompt und eine Anzeige im Fensterkopf dargestellt.&lt;/p&gt;</translation>
+    </message>
 </context>
 <context>
     <name>ShellHistoryDialog</name>
@@ -62586,77 +62585,77 @@
 <context>
     <name>ShortcutsDialog</name>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="131"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="132"/>
         <source>Project</source>
         <translation>Projekt</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="135"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="136"/>
         <source>General</source>
         <translation>Allgemein</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="145"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="146"/>
         <source>Debug</source>
         <translation>Debug</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="139"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="140"/>
         <source>Wizards</source>
         <translation>Assistenten</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="149"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="150"/>
         <source>Edit</source>
         <translation>Bearbeiten</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="153"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="154"/>
         <source>File</source>
         <translation>Datei</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="157"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="158"/>
         <source>Search</source>
         <translation>Suchen</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="161"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="162"/>
         <source>View</source>
         <translation>Ansicht</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="181"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="182"/>
         <source>Window</source>
         <translation>Fenster</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="364"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="365"/>
         <source>Edit shortcuts</source>
         <translation>Kurzbefehle bearbeiten</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="165"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="166"/>
         <source>Macro</source>
         <translation>Makro</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="169"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="170"/>
         <source>Bookmarks</source>
         <translation>Lesezeichen</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="327"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="328"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has already been allocated to the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; wurde bereits der Aktion &lt;b&gt;{1}&lt;/b&gt; zugewiesen. Diese Bindung löschen?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="347"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="348"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; hides the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; verdeckt die Aktion &lt;b&gt;{1}&lt;/b&gt;. Diese Bindung löschen?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="364"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="365"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is hidden by the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; wird durch die Aktion &lt;b&gt;{1}&lt;/b&gt; verdeckt. Diese Bindung löschen?&lt;/p&gt;</translation>
     </message>
@@ -62728,12 +62727,12 @@
         <translation>Auswählen, um basierend auf den Kurzbefehlen oder Alternativen zu filtern</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="174"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="175"/>
         <source>Spelling</source>
         <translation>Rechtschreibung</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="197"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="198"/>
         <source>eric Web Browser</source>
         <translation>eric Web Browser</translation>
     </message>
@@ -62837,42 +62836,42 @@
         <translation>&lt;b&gt;Vorschau&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="263"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="264"/>
         <source>Preview not available.</source>
         <translation>Vorschau nicht verfügbar.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="290"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="291"/>
         <source>Copy Image Location to Clipboard</source>
         <translation>Bildadresse in die Zwischenablage kopieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="293"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="294"/>
         <source>Copy Image Name to Clipboard</source>
         <translation>Bildbezeichnung in die Zwischenablage kopieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="357"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="358"/>
         <source>Save Image</source>
         <translation>Bild speichern</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="346"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="347"/>
         <source>All Files (*)</source>
         <translation>Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="357"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="358"/>
         <source>&lt;p&gt;Cannot write to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;In die Datei &lt;b&gt;{0}&lt;/b&gt; kann nicht geschrieben werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="276"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="277"/>
         <source>Loading...</source>
         <translation>Lade...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="334"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="335"/>
         <source>&lt;p&gt;This preview is not available.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Diese Vorschau ist nicht verfügbar.&lt;/p&gt;</translation>
     </message>
@@ -62910,62 +62909,62 @@
         <translation>&lt;b&gt;Web-Site {0}&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="68"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="70"/>
         <source>Your connection to this site is &lt;b&gt;secure&lt;/b&gt;.</source>
         <translation>Ihre Verbindung zu dieser Web-Site ist &lt;b&gt;sicher&lt;/b&gt;.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="73"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="75"/>
         <source>Your connection to this site is &lt;b&gt;not secure&lt;/b&gt;.</source>
         <translation>Ihre Verbindung zu dieser Web-Site ist &lt;b&gt;nicht sicher&lt;/b&gt;.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="88"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="90"/>
         <source>This is your &lt;b&gt;{0}.&lt;/b&gt; visit of this site.</source>
         <translation>Dies ist ihr &lt;b&gt;{0}.&lt;/b&gt; Besuch dieser Web-Site.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="94"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="96"/>
         <source>You have &lt;b&gt;never&lt;/b&gt; visited this site before.</source>
         <translation>Sie haben diese Web-Site &lt;b&gt;niemals&lt;/b&gt; zuvor besucht.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="103"/>
-        <source>first</source>
-        <translation>erster</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="105"/>
-        <source>second</source>
-        <translation>zweiter</translation>
+        <source>first</source>
+        <translation>erster</translation>
     </message>
     <message>
         <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="107"/>
+        <source>second</source>
+        <translation>zweiter</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="109"/>
         <source>third</source>
         <translation>dritter</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="108"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="110"/>
         <source>This is your &lt;b&gt;{0}&lt;/b&gt; visit of this site.</source>
         <translation>Dies ist ihr &lt;b&gt;{0}&lt;/b&gt; Besuch dieser Web-Site.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="129"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="131"/>
         <source>Register as &lt;b&gt;{0}&lt;/b&gt; links handler.</source>
         <translation>Als &lt;b&gt;{0}&lt;/b&gt; Links-Handler registrieren.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="136"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="138"/>
         <source>Register</source>
         <translation>Registrieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="153"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="156"/>
         <source>More...</source>
         <translation>Mehr...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="62"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="64"/>
         <source>Your connection to this site &lt;b&gt;may not be secure&lt;/b&gt;.</source>
         <translation>Ihre Verbindung zu dieser Web-Site ist &lt;b&gt;möglicherweise nicht sicher&lt;/b&gt;.</translation>
     </message>
@@ -63103,17 +63102,17 @@
         <translation>X11-Pixmap-Datei (*.xpm)</translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="252"/>
+        <location filename="../Snapshot/SnapWidget.py" line="253"/>
         <source>Save Snapshot</source>
         <translation>Bildschirmfoto speichern</translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="231"/>
+        <location filename="../Snapshot/SnapWidget.py" line="232"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="252"/>
+        <location filename="../Snapshot/SnapWidget.py" line="253"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation>Datei {0} kann nicht geschrieben werden:
@@ -63160,7 +63159,7 @@
         <translation>bildschirmfoto</translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="389"/>
+        <location filename="../Snapshot/SnapWidget.py" line="390"/>
         <source>The application contains an unsaved snapshot.</source>
         <translation>Die Anwendung enthält ein nicht gespeichertes Bildschirmfoto.</translation>
     </message>
@@ -63175,7 +63174,7 @@
         <translation>&amp;Vorschau kopieren</translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="355"/>
+        <location filename="../Snapshot/SnapWidget.py" line="356"/>
         <source>Preview of the snapshot image ({0} x {1})</source>
         <translation>Vorschau des Bildschirmfotos ({0} x {1})</translation>
     </message>
@@ -63215,7 +63214,7 @@
         <translation>Fenster wählen</translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="419"/>
+        <location filename="../Snapshot/SnapWidget.py" line="420"/>
         <source>eric Snapshot</source>
         <translation>eric Bildschirmfoto</translation>
     </message>
@@ -63223,7 +63222,7 @@
 <context>
     <name>SnapshotFreehandGrabber</name>
     <message>
-        <location filename="../Snapshot/SnapshotFreehandGrabber.py" line="72"/>
+        <location filename="../Snapshot/SnapshotFreehandGrabber.py" line="76"/>
         <source>Select a region using the mouse. To take the snapshot, press the Enter key or double click. Press Esc to quit.</source>
         <translation>Wählen Sie mit der Maus einen Bereich aus. Um das Bildschirmfoto aufzunehmen, drücken Sie die Eingabetaste oder tätigen Sie einen Doppelklick. Zum Abbrechen drücken Sie Escape.</translation>
     </message>
@@ -63231,7 +63230,7 @@
 <context>
     <name>SnapshotRegionGrabber</name>
     <message>
-        <location filename="../Snapshot/SnapshotRegionGrabber.py" line="104"/>
+        <location filename="../Snapshot/SnapshotRegionGrabber.py" line="107"/>
         <source>Select a region using the mouse. To take the snapshot, press the Enter key or double click. Press Esc to quit.</source>
         <translation>Wählen Sie mit der Maus einen Bereich aus. Um das Bildschirmfoto aufzunehmen, drücken Sie die Eingabetaste oder tätigen sie einen Doppelklick. Zum Abbrechen drücken Sie Escape.</translation>
     </message>
@@ -63239,7 +63238,7 @@
 <context>
     <name>SnapshotTimer</name>
     <message numerus="yes">
-        <location filename="../Snapshot/SnapshotTimer.py" line="104"/>
+        <location filename="../Snapshot/SnapshotTimer.py" line="110"/>
         <source>Snapshot will be taken in %n seconds</source>
         <translation>
             <numerusform>Bildschirmfoto wird in einer Sekunde erstellt</numerusform>
@@ -63361,27 +63360,27 @@
 <context>
     <name>SpeedDial</name>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="401"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="402"/>
         <source>Unable to load</source>
         <translation>Fehler beim Laden</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="207"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="208"/>
         <source>Saving Speed Dial data</source>
         <translation>Speichere Schnellwahldaten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="207"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="208"/>
         <source>&lt;p&gt;Speed Dial data could not be saved to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Schnellwahldaten konnten nicht in die Datei &lt;b&gt;{0}&lt;/b&gt; gespeichert werden&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="220"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="221"/>
         <source>Reset Speed Dials</source>
         <translation>Schnellwahlen zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="220"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="221"/>
         <source>Are you sure you want to reset the speed dials to the default pages?</source>
         <translation>Sollen wirklich alle Schnellwahlen auf die Standardseiten zurückgesetzt werden?</translation>
     </message>
@@ -63775,22 +63774,22 @@
         <translation>Bereit</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="162"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="163"/>
         <source>Unable to open database</source>
         <translation>Datenbank kann nicht geöffnet werden</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="304"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="307"/>
         <source>Query OK.</source>
         <translation>Abfrage OK.</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="306"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="309"/>
         <source>Query OK, number of affected rows: {0}</source>
         <translation>Abfrage OK, Anzahl betroffener Zeilen: {0}</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="162"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="163"/>
         <source>An error occurred while opening the connection.</source>
         <translation>Ein Fehler trat beim Öffnen der Datenbankverbindung auf.</translation>
     </message>
@@ -63954,62 +63953,62 @@
         <translation>Das Zertifikat besitzt keine Mechanismen zur Feststellung, ob es zurückgerufen wurde.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="52"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="53"/>
         <source>Revocation information for the certificate is not available.</source>
         <translation>Rückrufinformationen für das Zertifikat sind nicht verfügbar.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="55"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="56"/>
         <source>The certificate has been revoked.</source>
         <translation>Das Zertifikat wurde widerrufen.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="57"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="58"/>
         <source>The certificate is invalid.</source>
         <translation>Das Zertifikat ist ungültig.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="59"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="60"/>
         <source>The certificate is signed using a weak signature algorithm.</source>
         <translation>Das Zertifikat wurde mit einem schwachen Signaturalgorithmus unterzeichnet.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="62"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="63"/>
         <source>The host name specified in the certificate is not unique.</source>
         <translation>Das im Zertifikat angegebene Hostname ist nicht eindeutig.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="65"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="66"/>
         <source>The certificate contains a weak key.</source>
         <translation>Das Zertifikat enthält einen schwachen Schlüssel.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="67"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="69"/>
         <source>The certificate claimed DNS names that are in violation of name constraints.</source>
         <translation>Das Zertifikat nennt DNS Namen, die die Namenkonventionen verletzen.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="98"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="101"/>
         <source>No error description available.</source>
         <translation>Keine Fehlerbeschreibung verfügbar.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="129"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="132"/>
         <source>Remove Selected</source>
         <translation>Ausgewählte entfernen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="134"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="137"/>
         <source>Remove All</source>
         <translation>Alle entfernen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="73"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="75"/>
         <source>The certificate has a validity period that is too long.</source>
         <translation>Das Zertifikat hat eine zu lange Gültigkeitsdauer.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="82"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="85"/>
         <source>Certificate Transparency was required for this connection, but the server did not provide information that complied with the policy.</source>
         <translation>Zertifikatstransparenz war für diese Verbindung gefordert, jedoch hat der Server keine Informationen geliefert, die diese Regel erfüllten.</translation>
     </message>
@@ -64051,7 +64050,7 @@
 &lt;p&gt;Gib das Arbeitsverzeichnis für das zu untersuchende Programm ein. Lass es leer, um das Installationsverzeichnis als Arbeitsverzeichnis zu setzen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="151"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="154"/>
         <source>Environment Variables:</source>
         <translation>Umgebungsvariablen:</translation>
     </message>
@@ -64061,78 +64060,78 @@
         <translation>Gib die zu setzenden Umgebunsvariablen ein.</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="165"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="168"/>
         <source>Uncheck to disable exception reporting</source>
         <translation>Deselektiere, um die Anzeige von Ausnahmen abzuschalten</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="168"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="171"/>
         <source>&lt;b&gt;Report exceptions&lt;/b&gt;
 &lt;p&gt;Uncheck this in order to disable exception reporting.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ausnahmen anzeigen&lt;/b&gt;
 &lt;p&gt;Deselektiere, um die Anzeige von Ausnahmen abzuschalten.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="172"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="175"/>
         <source>Report exceptions</source>
         <translation>Ausnahmen anzeigen</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="175"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="178"/>
         <source>Alt+E</source>
         <translation>Alt+N</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="215"/>
-        <source>Select this to erase the collected coverage information</source>
-        <translation>Wähle dies, um die gesammelten Abdeckungsinfos zu löschen</translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="218"/>
+        <source>Select this to erase the collected coverage information</source>
+        <translation>Wähle dies, um die gesammelten Abdeckungsinfos zu löschen</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="221"/>
         <source>&lt;b&gt;Erase coverage information&lt;/b&gt;
 &lt;p&gt;Select this to erase the collected coverage information before the next coverage run.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Abdeckungsinfos löschen&lt;/b&gt;
 &lt;p&gt;Wähle dies, um die gesammelten Abdeckungsinfos vor dem nächsten Abdeckungslauf zu löschen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="222"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="225"/>
         <source>Erase coverage information</source>
         <translation>Lösche Abdeckungsinfo</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="225"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="228"/>
         <source>Alt+C</source>
         <translation>Alt+L</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="185"/>
-        <source>Select to clear the display of the interpreter window</source>
-        <translation>Auswählen, um das Interpreterfenster zu löschen</translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="188"/>
-        <source>&lt;b&gt;Clear interpreter window&lt;/b&gt;&lt;p&gt;This clears the display of the interpreter window before starting the debug client.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Interpreterfenster löschen&lt;/b&gt;&lt;p&gt;Dies löscht das Interpreterfenster bevor der Debug-Client gestartet wird.&lt;/p&gt;</translation>
+        <source>Select to clear the display of the interpreter window</source>
+        <translation>Auswählen, um das Interpreterfenster zu löschen</translation>
     </message>
     <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="191"/>
+        <source>&lt;b&gt;Clear interpreter window&lt;/b&gt;&lt;p&gt;This clears the display of the interpreter window before starting the debug client.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Interpreterfenster löschen&lt;/b&gt;&lt;p&gt;Dies löscht das Interpreterfenster bevor der Debug-Client gestartet wird.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="194"/>
         <source>Clear interpreter window</source>
         <translation>Interpreterfenster löschen</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="201"/>
-        <source>Select to start the debugger in a console window</source>
-        <translation>Auswählen, um den Debugger in einem Konsolenfenster zu starten</translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="204"/>
+        <source>Select to start the debugger in a console window</source>
+        <translation>Auswählen, um den Debugger in einem Konsolenfenster zu starten</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="207"/>
         <source>&lt;b&gt;Start in console&lt;/b&gt;
 &lt;p&gt;Select to start the debugger in a console window. The console command has to be configured on the Debugger-&amp;gt;General page&lt;/p&gt;</source>
         <translation>&lt;b&gt;In Konsole starten&lt;/b&gt;
 &lt;p&gt;Auswählen, um den Debugger in einem Konsolenfenster zu starten. Der Konsolenbefehl muss auf der Debugger-&amp;gt;Allgemein Seite konfiguriert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="208"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="211"/>
         <source>Start in console</source>
         <translation>In Konsole starten</translation>
     </message>
@@ -64142,7 +64141,7 @@
         <translation>Wähle die zu verwendende virtuelle Umgebung</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="141"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="144"/>
         <source>Virtual Environment:</source>
         <translation>Virtuelle Umgebung:</translation>
     </message>
@@ -64353,42 +64352,42 @@
 <context>
     <name>StartDialog</name>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="108"/>
+        <location filename="../Debugger/StartDialog.py" line="109"/>
         <source>Clear Histories</source>
         <translation>Chroniken löschen</translation>
     </message>
     <message>
+        <location filename="../Debugger/StartDialog.py" line="281"/>
+        <source>Edit History</source>
+        <translation>Historie bearbeiten</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="268"/>
+        <source>Command Line</source>
+        <translation>Kommandozeile</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="269"/>
+        <source>Working Directory</source>
+        <translation>Arbeitsverzeichnis</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="270"/>
+        <source>Environment</source>
+        <translation>Umgebung</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="281"/>
+        <source>Select the history list to be edited:</source>
+        <translation>Wähle die zu bearbeitende Chronik aus:</translation>
+    </message>
+    <message>
         <location filename="../Debugger/StartDialog.py" line="279"/>
-        <source>Edit History</source>
-        <translation>Historie bearbeiten</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="266"/>
-        <source>Command Line</source>
-        <translation>Kommandozeile</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="267"/>
-        <source>Working Directory</source>
-        <translation>Arbeitsverzeichnis</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="268"/>
-        <source>Environment</source>
-        <translation>Umgebung</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="279"/>
-        <source>Select the history list to be edited:</source>
-        <translation>Wähle die zu bearbeitende Chronik aus:</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="277"/>
         <source>No Debug Programs</source>
         <translation>Nicht zu debuggende Programme</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="142"/>
+        <location filename="../Debugger/StartDialog.py" line="143"/>
         <source>Enter the list of programs or program patterns not to be debugged separated by &apos;{0}&apos;.</source>
         <translation>Gib eine List von nicht zu debuggenden Programmen oder Programmmuster durch &apos;{0}&apos; getrennt ein.</translation>
     </message>
@@ -65107,12 +65106,12 @@
         <translation>Eigenschaft gelöscht.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2244"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2245"/>
         <source>Subversion Lock</source>
         <translation>Subversion-Sperre</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2244"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2245"/>
         <source>Enter lock comment</source>
         <translation>Gib eine Kommentar für die Sperre ein</translation>
     </message>
@@ -65445,32 +65444,32 @@
         <translation>SVG-Betrachter</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="91"/>
+        <location filename="../Graphics/SvgDiagram.py" line="92"/>
         <source>Close</source>
         <translation>Schließen</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="96"/>
+        <location filename="../Graphics/SvgDiagram.py" line="97"/>
         <source>Print</source>
         <translation>Drucken</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="131"/>
+        <location filename="../Graphics/SvgDiagram.py" line="132"/>
         <source>Window</source>
         <translation>Fenster</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="135"/>
+        <location filename="../Graphics/SvgDiagram.py" line="136"/>
         <source>Graphics</source>
         <translation>Grafiken</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="362"/>
+        <location filename="../Graphics/SvgDiagram.py" line="363"/>
         <source>Diagram: {0}</source>
         <translation>Diagramm: {0}</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="101"/>
+        <location filename="../Graphics/SvgDiagram.py" line="102"/>
         <source>Print Preview</source>
         <translation>Druckvorschau</translation>
     </message>
@@ -65543,12 +65542,12 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="102"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="102"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
@@ -65625,22 +65624,22 @@
         <translation>Alt+K</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="83"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="85"/>
         <source>Files (relative to {0}):</source>
         <translation>Dateien (relativ zu {0}):</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="152"/>
         <source>No changelists found</source>
         <translation>Keine Änderungslisten gefunden</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
@@ -65826,7 +65825,7 @@
 <context>
     <name>SvnDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="169"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
@@ -65886,26 +65885,26 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="75"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="77"/>
         <source>Revision {0}.
 </source>
         <translation>Revision {0}.
 </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="82"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="84"/>
         <source> (binary)</source>
         <translation> (binär)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="86"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="88"/>
         <source>{0} {1}{2}
 </source>
         <translation>{0} {1}{2}
 </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="169"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
@@ -65941,27 +65940,27 @@
 <context>
     <name>SvnDiffDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="175"/>
         <source>Subversion Diff</source>
         <translation>Subversion-Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="207"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="209"/>
         <source>There is no difference.</source>
         <translation>Es gibt keinen Unterschied.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="367"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="377"/>
         <source>Patch Files (*.diff)</source>
         <translation>Patchdateien (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="399"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="409"/>
         <source>Save Diff</source>
         <translation>Diff speichern</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="399"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="409"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Patchdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gespeichert werden.&lt;br&gt;Grund: {1}&lt;/p&gt;</translation>
     </message>
@@ -66021,39 +66020,39 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="189"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="175"/>
         <source>There is no temporary directory available.</source>
         <translation>Es steht kein temporäres Verzeichnis zur verfügung.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="211"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="219"/>
         <source>Processing file &apos;{0}&apos;...
 </source>
         <translation>Bearbeite Datei „{0}“...
 </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="189"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="384"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="394"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Patchdatei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="220"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="226"/>
         <source>&lt;Start&gt;</source>
         <translation>&lt;Anfang&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="221"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="227"/>
         <source>&lt;End&gt;</source>
         <translation>&lt;Ende&gt;</translation>
     </message>
@@ -66219,12 +66218,12 @@
         <translation>Subversion-Log</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="664"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="679"/>
         <source>Revision</source>
         <translation>Revision</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="661"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="676"/>
         <source>Author</source>
         <translation>Autor</translation>
     </message>
@@ -66234,7 +66233,7 @@
         <translation>Datum</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="164"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="167"/>
         <source>Message</source>
         <translation>Nachricht</translation>
     </message>
@@ -66294,22 +66293,22 @@
         <translation>&amp;Vergleiche Revisionen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="93"/>
         <source>Added</source>
         <translation>Hinzugefügt</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="91"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="94"/>
         <source>Deleted</source>
         <translation>Gelöscht</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="92"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="95"/>
         <source>Modified</source>
         <translation>Modifiziert</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="519"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="535"/>
         <source>Subversion Error</source>
         <translation>Subversion-Fehler</translation>
     </message>
@@ -66364,12 +66363,12 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="309"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="317"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="309"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="317"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
@@ -66414,7 +66413,7 @@
         <translation>Bei Kopieren/Umbenennen anhalten</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="93"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="96"/>
         <source>Replaced</source>
         <translation>Ersetzt</translation>
     </message>
@@ -66585,7 +66584,7 @@
         <translation>&amp;Protokoll:</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="129"/>
         <source>&amp;URL:</source>
         <translation>&amp;URL:</translation>
     </message>
@@ -66634,7 +66633,7 @@
         <translation>&lt;b&gt;URL&lt;/b&gt;&lt;p&gt;Gib die URL des Moduls ein. Für ein Repository mit Standardstruktur darf diese nicht den trunk-, tags- oder branches-Anteil enthalten.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="121"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="122"/>
         <source>Pat&amp;h:</source>
         <translation>&amp;Pfad:</translation>
     </message>
@@ -67521,17 +67520,17 @@
 &lt;p&gt;Dies zeigt mögliche Fehlermeldungen des subversion proplist-Befehls.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="154"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnPropListDialog.py" line="145"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnPropListDialog.py" line="152"/>
         <source>None</source>
         <translation>Keine</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="154"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
@@ -67690,7 +67689,7 @@
         <translation>Datum</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="281"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="288"/>
         <source>Subversion Error</source>
         <translation>Subversion-Fehler</translation>
     </message>
@@ -67740,12 +67739,12 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="267"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="267"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
@@ -67755,7 +67754,7 @@
         <translation>&lt;b&gt;Subversion-Fehler&lt;/b&gt;&lt;p&gt;Dies zeigt mögliche Fehlermeldungen der svn list- und svn info-Befehle.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="204"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="208"/>
         <source>The installed version of PySvn should be 1.4.0 or better.</source>
         <translation>Die installierte PySvn Version muss 1.4.0 oder neuer sein.</translation>
     </message>
@@ -67871,152 +67870,152 @@
 <context>
     <name>SvnStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="173"/>
         <source>normal</source>
         <translation>normal</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="158"/>
-        <source>added</source>
-        <translation>hinzugefügt</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="160"/>
-        <source>deleted</source>
-        <translation>gelöscht</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="171"/>
-        <source>modified</source>
-        <translation>modifiziert</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="172"/>
-        <source>conflict</source>
-        <translation>Konflikt</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="165"/>
-        <source>unversioned</source>
-        <translation>unversioniert</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="166"/>
-        <source>missing</source>
-        <translation>fehlt</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="167"/>
-        <source>type error</source>
-        <translation>Typfehler</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="196"/>
-        <source>no</source>
-        <translation>nein</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="195"/>
-        <source>yes</source>
-        <translation>ja</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="185"/>
-        <source>external</source>
-        <translation>extern</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="161"/>
+        <source>added</source>
+        <translation>hinzugefügt</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="163"/>
+        <source>deleted</source>
+        <translation>gelöscht</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="174"/>
+        <source>modified</source>
+        <translation>modifiziert</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="175"/>
+        <source>conflict</source>
+        <translation>Konflikt</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="168"/>
+        <source>unversioned</source>
+        <translation>unversioniert</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="169"/>
+        <source>missing</source>
+        <translation>fehlt</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="170"/>
+        <source>type error</source>
+        <translation>Typfehler</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="199"/>
+        <source>no</source>
+        <translation>nein</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="198"/>
+        <source>yes</source>
+        <translation>ja</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="188"/>
+        <source>external</source>
+        <translation>extern</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="164"/>
         <source>ignored</source>
         <translation>ignoriert</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="400"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="406"/>
         <source>Subversion Status</source>
         <translation>Subversion-Status</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="83"/>
         <source>Commit changes to repository...</source>
         <translation>Änderungen einpflegen...</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="742"/>
         <source>Commit</source>
         <translation>Einpflegen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="850"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="867"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation>Es sind keine nicht eingepflegten Änderungen vorhanden/ausgewählt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="873"/>
-        <source>Lock</source>
-        <translation>Sperren</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890"/>
+        <source>Lock</source>
+        <translation>Sperren</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="907"/>
         <source>Unlock</source>
         <translation>Entsperren</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="111"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="113"/>
         <source>Break lock</source>
         <translation>Sperre brechen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="116"/>
         <source>Steal lock</source>
         <translation>Sperre stehlen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="189"/>
-        <source>locked</source>
-        <translation>gesperrt</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="190"/>
-        <source>other lock</source>
-        <translation>fremdgesperrt</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="191"/>
-        <source>stolen lock</source>
-        <translation>Sperre gestohlen</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="192"/>
+        <source>locked</source>
+        <translation>gesperrt</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="193"/>
+        <source>other lock</source>
+        <translation>fremdgesperrt</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="194"/>
+        <source>stolen lock</source>
+        <translation>Sperre gestohlen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="195"/>
         <source>broken lock</source>
         <translation>Sperre gebrochen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="188"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="191"/>
         <source>not locked</source>
         <translation>nicht gesperrt</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="163"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="166"/>
         <source>replaced</source>
         <translation>ersetzt</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="873"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890"/>
         <source>There are no unlocked files available/selected.</source>
         <translation>Es sind keine ungesperrten Dateien vorhanden/ausgewählt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="926"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="943"/>
         <source>There are no locked files available/selected.</source>
         <translation>Es sind keine gesperrten Dateien vorhanden/ausgewählt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="908"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="925"/>
         <source>Break Lock</source>
         <translation>Sperre brechen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="926"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="943"/>
         <source>Steal Lock</source>
         <translation>Sperre stehlen</translation>
     </message>
@@ -68133,12 +68132,12 @@
         <translation>Drücken, um die Statusanzeige zu erneuern</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="120"/>
         <source>Adjust column sizes</source>
         <translation>Spaltengrößen anpassen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="413"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
@@ -68148,32 +68147,32 @@
         <translation>Erneuern</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="90"/>
         <source>Add to repository</source>
         <translation>Zum Repository hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="96"/>
         <source>Revert changes</source>
         <translation>Änderungen rückgängig</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="765"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="782"/>
         <source>Add</source>
         <translation>Hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="765"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="782"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation>Es sind keine unversionierten Einträge vorhanden/ausgewählt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="811"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="828"/>
         <source>Revert</source>
         <translation>Rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="413"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
@@ -68183,22 +68182,22 @@
         <translation>Änderungsliste</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="102"/>
         <source>Add to Changelist</source>
         <translation>Zu Änderungsliste hinzufügen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979"/>
         <source>Remove from Changelist</source>
         <translation>Von Änderungsliste entfernen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="943"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="960"/>
         <source>There are no files available/selected not belonging to a changelist.</source>
         <translation>Es sind keine Dateien vorhanden/ausgewählt, die nicht zu einer Änderungsliste gehören.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979"/>
         <source>There are no files available/selected belonging to a changelist.</source>
         <translation>Es sind keine Dateien vorhanden/ausgewählt, die zu einer Änderungsliste gehören.</translation>
     </message>
@@ -68263,42 +68262,42 @@
         <translation>&amp;Wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="92"/>
         <source>Show differences</source>
         <translation>Unterschiede anzeigen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="96"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="98"/>
         <source>Restore missing</source>
         <translation>Fehlende wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="637"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="654"/>
         <source>all</source>
         <translation>alle</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="829"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="846"/>
         <source>Differences</source>
         <translation>Unterschiede</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="742"/>
         <source>There are no entries selected to be committed.</source>
         <translation>Es sind keine Einträge zum Einpflegen ausgewählt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="811"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="828"/>
         <source>There are no missing entries available/selected.</source>
         <translation>Es sind keine fehlenden Einträge vorhanden/ausgewählt.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="83"/>
-        <source>Select all for commit</source>
-        <translation>Alle zum Einpflegen auswählen</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="85"/>
+        <source>Select all for commit</source>
+        <translation>Alle zum Einpflegen auswählen</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="87"/>
         <source>Deselect all from commit</source>
         <translation>Alle vom Einpflegen abwählen</translation>
     </message>
@@ -68313,17 +68312,17 @@
         <translation>Unterschiede &amp;nebeneinander</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="92"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="94"/>
         <source>Show differences side-by-side</source>
         <translation>Unterschiede nebeneinander anzeigen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="857"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="874"/>
         <source>Side-by-Side Diff</source>
         <translation>Unterschiede nebeneinander</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="857"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="874"/>
         <source>Only one file with uncommitted changes must be selected.</source>
         <translation>Es darf nur eine Datei ausgewählt werden.</translation>
     </message>
@@ -68415,37 +68414,37 @@
 <context>
     <name>SvnTagBranchListDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="96"/>
         <source>Subversion Branches List</source>
         <translation>Subversion-Zweigliste</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="127"/>
         <source>Subversion Error</source>
         <translation>Subversion-Fehler</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="107"/>
         <source>The URL of the project repository could not be retrieved from the working copy. The list operation will be aborted</source>
         <translation>Die URL des Projektrepositorys konnte nicht aus der Arbeitskopie ermittelt werden. Die Anzeigeoperation wird abgebrochen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="127"/>
         <source>The URL of the project repository has an invalid format. The list operation will be aborted</source>
         <translation>Die URL des Projektrepositorys hat ein ungültiges Format. Die Anzeigeoperation wird abgebrochen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="155"/>
         <source>Subversion List</source>
         <translation>Subversion-List</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="142"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="144"/>
         <source>Enter the repository URL containing the tags or branches</source>
         <translation>Gib den Repositoryzweig ein, der die Tags oder Zweige enthält</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="155"/>
         <source>The repository URL is empty. Aborting...</source>
         <translation>Die URL des Repositorys ist leer. Abbruch...</translation>
     </message>
@@ -68534,17 +68533,17 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="172"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="172"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="160"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="162"/>
         <source>The installed version of PySvn should be 1.4.0 or better.</source>
         <translation>Die installierte PySvn-Version muss 1.4.0 oder neuer sein.</translation>
     </message>
@@ -70499,7 +70498,7 @@
         <translation>Drücken, um alle Dateien mit Problemen anzuzeigen</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="397"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="409"/>
         <source>No issues found.</source>
         <translation>Keine Probleme gefunden.</translation>
     </message>
@@ -70524,7 +70523,7 @@
         <translation>Starten</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="288"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="297"/>
         <source>Error: {0}</source>
         <translation>Fehler: {0}</translation>
     </message>
@@ -70534,17 +70533,17 @@
         <translation>%v/%m Dateien</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="274"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="283"/>
         <source>Preparing files...</source>
         <translation>Bereite Dateien vor...</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="98"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="101"/>
         <source>Errors</source>
         <translation>Fehler</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="298"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="307"/>
         <source>Transferring data...</source>
         <translation>Übertrage Daten...</translation>
     </message>
@@ -70830,72 +70829,72 @@
 <context>
     <name>TabManagerWidget</name>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="73"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="74"/>
         <source>Tab Manager</source>
         <translation>Registerverwaltung</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="127"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="128"/>
         <source>Saved Tabs</source>
         <translation>Gesicherte Register</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="171"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="172"/>
         <source>Local File System:</source>
         <translation>Lokales Dateisystem:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="173"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="174"/>
         <source>eric Web Browser:</source>
         <translation>eric Web Browser:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="175"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="176"/>
         <source> [FTP]:</source>
         <translation> [FTP]:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="314"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="317"/>
         <source>Window {0}</source>
         <translation>Fenster {0}</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="315"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="318"/>
         <source>Double click to switch</source>
         <translation>Doppelklick zum Umschalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="506"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="509"/>
         <source>Group by</source>
         <translation>Sortieren nach</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="507"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="510"/>
         <source>&amp;Window</source>
         <translation>&amp;Fenster</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="512"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="515"/>
         <source>&amp;Domain</source>
         <translation>&amp;Domain</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="517"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="520"/>
         <source>&amp;Host</source>
         <translation>&amp;Host</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="528"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="531"/>
         <source>&amp;Bookmark checked tabs</source>
         <translation>&amp;Lesezeichen für ausgewählte Register</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="533"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="536"/>
         <source>&amp;Close checked tabs</source>
         <translation>Ausgewählte Register &amp;schließen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="567"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="570"/>
         <source>Show Tab Manager</source>
         <translation>Zeige Registerverwaltung</translation>
     </message>
@@ -70903,77 +70902,77 @@
 <context>
     <name>TabWidget</name>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="256"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="262"/>
         <source>Close</source>
         <translation>Schließen</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="262"/>
-        <source>Close All</source>
-        <translation>Alle schließen</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="265"/>
-        <source>Save</source>
-        <translation>Speichern</translation>
-    </message>
-    <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="268"/>
-        <source>Save As...</source>
-        <translation>Speichern unter...</translation>
+        <source>Close All</source>
+        <translation>Alle schließen</translation>
     </message>
     <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="271"/>
+        <source>Save</source>
+        <translation>Speichern</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="274"/>
+        <source>Save As...</source>
+        <translation>Speichern unter...</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="277"/>
         <source>Save All</source>
         <translation>Alle speichern</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="279"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="285"/>
         <source>Print</source>
         <translation>Drucken</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="437"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="443"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="243"/>
-        <source>Move Left</source>
-        <translation>nack links verschieben</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="246"/>
-        <source>Move Right</source>
-        <translation>nach rechts verschieben</translation>
-    </message>
-    <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="249"/>
-        <source>Move First</source>
-        <translation>zum Anfang verschieben</translation>
+        <source>Move Left</source>
+        <translation>nack links verschieben</translation>
     </message>
     <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="252"/>
+        <source>Move Right</source>
+        <translation>nach rechts verschieben</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="255"/>
+        <source>Move First</source>
+        <translation>zum Anfang verschieben</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="258"/>
         <source>Move Last</source>
         <translation>zum Schluss verschieben</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="212"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="216"/>
         <source>Show a navigation menu</source>
         <translation>Zeige ein Navigationsmenü an</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="259"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="265"/>
         <source>Close Others</source>
         <translation>Andere schließen</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="283"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="289"/>
         <source>Copy Path to Clipboard</source>
         <translation>Pfad in die Zwischenablage kopieren</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="275"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="281"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation>Öffne „Ablehnungs“-Datei</translation>
     </message>
@@ -70981,12 +70980,12 @@
 <context>
     <name>Tabview</name>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1002"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1008"/>
         <source>Untitled {0}</source>
         <translation>Unbenannt {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1406"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1412"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
@@ -71539,17 +71538,17 @@
 <context>
     <name>TemplateMultipleVariablesDialog</name>
     <message>
-        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="105"/>
+        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="106"/>
         <source>Enter Template Variables</source>
         <translation>Vorlagenvariablen eingeben</translation>
     </message>
     <message>
-        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="106"/>
-        <source>&amp;OK</source>
-        <translation>&amp;OK</translation>
-    </message>
-    <message>
         <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="107"/>
+        <source>&amp;OK</source>
+        <translation>&amp;OK</translation>
+    </message>
+    <message>
+        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="108"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Abbrechen</translation>
     </message>
@@ -72523,12 +72522,12 @@
         <translation>Liste der Dateien und Pfade, die nicht übersetzt werden sollen</translation>
     </message>
     <message>
-        <location filename="../Project/TranslationPropertiesDialog.py" line="148"/>
+        <location filename="../Project/TranslationPropertiesDialog.py" line="149"/>
         <source>Exempt file from translation</source>
         <translation>Datei von der Übersetzung ausnehmen</translation>
     </message>
     <message>
-        <location filename="../Project/TranslationPropertiesDialog.py" line="161"/>
+        <location filename="../Project/TranslationPropertiesDialog.py" line="162"/>
         <source>Exempt directory from translation</source>
         <translation>Verzeichnis von der Übersetzung ausnehmen</translation>
     </message>
@@ -73964,97 +73963,97 @@
 <context>
     <name>UMLGraphicsView</name>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="78"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="79"/>
         <source>Delete shapes</source>
         <translation>Objekte löschen</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="83"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="84"/>
         <source>Increase width by {0} points</source>
         <translation>Breite um {0} Punkte vergrößern</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="90"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="91"/>
         <source>Increase height by {0} points</source>
         <translation>Höhe um {0} Punkte vergrößern</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="97"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="98"/>
         <source>Decrease width by {0} points</source>
         <translation>Breite um {0} Punkte verkleinern</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="104"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="105"/>
         <source>Decrease height by {0} points</source>
         <translation>Höhe um {0} Punkte verkleinern</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="111"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="112"/>
         <source>Set size</source>
         <translation>Größe setzen</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="121"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="122"/>
         <source>Re-Layout</source>
         <translation>Neuberechung</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="208"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="215"/>
         <source>Graphics</source>
         <translation>Grafiken</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="357"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="364"/>
         <source>Save Diagram</source>
         <translation>Diagramm speichern</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="357"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="364"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gespeichert werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="126"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="127"/>
         <source>Align Left</source>
         <translation>Links ausrichten</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="132"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="134"/>
         <source>Align Center Horizontal</source>
         <translation>Mitte horizontal ausrichten</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="138"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="141"/>
         <source>Align Right</source>
         <translation>Rechts ausrichten</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="144"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="148"/>
         <source>Align Top</source>
         <translation>Oben ausrichten</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="150"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="155"/>
         <source>Align Center Vertical</source>
         <translation>Mitte vertikal ausrichten</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="156"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="162"/>
         <source>Align Bottom</source>
         <translation>Unten ausrichten</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="330"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="337"/>
         <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source>
         <translation>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="345"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="352"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="116"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="117"/>
         <source>Re-Scan</source>
         <translation>Neu einlesen</translation>
     </message>
@@ -74138,37 +74137,37 @@
 <context>
     <name>UnittestDialog</name>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="903"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="906"/>
         <source>Unittest</source>
         <translation>Modultest</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="699"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="702"/>
         <source>Preparing Testsuite</source>
         <translation>Bereite Modultest vor</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1029"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1032"/>
         <source>Failure: {0}</source>
         <translation>Misserfolge: {0}</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1044"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1047"/>
         <source>Error: {0}</source>
         <translation>Fehler: {0}</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="166"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="168"/>
         <source>^Failure: </source>
         <translation>^Misserfolge: </translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="167"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="169"/>
         <source>^Error: </source>
         <translation>^Fehler: </translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="985"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="988"/>
         <source>Running</source>
         <translation>Führe aus</translation>
     </message>
@@ -74291,12 +74290,12 @@
 Ein Doppelklick auf einen Eintrag zeigt den zugehörigen Traceback an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="98"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="100"/>
         <source>Start the selected testsuite</source>
         <translation>Startet den ausgewählten Modultest</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="113"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="115"/>
         <source>Stop the running unittest</source>
         <translation>Halte den laufenden Modultest an</translation>
     </message>
@@ -74306,32 +74305,32 @@
         <translation>Leerlauf</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="96"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="98"/>
         <source>Start</source>
         <translation>Start</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="100"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="102"/>
         <source>&lt;b&gt;Start Test&lt;/b&gt;&lt;p&gt;This button starts the selected testsuite.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Starte Modultest&lt;/b&gt;&lt;p&gt;Dieser Knopf startet den ausgewählten Modultest.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="111"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="113"/>
         <source>Stop</source>
         <translation>Anhalten</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="114"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="116"/>
         <source>&lt;b&gt;Stop Test&lt;/b&gt;&lt;p&gt;This button stops a running unittest.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Modultest anhalten&lt;/b&gt;&lt;p&gt;Dieser Knopf hält den laufenden Modultest an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1158"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1161"/>
         <source>Show Source</source>
         <translation>Zeige Quelltext</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="304"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="306"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation>Python-Dateien (*.py);;Alle Dateien (*)</translation>
     </message>
@@ -74366,32 +74365,32 @@
         <translation>Anzahl der Tests, die unerwartet erfolgreich waren</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1059"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1062"/>
         <source>    Skipped: {0}</source>
         <translation>    Übersprungen: {0}</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1077"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1080"/>
         <source>    Expected Failure</source>
         <translation>    Erwarteter Mißerfolg</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1094"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1097"/>
         <source>    Unexpected Success</source>
         <translation>    Unerwarteter Erfolg</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="103"/>
-        <source>Rerun Failed</source>
-        <translation>Fehlerhafte wiederholen</translation>
-    </message>
-    <message>
         <location filename="../PyUnit/UnittestDialog.py" line="105"/>
-        <source>Reruns failed tests of the selected testsuite</source>
-        <translation>Fehlerhafte Tests des ausgewählten Modultests wiederholen</translation>
+        <source>Rerun Failed</source>
+        <translation>Fehlerhafte wiederholen</translation>
     </message>
     <message>
         <location filename="../PyUnit/UnittestDialog.py" line="107"/>
+        <source>Reruns failed tests of the selected testsuite</source>
+        <translation>Fehlerhafte Tests des ausgewählten Modultests wiederholen</translation>
+    </message>
+    <message>
+        <location filename="../PyUnit/UnittestDialog.py" line="109"/>
         <source>&lt;b&gt;Rerun Failed&lt;/b&gt;&lt;p&gt;This button reruns all failed tests of the selected testsuite.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Fehlerhafte wiederholen&lt;/b&gt;&lt;p&gt;Dieser Knopf wiederholt alle fehlerhaften Tests des ausgewählten Modultests.&lt;/p&gt;</translation>
     </message>
@@ -74481,17 +74480,17 @@
         <translation>Ergebnisse</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="703"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="706"/>
         <source>Unittest with auto-discovery</source>
         <translation>Unittest mit Autoerkennung</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="787"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="790"/>
         <source>You must enter a start directory for auto-discovery.</source>
         <translation>Es muss ein Startverzeichnis für die Autoerkennung eingegeben werden.</translation>
     </message>
     <message numerus="yes">
-        <location filename="../PyUnit/UnittestDialog.py" line="1009"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1012"/>
         <source>Ran %n test(s) in {0:.3f}s</source>
         <translation>
             <numerusform>%n Test in {0:.3f}s ausgeführt</numerusform>
@@ -74504,27 +74503,27 @@
         <translation>Erkennungsergebnisse</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="89"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="91"/>
         <source>Discover</source>
         <translation>Erkennen</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="91"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="93"/>
         <source>Discover tests</source>
         <translation>Erkenne Tests</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="382"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="384"/>
         <source>Discovering Tests</source>
         <translation>Erkenne Tests</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="447"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="449"/>
         <source>&lt;p&gt;Unable to discover tests.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Testerkennung ist nicht möglich.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message numerus="yes">
-        <location filename="../PyUnit/UnittestDialog.py" line="619"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="622"/>
         <source>Discovered %n Test(s)</source>
         <translation>
             <numerusform>%n Test erkannt</numerusform>
@@ -74532,27 +74531,27 @@
         </translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="624"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="627"/>
         <source>&lt;p&gt;Unable to discover tests.&lt;/p&gt;&lt;p&gt;{0}&lt;br/&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Testerkennung ist nicht möglich.&lt;/p&gt;&lt;p&gt;{0}&lt;br/&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="690"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="693"/>
         <source>You must select auto-discovery or enter a test suite file or a dotted test name.</source>
         <translation>Es must Auto-Erkennung ausgewählt oder eine Testsuitedatei oder ein Testname in Punktnotation eingegeben werden.</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="712"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="715"/>
         <source>&lt;Unnamed Test&gt;</source>
         <translation>&lt;Unbekannter Test&gt;</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="903"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="906"/>
         <source>&lt;p&gt;Unable to run test &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;br/&gt;{2}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Test &lt;b&gt;{0}&lt;/b&gt; kann nicht ausgeführt werden.&lt;/p&gt;&lt;p&gt;{1}&lt;br/&gt;{2}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="93"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="95"/>
         <source>&lt;b&gt;Discover&lt;/b&gt;&lt;p&gt;This button starts a discovery of available tests.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Erkennen&lt;/b&gt;&lt;p&gt;Dieser Knopf startet die Erkennung aller verfügbarer Tests.&lt;/p&gt;</translation>
     </message>
@@ -74577,12 +74576,12 @@
         <translation>Mit Debugger ausführen</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="720"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="723"/>
         <source>No test case has been selected. Shall all test cases be run?</source>
         <translation>Es wurde kein Testfall ausgewählt. Sollen alle Testfälle ausgeführt werden?</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="300"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="302"/>
         <source>Python3 Files ({0});;All Files (*)</source>
         <translation>Python3 Dateien ({0});;Alle Dateien (*)</translation>
     </message>
@@ -74700,7 +74699,7 @@
         <translation>Geben Sie die URL hier ein.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/UrlBar/UrlBar.py" line="454"/>
+        <location filename="../WebBrowser/UrlBar/UrlBar.py" line="465"/>
         <source>Unknown</source>
         <translation>Unbekannt</translation>
     </message>
@@ -74825,252 +74824,252 @@
 <context>
     <name>UserInterface</name>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>What&apos;s This?</source>
         <translation>Was ist das?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2122"/>
+        <location filename="../UI/UserInterface.py" line="2132"/>
         <source>Context sensitive help</source>
         <translation>Kontextsensitive Hilfe</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2123"/>
+        <location filename="../UI/UserInterface.py" line="2133"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zeige kontextsensitive Hilfe an&lt;b&gt;&lt;/p&gt;Im „Was ist das?“-Modus (der Mauszeiger stellt einen Pfeil mit Fragezeichen dar) wird auf einen Mausklick eine kurze Hilfebeschreibung zu dem ausgewählten MMI-Element angezeigt. In Dialogen kann diese Funktionalität durch den entsprechenden Knopf im Fensterkopf erreicht werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>Helpviewer</source>
         <translation>Hilfe</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>&amp;Helpviewer...</source>
         <translation>&amp;Hilfe...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2140"/>
+        <location filename="../UI/UserInterface.py" line="2150"/>
         <source>Open the helpviewer window</source>
         <translation>Öffnet das Hilfe-Fenster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3361"/>
+        <location filename="../UI/UserInterface.py" line="3371"/>
         <source>Unittest</source>
         <translation>Modultests</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2252"/>
+        <location filename="../UI/UserInterface.py" line="2262"/>
         <source>&amp;Unittest...</source>
         <translation>&amp;Modultests...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2257"/>
+        <location filename="../UI/UserInterface.py" line="2267"/>
         <source>Start unittest dialog</source>
         <translation>Starte den Modultest Dialog</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3212"/>
+        <location filename="../UI/UserInterface.py" line="3222"/>
         <source>&amp;Window</source>
         <translation>&amp;Fenster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3287"/>
+        <location filename="../UI/UserInterface.py" line="3297"/>
         <source>&amp;Help</source>
         <translation>&amp;Hilfe</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
+        <location filename="../UI/UserInterface.py" line="1642"/>
         <source>Quit</source>
         <translation>Beenden</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2517"/>
+        <location filename="../UI/UserInterface.py" line="2527"/>
         <source>Preferences</source>
         <translation>Einstellungen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2517"/>
+        <location filename="../UI/UserInterface.py" line="2527"/>
         <source>&amp;Preferences...</source>
         <translation>&amp;Einstellungen...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2522"/>
+        <location filename="../UI/UserInterface.py" line="2532"/>
         <source>Set the prefered configuration</source>
         <translation>Konfiguriert die Einstellungen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2524"/>
+        <location filename="../UI/UserInterface.py" line="2534"/>
         <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Einstellungen&lt;/b&gt;&lt;p&gt;Konfiguriert die einstellbaren Parameter der Applikation nach Ihren Wünschen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1638"/>
+        <location filename="../UI/UserInterface.py" line="1648"/>
         <source>Quit the IDE</source>
         <translation>Beenden der Entwicklungsumgebung</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3360"/>
+        <location filename="../UI/UserInterface.py" line="3370"/>
         <source>Tools</source>
         <translation>Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5220"/>
+        <location filename="../UI/UserInterface.py" line="5237"/>
         <source>Help</source>
         <translation>Hilfe</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3273"/>
+        <location filename="../UI/UserInterface.py" line="3283"/>
         <source>&amp;Toolbars</source>
         <translation>&amp;Werkzeugleisten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5348"/>
+        <location filename="../UI/UserInterface.py" line="5365"/>
         <source>Problem</source>
         <translation>Problem</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
+        <location filename="../UI/UserInterface.py" line="1642"/>
         <source>&amp;Quit</source>
         <translation>B&amp;eenden</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1639"/>
+        <location filename="../UI/UserInterface.py" line="1649"/>
         <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Die Entwicklungsumgebung beenden&lt;/b&gt;&lt;p&gt;Dies beendet die Entwicklungsumgebung. Ungesicherte Änderungen können zuvor gesichert werden. Ein Python-Programm, das gerade debuggt wird, wird beendet und sämtliche Einstellungen werden gespeichert.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Was ist das?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5543"/>
+        <location filename="../UI/UserInterface.py" line="5560"/>
         <source>Process Generation Error</source>
         <translation>Fehler beim Prozessstart</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1598"/>
+        <location filename="../UI/UserInterface.py" line="1608"/>
         <source>{0} - Passive Mode</source>
         <translation>{0} – Passiver Modus</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1605"/>
+        <location filename="../UI/UserInterface.py" line="1615"/>
         <source>{0} - {1} - Passive Mode</source>
         <translation>{0} – {1} – Passiver Modus</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
         <source>Log-Viewer</source>
         <translation>Ausgabefenster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3362"/>
+        <location filename="../UI/UserInterface.py" line="3372"/>
         <source>Settings</source>
         <translation>Einstellungen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2160"/>
+        <location filename="../UI/UserInterface.py" line="2170"/>
         <source>Show Versions</source>
         <translation>Zeige Versionen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2160"/>
+        <location filename="../UI/UserInterface.py" line="2170"/>
         <source>Show &amp;Versions</source>
         <translation>Zeige &amp;Versionen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2164"/>
+        <location filename="../UI/UserInterface.py" line="2174"/>
         <source>Display version information</source>
         <translation>Zeigt Versionsinformationen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2166"/>
+        <location filename="../UI/UserInterface.py" line="2176"/>
         <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zeige Versionen&lt;/b&gt;&lt;p&gt;Zeigt Versionsinformationen an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2622"/>
+        <location filename="../UI/UserInterface.py" line="2632"/>
         <source>Keyboard Shortcuts</source>
         <translation>Tastaturkurzbefehle</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2622"/>
+        <location filename="../UI/UserInterface.py" line="2632"/>
         <source>Keyboard &amp;Shortcuts...</source>
         <translation>&amp;Tastaturkurzbefehle...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2627"/>
-        <source>Set the keyboard shortcuts</source>
-        <translation>Setze die Tastaturkurzbefehle</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2629"/>
-        <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Tastaturkurzbefehle&lt;/b&gt;&lt;p&gt;Setze die Tastaturkurzbefehle der Applikation mit den bevorzugten Werten.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3098"/>
-        <source>E&amp;xtras</source>
-        <translation>E&amp;xtras</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3818"/>
-        <source>Report Bug</source>
-        <translation>Fehler berichten</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2225"/>
-        <source>Report &amp;Bug...</source>
-        <translation>&amp;Fehler berichten...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2229"/>
-        <source>Report a bug</source>
-        <translation>Einen Fehler berichten</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2230"/>
-        <source>&lt;b&gt;Report Bug...&lt;/b&gt;&lt;p&gt;Opens a dialog to report a bug.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Fehler berichten...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zum Senden eines Fehlerberichtes.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6313"/>
-        <source>Export Keyboard Shortcuts</source>
-        <translation>Tastaturkurzbefehle exportieren</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2637"/>
+        <source>Set the keyboard shortcuts</source>
+        <translation>Setze die Tastaturkurzbefehle</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2639"/>
+        <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Tastaturkurzbefehle&lt;/b&gt;&lt;p&gt;Setze die Tastaturkurzbefehle der Applikation mit den bevorzugten Werten.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3108"/>
+        <source>E&amp;xtras</source>
+        <translation>E&amp;xtras</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3828"/>
+        <source>Report Bug</source>
+        <translation>Fehler berichten</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2235"/>
+        <source>Report &amp;Bug...</source>
+        <translation>&amp;Fehler berichten...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2239"/>
+        <source>Report a bug</source>
+        <translation>Einen Fehler berichten</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2240"/>
+        <source>&lt;b&gt;Report Bug...&lt;/b&gt;&lt;p&gt;Opens a dialog to report a bug.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Fehler berichten...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zum Senden eines Fehlerberichtes.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6333"/>
+        <source>Export Keyboard Shortcuts</source>
+        <translation>Tastaturkurzbefehle exportieren</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2647"/>
         <source>&amp;Export Keyboard Shortcuts...</source>
         <translation>Tastaturkurzbefehle &amp;exportieren...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2642"/>
+        <location filename="../UI/UserInterface.py" line="2652"/>
         <source>Export the keyboard shortcuts</source>
         <translation>Exportiert die Tastaturkurzbefehle</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2644"/>
+        <location filename="../UI/UserInterface.py" line="2654"/>
         <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tastaturkurzbefehle exportieren&lt;/b&gt;&lt;p&gt;Exportiert die Tastaturkurzbefehle der Applikation.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6329"/>
+        <location filename="../UI/UserInterface.py" line="6349"/>
         <source>Import Keyboard Shortcuts</source>
         <translation>Tastaturkurzbefehle importieren</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2651"/>
+        <location filename="../UI/UserInterface.py" line="2661"/>
         <source>&amp;Import Keyboard Shortcuts...</source>
         <translation>Tastaturkurzbefehle &amp;importieren...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2656"/>
+        <location filename="../UI/UserInterface.py" line="2666"/>
         <source>Import the keyboard shortcuts</source>
         <translation>Importiert die Tastaturkurzbefehle</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2658"/>
+        <location filename="../UI/UserInterface.py" line="2668"/>
         <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tastaturkurzbefehle importieren&lt;/b&gt;&lt;p&gt;Importiert die Tastaturkurzbefehle der Applikation.&lt;/p&gt;</translation>
     </message>
@@ -75110,107 +75109,107 @@
         <translation>Initialisiere Werkzeuge...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2258"/>
+        <location filename="../UI/UserInterface.py" line="2268"/>
         <source>&lt;b&gt;Unittest&lt;/b&gt;&lt;p&gt;Perform unit tests. The dialog gives you the ability to select and run a unittest suite.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Modultests&lt;/b&gt;&lt;p&gt;Führe Modultests durch. Der Dialog bietet die Möglichkeit eine Zusammenstellung von Modultests auszuwählen und auszuführen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2266"/>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>Unittest Restart</source>
         <translation>Modultest neu starten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2271"/>
+        <location filename="../UI/UserInterface.py" line="2281"/>
         <source>Restart last unittest</source>
         <translation>Modultest neu starten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2272"/>
+        <location filename="../UI/UserInterface.py" line="2282"/>
         <source>&lt;b&gt;Restart Unittest&lt;/b&gt;&lt;p&gt;Restart the unittest performed last.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Modultest neu starten&lt;/b&gt;&lt;p&gt;Den letzten durchgeführten Modultest neu starten.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2296"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Unittest Script</source>
         <translation>Modultest (Skript)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2301"/>
-        <source>Run unittest with current script</source>
-        <translation>Modultest für aktuelles Skript ausführen</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2303"/>
-        <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Modultest (Skript)&lt;/b&gt;&lt;p&gt;Modultest für aktuelles Skript ausführen.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2311"/>
+        <source>Run unittest with current script</source>
+        <translation>Modultest für aktuelles Skript ausführen</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2313"/>
+        <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Modultest (Skript)&lt;/b&gt;&lt;p&gt;Modultest für aktuelles Skript ausführen.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2321"/>
         <source>Unittest Project</source>
         <translation>Modultest (Projekt)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2316"/>
+        <location filename="../UI/UserInterface.py" line="2326"/>
         <source>Run unittest with current project</source>
         <translation>Modultest für aktuellesProjekt ausführen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2318"/>
+        <location filename="../UI/UserInterface.py" line="2328"/>
         <source>&lt;b&gt;Unittest Project&lt;/b&gt;&lt;p&gt;Run unittest with current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Modultest (Projekt)&lt;/b&gt;&lt;p&gt;Modultest für aktuelles Projekt ausführen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3154"/>
+        <location filename="../UI/UserInterface.py" line="3164"/>
         <source>&amp;Unittest</source>
         <translation>&amp;Modultests</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2266"/>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>&amp;Restart Unittest...</source>
         <translation>Modultest &amp;neu starten...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2296"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Unittest &amp;Script...</source>
         <translation>Modultest (&amp;Skript)...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2311"/>
+        <location filename="../UI/UserInterface.py" line="2321"/>
         <source>Unittest &amp;Project...</source>
         <translation>Modultest (&amp;Projekt)...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2406"/>
+        <location filename="../UI/UserInterface.py" line="2416"/>
         <source>Compare Files</source>
         <translation>Dateien vergleichen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2406"/>
+        <location filename="../UI/UserInterface.py" line="2416"/>
         <source>&amp;Compare Files...</source>
         <translation>Dateien &amp;vergleichen...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2424"/>
+        <location filename="../UI/UserInterface.py" line="2434"/>
         <source>Compare two files</source>
         <translation>Zwei Dateien vergleichen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2412"/>
+        <location filename="../UI/UserInterface.py" line="2422"/>
         <source>&lt;b&gt;Compare Files&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Dateien vergleichen&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zum Vergleich zweier Dateien.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2419"/>
+        <location filename="../UI/UserInterface.py" line="2429"/>
         <source>Compare Files side by side</source>
         <translation>Dateien Seite an Seite vergleichen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2425"/>
+        <location filename="../UI/UserInterface.py" line="2435"/>
         <source>&lt;b&gt;Compare Files side by side&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files and show the result side by side.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Dateien Seite an Seite vergleichen&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zum Vergleich zweier Dateien und zur Anzeige des Ergebnisse Seite an Seite.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6897"/>
+        <location filename="../UI/UserInterface.py" line="6917"/>
         <source>Drop Error</source>
         <translation>Drop-Fehler</translation>
     </message>
@@ -75220,282 +75219,282 @@
         <translation>Initialisiere Applikationsserver...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1609"/>
+        <location filename="../UI/UserInterface.py" line="1619"/>
         <source>{0} - {1} - {2} - Passive Mode</source>
         <translation>{0} . {1} – {2} – Passiver Modus</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
+        <location filename="../UI/UserInterface.py" line="1824"/>
         <source>File-Browser</source>
         <translation>Dateibrowser</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1710"/>
+        <location filename="../UI/UserInterface.py" line="1720"/>
         <source>Edit Profile</source>
         <translation>Editieren-Profil</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1716"/>
+        <location filename="../UI/UserInterface.py" line="1726"/>
         <source>Activate the edit view profile</source>
         <translation>Aktiviert das Editieren-Ansichtsprofil</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1718"/>
+        <location filename="../UI/UserInterface.py" line="1728"/>
         <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Editieren-Profil&lt;/b&gt;&lt;p&gt;Aktiviert das „Editieren-Ansichtsprofil“. Fenster, die in diesem Profil angezeigt werden sollen, können im „Ansichtenprofile konfigurieren“-Dialog ausgewählt werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1727"/>
+        <location filename="../UI/UserInterface.py" line="1737"/>
         <source>Debug Profile</source>
         <translation>Debuggen-Profil</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1733"/>
+        <location filename="../UI/UserInterface.py" line="1743"/>
         <source>Activate the debug view profile</source>
         <translation>Aktiviert das Debuggen-Ansichtsprofil</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1735"/>
+        <location filename="../UI/UserInterface.py" line="1745"/>
         <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Debuggen-Profil&lt;/b&gt;&lt;p&gt;Aktiviert das „Debuggen Ansichtsprofil“. Fenster, die in diesem Profil angezeigt werden sollen, können im „Ansichtenprofile konfigurieren“-Dialog ausgewählt werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2590"/>
+        <location filename="../UI/UserInterface.py" line="2600"/>
         <source>View Profiles</source>
         <translation>Ansichtenprofile</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2590"/>
+        <location filename="../UI/UserInterface.py" line="2600"/>
         <source>&amp;View Profiles...</source>
         <translation>&amp;Ansichtenprofile...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2595"/>
+        <location filename="../UI/UserInterface.py" line="2605"/>
         <source>Configure view profiles</source>
         <translation>Ansichtenprofile konfigurieren</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2597"/>
+        <location filename="../UI/UserInterface.py" line="2607"/>
         <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ansichtenprofile&lt;/b&gt;&lt;p&gt;Ansichtenprofile konfigurieren. Mit diesem Dialog kann die Sichtbarkeit der verschiedenen Fenster für die vorbestimmten Ansichtenprofile eingestellt werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5348"/>
+        <location filename="../UI/UserInterface.py" line="5365"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist or is zero length.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert nicht oder hat die Größe Null.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5073"/>
+        <location filename="../UI/UserInterface.py" line="5090"/>
         <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Qt-Designer konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass es als &lt;b&gt;{0}&lt;/b&gt; verfügbar ist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5143"/>
+        <location filename="../UI/UserInterface.py" line="5160"/>
         <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Qt-Linguist konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass es als &lt;b&gt;{0}&lt;/b&gt; verfügbar ist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5187"/>
+        <location filename="../UI/UserInterface.py" line="5204"/>
         <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Qt-Assistant konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass es als &lt;b&gt;{0}&lt;/b&gt; verfügbar ist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5543"/>
+        <location filename="../UI/UserInterface.py" line="5560"/>
         <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Werkzeugeeintrag &lt;b&gt;{0}&lt;/b&gt; konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass er als &lt;b&gt;{1}&lt;/b&gt; verfügbar ist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6897"/>
+        <location filename="../UI/UserInterface.py" line="6917"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; ist keine Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2379"/>
+        <location filename="../UI/UserInterface.py" line="2389"/>
         <source>UI Previewer</source>
         <translation>UI-Vorschau</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2379"/>
+        <location filename="../UI/UserInterface.py" line="2389"/>
         <source>&amp;UI Previewer...</source>
         <translation>&amp;UI-Vorschau...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2384"/>
+        <location filename="../UI/UserInterface.py" line="2394"/>
         <source>Start the UI Previewer</source>
         <translation>Starte die UI-Vorschau</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2385"/>
+        <location filename="../UI/UserInterface.py" line="2395"/>
         <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
         <translation>&lt;b&gt;UI-Vorschau&lt;/b&gt;&lt;p&gt;Starte die UI-Vorschau.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5304"/>
+        <location filename="../UI/UserInterface.py" line="5321"/>
         <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die UI-Vorschau konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass sie als &lt;b&gt;{0}&lt;/b&gt; verfügbar ist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2392"/>
+        <location filename="../UI/UserInterface.py" line="2402"/>
         <source>Translations Previewer</source>
         <translation>Übersetzungsvorschau</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2392"/>
+        <location filename="../UI/UserInterface.py" line="2402"/>
         <source>&amp;Translations Previewer...</source>
         <translation>&amp;Übersetzungsvorschau...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2397"/>
+        <location filename="../UI/UserInterface.py" line="2407"/>
         <source>Start the Translations Previewer</source>
         <translation>Die Übersetzungsvorschau starten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2399"/>
+        <location filename="../UI/UserInterface.py" line="2409"/>
         <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Übersetzungsvorschau&lt;/b&gt;&lt;p&gt;Dies startet das Programm zur Vorschau von Übersetzungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5361"/>
+        <location filename="../UI/UserInterface.py" line="5378"/>
         <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Übersetzungsvorschau konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass sie als &lt;b&gt;{0}&lt;/b&gt; verfügbar ist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>Shell</source>
         <translation>Shell</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>&amp;Shell</source>
         <translation>&amp;Shell</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2561"/>
+        <location filename="../UI/UserInterface.py" line="2571"/>
         <source>Reload APIs</source>
         <translation>APIs neu laden</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2561"/>
+        <location filename="../UI/UserInterface.py" line="2571"/>
         <source>Reload &amp;APIs</source>
         <translation>APIs &amp;neu laden</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2565"/>
+        <location filename="../UI/UserInterface.py" line="2575"/>
         <source>Reload the API information</source>
         <translation>Die API-Informationen neu laden</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2567"/>
+        <location filename="../UI/UserInterface.py" line="2577"/>
         <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
         <translation>&lt;b&gt;APIs neu laden&lt;/b&gt;&lt;p&gt;Lädt die API-Informationen neu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1849"/>
+        <location filename="../UI/UserInterface.py" line="1859"/>
         <source>Task-Viewer</source>
         <translation>Aufgabenanzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6518"/>
+        <location filename="../UI/UserInterface.py" line="6538"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Aufgabendatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5220"/>
+        <location filename="../UI/UserInterface.py" line="5237"/>
         <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
         <translation>Momentan ist kein Betrachter angegeben. Bitte benutzen Sie den Einstellungsdialog, um einen festzulegen.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5234"/>
+        <location filename="../UI/UserInterface.py" line="5251"/>
         <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Betrachter konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass er als &lt;b&gt;{0}&lt;/b&gt; verfügbar ist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5883"/>
+        <location filename="../UI/UserInterface.py" line="5900"/>
         <source>Documentation Missing</source>
         <translation>Dokumentation fehlt</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5883"/>
+        <location filename="../UI/UserInterface.py" line="5900"/>
         <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; could not be found.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Dokumentationsstartpunkt „&lt;b&gt;{0}&lt;/b&gt;“ konnte nicht gefunden werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3818"/>
+        <location filename="../UI/UserInterface.py" line="3828"/>
         <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
         <translation>E-Mail-Adresse oder Mailserver-Adresse sind leer. Bitte konfiguriere die E-Mail-Einstellungen im Einstellungsdialog.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
+        <location filename="../UI/UserInterface.py" line="1878"/>
         <source>Template-Viewer</source>
         <translation>Vorlagen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
+        <location filename="../UI/UserInterface.py" line="1754"/>
         <source>Alt+Shift+P</source>
         <translation>Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
+        <location filename="../UI/UserInterface.py" line="1789"/>
         <source>Alt+Shift+D</source>
         <translation>Alt+Shift+D</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>Alt+Shift+S</source>
         <translation>Alt+Shift+S</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
+        <location filename="../UI/UserInterface.py" line="1824"/>
         <source>Alt+Shift+F</source>
         <translation>Alt+Shift+F</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1849"/>
+        <location filename="../UI/UserInterface.py" line="1859"/>
         <source>Alt+Shift+T</source>
         <translation>Alt+Shift+T</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
+        <location filename="../UI/UserInterface.py" line="1771"/>
         <source>Alt+Shift+M</source>
         <translation>Alt+Shift+M</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2716"/>
-        <source>Activate current editor</source>
-        <translation>Aktiviere aktuellen Editor</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2716"/>
-        <source>Alt+Shift+E</source>
-        <translation>Alt+Shift+E</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2726"/>
+        <source>Activate current editor</source>
+        <translation>Aktiviere aktuellen Editor</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2726"/>
+        <source>Alt+Shift+E</source>
+        <translation>Alt+Shift+E</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2736"/>
         <source>Ctrl+Alt+Tab</source>
         <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2735"/>
+        <location filename="../UI/UserInterface.py" line="2745"/>
         <source>Shift+Ctrl+Alt+Tab</source>
         <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
         <source>Alt+Shift+G</source>
         <translation>Alt+Shift+G</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2949"/>
+        <location filename="../UI/UserInterface.py" line="2959"/>
         <source>Eric API Documentation</source>
         <translation>Eric-API-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2953"/>
+        <location filename="../UI/UserInterface.py" line="2963"/>
         <source>Open Eric API Documentation</source>
         <translation>Öffne die Eric-API-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5254"/>
+        <location filename="../UI/UserInterface.py" line="5271"/>
         <source>&lt;p&gt;Could not start the help viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Hilfeanzeige konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass sie als &lt;b&gt;hh&lt;/b&gt; verfügbar ist.&lt;/p&gt;</translation>
     </message>
@@ -75505,137 +75504,137 @@
         <translation>Registriere Objekte...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
+        <location filename="../UI/UserInterface.py" line="1754"/>
         <source>Project-Viewer</source>
         <translation>Projektanzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
+        <location filename="../UI/UserInterface.py" line="1789"/>
         <source>Debug-Viewer</source>
         <translation>Debuganzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
+        <location filename="../UI/UserInterface.py" line="1642"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
+        <location filename="../UI/UserInterface.py" line="1754"/>
         <source>&amp;Project-Viewer</source>
         <translation>&amp;Projektanzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>Shift+F1</source>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>F1</source>
         <translation>F1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2176"/>
+        <location filename="../UI/UserInterface.py" line="2186"/>
         <source>Check for Updates</source>
         <translation>Auf Aktualisierungen prüfen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2173"/>
+        <location filename="../UI/UserInterface.py" line="2183"/>
         <source>Check for &amp;Updates...</source>
         <translation>Auf &amp;Aktualisierungen prüfen...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3171"/>
+        <location filename="../UI/UserInterface.py" line="3181"/>
         <source>Select Tool Group</source>
         <translation>Werkzeuggruppe wählen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3182"/>
+        <location filename="../UI/UserInterface.py" line="3192"/>
         <source>Se&amp;ttings</source>
         <translation>&amp;Einstellungen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3364"/>
+        <location filename="../UI/UserInterface.py" line="3374"/>
         <source>Profiles</source>
         <translation>Profile</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4174"/>
+        <location filename="../UI/UserInterface.py" line="4184"/>
         <source>&amp;Builtin Tools</source>
         <translation>&amp;Eingebaute Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5527"/>
+        <location filename="../UI/UserInterface.py" line="5544"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation>Starte Prozess „{0} {1}“.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5621"/>
+        <location filename="../UI/UserInterface.py" line="5638"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation>Prozess „{0}“ ist beendet.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5866"/>
+        <location filename="../UI/UserInterface.py" line="5883"/>
         <source>Documentation</source>
         <translation>Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7240"/>
+        <location filename="../UI/UserInterface.py" line="7261"/>
         <source>Error during updates check</source>
         <translation>Fehler während der Aktualisierungsprüfung</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7221"/>
+        <location filename="../UI/UserInterface.py" line="7242"/>
         <source>Update available</source>
         <translation>Aktualisierung verfügbar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7279"/>
+        <location filename="../UI/UserInterface.py" line="7300"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4219"/>
+        <location filename="../UI/UserInterface.py" line="4229"/>
         <source>Configure Tool Groups ...</source>
         <translation>Konfiguriere Werkzeuggruppen...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4223"/>
+        <location filename="../UI/UserInterface.py" line="4233"/>
         <source>Configure current Tool Group ...</source>
         <translation>Konfiguriere aktuelle Werkzeuggruppe...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2579"/>
+        <location filename="../UI/UserInterface.py" line="2589"/>
         <source>Show external tools</source>
         <translation>Zeige externe Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2574"/>
+        <location filename="../UI/UserInterface.py" line="2584"/>
         <source>Show external &amp;tools</source>
         <translation>Zeige externe &amp;Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7240"/>
+        <location filename="../UI/UserInterface.py" line="7261"/>
         <source>Could not perform updates check.</source>
         <translation>Konnte keine Aktualisierungsprüfung durchführen.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7062"/>
+        <location filename="../UI/UserInterface.py" line="7082"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Abbrechen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7071"/>
+        <location filename="../UI/UserInterface.py" line="7091"/>
         <source>Trying host {0}</source>
         <translation>Prüfe Host {0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7316"/>
+        <location filename="../UI/UserInterface.py" line="7337"/>
         <source>First time usage</source>
         <translation>Erstmalige Nutzung</translation>
     </message>
@@ -75645,62 +75644,62 @@
         <translation>Initialisiere Plugin-Manager...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3135"/>
+        <location filename="../UI/UserInterface.py" line="3145"/>
         <source>P&amp;lugins</source>
         <translation>Plugi&amp;ns</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3365"/>
+        <location filename="../UI/UserInterface.py" line="3375"/>
         <source>Plugins</source>
         <translation>Plugins</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2753"/>
+        <location filename="../UI/UserInterface.py" line="2763"/>
         <source>Plugin Infos</source>
         <translation>Plugininformationen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2757"/>
+        <location filename="../UI/UserInterface.py" line="2767"/>
         <source>Show Plugin Infos</source>
         <translation>Zeigt Plugininformationen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2758"/>
+        <location filename="../UI/UserInterface.py" line="2768"/>
         <source>&lt;b&gt;Plugin Infos...&lt;/b&gt;&lt;p&gt;This opens a dialog, that show some information about loaded plugins.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Plugininformationen...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog, der einige Informationen über die geladenen Plugins anzeigt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2753"/>
+        <location filename="../UI/UserInterface.py" line="2763"/>
         <source>&amp;Plugin Infos...</source>
         <translation>&amp;Plugininformationen...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4191"/>
+        <location filename="../UI/UserInterface.py" line="4201"/>
         <source>&amp;Plugin Tools</source>
         <translation>&amp;Pluginwerkzeuge</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2784"/>
+        <location filename="../UI/UserInterface.py" line="2794"/>
         <source>Uninstall Plugin</source>
         <translation>Plugin deinstallieren</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2779"/>
+        <location filename="../UI/UserInterface.py" line="2789"/>
         <source>&amp;Uninstall Plugin...</source>
         <translation>Plugin &amp;deinstallieren...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2785"/>
+        <location filename="../UI/UserInterface.py" line="2795"/>
         <source>&lt;b&gt;Uninstall Plugin...&lt;/b&gt;&lt;p&gt;This opens a dialog to uninstall a plugin.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Plugin deinstallieren...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Deinstallation eines Plugins.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4340"/>
+        <location filename="../UI/UserInterface.py" line="4350"/>
         <source>&amp;Show all</source>
         <translation>Alle an&amp;zeigen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4342"/>
+        <location filename="../UI/UserInterface.py" line="4352"/>
         <source>&amp;Hide all</source>
         <translation>Alle &amp;ausblenden</translation>
     </message>
@@ -75710,97 +75709,97 @@
         <translation>Aktiviere Plugins...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3108"/>
+        <location filename="../UI/UserInterface.py" line="3118"/>
         <source>Wi&amp;zards</source>
         <translation>&amp;Assistenten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2184"/>
+        <location filename="../UI/UserInterface.py" line="2194"/>
         <source>Show downloadable versions</source>
         <translation>Zeige verfügbare Versionen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2184"/>
+        <location filename="../UI/UserInterface.py" line="2194"/>
         <source>Show &amp;downloadable versions...</source>
         <translation>&amp;Zeige verfügbare Versionen...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2188"/>
+        <location filename="../UI/UserInterface.py" line="2198"/>
         <source>Show the versions available for download</source>
         <translation>Zeige die verfügbaren eric-Versionen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7264"/>
+        <location filename="../UI/UserInterface.py" line="7285"/>
         <source>&lt;h3&gt;Available versions&lt;/h3&gt;&lt;table&gt;</source>
         <translation>&lt;h3&gt;Verfügbare Versionen&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2792"/>
+        <location filename="../UI/UserInterface.py" line="2802"/>
         <source>Plugin Repository</source>
         <translation>Plugin-Repository</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2792"/>
+        <location filename="../UI/UserInterface.py" line="2802"/>
         <source>Plugin &amp;Repository...</source>
         <translation>Plugin-&amp;Repository...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2797"/>
+        <location filename="../UI/UserInterface.py" line="2807"/>
         <source>Show Plugins available for download</source>
         <translation>Zeige  zum Download verfügbare Plugins an</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2799"/>
+        <location filename="../UI/UserInterface.py" line="2809"/>
         <source>&lt;b&gt;Plugin Repository...&lt;/b&gt;&lt;p&gt;This opens a dialog, that shows a list of plugins available on the Internet.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Plugin-Repository...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog, der eine Liste der im Internet verfügbaren Plugins anzeigt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2771"/>
+        <location filename="../UI/UserInterface.py" line="2781"/>
         <source>Install Plugins</source>
         <translation>Plugins installieren</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2766"/>
+        <location filename="../UI/UserInterface.py" line="2776"/>
         <source>&amp;Install Plugins...</source>
         <translation>Plugins &amp;installieren...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2772"/>
+        <location filename="../UI/UserInterface.py" line="2782"/>
         <source>&lt;b&gt;Install Plugins...&lt;/b&gt;&lt;p&gt;This opens a dialog to install or update plugins.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Plugins installieren...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Installation oder Update von Plugins.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2451"/>
+        <location filename="../UI/UserInterface.py" line="2461"/>
         <source>Mini Editor</source>
         <translation>Mini-Editor</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2446"/>
+        <location filename="../UI/UserInterface.py" line="2456"/>
         <source>Mini &amp;Editor...</source>
         <translation>Mini-&amp;Editor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2452"/>
+        <location filename="../UI/UserInterface.py" line="2462"/>
         <source>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Open a dialog with a simplified editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mini-Editor&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog mit einem vereinfachten Editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2607"/>
+        <location filename="../UI/UserInterface.py" line="2617"/>
         <source>Toolbars</source>
         <translation>Werkzeugleisten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2607"/>
+        <location filename="../UI/UserInterface.py" line="2617"/>
         <source>Tool&amp;bars...</source>
         <translation>Werkzeug&amp;leisten...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2612"/>
+        <location filename="../UI/UserInterface.py" line="2622"/>
         <source>Configure toolbars</source>
         <translation>Werkzeugleisten einrichten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2613"/>
+        <location filename="../UI/UserInterface.py" line="2623"/>
         <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Werkzeugleisten&lt;/b&gt;&lt;p&gt;Werkzeugleisten konfigurieren. Mit diesem Dialog können die auf den Werkzeugleisten gezeigten Aktionen geändert  und neue Werkzeugleisten definiert werden.&lt;/p&gt;</translation>
     </message>
@@ -75810,347 +75809,347 @@
         <translation>Lade Toolbarmanager...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3636"/>
+        <location filename="../UI/UserInterface.py" line="3646"/>
         <source>External Tools/{0}</source>
         <translation>Externe Werkzeuge/{0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5488"/>
+        <location filename="../UI/UserInterface.py" line="5505"/>
         <source>External Tools</source>
         <translation>Externe Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5479"/>
+        <location filename="../UI/UserInterface.py" line="5496"/>
         <source>No tool entry found for external tool &apos;{0}&apos; in tool group &apos;{1}&apos;.</source>
         <translation>Kein Eintrag für das externe Werkzeug „{0}“ in der Gruppe „{1}“ gefunden.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5488"/>
+        <location filename="../UI/UserInterface.py" line="5505"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation>Kein Werkzeuggruppeneintrag „{0}“ gefunden.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
+        <location filename="../UI/UserInterface.py" line="1771"/>
         <source>Multiproject-Viewer</source>
         <translation>Mehrfachprojektanzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
+        <location filename="../UI/UserInterface.py" line="1771"/>
         <source>&amp;Multiproject-Viewer</source>
         <translation>&amp;Mehrfachprojektanzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1669"/>
+        <location filename="../UI/UserInterface.py" line="1679"/>
         <source>Save session</source>
         <translation>Sitzung speichern</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6556"/>
+        <location filename="../UI/UserInterface.py" line="6576"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Sitzungsdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht geschrieben werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6611"/>
+        <location filename="../UI/UserInterface.py" line="6631"/>
         <source>Read session</source>
         <translation>Sitzung lesen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6611"/>
+        <location filename="../UI/UserInterface.py" line="6631"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Sitzungsdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3537"/>
+        <location filename="../UI/UserInterface.py" line="3547"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt die Zeichenkodierung des aktuellen Editors an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3551"/>
+        <location filename="../UI/UserInterface.py" line="3561"/>
         <source>&lt;p&gt;This part of the status bar displays an indication of the current editors files writability.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt an, ob die aktuelle Datei geschrieben werden kann.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
+        <location filename="../UI/UserInterface.py" line="2247"/>
         <source>Request Feature</source>
         <translation>Neue Funktion anfragen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
+        <location filename="../UI/UserInterface.py" line="2247"/>
         <source>Request &amp;Feature...</source>
         <translation>Neue &amp;Funktion anfragen...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2241"/>
+        <location filename="../UI/UserInterface.py" line="2251"/>
         <source>Send a feature request</source>
         <translation>Sende eine Anfrage für eine neue Funktion</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2243"/>
+        <location filename="../UI/UserInterface.py" line="2253"/>
         <source>&lt;b&gt;Request Feature...&lt;/b&gt;&lt;p&gt;Opens a dialog to send a feature request.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neue Funktion anfragen...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog, um eine Anfrage für eine neue Funktion zu senden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3530"/>
+        <location filename="../UI/UserInterface.py" line="3540"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt die Sprache des aktuellen Editors an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3558"/>
+        <location filename="../UI/UserInterface.py" line="3568"/>
         <source>&lt;p&gt;This part of the status bar displays the line number of the current editor.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt die Zeilennummer des aktuellen Editors an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3565"/>
+        <location filename="../UI/UserInterface.py" line="3575"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position of the current editor.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt die Cursorposition des aktuellen Editors an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1911"/>
+        <location filename="../UI/UserInterface.py" line="1921"/>
         <source>Horizontal Toolbox</source>
         <translation>Horizontale Werkzeugbox</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1911"/>
+        <location filename="../UI/UserInterface.py" line="1921"/>
         <source>&amp;Horizontal Toolbox</source>
         <translation>&amp;Horizontale Werkzeugbox</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1915"/>
-        <source>Toggle the Horizontal Toolbox window</source>
-        <translation>Schalte das Fenster der Horizontalen Werkzeugbox um</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1917"/>
-        <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Schalte das Fenster der Horizontalen Werkzeugbox um&lt;/b&gt;&lt;p&gt;Falls das Fenster der Horizontalen Werkzeugbox nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4138"/>
-        <source>Restart application</source>
-        <translation>Anwendung neu starten</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4138"/>
-        <source>The application needs to be restarted. Do it now?</source>
-        <translation>Die Anwendung muss neu gestartet werden. Jetzt durchführen?</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
-        <source>Alt+Shift+A</source>
-        <translation>Alt+Shift+A</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3144"/>
-        <source>Configure...</source>
-        <translation>Einstellungen...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3544"/>
-        <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt die Zeilenendekodierung des aktuellen Editors an.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2744"/>
-        <source>Switch between tabs</source>
-        <translation>Zwischen Tabs umschalten</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2744"/>
-        <source>Ctrl+1</source>
-        <translation>Ctrl+1</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2533"/>
-        <source>Export Preferences</source>
-        <translation>Einstellungen exportieren</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2533"/>
-        <source>E&amp;xport Preferences...</source>
-        <translation>Einstellungen e&amp;xportieren...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2538"/>
-        <source>Export the current configuration</source>
-        <translation>Exportiert die aktuelle Konfiguration</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2540"/>
-        <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Einstellungen exportieren&lt;/b&gt;&lt;p&gt;Exportiert die aktuelle Konfiguration in eine Datei.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2547"/>
-        <source>Import Preferences</source>
-        <translation>Einstellungen importieren</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2547"/>
-        <source>I&amp;mport Preferences...</source>
-        <translation>Einstellungen i&amp;mportieren...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2552"/>
-        <source>Import a previously exported configuration</source>
-        <translation>Importiert eine zuvor exportierte Konfiguration</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2554"/>
-        <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Einstellungen importieren&lt;/b&gt;&lt;p&gt;Importiert eine zuvor exportierte Konfiguration.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2726"/>
-        <source>Show next</source>
-        <translation>Zeige nächste</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2735"/>
-        <source>Show previous</source>
-        <translation>Zeige vorherige</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1925"/>
+        <source>Toggle the Horizontal Toolbox window</source>
+        <translation>Schalte das Fenster der Horizontalen Werkzeugbox um</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1927"/>
+        <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Schalte das Fenster der Horizontalen Werkzeugbox um&lt;/b&gt;&lt;p&gt;Falls das Fenster der Horizontalen Werkzeugbox nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4148"/>
+        <source>Restart application</source>
+        <translation>Anwendung neu starten</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4148"/>
+        <source>The application needs to be restarted. Do it now?</source>
+        <translation>Die Anwendung muss neu gestartet werden. Jetzt durchführen?</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1878"/>
+        <source>Alt+Shift+A</source>
+        <translation>Alt+Shift+A</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3154"/>
+        <source>Configure...</source>
+        <translation>Einstellungen...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3554"/>
+        <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Dieser Teil der Statusleiste zeigt die Zeilenendekodierung des aktuellen Editors an.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2754"/>
+        <source>Switch between tabs</source>
+        <translation>Zwischen Tabs umschalten</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2754"/>
+        <source>Ctrl+1</source>
+        <translation>Ctrl+1</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2543"/>
+        <source>Export Preferences</source>
+        <translation>Einstellungen exportieren</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2543"/>
+        <source>E&amp;xport Preferences...</source>
+        <translation>Einstellungen e&amp;xportieren...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2548"/>
+        <source>Export the current configuration</source>
+        <translation>Exportiert die aktuelle Konfiguration</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2550"/>
+        <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Einstellungen exportieren&lt;/b&gt;&lt;p&gt;Exportiert die aktuelle Konfiguration in eine Datei.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2557"/>
+        <source>Import Preferences</source>
+        <translation>Einstellungen importieren</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2557"/>
+        <source>I&amp;mport Preferences...</source>
+        <translation>Einstellungen i&amp;mportieren...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2562"/>
+        <source>Import a previously exported configuration</source>
+        <translation>Importiert eine zuvor exportierte Konfiguration</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2564"/>
+        <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Einstellungen importieren&lt;/b&gt;&lt;p&gt;Importiert eine zuvor exportierte Konfiguration.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2736"/>
+        <source>Show next</source>
+        <translation>Zeige nächste</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2745"/>
+        <source>Show previous</source>
+        <translation>Zeige vorherige</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <source>Left Sidebar</source>
         <translation>Linke Seitenleiste</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1925"/>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <source>&amp;Left Sidebar</source>
         <translation>&amp;Linke Seitenleiste</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1929"/>
+        <location filename="../UI/UserInterface.py" line="1939"/>
         <source>Toggle the left sidebar window</source>
         <translation>Schalte das Fenster der linken Seitenleiste um</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1930"/>
+        <location filename="../UI/UserInterface.py" line="1940"/>
         <source>&lt;b&gt;Toggle the left sidebar window&lt;/b&gt;&lt;p&gt;If the left sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Schalte das Fenster der linken Seitenleiste um&lt;/b&gt;&lt;p&gt;Falls das Fenster der linken Seitenleiste nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1952"/>
+        <location filename="../UI/UserInterface.py" line="1962"/>
         <source>Bottom Sidebar</source>
         <translation>Untere Seitenleiste</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1952"/>
+        <location filename="../UI/UserInterface.py" line="1962"/>
         <source>&amp;Bottom Sidebar</source>
         <translation>&amp;Untere Seitenleiste</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1956"/>
+        <location filename="../UI/UserInterface.py" line="1966"/>
         <source>Toggle the bottom sidebar window</source>
         <translation>Schalte das Fenster der unteren Seitenleiste um</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1958"/>
+        <location filename="../UI/UserInterface.py" line="1968"/>
         <source>&lt;b&gt;Toggle the bottom sidebar window&lt;/b&gt;&lt;p&gt;If the bottom sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Schalte das Fenster der unteren Seitenleiste um&lt;/b&gt;&lt;p&gt;Falls das Fenster der unteren Seitenleiste nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
+        <location filename="../UI/UserInterface.py" line="1789"/>
         <source>&amp;Debug-Viewer</source>
         <translation>&amp;Debuganzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2433"/>
+        <location filename="../UI/UserInterface.py" line="2443"/>
         <source>SQL Browser</source>
         <translation>SQL-Browser</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2433"/>
+        <location filename="../UI/UserInterface.py" line="2443"/>
         <source>SQL &amp;Browser...</source>
         <translation>SQL-&amp;Browser...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2438"/>
+        <location filename="../UI/UserInterface.py" line="2448"/>
         <source>Browse a SQL database</source>
         <translation>Erforsche eine SQL-Datenbank</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2439"/>
+        <location filename="../UI/UserInterface.py" line="2449"/>
         <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
         <translation>&lt;b&gt;SQL-Browser&lt;/b&gt;&lt;p&gt;Erforsche eine SQL-Datenbank.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5384"/>
+        <location filename="../UI/UserInterface.py" line="5401"/>
         <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der SQL-Browser konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass er als &lt;b&gt;{0}&lt;/b&gt; verfügbar ist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2488"/>
+        <location filename="../UI/UserInterface.py" line="2498"/>
         <source>Icon Editor</source>
         <translation>Icon-Editor</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2488"/>
+        <location filename="../UI/UserInterface.py" line="2498"/>
         <source>&amp;Icon Editor...</source>
         <translation>&amp;Icon-Editor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1118"/>
+        <location filename="../UI/UserInterface.py" line="1123"/>
         <source>Cooperation</source>
         <translation>Zusammenarbeit</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Alt+Shift+O</source>
         <translation>Alt+Shift+O</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1174"/>
+        <location filename="../UI/UserInterface.py" line="1179"/>
         <source>Symbols</source>
         <translation>Symbole</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2004"/>
+        <location filename="../UI/UserInterface.py" line="2014"/>
         <source>Alt+Shift+Y</source>
         <translation>Alt+Shift+Y</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1183"/>
+        <location filename="../UI/UserInterface.py" line="1188"/>
         <source>Numbers</source>
         <translation>Zahlen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
+        <location filename="../UI/UserInterface.py" line="2033"/>
         <source>Alt+Shift+B</source>
         <translation>Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2927"/>
+        <location filename="../UI/UserInterface.py" line="2937"/>
         <source>Python 3 Documentation</source>
         <translation>Python 3-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2931"/>
+        <location filename="../UI/UserInterface.py" line="2941"/>
         <source>Open Python 3 Documentation</source>
         <translation>Öffne die Python 3-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7129"/>
+        <location filename="../UI/UserInterface.py" line="7150"/>
         <source>Error getting versions information</source>
         <translation>Fehler beim Herunterladen der Versionsinformationen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7122"/>
+        <location filename="../UI/UserInterface.py" line="7143"/>
         <source>The versions information could not be downloaded. Please go online and try again.</source>
         <translation>Die Versionsinformationen konnten nicht heruntergeladen werden. Bitte gehen Sie online und versuchen Sie es erneut.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6086"/>
+        <location filename="../UI/UserInterface.py" line="6103"/>
         <source>Open Browser</source>
         <translation>Browser starten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6086"/>
+        <location filename="../UI/UserInterface.py" line="6103"/>
         <source>Could not start a web browser</source>
         <translation>Der System Web Browser konnte nicht gestartet werden</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7129"/>
+        <location filename="../UI/UserInterface.py" line="7150"/>
         <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source>
         <translation>Die Versionsinformationen konnten seit 7 Tagen nicht heruntergeladen werden. Bitte gehen Sie online und versuchen Sie es erneut.</translation>
     </message>
@@ -76175,448 +76174,448 @@
         <translation>Starte Debugger...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
+        <location filename="../UI/UserInterface.py" line="1701"/>
         <source>New Window</source>
         <translation>Neues Fenster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
+        <location filename="../UI/UserInterface.py" line="1701"/>
         <source>New &amp;Window</source>
         <translation>Neues &amp;Fenster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
+        <location filename="../UI/UserInterface.py" line="1701"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation>Ctrl+Shift+N</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2280"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <source>Unittest Rerun Failed</source>
         <translation>Fehlerhafte Modultests wiederholen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2280"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <source>Rerun Failed Tests...</source>
         <translation>Fehlerhafte Tests wiederholen...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2285"/>
+        <location filename="../UI/UserInterface.py" line="2295"/>
         <source>Rerun failed tests of the last run</source>
         <translation>Fehlerhafte Tests des letzten Laufes wiederholen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2287"/>
+        <location filename="../UI/UserInterface.py" line="2297"/>
         <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last unittest run.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Fehlerhafte Tests wiederholen&lt;/b&gt;&lt;p&gt;Alle Tests wiederholen, die während des letzten Modultestlaufes fehlgeschlagen sind.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2419"/>
+        <location filename="../UI/UserInterface.py" line="2429"/>
         <source>Compare &amp;Files side by side...</source>
         <translation>Dateien &amp;Seite an Seite vergleichen...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2502"/>
+        <location filename="../UI/UserInterface.py" line="2512"/>
         <source>Snapshot</source>
         <translation>Bildschirmfoto</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2502"/>
+        <location filename="../UI/UserInterface.py" line="2512"/>
         <source>&amp;Snapshot...</source>
         <translation>&amp;Bildschirmfoto...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2507"/>
+        <location filename="../UI/UserInterface.py" line="2517"/>
         <source>Take snapshots of a screen region</source>
         <translation>Bildschirmfoto aufnehmen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2509"/>
+        <location filename="../UI/UserInterface.py" line="2519"/>
         <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Bildschirmfoto&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog, um ein Bildschirmfoto aufzunehmen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5456"/>
+        <location filename="../UI/UserInterface.py" line="5473"/>
         <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Bildschirmfotoanwendung konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass sie als &lt;b&gt;{0}&lt;/b&gt; verfügbar ist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7335"/>
+        <location filename="../UI/UserInterface.py" line="7356"/>
         <source>Select Workspace Directory</source>
         <translation>Wähle Arbeitsverzeichnis</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1886"/>
+        <location filename="../UI/UserInterface.py" line="1896"/>
         <source>Left Toolbox</source>
         <translation>Linke Werkzeugbox</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1898"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <source>Right Toolbox</source>
         <translation>Rechte Werkzeugbox</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
+        <location filename="../UI/UserInterface.py" line="1760"/>
         <source>Switch the input focus to the Project-Viewer window.</source>
         <translation>Schalte den Eingabefokus auf das Projektanzeigerfenster um.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1752"/>
+        <location filename="../UI/UserInterface.py" line="1762"/>
         <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Projektanzeiger aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Projektanzeigerfenster um.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1767"/>
+        <location filename="../UI/UserInterface.py" line="1777"/>
         <source>Switch the input focus to the Multiproject-Viewer window.</source>
         <translation>Schalte den Eingabefokus auf das Mehrfachprojektanzeigerfenster um.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1769"/>
+        <location filename="../UI/UserInterface.py" line="1779"/>
         <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mehrfachprojektanzeiger aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Mehrfachprojektanzeigerfenster um.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
+        <location filename="../UI/UserInterface.py" line="1795"/>
         <source>Switch the input focus to the Debug-Viewer window.</source>
         <translation>Schalte den Eingabefokus auf das Debuganzeigefenster um.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1787"/>
+        <location filename="../UI/UserInterface.py" line="1797"/>
         <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Debuganzeige aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Debuganzeigefenster um.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1803"/>
+        <location filename="../UI/UserInterface.py" line="1813"/>
         <source>Switch the input focus to the Shell window.</source>
         <translation>Schalte den Eingabefokus auf das Shell-Fenster um.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1805"/>
+        <location filename="../UI/UserInterface.py" line="1815"/>
         <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Shell aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Shell-Fenster um.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
+        <location filename="../UI/UserInterface.py" line="1824"/>
         <source>&amp;File-Browser</source>
         <translation>Datei&amp;browser</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
+        <location filename="../UI/UserInterface.py" line="1830"/>
         <source>Switch the input focus to the File-Browser window.</source>
         <translation>Schalte den Eingabefokus auf das Dateibrowserfenster um.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1822"/>
+        <location filename="../UI/UserInterface.py" line="1832"/>
         <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Dateibrowser aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Dateibrowserfenster um.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
         <source>Lo&amp;g-Viewer</source>
         <translation>&amp;Ausgabefenster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1837"/>
+        <location filename="../UI/UserInterface.py" line="1847"/>
         <source>Switch the input focus to the Log-Viewer window.</source>
         <translation>Schalte den Eingabefokus auf das Ausgabefenster um.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
-        <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Ausgabefenster aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Ausgabefenster um.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1849"/>
+        <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Ausgabefenster aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Ausgabefenster um.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1859"/>
         <source>&amp;Task-Viewer</source>
         <translation>&amp;Aufgabenanzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1855"/>
+        <location filename="../UI/UserInterface.py" line="1865"/>
         <source>Switch the input focus to the Task-Viewer window.</source>
         <translation>Schalte den Eingabefokus auf das Aufgabenanzeigefenster um.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
+        <location filename="../UI/UserInterface.py" line="1878"/>
         <source>Templ&amp;ate-Viewer</source>
         <translation>&amp;Vorlagen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1874"/>
+        <location filename="../UI/UserInterface.py" line="1884"/>
         <source>Switch the input focus to the Template-Viewer window.</source>
         <translation>Schalte den Eingabefokus auf das Vorlagenfenster um.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1876"/>
-        <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Vorlagen aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Vorlagenfenster um.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1886"/>
+        <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Vorlagen aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Vorlagenfenster um.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1896"/>
         <source>&amp;Left Toolbox</source>
         <translation>&amp;Linke Werkzeugbox</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1889"/>
+        <location filename="../UI/UserInterface.py" line="1899"/>
         <source>Toggle the Left Toolbox window</source>
         <translation>Schalte das Fenster der linken Werkzeugbox um</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1890"/>
+        <location filename="../UI/UserInterface.py" line="1900"/>
         <source>&lt;b&gt;Toggle the Left Toolbox window&lt;/b&gt;&lt;p&gt;If the Left Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Schalte das Fenster der linken Werkzeugbox um&lt;/b&gt;&lt;p&gt;Falls das Fenster der linken Werkzeugbox nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1898"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <source>&amp;Right Toolbox</source>
         <translation>&amp;Rechte Werkzeugbox</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1902"/>
+        <location filename="../UI/UserInterface.py" line="1912"/>
         <source>Toggle the Right Toolbox window</source>
         <translation>Schalte das Fenster der rechten Werkzeugbox um</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1903"/>
+        <location filename="../UI/UserInterface.py" line="1913"/>
         <source>&lt;b&gt;Toggle the Right Toolbox window&lt;/b&gt;&lt;p&gt;If the Right Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Schalte das Fenster der rechten Werkzeugbox um&lt;/b&gt;&lt;p&gt;Falls das Fenster der rechten Werkzeugbox nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1948"/>
         <source>Right Sidebar</source>
         <translation>Rechte Seitenleiste</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1948"/>
         <source>&amp;Right Sidebar</source>
         <translation>&amp;Rechte Seitenleiste</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1942"/>
+        <location filename="../UI/UserInterface.py" line="1952"/>
         <source>Toggle the right sidebar window</source>
         <translation>Schalte das Fenster der rechten Seitenleiste um</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1944"/>
+        <location filename="../UI/UserInterface.py" line="1954"/>
         <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Schalte das Fenster der rechten Seitenleiste um&lt;/b&gt;&lt;p&gt;Falls das Fenster der rechten Seitenleiste nicht sichtbar ist, wird es dargestellt. Ist es sichtbar, so wird es versteckt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Cooperation-Viewer</source>
         <translation>Zusammenarbeit</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Co&amp;operation-Viewer</source>
         <translation>&amp;Zusammenarbeit</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1973"/>
+        <location filename="../UI/UserInterface.py" line="1983"/>
         <source>Switch the input focus to the Cooperation-Viewer window.</source>
         <translation>Schalte den Eingabefokus auf das Fenster zur Zusammenarbeit um.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="1985"/>
         <source>&lt;b&gt;Activate Cooperation-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Cooperation-Viewer window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zusammenarbeitsfenster aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Fenster zur Zusammenarbeit um.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2004"/>
+        <location filename="../UI/UserInterface.py" line="2014"/>
         <source>Symbols-Viewer</source>
         <translation>Symbolanzeiger</translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="2014"/>
+        <source>S&amp;ymbols-Viewer</source>
+        <translation>S&amp;ymbolanzeiger</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2020"/>
+        <source>Switch the input focus to the Symbols-Viewer window.</source>
+        <translation>Schalte den Eingabefokus auf das Symbolanzeigerfenster um.</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2022"/>
+        <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Symbolanzeiger aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Symbolanzeigerfenster um.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2033"/>
+        <source>Numbers-Viewer</source>
+        <translation>Zahlenanzeiger</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2033"/>
+        <source>Num&amp;bers-Viewer</source>
+        <translation>Za&amp;hlenanzeiger</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2039"/>
+        <source>Switch the input focus to the Numbers-Viewer window.</source>
+        <translation>Schalte den Eingabefokus auf das Zahlenanzeigerfenster um.</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2041"/>
+        <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Zahlenanzeiger aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Zahlenanzeigerfenster um.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3231"/>
+        <source>&amp;Windows</source>
+        <translation>&amp;Fenster</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1867"/>
+        <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Aufgabenanzeige aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Aufgabenanzeigefenster um.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1996"/>
+        <source>IRC</source>
+        <translation>IRC</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1996"/>
+        <source>&amp;IRC</source>
+        <translation>&amp;IRC</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2002"/>
+        <source>Switch the input focus to the IRC window.</source>
+        <translation>Schalte den Eingabefokus auf das IRC-Fenster um.</translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="2004"/>
-        <source>S&amp;ymbols-Viewer</source>
-        <translation>S&amp;ymbolanzeiger</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2010"/>
-        <source>Switch the input focus to the Symbols-Viewer window.</source>
-        <translation>Schalte den Eingabefokus auf das Symbolanzeigerfenster um.</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2012"/>
-        <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Symbolanzeiger aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Symbolanzeigerfenster um.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
-        <source>Numbers-Viewer</source>
-        <translation>Zahlenanzeiger</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
-        <source>Num&amp;bers-Viewer</source>
-        <translation>Za&amp;hlenanzeiger</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2029"/>
-        <source>Switch the input focus to the Numbers-Viewer window.</source>
-        <translation>Schalte den Eingabefokus auf das Zahlenanzeigerfenster um.</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2031"/>
-        <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Zahlenanzeiger aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Zahlenanzeigerfenster um.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3221"/>
-        <source>&amp;Windows</source>
-        <translation>&amp;Fenster</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1857"/>
-        <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Aufgabenanzeige aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Aufgabenanzeigefenster um.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
-        <source>IRC</source>
-        <translation>IRC</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
-        <source>&amp;IRC</source>
-        <translation>&amp;IRC</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1992"/>
-        <source>Switch the input focus to the IRC window.</source>
-        <translation>Schalte den Eingabefokus auf das IRC-Fenster um.</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
         <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;IRC aktivieren&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das IRC-Fenster um.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2338"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Qt-Designer</source>
         <translation>Qt Designer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2338"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Qt-&amp;Designer...</source>
         <translation>Qt &amp;Designer...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2343"/>
+        <location filename="../UI/UserInterface.py" line="2353"/>
         <source>Start Qt-Designer</source>
         <translation>Starte Qt Designer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2344"/>
+        <location filename="../UI/UserInterface.py" line="2354"/>
         <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Qt Designer&lt;/b&gt;&lt;p&gt;Starte Qt Designer.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2364"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Qt-Linguist</source>
         <translation>Qt Linguist</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2364"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Qt-&amp;Linguist...</source>
         <translation>Qt &amp;Linguist...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2369"/>
+        <location filename="../UI/UserInterface.py" line="2379"/>
         <source>Start Qt-Linguist</source>
         <translation>Starte Qt Linguist</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2370"/>
+        <location filename="../UI/UserInterface.py" line="2380"/>
         <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Qt Linguist&lt;/b&gt;&lt;p&gt;Starte Qt Linguist (Übersetzungsprogramm).&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2858"/>
+        <location filename="../UI/UserInterface.py" line="2868"/>
         <source>Qt5 Documentation</source>
         <translation>Qt5 Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2862"/>
+        <location filename="../UI/UserInterface.py" line="2872"/>
         <source>Open Qt5 Documentation</source>
         <translation>Öffne die Qt5 Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2666"/>
+        <location filename="../UI/UserInterface.py" line="2676"/>
         <source>Manage SSL Certificates</source>
         <translation>SSL-Zertifikate verwalten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2666"/>
+        <location filename="../UI/UserInterface.py" line="2676"/>
         <source>Manage SSL Certificates...</source>
         <translation>SSL-Zertifikate verwalten...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2671"/>
+        <location filename="../UI/UserInterface.py" line="2681"/>
         <source>Manage the saved SSL certificates</source>
         <translation>Verwalten der gespeicherten SSL-Zertifikate</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2673"/>
+        <location filename="../UI/UserInterface.py" line="2683"/>
         <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
         <translation>&lt;b&gt;SSL-Zertifikate verwalten...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zur Verwaltung gespeicherter SSL-Zertifikate.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2682"/>
+        <location filename="../UI/UserInterface.py" line="2692"/>
         <source>Edit Message Filters</source>
         <translation>Meldungsfilter bearbeiten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2682"/>
+        <location filename="../UI/UserInterface.py" line="2692"/>
         <source>Edit Message Filters...</source>
         <translation>Meldungsfilter bearbeiten...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2687"/>
+        <location filename="../UI/UserInterface.py" line="2697"/>
         <source>Edit the message filters used to suppress unwanted messages</source>
         <translation>Bearbeite die Meldungsfilter, die zur Unterdrückung ungewünschter Meldungen verwendet werden</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2689"/>
+        <location filename="../UI/UserInterface.py" line="2699"/>
         <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Meldungsfilter bearbeiten&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Bearbeitung der Meldungsfilter, die zur Unterdrückung ungewünschter Meldungen verwendet werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2888"/>
+        <location filename="../UI/UserInterface.py" line="2898"/>
         <source>PyQt5 Documentation</source>
         <translation>PyQt5-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2892"/>
+        <location filename="../UI/UserInterface.py" line="2902"/>
         <source>Open PyQt5 Documentation</source>
         <translation>Öffne die PyQt5-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2933"/>
+        <location filename="../UI/UserInterface.py" line="2943"/>
         <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Python 3-Dokumentation&lt;/b&gt;&lt;p&gt;Zeigt die Python 3-Dokumentation an. Ist kein Dokumentationsverzeichnis konfiguriert, so ist der Ort, an dem die Python 3-Dokumentation gesucht wird, unter Windows das Verzeichnis &lt;i&gt;doc&lt;/i&gt; unter dem Verzeichnis, in dem der Python 3-Interpreter installiert ist, und unter Unix das Verzeichnis &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt;. Um dies zu überschreiben, können Sie die Umgebungsvariable PYTHON3DOCDIR setzen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7062"/>
+        <location filename="../UI/UserInterface.py" line="7082"/>
         <source>%v/%m</source>
         <translation>%v/%m</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2203"/>
+        <location filename="../UI/UserInterface.py" line="2213"/>
         <source>Show Error Log</source>
         <translation>Zeige Fehlerbericht</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2199"/>
+        <location filename="../UI/UserInterface.py" line="2209"/>
         <source>Show Error &amp;Log...</source>
         <translation>Zeige Fehler&amp;bericht...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2204"/>
+        <location filename="../UI/UserInterface.py" line="2214"/>
         <source>&lt;b&gt;Show Error Log...&lt;/b&gt;&lt;p&gt;Opens a dialog showing the most recent error log.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zeige Fehlerbericht...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Anzeige des aktuellsten Fehlerberichtes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7066"/>
+        <location filename="../UI/UserInterface.py" line="7086"/>
         <source>Version Check</source>
         <translation>Versionsprüfung</translation>
     </message>
@@ -76626,67 +76625,67 @@
         <translation>Erzeuge Werkzeugleisten der Plug-ins...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4194"/>
+        <location filename="../UI/UserInterface.py" line="4204"/>
         <source>&amp;User Tools</source>
         <translation>&amp;Benutzerwerkzeuge</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4266"/>
+        <location filename="../UI/UserInterface.py" line="4276"/>
         <source>No User Tools Configured</source>
         <translation>Keine Benutzerwerkzeuge konfiguriert</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2459"/>
+        <location filename="../UI/UserInterface.py" line="2469"/>
         <source>Hex Editor</source>
         <translation>Hex-Editor</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2459"/>
+        <location filename="../UI/UserInterface.py" line="2469"/>
         <source>&amp;Hex Editor...</source>
         <translation>&amp;Hex Editor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2705"/>
+        <location filename="../UI/UserInterface.py" line="2715"/>
         <source>Clear private data</source>
         <translation>Private Daten löschen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2707"/>
+        <location filename="../UI/UserInterface.py" line="2717"/>
         <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Private Daten löschen&lt;/b&gt;&lt;p&gt;Löscht private Daten wie die Listen der zuletzt geöffneten Dateien, Projekte oder Mehrfachprojekte.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1665"/>
+        <location filename="../UI/UserInterface.py" line="1675"/>
         <source>Save session...</source>
         <translation>Sitzung speichern...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1670"/>
+        <location filename="../UI/UserInterface.py" line="1680"/>
         <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sitzung speichern...&lt;/b&gt;&lt;p&gt;Dies speichert die aktuelle Sitzung in eine Datei. Es wird ein Dialog zur Eingabe des Dateinamens geöffnet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6650"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <source>Load session</source>
         <translation>Sitzung laden</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1678"/>
+        <location filename="../UI/UserInterface.py" line="1688"/>
         <source>Load session...</source>
         <translation>Sitzung laden...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1683"/>
+        <location filename="../UI/UserInterface.py" line="1693"/>
         <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sitzung laden...&lt;/b&gt;&lt;p&gt;Dies lädt eine zuvor gesicherte Sitzung. Es wird ein Dialog zur Eingabe des Dateinamens geöffnet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6703"/>
+        <location filename="../UI/UserInterface.py" line="6723"/>
         <source>Crash Session found!</source>
         <translation>Absturzsitzung gefunden!</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6703"/>
+        <location filename="../UI/UserInterface.py" line="6723"/>
         <source>A session file of a crashed session was found. Shall this session be restored?</source>
         <translation>Eine Sitzungsdatei einer abgestürzten Sitzung wurde gefunden. Soll diese Sitzung wiederhergestellt werden?</translation>
     </message>
@@ -76701,449 +76700,449 @@
         <translation>Initialisiere Plugins...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7209"/>
+        <location filename="../UI/UserInterface.py" line="7230"/>
         <source>Update Check</source>
         <translation>Aktualisierungsprüfung</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7209"/>
+        <location filename="../UI/UserInterface.py" line="7230"/>
         <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
         <translation>Eric wurde direkt von vom Quelltext installiert. Eine Aktualitätsprüfung ist daher nicht möglich.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2042"/>
+        <location filename="../UI/UserInterface.py" line="2052"/>
         <source>Code Documentation Viewer</source>
         <translation>Dokumentationsanzeige</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2863"/>
+        <location filename="../UI/UserInterface.py" line="2873"/>
         <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation>&lt;b&gt;Qt5-Dokumentation&lt;/b&gt;&lt;p&gt;Zeige die Qt5-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Web Browser, ein externer Web Browser oder Qt Assistant verwendet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2894"/>
+        <location filename="../UI/UserInterface.py" line="2904"/>
         <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation>&lt;b&gt;PyQt5-Dokumentation&lt;/b&gt;&lt;p&gt;Zeige die PyQt5-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Web Browser, ein externer Web Browser oder Qt Assistant verwendet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2970"/>
+        <location filename="../UI/UserInterface.py" line="2980"/>
         <source>PySide2 Documentation</source>
         <translation>PySide2-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2974"/>
+        <location filename="../UI/UserInterface.py" line="2984"/>
         <source>Open PySide2 Documentation</source>
         <translation>Öffne die PySide2-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2976"/>
+        <location filename="../UI/UserInterface.py" line="2986"/>
         <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation>&lt;b&gt;PySide2-Dokumentation&lt;/b&gt;&lt;p&gt;Zeige die PySide2-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Web Browser, ein externer Web Browser oder Qt Assistant verwendet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5866"/>
+        <location filename="../UI/UserInterface.py" line="5883"/>
         <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der PySide{0}-Dokumentations-Startpunkt ist nicht konfiguriert.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2813"/>
+        <location filename="../UI/UserInterface.py" line="2823"/>
         <source>Virtualenv Manager</source>
         <translation>Virtualenv Manager</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2807"/>
+        <location filename="../UI/UserInterface.py" line="2817"/>
         <source>&amp;Virtualenv Manager...</source>
         <translation>&amp;Virtualenv Manager...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2815"/>
+        <location filename="../UI/UserInterface.py" line="2825"/>
         <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Verwaltung der definierten virtuellen Python Umgebungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2830"/>
+        <location filename="../UI/UserInterface.py" line="2840"/>
         <source>Virtualenv Configurator</source>
         <translation>Virtualenv Konfigurator</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2824"/>
+        <location filename="../UI/UserInterface.py" line="2834"/>
         <source>Virtualenv &amp;Configurator...</source>
         <translation>Virtualenv &amp;Konfigurator...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2832"/>
+        <location filename="../UI/UserInterface.py" line="2842"/>
         <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Virtualenv Konfigurator&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Eingabe aller Parameter, die zur Erzeugung einer virtuellen Python Umgebung mittels virtualenv oder pyvenv benötigt werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3228"/>
+        <location filename="../UI/UserInterface.py" line="3238"/>
         <source>Left Side</source>
         <translation>Linke Seite</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3240"/>
+        <location filename="../UI/UserInterface.py" line="3250"/>
         <source>Bottom Side</source>
         <translation>Unterer Rand</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3247"/>
+        <location filename="../UI/UserInterface.py" line="3257"/>
         <source>Right Side</source>
         <translation>Rechte Seite</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3267"/>
+        <location filename="../UI/UserInterface.py" line="3277"/>
         <source>Plug-ins</source>
         <translation>Plugins</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
+        <location filename="../UI/UserInterface.py" line="1659"/>
         <source>Restart</source>
         <translation>Neu starten</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
+        <location filename="../UI/UserInterface.py" line="1659"/>
         <source>Ctrl+Shift+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Shift+Q</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1655"/>
+        <location filename="../UI/UserInterface.py" line="1665"/>
         <source>Restart the IDE</source>
         <translation>Neustart der Entwicklungsumgebung</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1656"/>
+        <location filename="../UI/UserInterface.py" line="1666"/>
         <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neustart der Entwicklungsumgebung&lt;/b&gt;&lt;p&gt;Dies startet die Entwicklungsumgebung neu. Ungesicherte Änderungen können zuvor gesichert werden. Ein Python-Programm, das gerade debuggt wird, wird beendet und sämtliche Einstellungen werden gespeichert.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6043"/>
+        <location filename="../UI/UserInterface.py" line="6060"/>
         <source>Start Web Browser</source>
         <translation>Web Browser starten</translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="2090"/>
+        <source>Conda</source>
+        <translation>Conda</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2072"/>
+        <source>PyPI</source>
+        <translation>PyPI</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3586"/>
+        <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Dieser Teil der Statusleiste erlaubt das Zoomen des aktuellen Editors oder der Shell.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2108"/>
+        <source>MicroPython</source>
+        <translation>MicroPython</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1996"/>
+        <source>Ctrl+Alt+Shift+I</source>
+        <translation>Ctrl+Alt+Shift+I</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2052"/>
+        <source>Ctrl+Alt+Shift+D</source>
+        <translation>Ctrl+Alt+Shift+D</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2058"/>
+        <source>Switch the input focus to the Code Documentation Viewer window.</source>
+        <translation>Schalte den Eingabefokus auf die Codedokumentationsanzeige um.</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2061"/>
+        <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Codedokumentationsanzeige&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf die Codedokumentationsanzeige um.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2072"/>
+        <source>Ctrl+Alt+Shift+P</source>
+        <translation>Ctrl+Alt+Shift+P</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2078"/>
+        <source>Switch the input focus to the PyPI window.</source>
+        <translation>Schalte den Eingabefokus auf das PyPI-Fenster um.</translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="2080"/>
-        <source>Conda</source>
-        <translation>Conda</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2062"/>
-        <source>PyPI</source>
-        <translation>PyPI</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3576"/>
-        <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Dieser Teil der Statusleiste erlaubt das Zoomen des aktuellen Editors oder der Shell.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2098"/>
-        <source>MicroPython</source>
-        <translation>MicroPython</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
-        <source>Ctrl+Alt+Shift+I</source>
-        <translation>Ctrl+Alt+Shift+I</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2042"/>
-        <source>Ctrl+Alt+Shift+D</source>
-        <translation>Ctrl+Alt+Shift+D</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2048"/>
-        <source>Switch the input focus to the Code Documentation Viewer window.</source>
-        <translation>Schalte den Eingabefokus auf die Codedokumentationsanzeige um.</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2051"/>
-        <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Codedokumentationsanzeige&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf die Codedokumentationsanzeige um.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2062"/>
-        <source>Ctrl+Alt+Shift+P</source>
-        <translation>Ctrl+Alt+Shift+P</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2068"/>
-        <source>Switch the input focus to the PyPI window.</source>
-        <translation>Schalte den Eingabefokus auf das PyPI-Fenster um.</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2070"/>
         <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das PyPI-Fenster um.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2080"/>
+        <location filename="../UI/UserInterface.py" line="2090"/>
         <source>Ctrl+Alt+Shift+C</source>
         <translation>Ctrl+Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2086"/>
+        <location filename="../UI/UserInterface.py" line="2096"/>
         <source>Switch the input focus to the Conda window.</source>
         <translation>Schalte den Eingabefokus auf das Conda-Fenster um.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2088"/>
-        <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Conda-Fenster um.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2098"/>
+        <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das Conda-Fenster um.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2108"/>
         <source>Ctrl+Alt+Shift+M</source>
         <translation>Ctrl+Alt+Shift+M</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2104"/>
+        <location filename="../UI/UserInterface.py" line="2114"/>
         <source>Switch the input focus to the MicroPython window.</source>
         <translation>Schalte den Eingabefokus auf das MicroPython-Fenster um.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2106"/>
+        <location filename="../UI/UserInterface.py" line="2116"/>
         <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;Dies schaltet den Eingabefokus auf das MicroPython-Fenster um.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3225"/>
+        <location filename="../UI/UserInterface.py" line="3235"/>
         <source>Central Park</source>
         <translation>Mittelbereich</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3745"/>
+        <location filename="../UI/UserInterface.py" line="3755"/>
         <source>&lt;h2&gt;Version Numbers&lt;/h2&gt;&lt;table&gt;</source>
         <translation>&lt;h2&gt;Versionsnummern&lt;/h2&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5082"/>
+        <location filename="../UI/UserInterface.py" line="5099"/>
         <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Qt-Designer Programm konnte nicht gefunden werden.&lt;br&gt;Stelle sicher, dass es installiert und optional auf der Qt Konfigurationsseite konfiguriert ist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5152"/>
+        <location filename="../UI/UserInterface.py" line="5169"/>
         <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Qt-Linguist Programm konnte nicht gefunden werden.&lt;br&gt;Stelle sicher, dass es installiert und optional auf der Qt Konfigurationsseite konfiguriert ist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5196"/>
+        <location filename="../UI/UserInterface.py" line="5213"/>
         <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das Qt-Assistant Programm konnte nicht gefunden werden.&lt;br&gt;Stelle sicher, dass es installiert und optional auf der Qt Konfigurationsseite konfiguriert ist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2211"/>
+        <location filename="../UI/UserInterface.py" line="2221"/>
         <source>Show Install Info</source>
         <translation>Installationsinformation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2211"/>
+        <location filename="../UI/UserInterface.py" line="2221"/>
         <source>Show Install &amp;Info...</source>
         <translation>&amp;Installationsinformation...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2215"/>
+        <location filename="../UI/UserInterface.py" line="2225"/>
         <source>Show Installation Information</source>
         <translation>Installationsinformation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2217"/>
+        <location filename="../UI/UserInterface.py" line="2227"/>
         <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Installationsinformation&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zur Anzeige von Informationen über den Installationsprozess.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2873"/>
+        <location filename="../UI/UserInterface.py" line="2883"/>
         <source>Qt6 Documentation</source>
         <translation>Qt6 Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2877"/>
+        <location filename="../UI/UserInterface.py" line="2887"/>
         <source>Open Qt6 Documentation</source>
         <translation>Öffne die Qt6 Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2878"/>
+        <location filename="../UI/UserInterface.py" line="2888"/>
         <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation>&lt;b&gt;Qt6-Dokumentation&lt;/b&gt;&lt;p&gt;Zeige die Qt6-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Web Browser, ein externer Web Browser oder Qt Assistant verwendet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2905"/>
+        <location filename="../UI/UserInterface.py" line="2915"/>
         <source>PyQt6 Documentation</source>
         <translation>PyQt6-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2909"/>
+        <location filename="../UI/UserInterface.py" line="2919"/>
         <source>Open PyQt6 Documentation</source>
         <translation>Öffne die PyQt6-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2911"/>
+        <location filename="../UI/UserInterface.py" line="2921"/>
         <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation>&lt;b&gt;PyQt6-Dokumentation&lt;/b&gt;&lt;p&gt;Zeige die PyQt6-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Web Browser, ein externer Web Browser oder Qt Assistant verwendet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2990"/>
+        <location filename="../UI/UserInterface.py" line="3000"/>
         <source>PySide6 Documentation</source>
         <translation>PySide6-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2994"/>
+        <location filename="../UI/UserInterface.py" line="3004"/>
         <source>Open PySide6 Documentation</source>
         <translation>Öffne die PySide6-Dokumentation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2996"/>
+        <location filename="../UI/UserInterface.py" line="3006"/>
         <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation>&lt;b&gt;PySide6-Dokumentation&lt;/b&gt;&lt;p&gt;Zeige die PySide6-Dokumentation an. Abhängig von den Einstellungen wird Erics interner Hilfeanzeiger/Web Browser, ein externer Web Browser oder Qt Assistant verwendet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5761"/>
+        <location filename="../UI/UserInterface.py" line="5778"/>
         <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der PyQt{0}-Dokumentations-Startpunkt ist nicht konfiguriert.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1697"/>
+        <location filename="../UI/UserInterface.py" line="1707"/>
         <source>Open a new eric instance</source>
         <translation>Öffnet eine neue eric Instanz</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1699"/>
+        <location filename="../UI/UserInterface.py" line="1709"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neues Fenster&lt;/b&gt;&lt;p&gt;Dies öffnet eine neue Instanz der eric IDE.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2142"/>
+        <location filename="../UI/UserInterface.py" line="2152"/>
         <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is search in the Qt help collection.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Hilfe-Fenster&lt;/b&gt;&lt;p&gt;Zeige den eric Web Browser an. Dieses Fenster zeigt Hilfedateien im HTML-Format und Qt-Hilfesammlungen an. In ihm kann über Hyperlinks navigiert, Lesezeichen gesetzt und neben anderen Funktionen die dargestellte Seite ausgedruckt werden. Er kann auch zum Surfen im Internet benutzt werden.&lt;/p&gt;&lt;p&gt;Wenn es mit einem selektierten Wort aufgerufen wird, so wird dieses Wort in der Qt-Hilfesammlung gesucht.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2177"/>
+        <location filename="../UI/UserInterface.py" line="2187"/>
         <source>&lt;b&gt;Check for Updates...&lt;/b&gt;&lt;p&gt;Checks the internet for updates of eric.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Auf Aktualisierungen prüfen...&lt;/b&gt;
 &lt;p&gt;Dies prüft im Internet auf Updates von eric.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2190"/>
+        <location filename="../UI/UserInterface.py" line="2200"/>
         <source>&lt;b&gt;Show downloadable versions...&lt;/b&gt;&lt;p&gt;Shows the eric versions available for download from the internet.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zeige verfügbare Versionen...&lt;/b&gt;&lt;p&gt;Zeigt die eric Versionen, die vom Internet heruntergeladen werden können.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2464"/>
-        <source>Start the eric Hex Editor</source>
-        <translation>Starte den eric Hex-Editor</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2466"/>
-        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Hex-Editor&lt;/b&gt;&lt;p&gt;Startet den eric Hex-Editor zum Ansehen oder Bearbeiten von Binärdateien.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2474"/>
-        <source>eric Web Browser</source>
-        <translation>eric Web Browser</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2474"/>
+        <source>Start the eric Hex Editor</source>
+        <translation>Starte den eric Hex-Editor</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2476"/>
+        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Hex-Editor&lt;/b&gt;&lt;p&gt;Startet den eric Hex-Editor zum Ansehen oder Bearbeiten von Binärdateien.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2484"/>
+        <source>eric Web Browser</source>
+        <translation>eric Web Browser</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2484"/>
         <source>eric &amp;Web Browser...</source>
         <translation>eric &amp;Web Browser...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2479"/>
+        <location filename="../UI/UserInterface.py" line="2489"/>
         <source>Start the eric Web Browser</source>
         <translation>Startet den eric Web Browser</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2481"/>
+        <location filename="../UI/UserInterface.py" line="2491"/>
         <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
         <translation>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Durchforste das Internet mit dem eric Web Browser.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2493"/>
+        <location filename="../UI/UserInterface.py" line="2503"/>
         <source>Start the eric Icon Editor</source>
         <translation>Starte den eric Icon-Editor</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2495"/>
+        <location filename="../UI/UserInterface.py" line="2505"/>
         <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Icon-Editor&lt;/b&gt;&lt;p&gt;Startet den eric Icon-Editor zum Editieren einfacher Icons.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2581"/>
+        <location filename="../UI/UserInterface.py" line="2591"/>
         <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zeige externe Werkzeuge&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog, der die Pfade und Versionen der von eric genutzten externen Werkzeuge anzeigt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2955"/>
+        <location filename="../UI/UserInterface.py" line="2965"/>
         <source>&lt;b&gt;Eric API Documentation&lt;/b&gt;&lt;p&gt;Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Eric API Dokumentation&lt;/b&gt;&lt;p&gt;Zeige die Eric API Dokumentation an. Der Pfad für die Dokumentation ist das Unterverzeichnis Documentation/Source im eric Installationverzeichnis.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5979"/>
+        <location filename="../UI/UserInterface.py" line="5996"/>
         <source>The eric web browser could not be started.</source>
         <translation>Der eric Web Browser konnte nicht gestartet werden.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6043"/>
+        <location filename="../UI/UserInterface.py" line="6060"/>
         <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der eric Web Browser ist nicht gestartet.&lt;/p&gt;&lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7221"/>
+        <location filename="../UI/UserInterface.py" line="7242"/>
         <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
         <translation>Eine Aktualisierung auf &lt;b&gt;{0}&lt;/b&gt; von eric ist unter &lt;b&gt;{1}&lt;/b&gt; verfügbar. Soll sie geladen werden?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7199"/>
+        <location filename="../UI/UserInterface.py" line="7220"/>
         <source>You are using a snapshot release of eric. A more up-to-date stable release might be available.</source>
         <translation>Es wird ein Snapshot-Release von eric verwendet. Eine neueres, stabiles Release könnte verfügbar sein.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7233"/>
+        <location filename="../UI/UserInterface.py" line="7254"/>
         <source>eric is up to date</source>
         <translation>eric ist aktuell</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7233"/>
+        <location filename="../UI/UserInterface.py" line="7254"/>
         <source>You are using the latest version of eric</source>
         <translation>Es wird die aktuellste Version von eric verwendet</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7316"/>
+        <location filename="../UI/UserInterface.py" line="7337"/>
         <source>eric has not been configured yet. The configuration dialog will be started.</source>
         <translation>eric wurde noch nicht konfiguriert. Der Konfigurationsdialog wird nun gestartet.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6294"/>
+        <location filename="../UI/UserInterface.py" line="6314"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard Shortcuts File (*.e4k)</source>
         <translation>Tastaturkurzbefehlsdatei (*.ekj);;XML Tastaturkurzbefehlsdatei (*.e4k)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6313"/>
+        <location filename="../UI/UserInterface.py" line="6333"/>
         <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Tastaturkurzbefehlsdatei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6329"/>
+        <location filename="../UI/UserInterface.py" line="6349"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
         <translation>Tastaturkurzbefehlsdatei (*.ekj);;XML Tastaturkurzbefehlsdatei (*.e4k)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6518"/>
+        <location filename="../UI/UserInterface.py" line="6538"/>
         <source>Read Tasks</source>
         <translation>Aufgaben lesen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6627"/>
+        <location filename="../UI/UserInterface.py" line="6647"/>
         <source>Save Session</source>
         <translation>Sitzung speichern</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6584"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>Read Session</source>
         <translation>Sitzung lesen</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6650"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
         <translation>eric Sitzungsdateien (*.esj);;eric XML Sitzungsdateien (*.e5s)</translation>
     </message>
@@ -77224,7 +77223,7 @@
 <context>
     <name>Utilities</name>
     <message>
-        <location filename="../Utilities/__init__.py" line="1453"/>
+        <location filename="../Utilities/__init__.py" line="1454"/>
         <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;Sie können %-Codes als Platzhalter in der Eingabe verwenden. Unterstützte Codes sind:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;Spalte des Cursor des aktuellen Editors&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;Verzeichnis des aktuellen Editors&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;Dateiname des aktuellen Editors&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;Home-Verzeichnis des aktullen Nutzers&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;Zeile des Cursor des aktuellen Editors&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;Pfad des aktuellen Projektes&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selektierter Text des aktuellen Editors&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;Nutzername des aktuellen Nutzers&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;das Prozentzeichen&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</translation>
     </message>
@@ -77513,22 +77512,22 @@
 <context>
     <name>VariablesViewer</name>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="958"/>
+        <location filename="../Debugger/VariablesViewer.py" line="965"/>
         <source>Global Variables</source>
         <translation>Globale Variablen</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="959"/>
-        <source>&lt;b&gt;The Global Variables Viewer Window&lt;/b&gt;&lt;p&gt;This window displays the global variables of the debugged program.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Das Globale Variablen Fenster&lt;/b&gt;&lt;p&gt;Dieses Fenster zeigt die globalen Variablen des untersuchten Programmes an.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/VariablesViewer.py" line="965"/>
-        <source>Local Variables</source>
-        <translation>Lokale Variablen</translation>
-    </message>
-    <message>
         <location filename="../Debugger/VariablesViewer.py" line="966"/>
+        <source>&lt;b&gt;The Global Variables Viewer Window&lt;/b&gt;&lt;p&gt;This window displays the global variables of the debugged program.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Das Globale Variablen Fenster&lt;/b&gt;&lt;p&gt;Dieses Fenster zeigt die globalen Variablen des untersuchten Programmes an.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/VariablesViewer.py" line="972"/>
+        <source>Local Variables</source>
+        <translation>Lokale Variablen</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/VariablesViewer.py" line="973"/>
         <source>&lt;b&gt;The Local Variables Viewer Window&lt;/b&gt;&lt;p&gt;This window displays the local variables of the debugged program.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Das Lokale Variablen Fenster&lt;/b&gt;&lt;p&gt;Dieses Fenster zeigt die lokalen Variablen des untersuchten Programmes an.&lt;/p&gt;</translation>
     </message>
@@ -77538,37 +77537,37 @@
         <translation>{0} Einträge</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1083"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1090"/>
         <source>Show Details...</source>
         <translation>Zeige Details...</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1098"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1105"/>
         <source>Configure...</source>
         <translation>Einstellungen...</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1096"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1103"/>
         <source>Refresh</source>
         <translation>Aktualisieren</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1085"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1092"/>
         <source>Expand</source>
         <translation>Ausklappen</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1086"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1093"/>
         <source>Collapse</source>
         <translation>Einklappen</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1087"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1094"/>
         <source>Collapse All</source>
         <translation>Alle einklappen</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1099"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1106"/>
         <source>Variables Type Filter...</source>
         <translation>Variablentypenfilter …</translation>
     </message>
@@ -78222,7 +78221,7 @@
         <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation>
     </message>
     <message>
-        <location filename="../VCS/VersionControl.py" line="761"/>
+        <location filename="../VCS/VersionControl.py" line="764"/>
         <source>Repository status checking is switched off</source>
         <translation>Repository-Statusüberprüfung ist ausgeschaltet</translation>
     </message>
@@ -78230,3074 +78229,3074 @@
 <context>
     <name>ViewManager</name>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>New</source>
         <translation>Neu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>&amp;New</source>
         <translation>&amp;Neu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="592"/>
+        <location filename="../ViewManager/ViewManager.py" line="593"/>
         <source>Open an empty editor window</source>
         <translation>Öffnet ein leeres Editorfenster</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="595"/>
+        <location filename="../ViewManager/ViewManager.py" line="596"/>
         <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="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>Open</source>
         <translation>Öffnen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>&amp;Open...</source>
         <translation>&amp;Öffnen...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>Close</source>
         <translation>Schließen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>&amp;Close</source>
         <translation>Schl&amp;ießen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="632"/>
+        <location filename="../ViewManager/ViewManager.py" line="633"/>
         <source>Close the current window</source>
         <translation>Schließt das aktuelle Fenster</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="636"/>
         <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="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="644"/>
         <source>Close All</source>
         <translation>Alle schließen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="647"/>
+        <location filename="../ViewManager/ViewManager.py" line="648"/>
         <source>Close all editor windows</source>
         <translation>Schließt alle Editorfenster</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="650"/>
+        <location filename="../ViewManager/ViewManager.py" line="651"/>
         <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="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>Save</source>
         <translation>Speichern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>&amp;Save</source>
         <translation>S&amp;peichern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="669"/>
+        <location filename="../ViewManager/ViewManager.py" line="670"/>
         <source>Save the current file</source>
         <translation>Speichert die aktuelle Datei</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="671"/>
+        <location filename="../ViewManager/ViewManager.py" line="672"/>
         <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="686"/>
+        <location filename="../ViewManager/ViewManager.py" line="687"/>
         <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="688"/>
+        <location filename="../ViewManager/ViewManager.py" line="689"/>
         <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="718"/>
+        <location filename="../ViewManager/ViewManager.py" line="719"/>
         <source>Save all files</source>
         <translation>Alle Dateien speichern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="720"/>
+        <location filename="../ViewManager/ViewManager.py" line="721"/>
         <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="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>Print</source>
         <translation>Drucken</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>&amp;Print</source>
         <translation>&amp;Drucken</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="737"/>
+        <location filename="../ViewManager/ViewManager.py" line="738"/>
         <source>Print the current file</source>
         <translation>Druckt die aktuelle Datei</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="739"/>
+        <location filename="../ViewManager/ViewManager.py" line="740"/>
         <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="789"/>
+        <location filename="../ViewManager/ViewManager.py" line="790"/>
         <source>Open &amp;Recent Files</source>
         <translation>Zu&amp;letzt geöffnete Dateien</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Undo</source>
         <translation>Rückgängig</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>&amp;Undo</source>
         <translation>&amp;Rückgängig</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="896"/>
+        <location filename="../ViewManager/ViewManager.py" line="897"/>
         <source>Undo the last change</source>
         <translation>Die letzte Änderung rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="898"/>
+        <location filename="../ViewManager/ViewManager.py" line="899"/>
         <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="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>Redo</source>
         <translation>Wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>&amp;Redo</source>
         <translation>Wieder&amp;herstellen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="914"/>
+        <location filename="../ViewManager/ViewManager.py" line="915"/>
         <source>Redo the last change</source>
         <translation>Die letzte Änderung wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="916"/>
+        <location filename="../ViewManager/ViewManager.py" line="917"/>
         <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="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Cut</source>
         <translation>Ausschneiden</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Cu&amp;t</source>
         <translation>&amp;Ausschneiden</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="955"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Cut the selection</source>
         <translation>Schneidet die Auswahl aus</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="958"/>
         <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="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Copy</source>
         <translation>Kopieren</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>&amp;Copy</source>
         <translation>&amp;Kopieren</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="976"/>
         <source>Copy the selection</source>
         <translation>Kopiert die Auswahl</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="977"/>
+        <location filename="../ViewManager/ViewManager.py" line="978"/>
         <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="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Paste</source>
         <translation>Einfügen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>&amp;Paste</source>
         <translation>Ein&amp;fügen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="995"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <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="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="998"/>
         <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="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>Clear</source>
         <translation>Löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1014"/>
+        <location filename="../ViewManager/ViewManager.py" line="1015"/>
         <source>Clear all text</source>
         <translation>Löscht den gesamten Text</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1016"/>
+        <location filename="../ViewManager/ViewManager.py" line="1017"/>
         <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="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>Indent</source>
         <translation>Einrücken</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>&amp;Indent</source>
         <translation>Ei&amp;nrücken</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1049"/>
+        <location filename="../ViewManager/ViewManager.py" line="1050"/>
         <source>Indent line</source>
         <translation>Zeile einrücken</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1051"/>
+        <location filename="../ViewManager/ViewManager.py" line="1052"/>
         <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="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>Unindent</source>
         <translation>Einrücken rückgängig</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>U&amp;nindent</source>
         <translation>Einrücken rück&amp;gängig</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1068"/>
+        <location filename="../ViewManager/ViewManager.py" line="1069"/>
         <source>Unindent line</source>
         <translation>Einrücken der Zeile rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1070"/>
+        <location filename="../ViewManager/ViewManager.py" line="1071"/>
         <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="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>Comment</source>
         <translation>Kommentar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>C&amp;omment</source>
         <translation>K&amp;ommentar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1104"/>
+        <location filename="../ViewManager/ViewManager.py" line="1105"/>
         <source>Comment Line or Selection</source>
         <translation>Kommentiert eine Zeile oder die Auswahl</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1106"/>
+        <location filename="../ViewManager/ViewManager.py" line="1107"/>
         <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="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Uncomment</source>
         <translation>Kommentar entfernen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Unco&amp;mment</source>
         <translation>Ko&amp;mmentar entfernen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1123"/>
+        <location filename="../ViewManager/ViewManager.py" line="1124"/>
         <source>Uncomment Line or Selection</source>
         <translation>Kommentar einer Zeile oder der Auswahl entfernen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1125"/>
+        <location filename="../ViewManager/ViewManager.py" line="1126"/>
         <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="1215"/>
+        <location filename="../ViewManager/ViewManager.py" line="1216"/>
         <source>Select all text</source>
         <translation>Gesamten text auswählen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1232"/>
+        <location filename="../ViewManager/ViewManager.py" line="1233"/>
         <source>Deselect all text</source>
         <translation>Hebt die Auswahl auf</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3296"/>
+        <location filename="../ViewManager/ViewManager.py" line="3297"/>
         <source>Search</source>
         <translation>Suchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2849"/>
+        <location filename="../ViewManager/ViewManager.py" line="2850"/>
         <source>&amp;Search...</source>
         <translation>&amp;Suchen...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2857"/>
+        <location filename="../ViewManager/ViewManager.py" line="2858"/>
         <source>Search for a text</source>
         <translation>Sucht nach Text</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2859"/>
+        <location filename="../ViewManager/ViewManager.py" line="2860"/>
         <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="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>Replace</source>
         <translation>Ersetzen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>&amp;Replace...</source>
         <translation>&amp;Ersetzen...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2982"/>
+        <location filename="../ViewManager/ViewManager.py" line="2983"/>
         <source>Replace some text</source>
         <translation>Ersetzt Text</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2984"/>
+        <location filename="../ViewManager/ViewManager.py" line="2985"/>
         <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="3070"/>
+        <location filename="../ViewManager/ViewManager.py" line="3071"/>
         <source>Goto Line</source>
         <translation>Gehe zu Zeile</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3062"/>
+        <location filename="../ViewManager/ViewManager.py" line="3063"/>
         <source>&amp;Goto Line...</source>
         <translation>Gehe zu &amp;Zeile...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3072"/>
+        <location filename="../ViewManager/ViewManager.py" line="3073"/>
         <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="3344"/>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
         <source>Zoom in on the text</source>
         <translation>Text vergrößern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3363"/>
+        <location filename="../ViewManager/ViewManager.py" line="3365"/>
         <source>Zoom out on the text</source>
         <translation>Text verkleinern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>Zoom</source>
         <translation>Maßstab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>&amp;Zoom</source>
         <translation>&amp;Maßstab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3400"/>
-        <source>Zoom the text</source>
-        <translation>Den Maßstab des Textes ändern</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3402"/>
+        <source>Zoom the text</source>
+        <translation>Den Maßstab des Textes ändern</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3404"/>
         <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="3415"/>
-        <source>Toggle all folds</source>
-        <translation>Alle Faltungen umschalten</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3411"/>
-        <source>&amp;Toggle all folds</source>
-        <translation>&amp;Alle Faltungen umschalten</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3417"/>
+        <source>Toggle all folds</source>
+        <translation>Alle Faltungen umschalten</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3413"/>
+        <source>&amp;Toggle all folds</source>
+        <translation>&amp;Alle Faltungen umschalten</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3419"/>
         <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="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4377"/>
         <source>File Modified</source>
         <translation>Datei geändert</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1249"/>
+        <location filename="../ViewManager/ViewManager.py" line="1250"/>
         <source>Convert Line End Characters</source>
         <translation>Zeilenende Marke umwandeln</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1242"/>
+        <location filename="../ViewManager/ViewManager.py" line="1243"/>
         <source>Convert &amp;Line End Characters</source>
         <translation>&amp;Zeilenende Marke umwandeln</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1251"/>
+        <location filename="../ViewManager/ViewManager.py" line="1252"/>
         <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="3447"/>
-        <source>Toggle current fold</source>
-        <translation>Aktuelle Faltung umschalten</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3443"/>
-        <source>Toggle &amp;current fold</source>
-        <translation>Aktuelle &amp;Faltung umschalten</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3449"/>
+        <source>Toggle current fold</source>
+        <translation>Aktuelle Faltung umschalten</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3445"/>
+        <source>Toggle &amp;current fold</source>
+        <translation>Aktuelle &amp;Faltung umschalten</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3451"/>
         <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="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="644"/>
         <source>Clos&amp;e All</source>
         <translation>Alle &amp;schließen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Save as</source>
         <translation>Speichern unter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Save &amp;as...</source>
         <translation>Speichern &amp;unter...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="714"/>
         <source>Save all</source>
         <translation>Alles speichern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>Select all</source>
         <translation>Alles auswählen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>&amp;Select all</source>
         <translation>A&amp;lles auswählen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>Deselect all</source>
         <translation>Auswahl aufheben</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>&amp;Deselect all</source>
         <translation>Aus&amp;wahl aufheben</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom in</source>
         <translation>Vergrößern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom &amp;in</source>
         <translation>Ver&amp;größern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom out</source>
         <translation>Verkleinern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom &amp;out</source>
         <translation>Ver&amp;kleinern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3346"/>
+        <location filename="../ViewManager/ViewManager.py" line="3348"/>
         <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="3365"/>
+        <location filename="../ViewManager/ViewManager.py" line="3367"/>
         <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="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Select to brace</source>
         <translation>Zur Klammer auswählen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Select to &amp;brace</source>
         <translation>Zur Klammer ausw&amp;ählen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1196"/>
+        <location filename="../ViewManager/ViewManager.py" line="1197"/>
         <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="3089"/>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
         <source>Goto Brace</source>
         <translation>Gehe zu Klammer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3081"/>
+        <location filename="../ViewManager/ViewManager.py" line="3082"/>
         <source>Goto &amp;Brace</source>
         <translation>Gehe zu &amp;Klammer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3091"/>
+        <location filename="../ViewManager/ViewManager.py" line="3092"/>
         <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="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Search in Files</source>
         <translation>Suchen in Dateien</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Search in &amp;Files...</source>
         <translation>Suchen in &amp;Dateien...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3177"/>
+        <location filename="../ViewManager/ViewManager.py" line="3178"/>
         <source>Search for a text in files</source>
         <translation>Nach Text in Dateien suchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3179"/>
+        <location filename="../ViewManager/ViewManager.py" line="3180"/>
         <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="1156"/>
+        <location filename="../ViewManager/ViewManager.py" line="1157"/>
         <source>Stream Comment</source>
         <translation>Stream Kommentar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1161"/>
+        <location filename="../ViewManager/ViewManager.py" line="1162"/>
         <source>Stream Comment Line or Selection</source>
         <translation>Stream kommentiert eine Zeile oder die Auswahl</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1173"/>
+        <location filename="../ViewManager/ViewManager.py" line="1174"/>
         <source>Box Comment</source>
         <translation>Box Kommentar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1178"/>
+        <location filename="../ViewManager/ViewManager.py" line="1179"/>
         <source>Box Comment Line or Selection</source>
         <translation>Box kommentiert eine Zeile oder die Auswahl</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1180"/>
+        <location filename="../ViewManager/ViewManager.py" line="1181"/>
         <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="1164"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <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="933"/>
+        <location filename="../ViewManager/ViewManager.py" line="934"/>
         <source>Revert to last saved state</source>
         <translation>Zurück zum letzten gesichert Zustand</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="924"/>
+        <location filename="../ViewManager/ViewManager.py" line="925"/>
         <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="935"/>
+        <location filename="../ViewManager/ViewManager.py" line="936"/>
         <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="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3529"/>
         <source>Split view</source>
         <translation>Ansicht aufteilen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3529"/>
         <source>&amp;Split view</source>
         <translation>An&amp;sicht aufteilen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3532"/>
-        <source>Add a split to the view</source>
-        <translation>Fügt eine weiter Ansicht hinzu</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3534"/>
+        <source>Add a split to the view</source>
+        <translation>Fügt eine weiter Ansicht hinzu</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3536"/>
         <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="3542"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Arrange horizontally</source>
         <translation>Horizontal anordnen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3542"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Arrange &amp;horizontally</source>
         <translation>&amp;Horizontal anordnen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation>Ordnet die geteilten Ansichten horizontal an</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3548"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation>Ordnet die geteilten Ansichten horizontal an</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3550"/>
         <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="3557"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>Remove split</source>
         <translation>Geteilte Ansicht löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3557"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>&amp;Remove split</source>
         <translation>Geteilte Ansicht &amp;löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3562"/>
-        <source>Remove the current split</source>
-        <translation>Löscht die aktuelle Ansicht</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3564"/>
+        <source>Remove the current split</source>
+        <translation>Löscht die aktuelle Ansicht</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3566"/>
         <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="1452"/>
+        <location filename="../ViewManager/ViewManager.py" line="1453"/>
         <source>Move left one character</source>
         <translation>Ein Zeichen nach links</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1452"/>
+        <location filename="../ViewManager/ViewManager.py" line="1453"/>
         <source>Left</source>
         <translation>Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1466"/>
+        <location filename="../ViewManager/ViewManager.py" line="1467"/>
         <source>Move right one character</source>
         <translation>Ein Zeichen nach rechts</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1466"/>
+        <location filename="../ViewManager/ViewManager.py" line="1467"/>
         <source>Right</source>
         <translation>Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1481"/>
         <source>Move up one line</source>
         <translation>Eine Zeile nach oben</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1481"/>
         <source>Up</source>
         <translation>Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1492"/>
+        <location filename="../ViewManager/ViewManager.py" line="1493"/>
         <source>Move down one line</source>
         <translation>Eine Zeile nach unten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1492"/>
+        <location filename="../ViewManager/ViewManager.py" line="1493"/>
         <source>Down</source>
         <translation>Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1504"/>
+        <location filename="../ViewManager/ViewManager.py" line="1505"/>
         <source>Move left one word part</source>
         <translation>Ein Wortteil nach links</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1538"/>
+        <location filename="../ViewManager/ViewManager.py" line="1539"/>
         <source>Alt+Left</source>
         <translation>Alt+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1518"/>
+        <location filename="../ViewManager/ViewManager.py" line="1519"/>
         <source>Move right one word part</source>
         <translation>Ein Wortteil nach rechts</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2418"/>
+        <location filename="../ViewManager/ViewManager.py" line="2419"/>
         <source>Alt+Right</source>
         <translation>Alt+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1532"/>
+        <location filename="../ViewManager/ViewManager.py" line="1533"/>
         <source>Move left one word</source>
         <translation>Ein Wort nach links</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1583"/>
+        <location filename="../ViewManager/ViewManager.py" line="1584"/>
         <source>Ctrl+Left</source>
         <translation>Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1547"/>
+        <location filename="../ViewManager/ViewManager.py" line="1548"/>
         <source>Move right one word</source>
         <translation>Ein Wort nach rechts</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2173"/>
         <source>Ctrl+Right</source>
         <translation>Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2373"/>
+        <location filename="../ViewManager/ViewManager.py" line="2374"/>
         <source>Home</source>
         <translation>Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1586"/>
+        <location filename="../ViewManager/ViewManager.py" line="1587"/>
         <source>Alt+Home</source>
         <translation>Alt+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2388"/>
+        <location filename="../ViewManager/ViewManager.py" line="2389"/>
         <source>End</source>
         <translation>End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1609"/>
+        <location filename="../ViewManager/ViewManager.py" line="1610"/>
         <source>Scroll view down one line</source>
         <translation>Eine Zeile nach unten rollen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1699"/>
+        <location filename="../ViewManager/ViewManager.py" line="1700"/>
         <source>Ctrl+Down</source>
         <translation>Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1621"/>
+        <location filename="../ViewManager/ViewManager.py" line="1622"/>
         <source>Scroll view up one line</source>
         <translation>Eine Zeile nach oben rollen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1683"/>
         <source>Ctrl+Up</source>
         <translation>Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1632"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Move up one paragraph</source>
         <translation>Einen Absatz nach oben</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1632"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Alt+Up</source>
         <translation>Alt+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1641"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Move down one paragraph</source>
         <translation>Einen Absatz nach unten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1641"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Alt+Down</source>
         <translation>Alt+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1653"/>
+        <location filename="../ViewManager/ViewManager.py" line="1654"/>
         <source>Move up one page</source>
         <translation>Eine Seite hoch</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1653"/>
+        <location filename="../ViewManager/ViewManager.py" line="1654"/>
         <source>PgUp</source>
         <translation>PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1662"/>
+        <location filename="../ViewManager/ViewManager.py" line="1663"/>
         <source>Move down one page</source>
         <translation>Eine Seite nach unten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1662"/>
+        <location filename="../ViewManager/ViewManager.py" line="1663"/>
         <source>PgDown</source>
         <translation>PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1685"/>
+        <location filename="../ViewManager/ViewManager.py" line="1686"/>
         <source>Ctrl+Home</source>
         <translation>Ctrl+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1702"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>Ctrl+End</source>
         <translation>Ctrl+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1708"/>
+        <location filename="../ViewManager/ViewManager.py" line="1709"/>
         <source>Indent one level</source>
         <translation>Eine Ebene einrücken</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1708"/>
+        <location filename="../ViewManager/ViewManager.py" line="1709"/>
         <source>Tab</source>
         <translation>Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1717"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Unindent one level</source>
         <translation>Eine Ebene ausrücken</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1717"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Shift+Tab</source>
         <translation>Shift+Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1728"/>
         <source>Extend selection left one character</source>
         <translation>Auswahl um ein Zeichen nach links erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1728"/>
         <source>Shift+Left</source>
         <translation>Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1742"/>
+        <location filename="../ViewManager/ViewManager.py" line="1743"/>
         <source>Extend selection right one character</source>
         <translation>Auswahl um ein Zeichen nach rechts erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1742"/>
+        <location filename="../ViewManager/ViewManager.py" line="1743"/>
         <source>Shift+Right</source>
         <translation>Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1757"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Extend selection up one line</source>
         <translation>Auswahl um eine Zeile nach oben erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1757"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Shift+Up</source>
         <translation>Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1772"/>
+        <location filename="../ViewManager/ViewManager.py" line="1773"/>
         <source>Extend selection down one line</source>
         <translation>Auswahl um eine Zeile nach unten erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1772"/>
+        <location filename="../ViewManager/ViewManager.py" line="1773"/>
         <source>Shift+Down</source>
         <translation>Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1787"/>
+        <location filename="../ViewManager/ViewManager.py" line="1788"/>
         <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="1823"/>
+        <location filename="../ViewManager/ViewManager.py" line="1824"/>
         <source>Alt+Shift+Left</source>
         <translation>Alt+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1802"/>
         <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="2433"/>
+        <location filename="../ViewManager/ViewManager.py" line="2434"/>
         <source>Alt+Shift+Right</source>
         <translation>Alt+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1815"/>
+        <location filename="../ViewManager/ViewManager.py" line="1816"/>
         <source>Extend selection left one word</source>
         <translation>Auswahl um ein Wort nach links erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2527"/>
+        <location filename="../ViewManager/ViewManager.py" line="2528"/>
         <source>Ctrl+Shift+Left</source>
         <translation>Ctrl+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1832"/>
+        <location filename="../ViewManager/ViewManager.py" line="1833"/>
         <source>Extend selection right one word</source>
         <translation>Auswahl um ein Wort nach rechts erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2189"/>
+        <location filename="../ViewManager/ViewManager.py" line="2190"/>
         <source>Ctrl+Shift+Right</source>
         <translation>Ctrl+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1861"/>
+        <location filename="../ViewManager/ViewManager.py" line="1862"/>
         <source>Shift+Home</source>
         <translation>Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2293"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Alt+Shift+Home</source>
         <translation>Alt+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1878"/>
+        <location filename="../ViewManager/ViewManager.py" line="1879"/>
         <source>Shift+End</source>
         <translation>Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1884"/>
+        <location filename="../ViewManager/ViewManager.py" line="1885"/>
         <source>Extend selection up one paragraph</source>
         <translation>Auswahl um einen Absatz nach oben erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1884"/>
+        <location filename="../ViewManager/ViewManager.py" line="1885"/>
         <source>Alt+Shift+Up</source>
         <translation>Alt+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1897"/>
+        <location filename="../ViewManager/ViewManager.py" line="1898"/>
         <source>Extend selection down one paragraph</source>
         <translation>Auswahl um einen Absatz nach unten erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1897"/>
+        <location filename="../ViewManager/ViewManager.py" line="1898"/>
         <source>Alt+Shift+Down</source>
         <translation>Alt+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1910"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Extend selection up one page</source>
         <translation>Auswahl um eine Seite nach oben erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1910"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Shift+PgUp</source>
         <translation>Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1922"/>
+        <location filename="../ViewManager/ViewManager.py" line="1923"/>
         <source>Extend selection down one page</source>
         <translation>Auswahl um eine Seite nach unten erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1922"/>
+        <location filename="../ViewManager/ViewManager.py" line="1923"/>
         <source>Shift+PgDown</source>
         <translation>Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1949"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Ctrl+Shift+Home</source>
         <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1966"/>
+        <location filename="../ViewManager/ViewManager.py" line="1967"/>
         <source>Ctrl+Shift+End</source>
         <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1972"/>
+        <location filename="../ViewManager/ViewManager.py" line="1973"/>
         <source>Delete previous character</source>
         <translation>Zeichen links löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1972"/>
+        <location filename="../ViewManager/ViewManager.py" line="1973"/>
         <source>Backspace</source>
         <translation>Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2003"/>
+        <location filename="../ViewManager/ViewManager.py" line="2004"/>
         <source>Delete current character</source>
         <translation>Aktuelles Zeichen löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2003"/>
+        <location filename="../ViewManager/ViewManager.py" line="2004"/>
         <source>Del</source>
         <translation>Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2017"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <source>Delete word to left</source>
         <translation>Wort links löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2017"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <source>Ctrl+Backspace</source>
         <translation>Ctrl+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2028"/>
+        <location filename="../ViewManager/ViewManager.py" line="2029"/>
         <source>Delete word to right</source>
         <translation>Wort rechts löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2028"/>
+        <location filename="../ViewManager/ViewManager.py" line="2029"/>
         <source>Ctrl+Del</source>
         <translation>Ctrl+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2038"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Delete line to left</source>
         <translation>Zeile links löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2038"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation>Ctrl+Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2049"/>
+        <location filename="../ViewManager/ViewManager.py" line="2050"/>
         <source>Delete line to right</source>
         <translation>Zeile rechts löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2058"/>
+        <location filename="../ViewManager/ViewManager.py" line="2059"/>
         <source>Ctrl+Shift+Del</source>
         <translation>Ctrl+Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Insert new line</source>
         <translation>Neue Zeile einfügen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Return</source>
         <translation>Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Delete current line</source>
         <translation>Aktuelle Zeile löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Ctrl+Shift+L</source>
         <translation>Ctrl+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2098"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Duplicate current line</source>
         <translation>Aktuelle Zeile duplizieren</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2098"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Ctrl+D</source>
         <translation>Ctrl+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2109"/>
+        <location filename="../ViewManager/ViewManager.py" line="2110"/>
         <source>Swap current and previous lines</source>
         <translation>Aktuelle Zeile mit vorhergehender tauschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2109"/>
+        <location filename="../ViewManager/ViewManager.py" line="2110"/>
         <source>Ctrl+T</source>
         <translation>Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2132"/>
+        <location filename="../ViewManager/ViewManager.py" line="2133"/>
         <source>Cut current line</source>
         <translation>Aktuelle Zeile ausschneiden</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2132"/>
+        <location filename="../ViewManager/ViewManager.py" line="2133"/>
         <source>Alt+Shift+L</source>
         <translation>Alt+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2142"/>
+        <location filename="../ViewManager/ViewManager.py" line="2143"/>
         <source>Copy current line</source>
         <translation>Aktuelle Zeile kopieren</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2142"/>
+        <location filename="../ViewManager/ViewManager.py" line="2143"/>
         <source>Ctrl+Shift+T</source>
         <translation>Ctrl+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2153"/>
+        <location filename="../ViewManager/ViewManager.py" line="2154"/>
         <source>Toggle insert/overtype</source>
         <translation>Einfügen/Überschreiben umschalten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2153"/>
+        <location filename="../ViewManager/ViewManager.py" line="2154"/>
         <source>Ins</source>
         <translation>Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2717"/>
+        <location filename="../ViewManager/ViewManager.py" line="2718"/>
         <source>Convert selection to lower case</source>
         <translation>Auswahl in Kleinbuchstaben umwandeln</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2717"/>
+        <location filename="../ViewManager/ViewManager.py" line="2718"/>
         <source>Alt+Shift+U</source>
         <translation>Alt+Shift+U</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2729"/>
+        <location filename="../ViewManager/ViewManager.py" line="2730"/>
         <source>Convert selection to upper case</source>
         <translation>Auswahl in Großbuchstaben umwandeln</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2729"/>
+        <location filename="../ViewManager/ViewManager.py" line="2730"/>
         <source>Ctrl+Shift+U</source>
         <translation>Ctrl+Shift+U</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3754"/>
-        <source>Start Macro Recording</source>
-        <translation>Makroaufzeichnung starten</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3748"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation>Makroaufzeichnung s&amp;tarten</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3756"/>
+        <source>Start Macro Recording</source>
+        <translation>Makroaufzeichnung starten</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3750"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation>Makroaufzeichnung s&amp;tarten</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3758"/>
         <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="3768"/>
-        <source>Stop Macro Recording</source>
-        <translation>Makroaufzeichnung stoppen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3764"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation>Makroaufzeichnung sto&amp;ppen</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3770"/>
+        <source>Stop Macro Recording</source>
+        <translation>Makroaufzeichnung stoppen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3766"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation>Makroaufzeichnung sto&amp;ppen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3772"/>
         <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="3782"/>
-        <source>Run Macro</source>
-        <translation>Makro ausführen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3778"/>
-        <source>&amp;Run Macro</source>
-        <translation>Makro &amp;ausführen</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3784"/>
+        <source>Run Macro</source>
+        <translation>Makro ausführen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3780"/>
+        <source>&amp;Run Macro</source>
+        <translation>Makro &amp;ausführen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <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="3796"/>
-        <source>Delete Macro</source>
-        <translation>Makro löschen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3792"/>
-        <source>&amp;Delete Macro</source>
-        <translation>Makro &amp;löschen</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Delete Macro</source>
+        <translation>Makro löschen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3794"/>
+        <source>&amp;Delete Macro</source>
+        <translation>Makro &amp;löschen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3800"/>
         <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="3810"/>
-        <source>Load Macro</source>
-        <translation>Makro laden</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3806"/>
-        <source>&amp;Load Macro</source>
-        <translation>Makro la&amp;den</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3824"/>
-        <source>Save Macro</source>
-        <translation>Makro speichern</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3820"/>
-        <source>&amp;Save Macro</source>
-        <translation>Makro &amp;speichern</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3812"/>
-        <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>
+        <source>Load Macro</source>
+        <translation>Makro laden</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3808"/>
+        <source>&amp;Load Macro</source>
+        <translation>Makro la&amp;den</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3826"/>
+        <source>Save Macro</source>
+        <translation>Makro speichern</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
+        <source>&amp;Save Macro</source>
+        <translation>Makro &amp;speichern</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3814"/>
+        <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="3828"/>
         <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="3868"/>
-        <source>Toggle Bookmark</source>
-        <translation>Lesezeichen setzen/löschen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3860"/>
-        <source>&amp;Toggle Bookmark</source>
-        <translation>&amp;Lesezeichen setzen/löschen</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3870"/>
+        <source>Toggle Bookmark</source>
+        <translation>Lesezeichen setzen/löschen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
+        <source>&amp;Toggle Bookmark</source>
+        <translation>&amp;Lesezeichen setzen/löschen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3872"/>
         <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="3887"/>
-        <source>Next Bookmark</source>
-        <translation>Nächstes Lesezeichen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3879"/>
-        <source>&amp;Next Bookmark</source>
-        <translation>&amp;Nächstes Lesezeichen</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3889"/>
+        <source>Next Bookmark</source>
+        <translation>Nächstes Lesezeichen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3881"/>
+        <source>&amp;Next Bookmark</source>
+        <translation>&amp;Nächstes Lesezeichen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3891"/>
         <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="3905"/>
-        <source>Previous Bookmark</source>
-        <translation>Vorheriges Lesezeichen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3897"/>
-        <source>&amp;Previous Bookmark</source>
-        <translation>&amp;Vorheriges Lesezeichen</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3907"/>
+        <source>Previous Bookmark</source>
+        <translation>Vorheriges Lesezeichen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3899"/>
+        <source>&amp;Previous Bookmark</source>
+        <translation>&amp;Vorheriges Lesezeichen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3909"/>
         <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="3922"/>
-        <source>Clear Bookmarks</source>
-        <translation>Lesezeichen löschen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3915"/>
-        <source>&amp;Clear Bookmarks</source>
-        <translation>Lesezeichen l&amp;öschen</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3924"/>
+        <source>Clear Bookmarks</source>
+        <translation>Lesezeichen löschen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
+        <source>&amp;Clear Bookmarks</source>
+        <translation>Lesezeichen l&amp;öschen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3926"/>
         <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="4133"/>
+        <location filename="../ViewManager/ViewManager.py" line="4135"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Lesezeichen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3479"/>
-        <source>Remove all highlights</source>
-        <translation>Hervorhebungen löschen</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3481"/>
+        <source>Remove all highlights</source>
+        <translation>Hervorhebungen löschen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3483"/>
         <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="792"/>
+        <location filename="../ViewManager/ViewManager.py" line="793"/>
         <source>Open &amp;Bookmarked Files</source>
         <translation>Ge&amp;merkte Dateien</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5219"/>
+        <location filename="../ViewManager/ViewManager.py" line="5221"/>
         <source>&amp;Clear</source>
         <translation>&amp;Löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5213"/>
+        <location filename="../ViewManager/ViewManager.py" line="5215"/>
         <source>&amp;Add</source>
         <translation>&amp;Hinzufügen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5216"/>
+        <location filename="../ViewManager/ViewManager.py" line="5218"/>
         <source>&amp;Edit...</source>
         <translation>&amp;Bearbeiten...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2213"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <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="2213"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <source>Alt+Ctrl+Down</source>
         <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2229"/>
+        <location filename="../ViewManager/ViewManager.py" line="2230"/>
         <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="2229"/>
+        <location filename="../ViewManager/ViewManager.py" line="2230"/>
         <source>Alt+Ctrl+Up</source>
         <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2244"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <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="2244"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <source>Alt+Ctrl+Left</source>
         <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2262"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <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="2262"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Alt+Ctrl+Right</source>
         <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2318"/>
+        <location filename="../ViewManager/ViewManager.py" line="2319"/>
         <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="2333"/>
+        <location filename="../ViewManager/ViewManager.py" line="2334"/>
         <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="2175"/>
+        <location filename="../ViewManager/ViewManager.py" line="2176"/>
         <source>Alt+End</source>
         <translation>Alt+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2195"/>
+        <location filename="../ViewManager/ViewManager.py" line="2196"/>
         <source>Formfeed</source>
         <translation>Seitenumbruch</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1265"/>
+        <location filename="../ViewManager/ViewManager.py" line="1266"/>
         <source>Shorten empty lines</source>
         <translation>Leere Zeilen verkürzen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1267"/>
+        <location filename="../ViewManager/ViewManager.py" line="1268"/>
         <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="2204"/>
+        <location filename="../ViewManager/ViewManager.py" line="2205"/>
         <source>Escape</source>
         <translation>Abbruch</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2204"/>
+        <location filename="../ViewManager/ViewManager.py" line="2205"/>
         <source>Esc</source>
         <translation>Esc</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3938"/>
-        <source>Goto Syntax Error</source>
-        <translation>Zu Syntaxfehler gehen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3932"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation>Zu Syntaxfehler &amp;gehen</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3940"/>
+        <source>Goto Syntax Error</source>
+        <translation>Zu Syntaxfehler gehen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3934"/>
+        <source>&amp;Goto Syntax Error</source>
+        <translation>Zu Syntaxfehler &amp;gehen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3942"/>
         <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="3953"/>
-        <source>Clear Syntax Errors</source>
-        <translation>Syntaxfehler löschen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3948"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation>Synta&amp;xfehler löschen</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3955"/>
+        <source>Clear Syntax Errors</source>
+        <translation>Syntaxfehler löschen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3950"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation>Synta&amp;xfehler löschen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3957"/>
         <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="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Search File</source>
         <translation>Datei suchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Search &amp;File...</source>
         <translation>Da&amp;tei suchen...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="771"/>
+        <location filename="../ViewManager/ViewManager.py" line="772"/>
         <source>Search for a file</source>
         <translation>Nach einer Datei suchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="773"/>
+        <location filename="../ViewManager/ViewManager.py" line="774"/>
         <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="4023"/>
-        <source>Next uncovered line</source>
-        <translation>Nächste nichtabgedeckte Zeile</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4017"/>
-        <source>&amp;Next uncovered line</source>
-        <translation>&amp;Nächste nichtabgedeckte Zeile</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4025"/>
+        <source>Next uncovered line</source>
+        <translation>Nächste nichtabgedeckte Zeile</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4019"/>
+        <source>&amp;Next uncovered line</source>
+        <translation>&amp;Nächste nichtabgedeckte Zeile</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4027"/>
         <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="4042"/>
-        <source>Previous uncovered line</source>
-        <translation>Vorige nichtabgedeckte Zeile</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4034"/>
-        <source>&amp;Previous uncovered line</source>
-        <translation>&amp;Vorige nichtabgedeckte Zeile</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4044"/>
+        <source>Previous uncovered line</source>
+        <translation>Vorige nichtabgedeckte Zeile</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
+        <source>&amp;Previous uncovered line</source>
+        <translation>&amp;Vorige nichtabgedeckte Zeile</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4046"/>
         <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="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1984"/>
+        <location filename="../ViewManager/ViewManager.py" line="1985"/>
         <source>Shift+Backspace</source>
         <translation>Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4377"/>
         <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="611"/>
+        <location filename="../ViewManager/ViewManager.py" line="612"/>
         <source>Open a file</source>
         <translation>Datei öffnen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="613"/>
+        <location filename="../ViewManager/ViewManager.py" line="614"/>
         <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="1079"/>
+        <location filename="../ViewManager/ViewManager.py" line="1080"/>
         <source>Smart indent</source>
         <translation>Überwachte Einrückung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1085"/>
+        <location filename="../ViewManager/ViewManager.py" line="1086"/>
         <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="1087"/>
+        <location filename="../ViewManager/ViewManager.py" line="1088"/>
         <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="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>Next split</source>
         <translation>Nächste Ansichte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>&amp;Next split</source>
         <translation>&amp;Nächste Ansicht</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3579"/>
-        <source>Move to the next split</source>
-        <translation>Gehe zur nächsten Ansicht</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3581"/>
+        <source>Move to the next split</source>
+        <translation>Gehe zur nächsten Ansicht</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3583"/>
         <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="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Previous split</source>
         <translation>Vorherige Ansicht</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>&amp;Previous split</source>
         <translation>&amp;Vorherige Ansicht</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3595"/>
-        <source>Move to the previous split</source>
-        <translation>Gehe zur vorherigen Ansicht</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3597"/>
+        <source>Move to the previous split</source>
+        <translation>Gehe zur vorherigen Ansicht</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3599"/>
         <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="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Enter</source>
         <translation>Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3431"/>
-        <source>Toggle all folds (including children)</source>
-        <translation>Alle Faltungen umschalten (inkl. Unterfaltungen)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3425"/>
-        <source>Toggle all &amp;folds (including children)</source>
-        <translation>Alle Faltungen &amp;umschalten (inkl. Unterfaltungen)</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3433"/>
+        <source>Toggle all folds (including children)</source>
+        <translation>Alle Faltungen umschalten (inkl. Unterfaltungen)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3427"/>
+        <source>Toggle all &amp;folds (including children)</source>
+        <translation>Alle Faltungen &amp;umschalten (inkl. Unterfaltungen)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3435"/>
         <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="2351"/>
+        <location filename="../ViewManager/ViewManager.py" line="2352"/>
         <source>Duplicate current selection</source>
         <translation>Aktuelle Auswahl duplizieren</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2351"/>
+        <location filename="../ViewManager/ViewManager.py" line="2352"/>
         <source>Ctrl+Shift+D</source>
         <translation>Ctrl+Shift+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation>Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation>Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Alt+Ctrl+F</source>
         <comment>File|Search File</comment>
         <translation>Alt+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="787"/>
+        <location filename="../ViewManager/ViewManager.py" line="788"/>
         <source>&amp;File</source>
         <translation>&amp;Datei</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="840"/>
+        <location filename="../ViewManager/ViewManager.py" line="841"/>
         <source>File</source>
         <translation>Datei</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="924"/>
+        <location filename="../ViewManager/ViewManager.py" line="925"/>
         <source>Ctrl+Y</source>
         <comment>Edit|Revert</comment>
         <translation>Ctrl+Y</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Einfg</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>Ctrl+I</source>
         <comment>Edit|Indent</comment>
         <translation>Ctrl+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>Ctrl+Shift+I</source>
         <comment>Edit|Unindent</comment>
         <translation>Ctrl+Shift+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>Ctrl+M</source>
         <comment>Edit|Comment</comment>
         <translation>Ctrl+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Alt+Ctrl+M</source>
         <comment>Edit|Uncomment</comment>
         <translation>Alt+Ctrl+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Ctrl+E</source>
         <comment>Edit|Select to brace</comment>
         <translation>Ctrl+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select all</comment>
         <translation>Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>Alt+Ctrl+A</source>
         <comment>Edit|Deselect all</comment>
         <translation>Alt+Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2758"/>
+        <location filename="../ViewManager/ViewManager.py" line="2759"/>
         <source>&amp;Edit</source>
         <translation>&amp;Bearbeiten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2817"/>
+        <location filename="../ViewManager/ViewManager.py" line="2818"/>
         <source>Edit</source>
         <translation>Bearbeiten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2849"/>
+        <location filename="../ViewManager/ViewManager.py" line="2850"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation>Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation>Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3062"/>
+        <location filename="../ViewManager/ViewManager.py" line="3063"/>
         <source>Ctrl+G</source>
         <comment>Search|Goto Line</comment>
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3081"/>
+        <location filename="../ViewManager/ViewManager.py" line="3082"/>
         <source>Ctrl+L</source>
         <comment>Search|Goto Brace</comment>
         <translation>Ctrl+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation>Shift+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation>Ctrl+#</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation>Ctrl+Alt+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation>Ctrl+Alt+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3683"/>
         <source>&amp;View</source>
         <translation>&amp;Ansicht</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3718"/>
+        <location filename="../ViewManager/ViewManager.py" line="3720"/>
         <source>View</source>
         <translation>Ansicht</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3842"/>
+        <location filename="../ViewManager/ViewManager.py" line="3844"/>
         <source>&amp;Macros</source>
         <translation>&amp;Makros</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3860"/>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation>Alt+Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3879"/>
+        <location filename="../ViewManager/ViewManager.py" line="3881"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation>Ctrl+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3897"/>
+        <location filename="../ViewManager/ViewManager.py" line="3899"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation>Ctrl+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3915"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation>Alt+Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4179"/>
+        <location filename="../ViewManager/ViewManager.py" line="4181"/>
         <source>Bookmarks</source>
         <translation>Lesezeichen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4333"/>
         <source>Open files</source>
         <translation>Dateien öffnen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4060"/>
-        <source>Next Task</source>
-        <translation>Nächste Aufgabe</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4054"/>
-        <source>&amp;Next Task</source>
-        <translation>&amp;Nächste Aufgabe</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4062"/>
+        <source>Next Task</source>
+        <translation>Nächste Aufgabe</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4056"/>
+        <source>&amp;Next Task</source>
+        <translation>&amp;Nächste Aufgabe</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4064"/>
         <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="4077"/>
-        <source>Previous Task</source>
-        <translation>Vorherige Aufgabe</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4070"/>
-        <source>&amp;Previous Task</source>
-        <translation>&amp;Vorherige Aufgabe</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4079"/>
+        <source>Previous Task</source>
+        <translation>Vorherige Aufgabe</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4072"/>
+        <source>&amp;Previous Task</source>
+        <translation>&amp;Vorherige Aufgabe</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4081"/>
         <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="3262"/>
+        <location filename="../ViewManager/ViewManager.py" line="3263"/>
         <source>&amp;Search</source>
         <translation>&amp;Suchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>Search next</source>
         <translation>Weitersuchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>Search &amp;next</source>
         <translation>&amp;Weitersuchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation>F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Search previous</source>
         <translation>Rückwärtssuchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Search &amp;previous</source>
         <translation>&amp;Rückwärtssuchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation>Shift+F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1198"/>
+        <location filename="../ViewManager/ViewManager.py" line="1199"/>
         <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="1217"/>
+        <location filename="../ViewManager/ViewManager.py" line="1218"/>
         <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="1234"/>
+        <location filename="../ViewManager/ViewManager.py" line="1235"/>
         <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="863"/>
+        <location filename="../ViewManager/ViewManager.py" line="864"/>
         <source>Export as</source>
         <translation>Exportieren als</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2910"/>
+        <location filename="../ViewManager/ViewManager.py" line="2911"/>
         <source>Clear search markers</source>
         <translation>Suchmarkierungen löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2910"/>
+        <location filename="../ViewManager/ViewManager.py" line="2911"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation>Ctrl+3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Clear all displayed search markers</source>
         <translation>Löscht alle angezeigten Suchmarkierungen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2920"/>
+        <location filename="../ViewManager/ViewManager.py" line="2921"/>
         <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="2878"/>
+        <location filename="../ViewManager/ViewManager.py" line="2879"/>
         <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="2880"/>
+        <location filename="../ViewManager/ViewManager.py" line="2881"/>
         <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="2898"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <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="2900"/>
+        <location filename="../ViewManager/ViewManager.py" line="2901"/>
         <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="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>Calltip</source>
         <translation>Calltip</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>&amp;Calltip</source>
         <translation>&amp;Calltip</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1370"/>
+        <location filename="../ViewManager/ViewManager.py" line="1371"/>
         <source>Show Calltips</source>
         <translation>Calltips anzeigen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1372"/>
+        <location filename="../ViewManager/ViewManager.py" line="1373"/>
         <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="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="749"/>
         <source>Print Preview</source>
         <translation>Druckvorschau</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="753"/>
+        <location filename="../ViewManager/ViewManager.py" line="754"/>
         <source>Print preview of the current file</source>
         <translation>Druckvorschau der aktuellen Datei</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="755"/>
+        <location filename="../ViewManager/ViewManager.py" line="756"/>
         <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="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <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="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <source>Shift+Return</source>
         <translation>Shift+Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <source>Shift+Enter</source>
         <translation>Shift+Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Replace in Files</source>
         <translation>Ersetzen in Dateien</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Replace in F&amp;iles...</source>
         <translation>Ersetzen in Da&amp;teien...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation>Shift+Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3196"/>
+        <location filename="../ViewManager/ViewManager.py" line="3197"/>
         <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="3198"/>
+        <location filename="../ViewManager/ViewManager.py" line="3199"/>
         <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="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4221"/>
+        <location filename="../ViewManager/ViewManager.py" line="4223"/>
         <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="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>Automatic spell checking</source>
         <translation>Automatische Rechtschreibprüfung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>&amp;Automatic spell checking</source>
         <translation>&amp;Automatische Rechtschreibprüfung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4239"/>
-        <source>(De-)Activate automatic spell checking</source>
-        <translation>(De-)Aktiviert die automatische Rechtschreibprüfung</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4241"/>
+        <source>(De-)Activate automatic spell checking</source>
+        <translation>(De-)Aktiviert die automatische Rechtschreibprüfung</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4243"/>
         <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="4308"/>
+        <location filename="../ViewManager/ViewManager.py" line="4310"/>
         <source>Spelling</source>
         <translation>Rechtschreibung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4774"/>
+        <location filename="../ViewManager/ViewManager.py" line="4776"/>
         <source>Line: {0:5}</source>
         <translation>Zeile: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4780"/>
+        <location filename="../ViewManager/ViewManager.py" line="4782"/>
         <source>Pos: {0:5}</source>
         <translation>Pos: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3970"/>
+        <location filename="../ViewManager/ViewManager.py" line="3972"/>
         <source>Next warning message</source>
         <translation>Nächste Warnung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3964"/>
+        <location filename="../ViewManager/ViewManager.py" line="3966"/>
         <source>&amp;Next warning message</source>
         <translation>&amp;Nächste Warnung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3989"/>
+        <location filename="../ViewManager/ViewManager.py" line="3991"/>
         <source>Previous warning message</source>
         <translation>Vorherige Warnung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3981"/>
+        <location filename="../ViewManager/ViewManager.py" line="3983"/>
         <source>&amp;Previous warning message</source>
         <translation>&amp;Vorherige Warnung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4007"/>
+        <location filename="../ViewManager/ViewManager.py" line="4009"/>
         <source>Clear Warning Messages</source>
         <translation>Warnungen löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4000"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>&amp;Warnungen löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1031"/>
+        <location filename="../ViewManager/ViewManager.py" line="1032"/>
         <source>Join Lines</source>
         <translation>Zeilen verbinden</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1024"/>
+        <location filename="../ViewManager/ViewManager.py" line="1025"/>
         <source>Ctrl+J</source>
         <comment>Edit|Join Lines</comment>
         <translation>Ctrl+J</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1033"/>
+        <location filename="../ViewManager/ViewManager.py" line="1034"/>
         <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="3110"/>
+        <location filename="../ViewManager/ViewManager.py" line="3111"/>
         <source>Goto Last Edit Location</source>
         <translation>Gehe zur letzten Editierposition</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3099"/>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation>Gehe zur letzten &amp;Editierposition</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3099"/>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <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="3113"/>
+        <location filename="../ViewManager/ViewManager.py" line="3114"/>
         <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="3122"/>
+        <location filename="../ViewManager/ViewManager.py" line="3123"/>
         <source>Goto Previous Method or Class</source>
         <translation>Gehe zur vorherigen Methode oder Klasse</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3122"/>
+        <location filename="../ViewManager/ViewManager.py" line="3123"/>
         <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="3132"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <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="3136"/>
+        <location filename="../ViewManager/ViewManager.py" line="3137"/>
         <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="3146"/>
+        <location filename="../ViewManager/ViewManager.py" line="3147"/>
         <source>Goto Next Method or Class</source>
         <translation>Gehe zur nächsten Methode oder Klasse</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3146"/>
+        <location filename="../ViewManager/ViewManager.py" line="3147"/>
         <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="3156"/>
+        <location filename="../ViewManager/ViewManager.py" line="3157"/>
         <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="3158"/>
+        <location filename="../ViewManager/ViewManager.py" line="3159"/>
         <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="3605"/>
+        <location filename="../ViewManager/ViewManager.py" line="3607"/>
         <source>Preview</source>
         <translation>Vorschau</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3610"/>
-        <source>Preview the current file in the web browser</source>
-        <translation>Zeige eine Vorschau der aktuellen Datei im Web Browser</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3612"/>
+        <source>Preview the current file in the web browser</source>
+        <translation>Zeige eine Vorschau der aktuellen Datei im Web Browser</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3614"/>
         <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 Web Browser mit einer Vorschau der aktuellen Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1461"/>
+        <location filename="../ViewManager/ViewManager.py" line="1462"/>
         <source>Meta+B</source>
         <translation>Meta+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1474"/>
+        <location filename="../ViewManager/ViewManager.py" line="1475"/>
         <source>Meta+F</source>
         <translation>Meta+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1486"/>
+        <location filename="../ViewManager/ViewManager.py" line="1487"/>
         <source>Meta+P</source>
         <translation>Meta+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1498"/>
+        <location filename="../ViewManager/ViewManager.py" line="1499"/>
         <source>Meta+N</source>
         <translation>Meta+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1559"/>
+        <location filename="../ViewManager/ViewManager.py" line="1560"/>
         <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="1575"/>
+        <location filename="../ViewManager/ViewManager.py" line="1576"/>
         <source>Move to start of display line</source>
         <translation>Zum Beginn der Anzeigezeile springen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1592"/>
+        <location filename="../ViewManager/ViewManager.py" line="1593"/>
         <source>Move to end of document line</source>
         <translation>Zum Ende der Dokumentenzeile springen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1600"/>
+        <location filename="../ViewManager/ViewManager.py" line="1601"/>
         <source>Meta+E</source>
         <translation>Meta+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1668"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Meta+V</source>
         <translation>Meta+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1674"/>
+        <location filename="../ViewManager/ViewManager.py" line="1675"/>
         <source>Move to start of document</source>
         <translation>Zum Dokumentenanfang springen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1692"/>
         <source>Move to end of document</source>
         <translation>Zum Dokumentenende springen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1737"/>
         <source>Meta+Shift+B</source>
         <translation>Meta+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1751"/>
+        <location filename="../ViewManager/ViewManager.py" line="1752"/>
         <source>Meta+Shift+F</source>
         <translation>Meta+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1766"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Meta+Shift+P</source>
         <translation>Meta+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1781"/>
+        <location filename="../ViewManager/ViewManager.py" line="1782"/>
         <source>Meta+Shift+N</source>
         <translation>Meta+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1849"/>
+        <location filename="../ViewManager/ViewManager.py" line="1850"/>
         <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="1867"/>
+        <location filename="../ViewManager/ViewManager.py" line="1868"/>
         <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="1875"/>
+        <location filename="../ViewManager/ViewManager.py" line="1876"/>
         <source>Meta+Shift+E</source>
         <translation>Meta+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1932"/>
+        <location filename="../ViewManager/ViewManager.py" line="1933"/>
         <source>Meta+Shift+V</source>
         <translation>Meta+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1939"/>
         <source>Extend selection to start of document</source>
         <translation>Auswahl zum Dokumentenanfang erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1946"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Ctrl+Shift+Up</source>
         <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1955"/>
+        <location filename="../ViewManager/ViewManager.py" line="1956"/>
         <source>Extend selection to end of document</source>
         <translation>Auswahl zum Dokumentenende erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1963"/>
+        <location filename="../ViewManager/ViewManager.py" line="1964"/>
         <source>Ctrl+Shift+Down</source>
         <translation>Ctrl+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1981"/>
+        <location filename="../ViewManager/ViewManager.py" line="1982"/>
         <source>Meta+H</source>
         <translation>Meta+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1990"/>
+        <location filename="../ViewManager/ViewManager.py" line="1991"/>
         <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="2011"/>
+        <location filename="../ViewManager/ViewManager.py" line="2012"/>
         <source>Meta+D</source>
         <translation>Meta+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2055"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Meta+K</source>
         <translation>Meta+K</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2164"/>
+        <location filename="../ViewManager/ViewManager.py" line="2165"/>
         <source>Move to end of display line</source>
         <translation>Zum Ende der Anzeigezeile springen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <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="2223"/>
+        <location filename="../ViewManager/ViewManager.py" line="2224"/>
         <source>Meta+Alt+Shift+N</source>
         <translation>Meta+Alt+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2238"/>
+        <location filename="../ViewManager/ViewManager.py" line="2239"/>
         <source>Meta+Alt+Shift+P</source>
         <translation>Meta+Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2256"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <source>Meta+Alt+Shift+B</source>
         <translation>Meta+Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2275"/>
         <source>Meta+Alt+Shift+F</source>
         <translation>Meta+Alt+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2280"/>
+        <location filename="../ViewManager/ViewManager.py" line="2281"/>
         <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="2299"/>
+        <location filename="../ViewManager/ViewManager.py" line="2300"/>
         <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="2309"/>
+        <location filename="../ViewManager/ViewManager.py" line="2310"/>
         <source>Meta+Alt+Shift+E</source>
         <translation>Meta+Alt+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2312"/>
+        <location filename="../ViewManager/ViewManager.py" line="2313"/>
         <source>Alt+Shift+End</source>
         <translation>Alt+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2333"/>
+        <location filename="../ViewManager/ViewManager.py" line="2334"/>
         <source>Alt+Shift+PgDown</source>
         <translation>Alt+Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2345"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <source>Meta+Alt+Shift+V</source>
         <translation>Meta+Alt+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2365"/>
+        <location filename="../ViewManager/ViewManager.py" line="2366"/>
         <source>Scroll to start of document</source>
         <translation>Zum Dokumentenanfang rollen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2380"/>
+        <location filename="../ViewManager/ViewManager.py" line="2381"/>
         <source>Scroll to end of document</source>
         <translation>Zum Dokumentenende rollen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2395"/>
+        <location filename="../ViewManager/ViewManager.py" line="2396"/>
         <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="2403"/>
+        <location filename="../ViewManager/ViewManager.py" line="2404"/>
         <source>Meta+L</source>
         <translation>Meta+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2410"/>
+        <location filename="../ViewManager/ViewManager.py" line="2411"/>
         <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="2425"/>
+        <location filename="../ViewManager/ViewManager.py" line="2426"/>
         <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="2441"/>
+        <location filename="../ViewManager/ViewManager.py" line="2442"/>
         <source>Move to end of previous word</source>
         <translation>Zum Ende des vorigen Wortes springen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2453"/>
+        <location filename="../ViewManager/ViewManager.py" line="2454"/>
         <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="2465"/>
+        <location filename="../ViewManager/ViewManager.py" line="2466"/>
         <source>Move to start of document line</source>
         <translation>Zum Beginn der Dokumentenzeile springen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2473"/>
+        <location filename="../ViewManager/ViewManager.py" line="2474"/>
         <source>Meta+A</source>
         <translation>Meta+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2480"/>
+        <location filename="../ViewManager/ViewManager.py" line="2481"/>
         <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="2491"/>
+        <location filename="../ViewManager/ViewManager.py" line="2492"/>
         <source>Meta+Shift+A</source>
         <translation>Meta+Shift+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2498"/>
+        <location filename="../ViewManager/ViewManager.py" line="2499"/>
         <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="2508"/>
+        <location filename="../ViewManager/ViewManager.py" line="2509"/>
         <source>Meta+Alt+Shift+A</source>
         <translation>Meta+Alt+Shift+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2516"/>
+        <location filename="../ViewManager/ViewManager.py" line="2517"/>
         <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="2535"/>
+        <location filename="../ViewManager/ViewManager.py" line="2536"/>
         <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="2549"/>
+        <location filename="../ViewManager/ViewManager.py" line="2550"/>
         <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="2564"/>
+        <location filename="../ViewManager/ViewManager.py" line="2565"/>
         <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="2581"/>
+        <location filename="../ViewManager/ViewManager.py" line="2582"/>
         <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="2598"/>
+        <location filename="../ViewManager/ViewManager.py" line="2599"/>
         <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="2612"/>
+        <location filename="../ViewManager/ViewManager.py" line="2613"/>
         <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="2627"/>
+        <location filename="../ViewManager/ViewManager.py" line="2628"/>
         <source>Stuttered move up one page</source>
         <translation>„Stotternd“ um eine Seite nach oben</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2639"/>
+        <location filename="../ViewManager/ViewManager.py" line="2640"/>
         <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="2652"/>
+        <location filename="../ViewManager/ViewManager.py" line="2653"/>
         <source>Stuttered move down one page</source>
         <translation>„Stotternd“ um eine Seite nach unten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2664"/>
+        <location filename="../ViewManager/ViewManager.py" line="2665"/>
         <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="2677"/>
+        <location filename="../ViewManager/ViewManager.py" line="2678"/>
         <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="2685"/>
+        <location filename="../ViewManager/ViewManager.py" line="2686"/>
         <source>Alt+Del</source>
         <translation>Alt+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2692"/>
+        <location filename="../ViewManager/ViewManager.py" line="2693"/>
         <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="2704"/>
+        <location filename="../ViewManager/ViewManager.py" line="2705"/>
         <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="2318"/>
+        <location filename="../ViewManager/ViewManager.py" line="2319"/>
         <source>Alt+Shift+PgUp</source>
         <translation>Alt+Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1134"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Toggle Comment</source>
         <translation>Kommentar umschalten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1134"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Ctrl+Shift+M</source>
         <comment>Edit|Toggle Comment</comment>
         <translation>Ctrl+Shift+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1142"/>
+        <location filename="../ViewManager/ViewManager.py" line="1143"/>
         <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="1146"/>
+        <location filename="../ViewManager/ViewManager.py" line="1147"/>
         <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="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Zoom reset</source>
         <translation>Vergrößerung zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Zoom &amp;reset</source>
         <translation>Vergrößerung &amp;zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3381"/>
-        <source>Reset the zoom of the text</source>
-        <translation>Die Textgröße zurücksetzen</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3383"/>
+        <source>Reset the zoom of the text</source>
+        <translation>Die Textgröße zurücksetzen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3385"/>
         <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="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation>Vergrößern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation>Verkleinern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="714"/>
         <source>Save a&amp;ll</source>
         <translation>&amp;Alle speichern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4094"/>
-        <source>Next Change</source>
-        <translation>Nächste Änderung</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4088"/>
-        <source>&amp;Next Change</source>
-        <translation>&amp;Nächste Änderung</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4096"/>
+        <source>Next Change</source>
+        <translation>Nächste Änderung</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4090"/>
+        <source>&amp;Next Change</source>
+        <translation>&amp;Nächste Änderung</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <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="4112"/>
-        <source>Previous Change</source>
-        <translation>Vorherige Änderung</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4105"/>
-        <source>&amp;Previous Change</source>
-        <translation>&amp;Vorherige Änderung</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4114"/>
+        <source>Previous Change</source>
+        <translation>Vorherige Änderung</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4107"/>
+        <source>&amp;Previous Change</source>
+        <translation>&amp;Vorherige Änderung</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4116"/>
         <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="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Check spelling</source>
         <translation>Rechtschreibprüfung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Check &amp;spelling...</source>
         <translation>&amp;Rechtschreibprüfung...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4223"/>
+        <location filename="../ViewManager/ViewManager.py" line="4225"/>
         <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="4272"/>
-        <source>Edit Dictionary</source>
-        <translation>Wörterbuch bearbeiten</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4274"/>
+        <source>Edit Dictionary</source>
+        <translation>Wörterbuch bearbeiten</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4276"/>
         <source>Project Word List</source>
         <translation>Projekt-Wörterliste</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4277"/>
+        <location filename="../ViewManager/ViewManager.py" line="4279"/>
         <source>Project Exception List</source>
         <translation>Projekt-Ausnahmenliste</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4282"/>
+        <location filename="../ViewManager/ViewManager.py" line="4284"/>
         <source>User Word List</source>
         <translation>Nutzer-Wörterliste</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4285"/>
+        <location filename="../ViewManager/ViewManager.py" line="4287"/>
         <source>User Exception List</source>
         <translation>Nutzer-Ausnahmenliste</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6255"/>
+        <location filename="../ViewManager/ViewManager.py" line="6257"/>
         <source>Edit Spelling Dictionary</source>
         <translation>Wörterbuch bearbeiten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6232"/>
+        <location filename="../ViewManager/ViewManager.py" line="6234"/>
         <source>Editing {0}</source>
         <translation>Bearbeite {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6214"/>
+        <location filename="../ViewManager/ViewManager.py" line="6216"/>
         <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="6243"/>
+        <location filename="../ViewManager/ViewManager.py" line="6245"/>
         <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="6255"/>
+        <location filename="../ViewManager/ViewManager.py" line="6257"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation>Das Wörterbuch wurde erfolgreich gespeichert.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2929"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>Search current word forward</source>
         <translation>Aktuelles Wort vorwärts suchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2929"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation>Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2940"/>
+        <location filename="../ViewManager/ViewManager.py" line="2941"/>
         <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="2943"/>
+        <location filename="../ViewManager/ViewManager.py" line="2944"/>
         <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="2952"/>
+        <location filename="../ViewManager/ViewManager.py" line="2953"/>
         <source>Search current word backward</source>
         <translation>Aktuelles Wort rückwärts suchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2952"/>
+        <location filename="../ViewManager/ViewManager.py" line="2953"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation>Ctrl+,</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2963"/>
+        <location filename="../ViewManager/ViewManager.py" line="2964"/>
         <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="2966"/>
+        <location filename="../ViewManager/ViewManager.py" line="2967"/>
         <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="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <source>Search in Open Files</source>
         <translation>Suchen in geöffneten Dateien</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <source>Search in Open Files...</source>
         <translation>Suchen in geöffneten Dateien...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <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="3220"/>
+        <location filename="../ViewManager/ViewManager.py" line="3221"/>
         <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="3222"/>
+        <location filename="../ViewManager/ViewManager.py" line="3223"/>
         <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="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <source>Replace in Open Files</source>
         <translation>Ersetzen in geöffneten Dateien</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <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="3242"/>
+        <location filename="../ViewManager/ViewManager.py" line="3243"/>
         <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="3244"/>
+        <location filename="../ViewManager/ViewManager.py" line="3245"/>
         <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="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <source>Replace in Open Files...</source>
         <translation>Ersetzen in geöffneten Dateien...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1399"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Sort</source>
         <translation>Sortieren</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1399"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Ctrl+Alt+S</source>
         <comment>Edit|Sort</comment>
         <translation>Ctrl+Alt+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1406"/>
+        <location filename="../ViewManager/ViewManager.py" line="1407"/>
         <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="1409"/>
+        <location filename="../ViewManager/ViewManager.py" line="1410"/>
         <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="4801"/>
+        <location filename="../ViewManager/ViewManager.py" line="4803"/>
         <source>Language: {0}</source>
         <translation>Sprache: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4808"/>
+        <location filename="../ViewManager/ViewManager.py" line="4810"/>
         <source>EOL Mode: {0}</source>
         <translation>EOL-Modus: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3491"/>
         <source>New Document View</source>
         <translation>Neue Dokumentenansicht</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3491"/>
         <source>New &amp;Document View</source>
         <translation>Neue &amp;Dokumentenansicht</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3494"/>
-        <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="3496"/>
+        <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="3498"/>
         <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="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3508"/>
         <source>New Document View (with new split)</source>
         <translation>Neue Dokumentenansicht (in neuem Abschnitt)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3513"/>
+        <location filename="../ViewManager/ViewManager.py" line="3515"/>
         <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="3516"/>
+        <location filename="../ViewManager/ViewManager.py" line="3518"/>
         <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="3972"/>
+        <location filename="../ViewManager/ViewManager.py" line="3974"/>
         <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="3991"/>
+        <location filename="../ViewManager/ViewManager.py" line="3993"/>
         <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="4009"/>
+        <location filename="../ViewManager/ViewManager.py" line="4011"/>
         <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="2748"/>
+        <location filename="../ViewManager/ViewManager.py" line="2749"/>
         <source>Complete</source>
         <translation>Vervollständigen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1277"/>
         <source>&amp;Complete</source>
         <translation>&amp;Vervollständigen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1277"/>
         <source>Ctrl+Space</source>
         <comment>Edit|Complete</comment>
         <translation>Ctrl+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1283"/>
+        <location filename="../ViewManager/ViewManager.py" line="1284"/>
         <source>Complete current word</source>
         <translation>Aktuelles Wort vervollständigen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1285"/>
+        <location filename="../ViewManager/ViewManager.py" line="1286"/>
         <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="1294"/>
+        <location filename="../ViewManager/ViewManager.py" line="1295"/>
         <source>Complete from Document</source>
         <translation>Vervollständigung vom Dokument</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1294"/>
+        <location filename="../ViewManager/ViewManager.py" line="1295"/>
         <source>Ctrl+Shift+Space</source>
         <comment>Edit|Complete from Document</comment>
         <translation>Ctrl+Shift+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1304"/>
+        <location filename="../ViewManager/ViewManager.py" line="1305"/>
         <source>Complete current word from Document</source>
         <translation>Aktuelles Wort vom Dokument vervollständigen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1307"/>
+        <location filename="../ViewManager/ViewManager.py" line="1308"/>
         <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="1317"/>
+        <location filename="../ViewManager/ViewManager.py" line="1318"/>
         <source>Complete from APIs</source>
         <translation>Vervollständigung von APIs</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1317"/>
+        <location filename="../ViewManager/ViewManager.py" line="1318"/>
         <source>Ctrl+Alt+Space</source>
         <comment>Edit|Complete from APIs</comment>
         <translation>Ctrl+Alt+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1328"/>
         <source>Complete current word from APIs</source>
         <translation>Aktuelles Wort von APIs vervollständigen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1330"/>
+        <location filename="../ViewManager/ViewManager.py" line="1331"/>
         <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="1340"/>
+        <location filename="../ViewManager/ViewManager.py" line="1341"/>
         <source>Complete from Document and APIs</source>
         <translation>Vervollständigung vom Dokument und von APIs</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1340"/>
+        <location filename="../ViewManager/ViewManager.py" line="1341"/>
         <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="1350"/>
+        <location filename="../ViewManager/ViewManager.py" line="1351"/>
         <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="1353"/>
+        <location filename="../ViewManager/ViewManager.py" line="1354"/>
         <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="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>Meta+Alt+Space</source>
         <comment>Edit|Calltip</comment>
         <translation>Meta+Alt+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="697"/>
+        <location filename="../ViewManager/ViewManager.py" line="698"/>
         <source>Save Copy</source>
         <translation>Kopie speichern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="697"/>
+        <location filename="../ViewManager/ViewManager.py" line="698"/>
         <source>Save &amp;Copy...</source>
         <translation>&amp;Kopie speichern...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="702"/>
+        <location filename="../ViewManager/ViewManager.py" line="703"/>
         <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="704"/>
+        <location filename="../ViewManager/ViewManager.py" line="705"/>
         <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>
@@ -81308,141 +81307,141 @@
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2995"/>
         <source>Replace and Search</source>
         <translation>Ersetzen und Suchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2995"/>
         <source>Meta+R</source>
         <comment>Search|Replace and Search</comment>
         <translation>Meta+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3004"/>
+        <location filename="../ViewManager/ViewManager.py" line="3005"/>
         <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="3007"/>
+        <location filename="../ViewManager/ViewManager.py" line="3008"/>
         <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="3018"/>
+        <location filename="../ViewManager/ViewManager.py" line="3019"/>
         <source>Replace Occurrence</source>
         <translation>Fundstelle ersetzen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3018"/>
+        <location filename="../ViewManager/ViewManager.py" line="3019"/>
         <source>Ctrl+Meta+R</source>
         <comment>Search|Replace Occurrence</comment>
         <translation>Ctrl+Meta+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3028"/>
+        <location filename="../ViewManager/ViewManager.py" line="3029"/>
         <source>Replace the found text</source>
         <translation>Ersetzt den gefundenen Text</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3030"/>
+        <location filename="../ViewManager/ViewManager.py" line="3031"/>
         <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="3040"/>
+        <location filename="../ViewManager/ViewManager.py" line="3041"/>
         <source>Replace All</source>
         <translation>Alle ersetzen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3040"/>
+        <location filename="../ViewManager/ViewManager.py" line="3041"/>
         <source>Shift+Meta+R</source>
         <comment>Search|Replace All</comment>
         <translation>Shift+Meta+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3050"/>
+        <location filename="../ViewManager/ViewManager.py" line="3051"/>
         <source>Replace search text occurrences</source>
         <translation>Ersetzt alle Fundstellen des Suchtextes</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3052"/>
+        <location filename="../ViewManager/ViewManager.py" line="3053"/>
         <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="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1382"/>
         <source>Code Info</source>
         <translation>Code Info</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1382"/>
         <source>Ctrl+Alt+I</source>
         <comment>Edit|Code Info</comment>
         <translation>Ctrl+Alt+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1389"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Show Code Info</source>
         <translation>Code Informationen anzeigen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1392"/>
         <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="3462"/>
-        <source>Clear all folds</source>
-        <translation>Alle Faltungen aufklappen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3458"/>
-        <source>Clear &amp;all folds</source>
-        <translation>Alle &amp;Faltungen aufklappen</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3464"/>
+        <source>Clear all folds</source>
+        <translation>Alle Faltungen aufklappen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3460"/>
+        <source>Clear &amp;all folds</source>
+        <translation>Alle &amp;Faltungen aufklappen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3466"/>
         <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="2120"/>
+        <location filename="../ViewManager/ViewManager.py" line="2121"/>
         <source>Reverse selected lines</source>
         <translation>Ausgewählte Zeilen umkehren</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2120"/>
+        <location filename="../ViewManager/ViewManager.py" line="2121"/>
         <source>Meta+Alt+R</source>
         <translation>Meta+Ctrl+Alt+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3622"/>
+        <location filename="../ViewManager/ViewManager.py" line="3624"/>
         <source>Python AST Viewer</source>
         <translation>Python AST Anzeige</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3627"/>
-        <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="3629"/>
+        <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="3631"/>
         <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="3639"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>Python Disassembly Viewer</source>
         <translation>Python Disassembly Anzeige</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3646"/>
-        <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="3648"/>
+        <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="3650"/>
         <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>
@@ -81462,23 +81461,23 @@
         <translation>&lt;b&gt;Rückwärtssuchen&lt;/b&gt;&lt;p&gt;Nach der vorherigen Textstelle im Shell Fenster suchen. Der zuvor eingegebene Suchtext und die Suchoptionen werden weiterverwendet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1418"/>
+        <location filename="../ViewManager/ViewManager.py" line="1419"/>
         <source>Generate Docstring</source>
         <translation>Docstring erzeugen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1418"/>
+        <location filename="../ViewManager/ViewManager.py" line="1419"/>
         <source>Ctrl+Alt+D</source>
         <comment>Edit|Generate Docstring</comment>
         <translation>Ctrl+Alt+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1425"/>
+        <location filename="../ViewManager/ViewManager.py" line="1426"/>
         <source>Generate a docstring for the current function/method</source>
         <translation>Erzeuge eine Docstring für die aktuelle Funktion/Methode</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1428"/>
+        <location filename="../ViewManager/ViewManager.py" line="1429"/>
         <source>&lt;b&gt;Generate Docstring&lt;/b&gt;&lt;p&gt;Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Docstring erzeugen&lt;/b&gt;&lt;p&gt;Erzeuge eine Docstring für die aktuelle Funktion/Methode falls die Einfügemarke auf der Startzeile der Funktionsdefinition oder der Zeile nach deren Ende steht. Der Docstring wird an der korrekten Stelle eingefügt und die Einfügemarke wird an das Ende der Beschreibungszeile gesetzt.&lt;/p&gt;</translation>
     </message>
@@ -81960,32 +81959,32 @@
         <translation>Aktualisieren</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="342"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="346"/>
         <source>&lt;virtualenv did not finish within 5s.&gt;</source>
         <translation>&lt;virtualenv endete nicht innerhalb von 5s.&gt;</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="360"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="364"/>
         <source>&lt;No suitable virtualenv found.&gt;</source>
         <translation>&lt;Kein funktionsfähiges virtualenv gefunden.&gt;</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="362"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="366"/>
         <source>virtualenv Version: {0}</source>
         <translation>virtualenv Version: {0}</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="396"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="400"/>
         <source>&lt;pyvenv did not finish within 5s.&gt;</source>
         <translation>&lt;pyvenv endete nicht innerhalb von 5s.&gt;</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="416"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="420"/>
         <source>&lt;No suitable pyvenv found.&gt;</source>
         <translation>&lt;Kein funktionsfähiges pyvenv gefunden.&gt;</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="418"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="422"/>
         <source>pyvenv Version: {0}</source>
         <translation>pyvenv Version: {0}</translation>
     </message>
@@ -82120,7 +82119,7 @@
         <translation>Textdateien (*.txt);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="430"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="434"/>
         <source>conda Version: {0}</source>
         <translation>conda Version: {0}</translation>
     </message>
@@ -82143,14 +82142,14 @@
         <translation>Fehler</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="110"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="112"/>
         <source>Executing: {0}
 </source>
         <translation>Ausführung: {0}
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="154"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="163"/>
         <source>Failed
 
 </source>
@@ -82159,7 +82158,7 @@
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="166"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="175"/>
         <source>
 virtualenv finished.
 </source>
@@ -82168,14 +82167,14 @@
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="195"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="204"/>
         <source>No suitable virtualenv program could be started.
 </source>
         <translation>Es konnte kein funktionierendes virtualenv Programm gestartet werden.
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="259"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="268"/>
         <source>
 Writing log file &apos;{0}&apos;.
 </source>
@@ -82184,21 +82183,21 @@
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="264"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="273"/>
         <source>Output:
 </source>
         <translation>Ausgabe:
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="269"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="278"/>
         <source>Errors:
 </source>
         <translation>Fehler:
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="272"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="281"/>
         <source>The logfile &apos;{0}&apos; could not be written.
 Reason: {1}
 </source>
@@ -82207,14 +82206,14 @@
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="302"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="311"/>
         <source>Done.
 </source>
         <translation>Fertig.
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="292"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="301"/>
         <source>
 Writing script file &apos;{0}&apos;.
 </source>
@@ -82223,7 +82222,7 @@
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="299"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="308"/>
         <source>The script file &apos;{0}&apos; could not be written.
 Reason: {1}
 </source>
@@ -82246,7 +82245,7 @@
 &lt;p&gt;Dies zeigt die Fehler des virualenv Kommandos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="164"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="173"/>
         <source>
 pyvenv finished.
 </source>
@@ -82255,7 +82254,7 @@
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="191"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="200"/>
         <source>No suitable pyvenv program could be started.
 </source>
         <translation>Es konnte kein funktionierendes pyvenv Programm gestartet werden.
@@ -82715,82 +82714,82 @@
 <context>
     <name>WatchPointViewer</name>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="47"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="49"/>
         <source>Watchpoints</source>
         <translation>Beobachtungspunkte</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="174"/>
-        <source>Add</source>
-        <translation>Hinzufügen</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="143"/>
-        <source>Enable</source>
-        <translation>Aktivieren</translation>
-    </message>
-    <message>
         <location filename="../Debugger/WatchPointViewer.py" line="178"/>
-        <source>Enable all</source>
-        <translation>Alle aktivieren</translation>
+        <source>Add</source>
+        <translation>Hinzufügen</translation>
     </message>
     <message>
         <location filename="../Debugger/WatchPointViewer.py" line="147"/>
-        <source>Disable</source>
-        <translation>Deaktivieren</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="183"/>
-        <source>Disable all</source>
-        <translation>Alle deaktivieren</translation>
+        <source>Enable</source>
+        <translation>Aktivieren</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="182"/>
+        <source>Enable all</source>
+        <translation>Alle aktivieren</translation>
     </message>
     <message>
         <location filename="../Debugger/WatchPointViewer.py" line="151"/>
+        <source>Disable</source>
+        <translation>Deaktivieren</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="187"/>
+        <source>Disable all</source>
+        <translation>Alle deaktivieren</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="155"/>
         <source>Delete</source>
         <translation>Löschen</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="188"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="192"/>
         <source>Delete all</source>
         <translation>Alle löschen</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="176"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="180"/>
         <source>Enable selected</source>
         <translation>Ausgewählte aktivieren</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="181"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="185"/>
         <source>Disable selected</source>
         <translation>Ausgewählte deaktivieren</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="186"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="190"/>
         <source>Delete selected</source>
         <translation>Ausgewählte löschen</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="141"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="145"/>
         <source>Edit...</source>
         <translation>Bearbeiten...</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="240"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="244"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; already exists.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Ein Beobachtungsausdruck „&lt;b&gt;{0}&lt;/b&gt;“ existiert bereits.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="245"/>
-        <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Ein Beobachtungsausdruck „&lt;b&gt;{0}&lt;/b&gt;“ für die Variable &lt;b&gt;{1}&lt;/b&gt; existiert bereits.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../Debugger/WatchPointViewer.py" line="249"/>
+        <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Ein Beobachtungsausdruck „&lt;b&gt;{0}&lt;/b&gt;“ für die Variable &lt;b&gt;{1}&lt;/b&gt; existiert bereits.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="253"/>
         <source>Watch expression already exists</source>
         <translation>Beaobachtungsausdruck existiert bereits</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="191"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="195"/>
         <source>Configure...</source>
         <translation>Einstellungen...</translation>
     </message>
@@ -83227,34 +83226,34 @@
         <translation>Alles auswählen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="42"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="43"/>
         <source>Info</source>
         <translation>Info</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="43"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="45"/>
         <source>Warning</source>
         <translation>Warnung</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="44"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="47"/>
         <source>Error</source>
         <translation>Fehler</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="97"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="100"/>
         <source>[{0}] {1}</source>
         <translation>[{0}] {1}</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="102"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="105"/>
         <source> at line {0}
 </source>
         <translation> in Zeile {0}
 </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="107"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="110"/>
         <source>URL: {0}
 </source>
         <translation>URL: {0}
@@ -83823,12 +83822,12 @@
         <translation> s</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="185"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="188"/>
         <source>Suspicuous URL detected</source>
         <translation>Fragwürdige URL entdeckt</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="185"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="188"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
         <translation>&lt;p&gt;Die URL &lt;b&gt;{0}&lt;/b&gt; wurde in der Safe Browsing Datenbank gefunden.&lt;/p&gt;{1}</translation>
     </message>
@@ -84086,12 +84085,12 @@
         <translation>Interne PDF-Anzeige aktivieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="702"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="706"/>
         <source>SSL Info</source>
         <translation>SSL Info</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="702"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="706"/>
         <source>This site does not contain SSL information.</source>
         <translation>Diese Seite enthält keine SSL Information.</translation>
     </message>
@@ -84157,107 +84156,107 @@
         <translation>Zeige ein Navigationsmenü an</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="135"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="136"/>
         <source>Show a navigation menu for closed tabs</source>
         <translation>Zeige ein Navigationsmenü für geschlossene Tabs an</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="149"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="152"/>
         <source>Open a new web browser tab</source>
         <translation>Öffne ein neues Web Browser Register</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="163"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="166"/>
         <source>New Tab</source>
         <translation>Neues Register</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="167"/>
-        <source>Move Left</source>
-        <translation>nach links verschieben</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="170"/>
+        <source>Move Left</source>
+        <translation>nach links verschieben</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="173"/>
         <source>Move Right</source>
         <translation>nach rechts verschieben</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="174"/>
-        <source>Duplicate Page</source>
-        <translation>Seite duplizieren</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="177"/>
-        <source>Close</source>
-        <translation>Schließen</translation>
+        <source>Duplicate Page</source>
+        <translation>Seite duplizieren</translation>
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="180"/>
+        <source>Close</source>
+        <translation>Schließen</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="183"/>
         <source>Close Others</source>
         <translation>Andere schließen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="211"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="214"/>
         <source>Close All</source>
         <translation>Alle schließen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="186"/>
-        <source>Print Preview</source>
-        <translation>Druckvorschau</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="189"/>
-        <source>Print</source>
-        <translation>Drucken</translation>
+        <source>Print Preview</source>
+        <translation>Druckvorschau</translation>
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="192"/>
+        <source>Print</source>
+        <translation>Drucken</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="195"/>
         <source>Print as PDF</source>
         <translation>Als PDF drucken</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="213"/>
-        <source>Reload All</source>
-        <translation>Alle neu laden</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="216"/>
+        <source>Reload All</source>
+        <translation>Alle neu laden</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="219"/>
         <source>Bookmark All Tabs</source>
         <translation>Lesezeichen für alle Tabs</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="220"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="223"/>
         <source>Restore Closed Tab</source>
         <translation>Geschlossenen Tabs wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="456"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="459"/>
         <source>...</source>
         <translation>...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="912"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="922"/>
         <source>Loading...</source>
         <translation>Lade...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="921"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="931"/>
         <source>Finished loading</source>
         <translation>Seite geladen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="888"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="898"/>
         <source>Failed to load</source>
         <translation>Fehler beim Laden</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
         <source>Are you sure you want to close the window?</source>
         <translation>Möchten Sie das Fenster wirklich schließen?</translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
         <source>Are you sure you want to close the window?
 You have %n tab(s) open.</source>
         <translation>
@@ -84268,47 +84267,47 @@
         </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="969"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="979"/>
         <source>&amp;Quit</source>
         <translation>B&amp;eenden</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="982"/>
         <source>C&amp;lose Current Tab</source>
         <translation>A&amp;ktuelles Unterfenster schließen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1153"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1165"/>
         <source>Restore All Closed Tabs</source>
         <translation>Alle geschlossenen Tabs wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1155"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1167"/>
         <source>Clear List</source>
         <translation>Liste löschen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="250"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="253"/>
         <source>Unmute Tab</source>
         <translation>Ton einschalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="254"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="257"/>
         <source>Mute Tab</source>
         <translation>Stumm schalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="753"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="763"/>
         <source>Print to PDF</source>
         <translation>Als PDF drucken</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="703"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="713"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Soll sie überschrieben werden?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="753"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="763"/>
         <source>&lt;p&gt;The PDF could not be written to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Error:&lt;/b&gt; {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Das PDF konnte nicht in die Datei &lt;b&gt;{0}&lt;/b&gt; gespeichert werden.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Fehler:&lt;/b&gt; {1}&lt;/p&gt;</translation>
     </message>
@@ -84316,7 +84315,7 @@
 <context>
     <name>WebBrowserTools</name>
     <message>
-        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="250"/>
+        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="254"/>
         <source>&lt;unknown&gt;</source>
         <translation>&lt;unbekannt&gt;</translation>
     </message>
@@ -84345,8 +84344,8 @@
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserView.py" line="666"/>
-        <source>Open Link in New Tab	Ctrl+LMB</source>
-        <translation>Link in neuem Fenster öffnen	Strg+LMK</translation>
+        <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source>
+        <translation>Link in neuem Fenster öffnen<byte value="x9"/>Strg+LMK</translation>
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserView.py" line="672"/>
@@ -84529,7 +84528,7 @@
         <translation>Zur Websuchleiste hinzufügen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1791"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1816"/>
         <source>Try reloading the page or closing some tabs to make more memory available.</source>
         <translation>Versuche die Seite neu zu laden oder schließe einige Register, um Speicher freizumachen.</translation>
     </message>
@@ -84549,22 +84548,22 @@
         <translation>Bild suchen mit ...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1780"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1797"/>
         <source>Render Process terminated abnormally</source>
         <translation>Renderprozess wurde unnormal terminiert</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1783"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1804"/>
         <source>The render process crashed while loading this page.</source>
         <translation>Der Renderprozess ist beim Laden der Seite abgestürzt.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1786"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1811"/>
         <source>The render process was killed.</source>
         <translation>Der Renderprozess wurde abgeschossen.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1788"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1813"/>
         <source>The render process terminated while loading this page.</source>
         <translation>Der Renderprozess terminierte beim Laden der Seite.</translation>
     </message>
@@ -84574,37 +84573,37 @@
         <translation>Keine Vorschläge</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1914"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1939"/>
         <source>Web Archive (*.mhtml *.mht)</source>
         <translation>Web Archiv (*.mhtml *.mht)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1915"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1940"/>
         <source>HTML File (*.html *.htm)</source>
         <translation>HTML Datei (*.html *.htm)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1916"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1941"/>
         <source>HTML File with all resources (*.html *.htm)</source>
         <translation>HTML Datei mit allen Resourcen (*.html *.htm)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1939"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1964"/>
         <source>Save Web Page</source>
         <translation>Web Seite speichern</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1731"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1742"/>
         <source>Empty Page</source>
         <translation>Leere Seite</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2289"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2321"/>
         <source>Quota Request</source>
         <translation>Speicherplatzanfrage</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2289"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2321"/>
         <source>&lt;p&gt; Allow the website at &lt;b&gt;{0}&lt;/b&gt; to use &lt;b&gt;{1}&lt;/b&gt; of persistent storage?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Website &lt;b&gt;{0}&lt;/b&gt; gestatten, &lt;b&gt;{1}&lt;/b&gt; permanenten Speicherplatz zu verwenden?&lt;/p&gt;</translation>
     </message>
@@ -84728,2002 +84727,2002 @@
         <translation>Inhalt</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1467"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1472"/>
         <source>Index</source>
         <translation>Index</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1480"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1485"/>
         <source>Search</source>
         <translation>Suchen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1743"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1748"/>
         <source>JavaScript Console</source>
         <translation>JavaScript-Konsole</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>New Tab</source>
         <translation>Neues Register</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>&amp;New Tab</source>
         <translation>&amp;Neues Register</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>Ctrl+T</source>
         <comment>File|New Tab</comment>
         <translation>Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="666"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="671"/>
         <source>Open a new web browser tab</source>
         <translation>Öffne ein neues Web Browser Register</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="667"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="672"/>
         <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neues Register&lt;/b&gt;&lt;p&gt;Dies öffnet ein neues Web Browser Register.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>New Window</source>
         <translation>Neues Fenster</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>New &amp;Window</source>
         <translation>Neues &amp;Fenster</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>Ctrl+N</source>
         <comment>File|New Window</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="680"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="685"/>
         <source>Open a new web browser window</source>
         <translation>Öffne ein neues Web Browser Fenster</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="681"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="686"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new web browser window in the current privacy mode.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neues Fenster&lt;/b&gt;&lt;p&gt;Dies öffnet ein neues Web Browser Fenster im aktuellen Privatsphärenmodus.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>New Private Window</source>
         <translation>Neues Privates Fenster</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="689"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="694"/>
         <source>New &amp;Private Window</source>
         <translation>Neues &amp;Privates Fenster</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="689"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="694"/>
         <source>Ctrl+Shift+P</source>
         <comment>File|New Private Window</comment>
         <translation>Ctrl+Shift+P</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="695"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="700"/>
         <source>Open a new private web browser window</source>
         <translation>Öffnet ein neues privates Web Browser Fenster</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="697"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="702"/>
         <source>&lt;b&gt;New Private Window&lt;/b&gt;&lt;p&gt;This opens a new private web browser window by starting a new web browser instance in private mode.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neues Privates Fenster&lt;/b&gt;&lt;p&gt;Dies startet ein neues privates Web Browser Fenster durch Starten einer neuen Web Browser Instanz im Privatmodus.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2503"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2508"/>
         <source>Open File</source>
         <translation>Datei öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="705"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="710"/>
         <source>&amp;Open File</source>
         <translation>Datei &amp;öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="705"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="710"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="711"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="716"/>
         <source>Open a file for display</source>
         <translation>Öffnet eine Datei zur Anzeige</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="712"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="717"/>
         <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new file for display. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Datei öffnen&lt;/b&gt;&lt;p&gt;Dies öffnet eine neue Datei zur Anzeige. Es wird zunächst ein Dateiauswahldialog angezeigt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Open File in New Tab</source>
         <translation>Datei in neuem Register öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Open File in New &amp;Tab</source>
         <translation>Datei in neuem &amp;Register öffnen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Shift+Ctrl+O</source>
         <comment>File|Open in new tab</comment>
         <translation>Shift+Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="726"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="731"/>
         <source>Open a file for display in a new tab</source>
         <translation>Öffnet eine Datei zur Anzeige in einem neuen Register</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="733"/>
         <source>&lt;b&gt;Open File in New Tab&lt;/b&gt;&lt;p&gt;This opens a new file for display in a new tab. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Datei in neuem Register öffnen&lt;/b&gt;&lt;p&gt;Dies öffnet eine Datei zur Anzeige in einem neuen Register. Es wird zunächst ein Dateiauswahldialog angezeigt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="754"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="759"/>
         <source>Save Page Screen</source>
         <translation>Bildschirmfoto speichern</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="754"/>
-        <source>Save Page Screen...</source>
-        <translation>Bildschirmfoto speichern...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="759"/>
+        <source>Save Page Screen...</source>
+        <translation>Bildschirmfoto speichern...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="764"/>
         <source>Save the visible part of the current page as a screen shot</source>
         <translation>Speichert den sichtbaren Bereich der aktuellen Seite als Bildschirmfoto</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="772"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="777"/>
         <source>Import Bookmarks</source>
         <translation>Lesezeichen importieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="772"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="777"/>
         <source>&amp;Import Bookmarks...</source>
         <translation>Lesezeichen &amp;importieren...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="776"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="781"/>
         <source>Import bookmarks from other browsers</source>
         <translation>Importiere Lesezeichen von anderen Browsern</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="778"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="783"/>
         <source>&lt;b&gt;Import Bookmarks&lt;/b&gt;&lt;p&gt;Import bookmarks from other browsers.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Lesezeichen importieren&lt;/b&gt;&lt;p&gt;Importiere Lesezeichen von anderen Browsern.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="786"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="791"/>
         <source>Export Bookmarks</source>
         <translation>Lesezeichen exportieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="786"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="791"/>
         <source>&amp;Export Bookmarks...</source>
         <translation>Lesezeichen &amp;exportieren...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="790"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="795"/>
         <source>Export the bookmarks into a file</source>
         <translation>Exportiert die Lesezeichen in eine Datei</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="792"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="797"/>
         <source>&lt;b&gt;Export Bookmarks&lt;/b&gt;&lt;p&gt;Export the bookmarks into a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Lesezeichen exportieren&lt;/b&gt;&lt;p&gt;Exportiert die Lesezeichen in eine Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2122"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2127"/>
         <source>Print</source>
         <translation>Drucken</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="800"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="805"/>
         <source>&amp;Print</source>
         <translation>&amp;Drucken</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="800"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="805"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation>Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="806"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="811"/>
         <source>Print the displayed help</source>
         <translation>Druckt die angezeigte Hilfe</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="807"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="812"/>
         <source>&lt;b&gt;Print&lt;/b&gt;&lt;p&gt;Print the displayed help text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Drucken&lt;/b&gt;&lt;p&gt;Druckt den angezeigten Hilfetext.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="814"/>
-        <source>Print as PDF</source>
-        <translation>Als PDF drucken</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="819"/>
+        <source>Print as PDF</source>
+        <translation>Als PDF drucken</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="824"/>
         <source>Print the displayed help as PDF</source>
         <translation>Druckt die angezeigte Hilfe als PDF</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="821"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="826"/>
         <source>&lt;b&gt;Print as PDF&lt;/b&gt;&lt;p&gt;Print the displayed help text as a PDF file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Als PDF drucken&lt;/b&gt;&lt;p&gt;Druckt den angezeigten Hilfetext als PDF-Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="829"/>
-        <source>Print Preview</source>
-        <translation>Druckvorschau</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="834"/>
+        <source>Print Preview</source>
+        <translation>Druckvorschau</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="839"/>
         <source>Print preview of the displayed help</source>
         <translation>Druckvorschau der angezeigten Hilfe</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="836"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="841"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the displayed help text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Druckvorschau&lt;/b&gt;&lt;p&gt;Zeigt eine Druckvorschau des angezeigten Hilfetextes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>Close</source>
         <translation>Schließen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>&amp;Close</source>
         <translation>Schl&amp;ießen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="864"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="869"/>
         <source>Close the current help window</source>
         <translation>Schließt das aktuelle Fenster</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="866"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="871"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Schließen&lt;/b&gt;&lt;p&gt;Schließt das aktuelle Web Browser Fenster.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="873"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="878"/>
         <source>Close All</source>
         <translation>Alle schließen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="873"/>
-        <source>Close &amp;All</source>
-        <translation>Alle &amp;schließen</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="877"/>
-        <source>Close all help windows</source>
-        <translation>Schließt alle Fenster</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="878"/>
+        <source>Close &amp;All</source>
+        <translation>Alle &amp;schließen</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="882"/>
+        <source>Close all help windows</source>
+        <translation>Schließt alle Fenster</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="883"/>
         <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all web browser windows except the first one.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Alle schließen&lt;/b&gt;&lt;p&gt;Schließt alle Web Browser Fenster mit Ausnahme des ersten.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="886"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="891"/>
         <source>Quit</source>
         <translation>Beenden</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2854"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2859"/>
         <source>&amp;Quit</source>
         <translation>B&amp;eenden</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="886"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="891"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>Backward</source>
         <translation>Zurück</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>&amp;Backward</source>
         <translation>&amp;Zurück</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>Alt+Left</source>
         <comment>Go|Backward</comment>
         <translation>Alt+Left</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="906"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="911"/>
         <source>Move one screen backward</source>
         <translation>Eine Seite zurück</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="907"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="912"/>
         <source>&lt;b&gt;Backward&lt;/b&gt;&lt;p&gt;Moves one screen backward. If none is available, this action is disabled.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zurück&lt;/b&gt;&lt;p&gt;Bewegt die Anzeige rückwärts. Falls keine Anzeige möglich ist, ist diese Aktion inaktiv.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>Forward</source>
         <translation>Vorwärts</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>&amp;Forward</source>
         <translation>&amp;Vorwärts</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>Alt+Right</source>
         <comment>Go|Forward</comment>
         <translation>Alt+Right</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="921"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="926"/>
         <source>Move one screen forward</source>
         <translation>Eine Seite vorwärts</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="923"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="928"/>
         <source>&lt;b&gt;Forward&lt;/b&gt;&lt;p&gt;Moves one screen forward. If none is available, this action is disabled.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zurück&lt;/b&gt;&lt;p&gt;Bewegt die Anzeige vorwärts. Falls keine Anzeige möglich ist, ist diese Aktion inaktiv.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>Home</source>
         <translation>Home</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>&amp;Home</source>
         <translation>&amp;Anfang</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>Ctrl+Home</source>
         <comment>Go|Home</comment>
         <translation>Ctrl+Home</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="939"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="944"/>
         <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Anfang&lt;/b&gt;&lt;p&gt;Zeigt die Startseite an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>Reload</source>
         <translation>Erneut laden</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>&amp;Reload</source>
         <translation>E&amp;rneut laden</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>Ctrl+R</source>
         <comment>Go|Reload</comment>
         <translation>Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>F5</source>
         <comment>Go|Reload</comment>
         <translation>F5</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="953"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="958"/>
         <source>Reload the current screen</source>
         <translation>Die aktuelle Seite erneut laden</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="955"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="960"/>
         <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Erneut laden&lt;/b&gt;&lt;p&gt;Lädt die aktuelle Seite erneut.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Stop</source>
         <translation>Anhalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>&amp;Stop</source>
         <translation>An&amp;halten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Ctrl+.</source>
         <comment>Go|Stop</comment>
         <translation>Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Esc</source>
         <comment>Go|Stop</comment>
         <translation>Esc</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="969"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="974"/>
         <source>Stop loading</source>
         <translation>Laden anhalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="970"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="975"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Anhalten&lt;/b&gt;&lt;p&gt;Hält das Laden der aktuellen Seite an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>Copy</source>
         <translation>Kopieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>&amp;Copy</source>
         <translation>&amp;Kopieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="983"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="988"/>
         <source>Copy the selected text</source>
         <translation>Kopiert den ausgewählten Text</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="984"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="989"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kopieren&lt;/b&gt;&lt;p&gt;Kopiert den ausgewählten Text in die Zwischenablage.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Cut</source>
         <translation>Ausschneiden</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Cu&amp;t</source>
         <translation>&amp;Ausschneiden</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="997"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1002"/>
         <source>Cut the selected text</source>
         <translation>Schneidet die Auswahl aus</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="998"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1003"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ausschneiden&lt;/b&gt;&lt;p&gt;Schneidet den ausgewählten Text aus und legt ihn in die Zwischenablage.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>Paste</source>
         <translation>Einfügen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>&amp;Paste</source>
         <translation>Ein&amp;fügen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1011"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1016"/>
         <source>Paste text from the clipboard</source>
         <translation>Fügt den Text der Zwischenablage ein</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1012"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1017"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Einfügen&lt;/b&gt;&lt;p&gt;Fügt den Text der Zwischenablage ein.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>Undo</source>
         <translation>Rückgängig</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>&amp;Undo</source>
         <translation>&amp;Rückgängig</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1025"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1030"/>
         <source>Undo the last edit action</source>
         <translation>Die letzte Bearbeitung rückgängig machen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1026"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1031"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rückgängig&lt;/b&gt;&lt;p&gt;Die letzte Bearbeitung rückgängig machen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>Redo</source>
         <translation>Wiederherstellen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>&amp;Redo</source>
         <translation>Wieder&amp;herstellen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1039"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1044"/>
         <source>Redo the last edit action</source>
         <translation>Die letzte Bearbeitung wieder herstellen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1040"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1045"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Wiederherstellen&lt;/b&gt;&lt;p&gt;Die letzte Bearbeitung wieder herstellen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>Select All</source>
         <translation>Alles auswählen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>&amp;Select All</source>
         <translation>&amp;Alles auswählen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation>Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1053"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1058"/>
         <source>Select all text</source>
         <translation>Gesamten Text auswählen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1054"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1059"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current browser.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Alles auswählen&lt;/b&gt;&lt;p&gt;Dies wählt den gesamten Text des aktuellen Browsers aus.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>Find...</source>
         <translation>Suchen...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>&amp;Find...</source>
         <translation>&amp;Suchen...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>Ctrl+F</source>
         <comment>Edit|Find</comment>
         <translation>Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1080"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1085"/>
         <source>Find text in page</source>
         <translation>Text in Seite suchen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1081"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1086"/>
         <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Suchen&lt;/b&gt;&lt;p&gt;Text in der angezeigten Seite suchen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>Find next</source>
         <translation>Weitersuchen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>Find &amp;next</source>
         <translation>&amp;Weitersuchen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>F3</source>
         <comment>Edit|Find next</comment>
         <translation>F3</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1094"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1099"/>
         <source>Find next occurrence of text in page</source>
         <translation>Das nächste Vorkommen des Textes in der Seite suchen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1096"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1101"/>
         <source>&lt;b&gt;Find next&lt;/b&gt;&lt;p&gt;Find the next occurrence of text in the current page.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Weitersuchen&lt;/b&gt;&lt;p&gt;Suche das nächste Vorkommen des Textes in der aktuellen Seite.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Find previous</source>
         <translation>Rückwärtssuchen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Find &amp;previous</source>
         <translation>&amp;Rückwärtssuchen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Shift+F3</source>
         <comment>Edit|Find previous</comment>
         <translation>Shift+F3</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1109"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1114"/>
         <source>Find previous occurrence of text in page</source>
         <translation>Das vorherige Vorkommen des Textes in der Seite suchen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1111"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1116"/>
         <source>&lt;b&gt;Find previous&lt;/b&gt;&lt;p&gt;Find the previous occurrence of text in the current page.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rückwärtssuchen&lt;/b&gt;&lt;p&gt;Suche das vorherige Vorkommen des Textes in der aktuellen Seite.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
         <source>Manage Bookmarks</source>
         <translation>Lesezeichen verwalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
         <source>&amp;Manage Bookmarks...</source>
         <translation>Lesezeichen &amp;verwalten...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
         <source>Ctrl+Shift+B</source>
         <comment>Help|Manage bookmarks</comment>
         <translation>Ctrl+Shift+B</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1130"/>
         <source>Open a dialog to manage the bookmarks.</source>
         <translation>Öffnet einen Dialog zur Verwaltung der Lesezeichen.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1127"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1132"/>
         <source>&lt;b&gt;Manage Bookmarks...&lt;/b&gt;&lt;p&gt;Open a dialog to manage the bookmarks.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Lesezeichen verwalten...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zur Verwaltung der Lesezeichen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Add Bookmark</source>
         <translation>Lesezeichen hinzufügen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Add &amp;Bookmark...</source>
         <translation>&amp;Lesezeichen hinzufügen…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Ctrl+D</source>
         <comment>Help|Add bookmark</comment>
         <translation>Ctrl+D</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1142"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1147"/>
         <source>Open a dialog to add a bookmark.</source>
         <translation>Öffnet einen Dialog zum Hinzufügen von Lesezeichen.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1144"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1149"/>
         <source>&lt;b&gt;Add Bookmark&lt;/b&gt;&lt;p&gt;Open a dialog to add the current URL as a bookmark.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Lesezeichen hinzufügen...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zum Hinzufügen von Lesezeichen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1151"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1156"/>
         <source>Add Folder</source>
         <translation>Ordner hinzufügen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1151"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1156"/>
         <source>Add &amp;Folder...</source>
         <translation>&amp;Ordner hinzufügen...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1155"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1160"/>
         <source>Open a dialog to add a new bookmarks folder.</source>
         <translation>Öffnet einen Dialog zum Hinzufügen eines Lesezeichenordners.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1157"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1162"/>
         <source>&lt;b&gt;Add Folder...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ordner hinzufügen...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zum Hinzufügen eines Lesezeichenordners.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1165"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1170"/>
         <source>Bookmark All Tabs</source>
         <translation>Lesezeichen für alle Tabs</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1165"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1170"/>
         <source>Bookmark All Tabs...</source>
         <translation>Lesezeichen für alle Tabs...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1169"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1174"/>
         <source>Bookmark all open tabs.</source>
         <translation>Fügt Lesezeichen für alle offenen Tabs hinzu.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1171"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1176"/>
         <source>&lt;b&gt;Bookmark All Tabs...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder for all open tabs.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Lesezeichen für alle Tabs...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog, um einen neuen Lesezeichenordner für alle offenen Tabs hinzuzufügen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>What&apos;s This?</source>
         <translation>Was ist das?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Was ist das?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1185"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1190"/>
         <source>Context sensitive help</source>
         <translation>Kontextsensitive Hilfe</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1186"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1191"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zeige kontextsensitive Hilfe an&lt;b&gt;&lt;/p&gt;Im „Was ist das?“-Modus (der Mauszeiger stellt einen Pfeil mit Fragezeichen dar) wird auf einen Mausklick eine kurze Hilfebeschreibung zu dem ausgewählten MMI-Element angezeigt. In Dialogen kann diese Funktionalität durch den entsprechenden Knopf im Fensterkopf erreicht werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1197"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1202"/>
         <source>About</source>
         <translation>Über</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1197"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1202"/>
         <source>&amp;About</source>
         <translation>Ü&amp;ber</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1201"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1206"/>
         <source>Display information about this software</source>
         <translation>Zeigt Informationen zu diesem Programm an</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1203"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1208"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Über&lt;/b&gt;&lt;p&gt;Zeigt einige Informationen über dieses Programm an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1210"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1215"/>
         <source>About Qt</source>
         <translation>Über Qt</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1210"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1215"/>
         <source>About &amp;Qt</source>
         <translation>Über &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1214"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1219"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Zeige Informationen über das Qt-Toolkit an</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1216"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1221"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Über Qt&lt;/b&gt;&lt;p&gt;Zeige Informationen über das Qt-Toolkit an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom in</source>
         <translation>Vergrößern</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom &amp;in</source>
         <translation>Ver&amp;größern</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation>Vergrößern</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1230"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1235"/>
         <source>Zoom in on the web page</source>
         <translation>Die angezeigte Seite vergrößern</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1231"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1236"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the web page. This makes the web page bigger.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vergrößern&lt;/b&gt;&lt;p&gt;Die angezeigte Web-Seite vergrößert darstellen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom out</source>
         <translation>Verkleinern</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom &amp;out</source>
         <translation>Ver&amp;kleinern</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation>Verkleinern</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1246"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1251"/>
         <source>Zoom out on the web page</source>
         <translation>Die angezeigte Seite verkleinern</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1247"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1252"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the web page. This makes the web page smaller.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Verkleinern&lt;/b&gt;&lt;p&gt;Die angezeigte Web-Seite verkleinert darstellen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Zoom reset</source>
         <translation>Vergrößerung zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Zoom &amp;reset</source>
         <translation>Vergrößerung &amp;zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1261"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1266"/>
         <source>Reset the zoom of the web page</source>
         <translation>Die Anzeigegröße zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1263"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1268"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the web page. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vergrößerung zurücksetzen&lt;/b&gt;&lt;p&gt;Setzt die Vergrößerung auf den Wert 100% zurück.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1271"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1276"/>
         <source>Show page source</source>
         <translation>Seitenquelltext anzeigen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1271"/>
-        <source>Ctrl+U</source>
-        <translation>Ctrl+U</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1276"/>
+        <source>Ctrl+U</source>
+        <translation>Ctrl+U</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1281"/>
         <source>Show the page source in an editor</source>
         <translation>Zeige den Seitenquelltext in einem Editor</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1278"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1283"/>
         <source>&lt;b&gt;Show page source&lt;/b&gt;&lt;p&gt;Show the page source in an editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Seitenquelltext anzeigen&lt;/b&gt;&lt;p&gt;Zeige den Seitenquelltext in einem Editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1286"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1291"/>
         <source>Full Screen</source>
         <translation>Vollbild</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1286"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1291"/>
         <source>&amp;Full Screen</source>
         <translation>&amp;Vollbild</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1296"/>
-        <source>F11</source>
-        <translation>F11</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1301"/>
-        <source>Show next tab</source>
-        <translation>Zeige nächstes Register</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1301"/>
+        <source>F11</source>
+        <translation>F11</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1306"/>
+        <source>Show next tab</source>
+        <translation>Zeige nächstes Register</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1306"/>
         <source>Ctrl+Alt+Tab</source>
         <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1310"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1315"/>
         <source>Show previous tab</source>
         <translation>Zeige vorheriges Register</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1310"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1315"/>
         <source>Shift+Ctrl+Alt+Tab</source>
         <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1319"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1324"/>
         <source>Switch between tabs</source>
         <translation>Zwischen Registern umschalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1319"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1324"/>
         <source>Ctrl+1</source>
         <translation>Ctrl+1</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1328"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1333"/>
         <source>Preferences</source>
         <translation>Einstellungen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1328"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1333"/>
         <source>&amp;Preferences...</source>
         <translation>&amp;Einstellungen...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1332"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1337"/>
         <source>Set the prefered configuration</source>
         <translation>Konfiguriert die Einstellungen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1334"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1339"/>
         <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Einstellungen&lt;/b&gt;&lt;p&gt;Konfiguriert die einstellbaren Parameter der Applikation nach Ihren Wünschen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1342"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1347"/>
         <source>Languages</source>
         <translation>Sprachen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1342"/>
-        <source>&amp;Languages...</source>
-        <translation>&amp;Sprachen...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1347"/>
+        <source>&amp;Languages...</source>
+        <translation>&amp;Sprachen...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1352"/>
         <source>Configure the accepted languages for web pages</source>
         <translation>Konfigurieren der bevorzugten Sprachen für Websites</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1349"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1354"/>
         <source>&lt;b&gt;Languages&lt;/b&gt;&lt;p&gt;Configure the accepted languages for web pages.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sprachen&lt;/b&gt;&lt;p&gt;Konfigurieren der bevorzugten Sprachen für Websites.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1357"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1362"/>
         <source>Cookies</source>
         <translation>Cookies</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1357"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1362"/>
         <source>C&amp;ookies...</source>
         <translation>C&amp;ookies...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1361"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1366"/>
         <source>Configure cookies handling</source>
         <translation>Cookieverwaltung konfigurieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1363"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1368"/>
         <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Cookieverwaltung konfigurieren&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1371"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1376"/>
         <source>Personal Information</source>
         <translation>Persönliche Informationen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1371"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1376"/>
         <source>Personal Information...</source>
         <translation>Persönliche Informationen...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1377"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1382"/>
         <source>Configure personal information for completing form fields</source>
         <translation>Persönliche Informationen zum Ausfüllen von Formularen eingeben</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1379"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1384"/>
         <source>&lt;b&gt;Personal Information...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the personal information used for completing form fields.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Persönliche Informationen...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zur Eingabe persönlicher Informationen, die zum Ausfüllen von Formularen verwendet werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1388"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1393"/>
         <source>GreaseMonkey Scripts</source>
         <translation>GreaseMonkey-Skripte</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1388"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1393"/>
         <source>GreaseMonkey Scripts...</source>
         <translation>GreaseMonkey-Skripte...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1394"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1399"/>
         <source>Configure the GreaseMonkey Scripts</source>
         <translation>GreaseMonkey-Skripte konfigurieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1396"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1401"/>
         <source>&lt;b&gt;GreaseMonkey Scripts...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available GreaseMonkey Scripts.&lt;/p&gt;</source>
         <translation>&lt;b&gt;GreaseMonkey-Skripte...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zur Konfiguration der verfügbaren GreaseMonkey-Skripte.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1405"/>
-        <source>Edit Message Filters</source>
-        <translation>Meldungsfilter bearbeiten</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1405"/>
-        <source>Edit Message Filters...</source>
-        <translation>Meldungsfilter bearbeiten...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1410"/>
+        <source>Edit Message Filters</source>
+        <translation>Meldungsfilter bearbeiten</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1410"/>
+        <source>Edit Message Filters...</source>
+        <translation>Meldungsfilter bearbeiten...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1415"/>
         <source>Edit the message filters used to suppress unwanted messages</source>
         <translation>Bearbeite die Meldungsfilter, die zur Unterdrückung unerwünschter Meldungen verwendet werden</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1412"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1417"/>
         <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Meldungsfilter bearbeiten&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Bearbeitung der Meldungsfilter, die zur Unterdrückung unerwünschter Meldungen verwendet werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1422"/>
-        <source>Edit HTML5 Feature Permissions</source>
-        <translation>HTML5 Feature Berechtigungen bearbeiten</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1422"/>
-        <source>Edit HTML5 Feature Permissions...</source>
-        <translation>HTML5 Feature Berechtigungen bearbeiten...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1427"/>
+        <source>Edit HTML5 Feature Permissions</source>
+        <translation>HTML5 Feature Berechtigungen bearbeiten</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1427"/>
+        <source>Edit HTML5 Feature Permissions...</source>
+        <translation>HTML5 Feature Berechtigungen bearbeiten...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1432"/>
         <source>Edit the remembered HTML5 feature permissions</source>
         <translation>Gemerkte HTML5 Feature Berechtigungen bearbeiten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1429"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1434"/>
         <source>&lt;b&gt;Edit HTML5 Feature Permissions&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the remembered HTML5 feature permissions.&lt;/p&gt;</source>
         <translation>&lt;b&gt;HTML5 Feature Berechtigungen bearbeiten&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zum Bearbeiten der gemerkten HTML5 Feature Berechtigungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1439"/>
-        <source>Sync with Table of Contents</source>
-        <translation>Mit Inhalt synchronisieren</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1444"/>
+        <source>Sync with Table of Contents</source>
+        <translation>Mit Inhalt synchronisieren</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1449"/>
         <source>Synchronizes the table of contents with current page</source>
         <translation>Synchronisiert das Inhaltsverzeichnis mit der aktuellen Seite</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1446"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1451"/>
         <source>&lt;b&gt;Sync with Table of Contents&lt;/b&gt;&lt;p&gt;Synchronizes the table of contents with current page.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mit Inhalt synchronisieren&lt;/b&gt;&lt;p&gt;Synchronisiert das Inhaltsverzeichnis mit der aktuellen Seite.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1454"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1459"/>
         <source>Table of Contents</source>
         <translation>Inhaltsverzeichnis</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1458"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1463"/>
         <source>Shows the table of contents window</source>
         <translation>Zeigt das Fenster mit dem Inhaltsverzeichnis an</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1460"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1465"/>
         <source>&lt;b&gt;Table of Contents&lt;/b&gt;&lt;p&gt;Shows the table of contents window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Inhaltsverzeichnis&lt;/b&gt;&lt;p&gt;Zeigt das Fenster mit dem Inhaltsverzeichnis an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1471"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1476"/>
         <source>Shows the index window</source>
         <translation>Zeigt das Indexfenster an</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1473"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1478"/>
         <source>&lt;b&gt;Index&lt;/b&gt;&lt;p&gt;Shows the index window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Index&lt;/b&gt;&lt;p&gt;Zeigt das Indexfenster an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1484"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1489"/>
         <source>Shows the search window</source>
         <translation>Zeigt das Suchfenster an</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1486"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1491"/>
         <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Suchen&lt;/b&gt;&lt;p&gt;Zeigt das Suchfenster an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1494"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1499"/>
         <source>Manage QtHelp Documents</source>
         <translation>QtHelp-Dokumente verwalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1494"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1499"/>
         <source>Manage QtHelp &amp;Documents</source>
         <translation>QtHelp &amp;Dokumente verwalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1498"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1503"/>
         <source>Shows a dialog to manage the QtHelp documentation set</source>
         <translation>Zeigt einen Dialog zur Verwaltung der QtHelp-Dokumente</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1500"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1505"/>
         <source>&lt;b&gt;Manage QtHelp Documents&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the QtHelp documentation set.&lt;/p&gt;</source>
         <translation>&lt;b&gt;QtHelp-Dokumente verwalten&lt;/b&gt;&lt;p&gt;Zeigt einen Dialog zur Verwaltung der QtHelp Dokumente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1509"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1514"/>
         <source>Reindex Documentation</source>
         <translation>Dokumentation reindizieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1509"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1514"/>
         <source>&amp;Reindex Documentation</source>
         <translation>Dokumentation &amp;reindizieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1513"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1518"/>
         <source>Reindexes the documentation set</source>
         <translation>Reindiziert die Dokumentation</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1520"/>
         <source>&lt;b&gt;Reindex Documentation&lt;/b&gt;&lt;p&gt;Reindexes the documentation set.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Dokumentation reindizieren&lt;/b&gt;&lt;p&gt;Reindiziert die Dokumentation.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1529"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1534"/>
         <source>Clear private data</source>
         <translation>Private Daten löschen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1531"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1536"/>
         <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like browsing history, search history or the favicons database.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Private Daten löschen&lt;/b&gt;&lt;p&gt;Löscht private Daten wie die Web-Chronik, Such-Chronik oder die Icondatenbank.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1545"/>
         <source>Clear icons database</source>
         <translation>Icondatenbank löschen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/>
-        <source>Clear &amp;icons database</source>
-        <translation>Icondatenbank &amp;löschen</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1545"/>
+        <source>Clear &amp;icons database</source>
+        <translation>Icondatenbank &amp;löschen</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1550"/>
         <source>Clear the database of favicons</source>
         <translation>Löscht die Datenbank mit den Favicons</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1547"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1552"/>
         <source>&lt;b&gt;Clear icons database&lt;/b&gt;&lt;p&gt;Clears the database of favicons of previously visited URLs.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Icondatenbank löschen&lt;/b&gt;&lt;p&gt;Löscht die Datenbank mit den Favicons besuchter URLs.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1555"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1560"/>
         <source>Manage saved Favicons</source>
         <translation>Gespeicherte Favicons verwalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1561"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/>
         <source>Show a dialog to manage the saved favicons</source>
         <translation>Zeigt einen Dialog zur Verwaltung der gespeicherten Favicons an</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1563"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1568"/>
         <source>&lt;b&gt;Manage saved Favicons&lt;/b&gt;&lt;p&gt;This shows a dialog to manage the saved favicons of previously visited URLs.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gespeicherte Favicons verwalten&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog zur Verwaltung der gespeicherten Favicons von besuchten Webseiten an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1576"/>
         <source>Configure Search Engines</source>
         <translation>Suchmaschinen verwalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/>
-        <source>Configure Search &amp;Engines...</source>
-        <translation>Such&amp;maschinen verwalten...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1576"/>
+        <source>Configure Search &amp;Engines...</source>
+        <translation>Such&amp;maschinen verwalten...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/>
         <source>Configure the available search engines</source>
         <translation>Verwalte die verfügbaren Suchmaschinen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1578"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1583"/>
         <source>&lt;b&gt;Configure Search Engines...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available search engines.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Suchmaschinen verwalten...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zur Verwaltung der verfügbaren Suchmaschinen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1592"/>
         <source>Manage Saved Passwords</source>
         <translation>Gespeicherte Passwörter verwalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1592"/>
         <source>Manage Saved Passwords...</source>
         <translation>Gespeicherte Passwörter verwalten...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1593"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/>
         <source>Manage the saved passwords</source>
         <translation>Verwalten gespeicherter Passwörter</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1595"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1600"/>
         <source>&lt;b&gt;Manage Saved Passwords...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved passwords.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gespeicherte Passwörter verwalten...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zur Verwaltung gespeicherter Passwörter.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1602"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/>
         <source>Ad Block</source>
         <translation>Ad Block</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1602"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/>
         <source>&amp;Ad Block...</source>
         <translation>&amp;Ad Block...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1608"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1613"/>
         <source>Configure AdBlock subscriptions and rules</source>
         <translation>Konfiguriert AdBlock Abonnements und Regeln</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1610"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1615"/>
         <source>&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure AdBlock subscriptions and rules.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zum konfigurieren von AdBlock Abonnements und Regeln&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1618"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/>
         <source>Manage SSL Certificate Errors</source>
         <translation>SSL Zertifikatsfehler verwalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1618"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/>
         <source>Manage SSL Certificate Errors...</source>
         <translation>SSL Zertifikatsfehler verwalten...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1624"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1629"/>
         <source>Manage the accepted SSL certificate Errors</source>
         <translation>Verwalte die akzeptierten SSL Zertifikatsfehler</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1626"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/>
         <source>&lt;b&gt;Manage SSL Certificate Errors...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the accepted SSL certificate errors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;SSL Zertifikatsfehler verwalten&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Verwaltung der akzeptierten SSL Zertifikatsfehler.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1651"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1656"/>
         <source>Downloads</source>
         <translation>Downloads</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1655"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1660"/>
         <source>Shows the downloads window</source>
         <translation>Zeig das Downloadsfenster an</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1657"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1662"/>
         <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Zeig das Downloadsfenster an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>RSS Feeds Dialog</source>
         <translation>RSS-Feeds-Dialog</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>&amp;RSS Feeds Dialog...</source>
         <translation>&amp;RSS-Feeds-Dialog...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>Ctrl+Shift+F</source>
         <comment>Help|RSS Feeds Dialog</comment>
         <translation>Ctrl+Shift+F</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1671"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1676"/>
         <source>Open a dialog showing the configured RSS feeds.</source>
         <translation>Öffnet einen Dialog mit den konfigurierten RSS-Feeds.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1673"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1678"/>
         <source>&lt;b&gt;RSS Feeds Dialog...&lt;/b&gt;&lt;p&gt;Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.&lt;/p&gt;</source>
         <translation>&lt;b&gt;RSS-Feeds-Dialog...&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Anzeige der konfigurierten RSS-Feeds. Er kann verwendet werden, um sie zu verwalten und ihren Inhalt anzuzeigen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>Siteinfo Dialog</source>
         <translation>Seiteninformationen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>&amp;Siteinfo Dialog...</source>
         <translation>&amp;Seiteninformationen...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>Ctrl+Shift+I</source>
         <comment>Help|Siteinfo Dialog</comment>
         <translation>Ctrl+Shift+I</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1688"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1693"/>
         <source>Open a dialog showing some information about the current site.</source>
         <translation>Öffnet einen Dialog zur Anzeige von Informationen über die aktuelle Site.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1690"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1695"/>
         <source>&lt;b&gt;Siteinfo Dialog...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the current site.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Site Informationen...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zur Anzeige von Informationen über die aktuelle Site.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1703"/>
         <source>Manage User Agent Settings</source>
         <translation>User-Agent-Einstellungen verwalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1703"/>
         <source>Manage &amp;User Agent Settings</source>
         <translation>User-&amp;Agent-Einstellungen verwalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1702"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1707"/>
         <source>Shows a dialog to manage the User Agent settings</source>
         <translation>Zeigt einen Dialog zum Verwalten der User-Agent-Einstellungen an</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1704"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1709"/>
         <source>&lt;b&gt;Manage User Agent Settings&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the User Agent settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;User-Agent-Einstellungen verwalten&lt;/b&gt;&lt;p&gt;Zeigt einen Dialog zum Verwalten der User-Agent-Einstellungen an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1712"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1717"/>
         <source>Synchronize data</source>
         <translation>Synchronisation</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1712"/>
-        <source>&amp;Synchronize Data...</source>
-        <translation>&amp;Synchronisation...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1717"/>
+        <source>&amp;Synchronize Data...</source>
+        <translation>&amp;Synchronisation...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1722"/>
         <source>Shows a dialog to synchronize data via the network</source>
         <translation>Zeigt einen Dialog zum Synchronisieren von Daten über das Netzwerk</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1719"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1724"/>
         <source>&lt;b&gt;Synchronize Data...&lt;/b&gt;&lt;p&gt;This shows a dialog to synchronize data via the network.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Synchronisation...&lt;/b&gt;&lt;p&gt;Dies zeigt einen Dialog zum Synchronisieren von Daten über das Netzwerk.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/>
         <source>Manage Saved Zoom Values</source>
         <translation>Gespeicherte Zoomwerte verwalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/>
         <source>Manage Saved Zoom Values...</source>
         <translation>Gespeicherte Zoomwerte verwalten...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1734"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1739"/>
         <source>Manage the saved zoom values</source>
         <translation>Verwalten gespeicherter Zoomwerte</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1736"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1741"/>
         <source>&lt;b&gt;Manage Saved Zoom Values...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved zoom values.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gespeicherte Zoomwerte verwalten...&lt;/b&gt;&lt;p&gt;Öffnet einen Dialog zur Verwaltung gespeicherter Zoomwerte.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1747"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1752"/>
         <source>Toggle the JavaScript console window</source>
         <translation>Schalte die JavaScript-Konsole um</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1749"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1754"/>
         <source>&lt;b&gt;JavaScript Console&lt;/b&gt;&lt;p&gt;This toggles the JavaScript console window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;JavaScript Konsole&lt;/b&gt;&lt;p&gt;Dies schaltet die Anzeige der JavaScript Konsole um.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1910"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1915"/>
         <source>&amp;File</source>
         <translation>&amp;Datei</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1942"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1947"/>
         <source>&amp;Edit</source>
         <translation>&amp;Bearbeiten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2181"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2186"/>
         <source>&amp;View</source>
         <translation>&amp;Ansicht</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1969"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1974"/>
         <source>Text Encoding</source>
         <translation>Zeichenkodierung</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1981"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1986"/>
         <source>H&amp;istory</source>
         <translation>&amp;Chronik</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1998"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2003"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Lesezeichen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2014"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2019"/>
         <source>&amp;Settings</source>
         <translation>&amp;Einstellungen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2046"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2051"/>
         <source>Global User Agent</source>
         <translation>Globaler User Agent</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2212"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2217"/>
         <source>&amp;Tools</source>
         <translation>&amp;Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2087"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2092"/>
         <source>&amp;Help</source>
         <translation>&amp;Hilfe</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2236"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2241"/>
         <source>File</source>
         <translation>Datei</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2261"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2266"/>
         <source>Edit</source>
         <translation>Bearbeiten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2274"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2279"/>
         <source>View</source>
         <translation>Ansicht</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2284"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2289"/>
         <source>Find</source>
         <translation>Suchen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2293"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2298"/>
         <source>Filter</source>
         <translation>Filter</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2303"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2308"/>
         <source>Filtered by: </source>
         <translation>Filter: </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2311"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2316"/>
         <source>Settings</source>
         <translation>Einstellungen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2323"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2328"/>
         <source>Tools</source>
         <translation>Werkzeuge</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2332"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2337"/>
         <source>Help</source>
         <translation>Hilfe</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2339"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2344"/>
         <source>VirusTotal</source>
         <translation>VirusTotal</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1785"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1790"/>
         <source>Scan current site</source>
         <translation>Aktuelle Seite prüfen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4613"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4626"/>
         <source>IP Address Report</source>
         <translation>IP Adressenbericht</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4623"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4636"/>
         <source>Domain Report</source>
         <translation>Domänenbericht</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>&lt;p&gt;Could not start the process.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Der Prozess konnte nicht gestartet werden.&lt;br&gt;Stellen Sie sicher, dass er als &lt;b&gt;{0}&lt;/b&gt; verfügbar ist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>OK</source>
         <translation>OK</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2667"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2672"/>
         <source>Saved Tabs</source>
         <translation>Gesicherte Tabs</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3392"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3399"/>
         <source>Could not find an associated content.</source>
         <translation>Konnte keinen zugehörigen Inhalt finden.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3486"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3493"/>
         <source>Updating search index</source>
         <translation>Aktualisiere Suchindex</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3560"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3567"/>
         <source>Looking for Documentation...</source>
         <translation>Suche nach Dokumentation...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3590"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3597"/>
         <source>Unfiltered</source>
         <translation>Ungefiltert</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3607"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3614"/>
         <source>Help Engine</source>
         <translation>Hilfe</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4144"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4151"/>
         <source>ISO</source>
         <translation>ISO</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4148"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4155"/>
         <source>Windows</source>
         <translation>Windows</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4146"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4153"/>
         <source>Unicode</source>
         <translation>Unicode</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4154"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4161"/>
         <source>Other</source>
         <translation>Sonstige</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4150"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4157"/>
         <source>IBM</source>
         <translation>IBM</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4578"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4591"/>
         <source>VirusTotal Scan</source>
         <translation>VirusTotal-Prüfung</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4578"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4591"/>
         <source>&lt;p&gt;The VirusTotal scan could not be scheduled.&lt;p&gt;
 &lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die VirusTotal-Prüfung konnte nicht beauftragt werden.&lt;p&gt;
 &lt;p&gt;Ursache: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4604"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4617"/>
         <source>Enter a valid IPv4 address in dotted quad notation:</source>
         <translation>Gib eine gültige IPv4 Adresse in Vierpunktnotation ein:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4613"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4626"/>
         <source>The given IP address is not in dotted quad notation.</source>
         <translation>Die eingegebene IP Adresse ist nicht in Vierpunktnotation.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4623"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4636"/>
         <source>Enter a valid domain name:</source>
         <translation>Gib einen gültigen Domänennamen ein:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1757"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1762"/>
         <source>Tab Manager</source>
         <translation>Registerverwaltung</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1761"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1766"/>
         <source>Shows the tab manager window</source>
         <translation>Zeigt das Fenster der Registerverwaltung an</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1763"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1768"/>
         <source>&lt;b&gt;Tab Manager&lt;/b&gt;&lt;p&gt;Shows the tab manager window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Registerverwaltung&lt;/b&gt;&lt;p&gt;Zeig das Fenster der Registerverwaltung an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
         <source>Save As</source>
         <translation>Speichern unter</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
         <source>&amp;Save As...</source>
         <translation>&amp;Speichern unter...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="743"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="748"/>
         <source>Save the current page to disk</source>
         <translation>Speichert die aktuelle Seite</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="745"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="750"/>
         <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current page to disk.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Speichern unter&lt;/b&gt;&lt;p&gt;Dies speichert die aktuelle Seite in eine Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1061"/>
-        <source>Unselect</source>
-        <translation>Abwählen</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1066"/>
+        <source>Unselect</source>
+        <translation>Abwählen</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1071"/>
         <source>Clear current selection</source>
         <translation>Löscht die aktuelle Auswahl</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1067"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1072"/>
         <source>&lt;b&gt;Unselect&lt;/b&gt;&lt;p&gt;Clear the selection of the current browser.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Abwählen&lt;/b&gt;&lt;p&gt;Löscht die Auswahl des aktuellen Browsers.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1061"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1066"/>
         <source>Alt+Ctrl+A</source>
         <comment>Edit|Unselect</comment>
         <translation>Alt+Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2503"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2508"/>
         <source>HTML Files (*.html *.htm *.mhtml *.mht);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source>
         <translation>Hilfedateien (*.html *.htm *.mhtml *.mht);;PDF-Dateien (*.pdf);;CHM Dateien (*.chm);;Alle Dateien (*)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="937"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="942"/>
         <source>Move to the initial screen</source>
         <translation>Zur Startseite wechseln</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1293"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1298"/>
         <source>Meta+Ctrl+F</source>
         <translation>Meta+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2218"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2223"/>
         <source>&amp;VirusTotal</source>
         <translation>&amp;VirusTotal</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2183"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2188"/>
         <source>&amp;Windows</source>
         <translation>&amp;Fenster</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2081"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2086"/>
         <source>&amp;Toolbars</source>
         <translation>&amp;Werkzeugleisten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2116"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2121"/>
         <source>Save</source>
         <translation>Speichern</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2140"/>
         <source>Show All History...</source>
         <translation>Chronik anzeigen...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4186"/>
         <source>Menu Bar</source>
         <translation>Menüleiste</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4184"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4191"/>
         <source>Bookmarks</source>
         <translation>Lesezeichen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4189"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4196"/>
         <source>Status Bar</source>
         <translation>Statusleiste</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4203"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4210"/>
         <source>&amp;Show all</source>
         <translation>Alle an&amp;zeigen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4205"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4212"/>
         <source>&amp;Hide all</source>
         <translation>Alle &amp;ausblenden</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="844"/>
-        <source>Send Page Link</source>
-        <translation>Link der Seite verschicken</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="849"/>
+        <source>Send Page Link</source>
+        <translation>Link der Seite verschicken</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="854"/>
         <source>Send the link of the current page via email</source>
         <translation>Versende den Link der aktuellen Seite per Email</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="851"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="856"/>
         <source>&lt;b&gt;Send Page Link&lt;/b&gt;&lt;p&gt;Send the link of the current page via email.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Link der Seite verschicken&lt;/b&gt;&lt;p&gt;Versende den Link der aktuellen Seite per Email.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1771"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1776"/>
         <source>Session Manager</source>
         <translation>Sitzungsmanager</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1771"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1776"/>
         <source>Session Manager...</source>
         <translation>Sitzungsmanager...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1775"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1780"/>
         <source>Shows the session manager window</source>
         <translation>Zeigt das Sitzungsmanagerfenster</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1777"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1782"/>
         <source>&lt;b&gt;Session Manager&lt;/b&gt;&lt;p&gt;Shows the session manager window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sitzungsmanager&lt;/b&gt;&lt;p&gt;Zeigt das Fenster des Sitzungsmanagers an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2109"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2114"/>
         <source>Sessions</source>
         <translation>Sitzungen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2845"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2850"/>
         <source>Are you sure you want to close the web browser?</source>
         <translation>Möchten Sie den Web Browser wirklich schließen?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2845"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2850"/>
         <source>Are you sure you want to close the web browser?
 You have {0} windows with {1} tabs open.</source>
         <translation>Möchten Sie den Web Browser wirklich schließen?
 Es sind {0} Fenster mit {1} Registern offen.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1635"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/>
         <source>Manage Safe Browsing</source>
         <translation>Safe Browsing verwalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1635"/>
-        <source>Manage Safe Browsing...</source>
-        <translation>Safe Browsing verwalten...</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1642"/>
-        <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Safe Browsing verwalten&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Konfiguration des Safe Browsing und zur Verwaltung des lokalen Zwischenspeichers.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/>
+        <source>Manage Safe Browsing...</source>
+        <translation>Safe Browsing verwalten...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1647"/>
+        <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Safe Browsing verwalten&lt;/b&gt;&lt;p&gt;Dies öffnet einen Dialog zur Konfiguration des Safe Browsing und zur Verwaltung des lokalen Zwischenspeichers.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1645"/>
         <source>Configure Safe Browsing and manage local cache</source>
         <translation>Safe Browsing konfigurieren und Zwischenspeicher verwalten</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="762"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="767"/>
         <source>&lt;b&gt;Save Page Screen...&lt;/b&gt;&lt;p&gt;Saves the visible part of the current page as a screen shot.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Bildschirmphoto speichern...&lt;/b&gt;&lt;p&gt;Dies speichert den sichtbaren Bereich der aktuellen Seite als Bildschirmphoto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1823"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1828"/>
         <source>Keyboard Shortcuts</source>
         <translation>Tastaturkurzbefehle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1823"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1828"/>
         <source>Keyboard &amp;Shortcuts...</source>
         <translation>&amp;Tastaturkurzbefehle...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1829"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1834"/>
         <source>Set the keyboard shortcuts</source>
         <translation>Setze die Tastaturkurzbefehle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1831"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1836"/>
         <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tastaturkurzbefehle&lt;/b&gt;&lt;p&gt;Setze die Tastaturkurzbefehle der Applikation mit den bevorzugten Werten.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5009"/>
         <source>Export Keyboard Shortcuts</source>
         <translation>Tastaturkurzbefehle exportieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1839"/>
-        <source>&amp;Export Keyboard Shortcuts...</source>
-        <translation>Tastaturkurzbefehle &amp;exportieren...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1844"/>
+        <source>&amp;Export Keyboard Shortcuts...</source>
+        <translation>Tastaturkurzbefehle &amp;exportieren...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1849"/>
         <source>Export the keyboard shortcuts</source>
         <translation>Exportiert die Tastaturkurzbefehle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1846"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1851"/>
         <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tastaturkurzbefehle exportieren&lt;/b&gt;&lt;p&gt;Exportiert die Tastaturkurzbefehle der Applikation.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5007"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5025"/>
         <source>Import Keyboard Shortcuts</source>
         <translation>Tastaturkurzbefehle importieren</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1853"/>
-        <source>&amp;Import Keyboard Shortcuts...</source>
-        <translation>Tastaturkurzbefehle &amp;importieren...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1858"/>
+        <source>&amp;Import Keyboard Shortcuts...</source>
+        <translation>Tastaturkurzbefehle &amp;importieren...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1863"/>
         <source>Import the keyboard shortcuts</source>
         <translation>Importiert die Tastaturkurzbefehle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1860"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1865"/>
         <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tastaturkurzbefehle importieren&lt;/b&gt;&lt;p&gt;Importiert die Tastaturkurzbefehle der Applikation.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1867"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1872"/>
         <source>Protocol Handler Manager</source>
         <translation>Protokoll Handler Verwaltung</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1867"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1872"/>
         <source>Protocol Handler Manager...</source>
         <translation>Protokoll Handler Verwaltung...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1871"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1876"/>
         <source>Shows the protocol handler manager window</source>
         <translation>Zeigt die Protokoll Handler Verwaltung an</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1873"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1878"/>
         <source>&lt;b&gt;Protocol Handler Manager&lt;/b&gt;&lt;p&gt;Shows the protocol handler manager window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Protokoll Handler Verwaltung&lt;/b&gt;&lt;p&gt;Zeigt das Fenster für die Protokoll Handler Verwaltung an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4141"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4148"/>
         <source>System</source>
         <translation>System</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4152"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4159"/>
         <source>Apple</source>
         <translation>Apple</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2189"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2194"/>
         <source>QtHelp</source>
         <translation>QtHelp</translation>
     </message>
@@ -86733,37 +86732,37 @@
         <translation>eric Web Browser (Privater Modus)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3570"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3577"/>
         <source>eric Web Browser</source>
         <translation>eric Web Browser</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="892"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="897"/>
         <source>Quit the eric Web Browser</source>
         <translation>Beendet den eric Web Browser</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="893"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="898"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Beenden&lt;/b&gt;&lt;p&gt;Beendet den eric Web Browser.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2544"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2549"/>
         <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chrome {2}.&lt;/p&gt;</source>
         <translation>&lt;b&gt;eric Web Browser – {0}&lt;/b&gt;&lt;p&gt;Der eric Web Browser ist eine kombinierte Anzeige für Hilfe- und HTML-Dateien. Er ist Bestandteil der eric Entwicklungsumgebung.&lt;/p&gt;&lt;p&gt;Er basiert auf QtWebEngine {1} und Chrome {2}.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4972"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4990"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard Shortcuts File (*.e4k)</source>
         <translation>Tastaturkurzbefehlsdatei (*.ekj);;XML Tastaturkurzbefehlsdatei (*.e4k)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5009"/>
         <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Tastaturkurzbefehlsdatei &lt;b&gt;{0}&lt;/b&gt; existiert bereits. Überschreiben?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5007"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5025"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
         <translation>Tastaturkurzbefehlsdatei (*.ekj);;XML Tastaturkurzbefehlsdatei (*.e4k)</translation>
     </message>
@@ -87117,12 +87116,12 @@
 <context>
     <name>eric6</name>
     <message>
-        <location filename="../eric6.py" line="397"/>
+        <location filename="../eric6.py" line="398"/>
         <source>Starting...</source>
         <translation>Starte...</translation>
     </message>
     <message>
-        <location filename="../eric6.py" line="402"/>
+        <location filename="../eric6.py" line="403"/>
         <source>Generating Main Window...</source>
         <translation>Erzeuge das Hauptfenster...</translation>
     </message>
--- a/eric6/i18n/eric6_empty.ts	Tue Mar 02 19:22:12 2021 +0100
+++ b/eric6/i18n/eric6_empty.ts	Tue Mar 02 19:49:43 2021 +0100
@@ -119,57 +119,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="139"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="140"/>
         <source>Add Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="142"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="143"/>
         <source>Remove Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="146"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="147"/>
         <source>Browse Subscriptions...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="243"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="244"/>
         <source>Remove Subscription</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="154"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="155"/>
         <source>Disable Subscription</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="156"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="157"/>
         <source>Enable Subscription</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="159"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="160"/>
         <source>Update Subscription</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="162"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="163"/>
         <source>Update All Subscriptions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="166"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="167"/>
         <source>Learn more about writing rules...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="233"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="234"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt; and all subscriptions requiring it?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="240"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="241"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -258,17 +258,17 @@
 <context>
     <name>AdBlockManager</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="232"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="233"/>
         <source>Custom Rules</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="334"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="335"/>
         <source>Subscribe?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="334"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="335"/>
         <source>&lt;p&gt;Subscribe to this AdBlock subscription?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -276,47 +276,47 @@
 <context>
     <name>AdBlockSubscription</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="291"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="294"/>
         <source>Load subscription rules</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="291"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="294"/>
         <source>AdBlock file &apos;{0}&apos; does not start with [Adblock.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="500"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="503"/>
         <source>Downloading subscription rules</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="397"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="400"/>
         <source>&lt;p&gt;Subscription rules could not be downloaded.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="410"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="413"/>
         <source>Got empty subscription rules.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="500"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="503"/>
         <source>&lt;p&gt;AdBlock subscription &lt;b&gt;{0}&lt;/b&gt; has a wrong checksum.&lt;br/&gt;Found: {1}&lt;br/&gt;Calculated: {2}&lt;br/&gt;Use it anyway?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="523"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="527"/>
         <source>Saving subscription rules</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="281"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="284"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for reading.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="523"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="527"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for writing.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -324,27 +324,27 @@
 <context>
     <name>AdBlockTreeWidget</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="123"/>
         <source>Add Custom Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="123"/>
         <source>Write your rule here:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="164"/>
-        <source>Add Rule</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="166"/>
+        <source>Add Rule</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="168"/>
         <source>Remove Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="219"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="227"/>
         <source>{0} (recently updated)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1138,7 +1138,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MultiProject/AddProjectDialog.py" line="64"/>
+        <location filename="../MultiProject/AddProjectDialog.py" line="65"/>
         <source>Project Properties</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1583,37 +1583,37 @@
 <context>
     <name>BackgroundService</name>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="134"/>
+        <location filename="../Utilities/BackgroundService.py" line="135"/>
         <source>{0} not configured.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="189"/>
+        <location filename="../Utilities/BackgroundService.py" line="190"/>
         <source>Restart background client?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="189"/>
+        <location filename="../Utilities/BackgroundService.py" line="190"/>
         <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It&apos;s used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;&apos;Yes&apos;&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Retry&apos;&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;No&apos;&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="444"/>
+        <location filename="../Utilities/BackgroundService.py" line="445"/>
         <source>Eric&apos;s background client disconnected because of an unknown reason.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="450"/>
+        <location filename="../Utilities/BackgroundService.py" line="451"/>
         <source>Background client disconnected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="450"/>
+        <location filename="../Utilities/BackgroundService.py" line="451"/>
         <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="215"/>
+        <location filename="../Utilities/BackgroundService.py" line="216"/>
         <source>An error in Eric&apos;s background client stopped the service.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1859,7 +1859,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="173"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="174"/>
         <source>&amp;Delete</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1874,62 +1874,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="155"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="156"/>
         <source>&amp;Open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="157"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="158"/>
         <source>Open in New &amp;Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="168"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="169"/>
         <source>Edit &amp;Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="171"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="172"/>
         <source>Edit &amp;Address</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="177"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="178"/>
         <source>&amp;Properties...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="342"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="355"/>
         <source>New Folder</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="159"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="160"/>
         <source>Open in New &amp;Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="162"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="163"/>
         <source>Open in New &amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="164"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="165"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="181"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="182"/>
         <source>New &amp;Folder...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="334"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="347"/>
         <source>New Bookmark Folder</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="334"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="347"/>
         <source>Enter title for new bookmark folder:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2232,72 +2232,72 @@
 <context>
     <name>BreakPointViewer</name>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="52"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="54"/>
         <source>Breakpoints</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="192"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="198"/>
         <source>Add</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="159"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="165"/>
         <source>Edit...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="161"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="167"/>
         <source>Enable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="196"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="202"/>
         <source>Enable all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="164"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="170"/>
         <source>Disable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="201"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="207"/>
         <source>Disable all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="168"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="174"/>
         <source>Delete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="206"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="212"/>
         <source>Delete all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="171"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="177"/>
         <source>Goto</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="209"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="215"/>
         <source>Configure...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="194"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="200"/>
         <source>Enable selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="199"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="205"/>
         <source>Disable selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="204"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="210"/>
         <source>Delete selected</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2315,212 +2315,212 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="282"/>
+        <location filename="../UI/Browser.py" line="284"/>
         <source>Open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="231"/>
+        <location filename="../UI/Browser.py" line="233"/>
         <source>Run unittest...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="553"/>
+        <location filename="../UI/Browser.py" line="555"/>
         <source>Show Mime-Type</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="314"/>
+        <location filename="../UI/Browser.py" line="316"/>
         <source>Copy Path to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="258"/>
+        <location filename="../UI/Browser.py" line="260"/>
         <source>Open in Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="261"/>
+        <location filename="../UI/Browser.py" line="263"/>
         <source>Open in Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="340"/>
+        <location filename="../UI/Browser.py" line="342"/>
         <source>New toplevel directory...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="296"/>
+        <location filename="../UI/Browser.py" line="298"/>
         <source>Add as toplevel directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="299"/>
+        <location filename="../UI/Browser.py" line="301"/>
         <source>Remove from toplevel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="303"/>
+        <location filename="../UI/Browser.py" line="305"/>
         <source>Refresh directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="307"/>
+        <location filename="../UI/Browser.py" line="309"/>
         <source>Find in this directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="326"/>
+        <location filename="../UI/Browser.py" line="328"/>
         <source>Goto</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="433"/>
+        <location filename="../UI/Browser.py" line="435"/>
         <source>Line {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="526"/>
+        <location filename="../UI/Browser.py" line="528"/>
         <source>The mime type of the file could not be determined.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="544"/>
+        <location filename="../UI/Browser.py" line="546"/>
         <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="553"/>
+        <location filename="../UI/Browser.py" line="555"/>
         <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt; Shall it be added to the list of text mime types?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="642"/>
+        <location filename="../UI/Browser.py" line="644"/>
         <source>New toplevel directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="310"/>
+        <location filename="../UI/Browser.py" line="312"/>
         <source>Find &amp;&amp; Replace in this directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="239"/>
+        <location filename="../UI/Browser.py" line="241"/>
         <source>Refresh Source File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="212"/>
+        <location filename="../UI/Browser.py" line="214"/>
         <source>Show Hidden Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="219"/>
-        <source>New</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/Browser.py" line="221"/>
+        <source>New</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/Browser.py" line="223"/>
         <source>Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="224"/>
+        <location filename="../UI/Browser.py" line="226"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="321"/>
+        <location filename="../UI/Browser.py" line="323"/>
         <source>Delete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="879"/>
+        <location filename="../UI/Browser.py" line="881"/>
         <source>New Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="861"/>
+        <location filename="../UI/Browser.py" line="863"/>
         <source>Name for new directory:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="902"/>
+        <location filename="../UI/Browser.py" line="904"/>
         <source>A file or directory named &lt;b&gt;{0}&lt;/b&gt; exists already. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="879"/>
+        <location filename="../UI/Browser.py" line="881"/>
         <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="913"/>
+        <location filename="../UI/Browser.py" line="915"/>
         <source>New File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="894"/>
+        <location filename="../UI/Browser.py" line="896"/>
         <source>Name for new file:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="913"/>
+        <location filename="../UI/Browser.py" line="915"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="942"/>
+        <location filename="../UI/Browser.py" line="944"/>
         <source>Do you really want to move this file to the trash?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="946"/>
+        <location filename="../UI/Browser.py" line="948"/>
         <source>Do you really want to delete this file?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1043"/>
+        <location filename="../UI/Browser.py" line="1045"/>
         <source>Delete File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1043"/>
+        <location filename="../UI/Browser.py" line="1045"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="979"/>
+        <location filename="../UI/Browser.py" line="981"/>
         <source>Do you really want to move this directory to the trash?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="983"/>
+        <location filename="../UI/Browser.py" line="985"/>
         <source>Do you really want to delete this directory?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1000"/>
+        <location filename="../UI/Browser.py" line="1002"/>
         <source>Delete Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1000"/>
+        <location filename="../UI/Browser.py" line="1002"/>
         <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1023"/>
+        <location filename="../UI/Browser.py" line="1025"/>
         <source>Do you really want to move these files to the trash?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1027"/>
+        <location filename="../UI/Browser.py" line="1029"/>
         <source>Do you really want to delete these files?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1032"/>
+        <location filename="../UI/Browser.py" line="1034"/>
         <source>Delete Files</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2533,27 +2533,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="653"/>
+        <location filename="../UI/BrowserModel.py" line="660"/>
         <source>Coding: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="660"/>
+        <location filename="../UI/BrowserModel.py" line="667"/>
         <source>Globals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="666"/>
+        <location filename="../UI/BrowserModel.py" line="673"/>
         <source>Imports</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="759"/>
+        <location filename="../UI/BrowserModel.py" line="766"/>
         <source>Attributes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="769"/>
+        <location filename="../UI/BrowserModel.py" line="776"/>
         <source>Class Attributes</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2581,45 +2581,45 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="71"/>
+        <location filename="../Debugger/CallStackViewer.py" line="72"/>
         <source>File: {0}
 Line: {1}
 {2}{3}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="73"/>
+        <location filename="../Debugger/CallStackViewer.py" line="74"/>
         <source>File: {0}
 Line: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="202"/>
+        <location filename="../Debugger/CallStackViewer.py" line="203"/>
         <source>Save Call Stack Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="188"/>
+        <location filename="../Debugger/CallStackViewer.py" line="189"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="202"/>
+        <location filename="../Debugger/CallStackViewer.py" line="203"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="224"/>
+        <location filename="../Debugger/CallStackViewer.py" line="225"/>
         <source>Error saving Call Stack Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="224"/>
+        <location filename="../Debugger/CallStackViewer.py" line="225"/>
         <source>&lt;p&gt;The call stack info could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="213"/>
+        <location filename="../Debugger/CallStackViewer.py" line="214"/>
         <source>Call Stack of &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3214,32 +3214,32 @@
 <context>
     <name>CodeDocumentationViewer</name>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="208"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="211"/>
         <source>Code Info Provider:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="221"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="227"/>
         <source>Select the code info provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="223"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="229"/>
         <source>&lt;disabled&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="404"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="410"/>
         <source>No documentation available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="425"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="431"/>
         <source>No source code documentation provider has been registered. This function has been disabled.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="430"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="436"/>
         <source>This function has been disabled.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3363,47 +3363,47 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="193"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="205"/>
         <source>files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="195"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="207"/>
         <source>lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="197"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="209"/>
         <source>bytes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="199"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="211"/>
         <source>comments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="201"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="213"/>
         <source>comment lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="203"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="215"/>
         <source>empty lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="205"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="217"/>
         <source>non-commentary lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="52"/>
-        <source>Collapse All</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../DataViews/CodeMetricsDialog.py" line="54"/>
+        <source>Collapse All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="56"/>
         <source>Expand All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3762,32 +3762,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="217"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="219"/>
         <source>Errors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="244"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="246"/>
         <source>Error: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="856"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="861"/>
         <source>Preparing files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="895"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="900"/>
         <source>Transferring data...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="963"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="968"/>
         <source>{0} (ignored)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1037"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1044"/>
         <source>No issues found.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3797,7 +3797,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1040"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1047"/>
         <source>No files found (check your ignore list).</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4107,12 +4107,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2004"/>
         <source>Commented Code Whitelist Pattern</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2004"/>
         <source>Enter a Commented Code Whitelist Pattern</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4946,7 +4946,7 @@
 <context>
     <name>CondaExecDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="96"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="102"/>
         <source>Conda Execution</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4973,45 +4973,45 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="96"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="102"/>
         <source>The conda executable could not be started. Is it configured correctly?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="103"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="109"/>
         <source>Operation started.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="134"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="143"/>
         <source>Operation finished.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="154"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="163"/>
         <source>Conda command &apos;{0}&apos; did not return success.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="164"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="173"/>
         <source>
 Conda Message: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="203"/>
-        <source>{0} (Size: {1})</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="208"/>
-        <source>Fetching {0} ...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../CondaInterface/CondaExecDialog.py" line="212"/>
+        <source>{0} (Size: {1})</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="217"/>
+        <source>Fetching {0} ...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="221"/>
         <source> Done.
 </source>
         <translation type="unfinished"></translation>
@@ -5020,7 +5020,7 @@
 <context>
     <name>CondaExportDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="209"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="211"/>
         <source>Generate Requirements</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5100,27 +5100,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="209"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="211"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="109"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="111"/>
         <source>The requirements were changed. Do you want to overwrite these changes?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="140"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="142"/>
         <source>No output generated by conda.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="177"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="179"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; already exists. Do you want to overwrite it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="189"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="191"/>
         <source>&lt;p&gt;The requirements could not be written to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5302,7 +5302,7 @@
 <context>
     <name>CondaPackageDetailsDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaPackageDetailsWidget.py" line="91"/>
+        <location filename="../CondaInterface/CondaPackageDetailsWidget.py" line="93"/>
         <source>Package Details</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5503,132 +5503,132 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="123"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="125"/>
         <source>Clean</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="124"/>
-        <source>All</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="126"/>
-        <source>Cache</source>
+        <source>All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="128"/>
+        <source>Cache</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="130"/>
         <source>Lock Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="131"/>
-        <source>Packages</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="133"/>
+        <source>Packages</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="135"/>
         <source>Tarballs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="136"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="138"/>
         <source>About Conda...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="139"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="141"/>
         <source>Update Conda</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="575"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="581"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="144"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="146"/>
         <source>Install Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="147"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="149"/>
         <source>Generate Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="150"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="152"/>
         <source>Create Environment from Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="617"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="623"/>
         <source>Clone Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="662"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="668"/>
         <source>Delete Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="160"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="162"/>
         <source>Edit User Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="164"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="166"/>
         <source>Configure...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="221"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="223"/>
         <source>Getting installed packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="234"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="236"/>
         <source>Getting outdated packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="256"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="260"/>
         <source>{0} (Build: {1})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="397"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="403"/>
         <source>Conda Search Package Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="555"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="561"/>
         <source>Package Specifications (separated by whitespace):</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="575"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="581"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="641"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="647"/>
         <source>Create Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="662"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="668"/>
         <source>&lt;p&gt;Shall the environment &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="687"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="693"/>
         <source>Edit Configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="687"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="693"/>
         <source>The configuration file &quot;{0}&quot; does not exist or is not writable.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5939,23 +5939,23 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="571"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="578"/>
         <source>Preferences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="576"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="584"/>
         <source>Please select an entry of the list 
 to display the configuration page.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="661"/>
         <source>Configuration Page Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
+        <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 type="unfinished"></translation>
     </message>
@@ -6113,17 +6113,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="82"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="87"/>
         <source>Allow</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="91"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="96"/>
         <source>Block</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="100"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="105"/>
         <source>Allow For Session</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6264,7 +6264,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="175"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="176"/>
         <source>&lt;no cookie selected&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6309,37 +6309,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="143"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="144"/>
         <source>Remove All Cookies</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="143"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="144"/>
         <source>Do you really want to remove all stored cookies?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="177"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="178"/>
         <source>Remove Cookies</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="186"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="187"/>
         <source>Secure connections only</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="188"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="189"/>
         <source>All connections</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="190"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="191"/>
         <source>Session Cookie</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="197"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="198"/>
         <source>Remove Cookie</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6625,57 +6625,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="135"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="136"/>
         <source>Create Dialog Code</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="135"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="136"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; exists but does not contain any classes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="225"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="226"/>
         <source>uic error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="216"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="217"/>
         <source>&lt;p&gt;There was an error loading the form &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="578"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="580"/>
         <source>Code Generation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="448"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="449"/>
         <source>&lt;p&gt;Could not open the code template file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="485"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="486"/>
         <source>&lt;p&gt;Could not open the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="578"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="580"/>
         <source>&lt;p&gt;Could not write the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="225"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="226"/>
         <source>&lt;p&gt;The project specific Python interpreter &lt;b&gt;{0}&lt;/b&gt; could not be started or did not finish within 30 seconds.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="401"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="402"/>
         <source>&lt;p&gt;Code generation for project language &quot;{0}&quot; is not supported.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="437"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="438"/>
         <source>&lt;p&gt;No code template file available for project type &quot;{0}&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6718,51 +6718,51 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="351"/>
+        <location filename="../Debugger/DebugServer.py" line="353"/>
         <source>Register Debugger Interface</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="351"/>
+        <location filename="../Debugger/DebugServer.py" line="353"/>
         <source>&lt;p&gt;The debugger interface &lt;b&gt;{0}&lt;/b&gt; has already been registered. Ignoring this request.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="865"/>
+        <location filename="../Debugger/DebugServer.py" line="867"/>
         <source>Connection from illegal host</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="865"/>
+        <location filename="../Debugger/DebugServer.py" line="867"/>
         <source>&lt;p&gt;A connection was attempted by the illegal host &lt;b&gt;{0}&lt;/b&gt;. Accept this connection?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1875"/>
+        <location filename="../Debugger/DebugServer.py" line="1877"/>
         <source>
 Not connected
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="2144"/>
+        <location filename="../Debugger/DebugServer.py" line="2146"/>
         <source>Passive debug connection received
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="2158"/>
+        <location filename="../Debugger/DebugServer.py" line="2160"/>
         <source>Passive debug connection closed
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1601"/>
         <source>Start Debugger</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1601"/>
         <source>&lt;p&gt;The debugger type &lt;b&gt;{0}&lt;/b&gt; is not supported or not configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6770,7 +6770,7 @@
 <context>
     <name>DebugUI</name>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1961"/>
+        <location filename="../Debugger/DebugUI.py" line="1964"/>
         <source>Run Script</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6790,7 +6790,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1973"/>
+        <location filename="../Debugger/DebugUI.py" line="1976"/>
         <source>Run Project</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6800,576 +6800,576 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="220"/>
+        <location filename="../Debugger/DebugUI.py" line="221"/>
         <source>Run the current Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="221"/>
+        <location filename="../Debugger/DebugUI.py" line="222"/>
         <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="231"/>
+        <location filename="../Debugger/DebugUI.py" line="232"/>
         <source>Coverage run of Script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="231"/>
+        <location filename="../Debugger/DebugUI.py" line="232"/>
         <source>Coverage run of Script...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="236"/>
+        <location filename="../Debugger/DebugUI.py" line="237"/>
         <source>Perform a coverage run of the current Script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="238"/>
+        <location filename="../Debugger/DebugUI.py" line="239"/>
         <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="247"/>
+        <location filename="../Debugger/DebugUI.py" line="248"/>
         <source>Coverage run of Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="247"/>
+        <location filename="../Debugger/DebugUI.py" line="248"/>
         <source>Coverage run of Project...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="252"/>
+        <location filename="../Debugger/DebugUI.py" line="253"/>
         <source>Perform a coverage run of the current Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="254"/>
+        <location filename="../Debugger/DebugUI.py" line="255"/>
         <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="264"/>
+        <location filename="../Debugger/DebugUI.py" line="265"/>
         <source>Profile Script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="264"/>
+        <location filename="../Debugger/DebugUI.py" line="265"/>
         <source>Profile Script...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="268"/>
-        <source>Profile the current Script</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="269"/>
+        <source>Profile the current Script</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="270"/>
         <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="277"/>
+        <location filename="../Debugger/DebugUI.py" line="278"/>
         <source>Profile Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="277"/>
+        <location filename="../Debugger/DebugUI.py" line="278"/>
         <source>Profile Project...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="282"/>
+        <location filename="../Debugger/DebugUI.py" line="283"/>
         <source>Profile the current Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="284"/>
+        <location filename="../Debugger/DebugUI.py" line="285"/>
         <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2094"/>
+        <location filename="../Debugger/DebugUI.py" line="2097"/>
         <source>Debug Script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="293"/>
+        <location filename="../Debugger/DebugUI.py" line="294"/>
         <source>&amp;Debug Script...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="298"/>
-        <source>Debug the current Script</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="299"/>
+        <source>Debug the current Script</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="300"/>
         <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2111"/>
+        <location filename="../Debugger/DebugUI.py" line="2114"/>
         <source>Debug Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="309"/>
+        <location filename="../Debugger/DebugUI.py" line="310"/>
         <source>Debug &amp;Project...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="314"/>
-        <source>Debug the current Project</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="316"/>
+        <source>Debug the current Project</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="318"/>
         <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="326"/>
+        <location filename="../Debugger/DebugUI.py" line="328"/>
         <source>Restart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="330"/>
-        <source>Restart the last debugged script</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="332"/>
+        <source>Restart the last debugged script</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="334"/>
         <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="480"/>
+        <location filename="../Debugger/DebugUI.py" line="483"/>
         <source>Stop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="347"/>
+        <location filename="../Debugger/DebugUI.py" line="349"/>
         <source>Stop the running script.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="348"/>
+        <location filename="../Debugger/DebugUI.py" line="350"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="357"/>
+        <location filename="../Debugger/DebugUI.py" line="359"/>
         <source>Continue</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="357"/>
+        <location filename="../Debugger/DebugUI.py" line="359"/>
         <source>&amp;Continue</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="362"/>
-        <source>Continue running the program from the current line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="364"/>
+        <source>Continue running the program from the current line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="366"/>
         <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="373"/>
+        <location filename="../Debugger/DebugUI.py" line="375"/>
         <source>Continue to Cursor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="373"/>
+        <location filename="../Debugger/DebugUI.py" line="375"/>
         <source>Continue &amp;To Cursor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="378"/>
-        <source>Continue running the program from the current line to the current cursor position</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="381"/>
+        <source>Continue running the program from the current line to the current cursor position</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="384"/>
         <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="426"/>
+        <location filename="../Debugger/DebugUI.py" line="429"/>
         <source>Single Step</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="426"/>
+        <location filename="../Debugger/DebugUI.py" line="429"/>
         <source>Sin&amp;gle Step</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="431"/>
+        <location filename="../Debugger/DebugUI.py" line="434"/>
         <source>Execute a single Python statement</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="432"/>
+        <location filename="../Debugger/DebugUI.py" line="435"/>
         <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="442"/>
+        <location filename="../Debugger/DebugUI.py" line="445"/>
         <source>Step Over</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="442"/>
+        <location filename="../Debugger/DebugUI.py" line="445"/>
         <source>Step &amp;Over</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="447"/>
-        <source>Execute a single Python statement staying in the current frame</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="450"/>
+        <source>Execute a single Python statement staying in the current frame</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="453"/>
         <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="461"/>
+        <location filename="../Debugger/DebugUI.py" line="464"/>
         <source>Step Out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="461"/>
+        <location filename="../Debugger/DebugUI.py" line="464"/>
         <source>Step Ou&amp;t</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="466"/>
-        <source>Execute Python statements until leaving the current frame</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="469"/>
+        <source>Execute Python statements until leaving the current frame</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="472"/>
         <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="480"/>
+        <location filename="../Debugger/DebugUI.py" line="483"/>
         <source>&amp;Stop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="485"/>
+        <location filename="../Debugger/DebugUI.py" line="488"/>
         <source>Stop debugging</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="486"/>
+        <location filename="../Debugger/DebugUI.py" line="489"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="493"/>
+        <location filename="../Debugger/DebugUI.py" line="496"/>
         <source>Variables Type Filter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="493"/>
+        <location filename="../Debugger/DebugUI.py" line="496"/>
         <source>Varia&amp;bles Type Filter...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="497"/>
+        <location filename="../Debugger/DebugUI.py" line="500"/>
         <source>Configure variables type filter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="499"/>
+        <location filename="../Debugger/DebugUI.py" line="502"/>
         <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="509"/>
+        <location filename="../Debugger/DebugUI.py" line="512"/>
         <source>Exceptions Filter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="509"/>
+        <location filename="../Debugger/DebugUI.py" line="512"/>
         <source>&amp;Exceptions Filter...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="513"/>
+        <location filename="../Debugger/DebugUI.py" line="516"/>
         <source>Configure exceptions filter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="515"/>
+        <location filename="../Debugger/DebugUI.py" line="518"/>
         <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="526"/>
+        <location filename="../Debugger/DebugUI.py" line="529"/>
         <source>Ignored Exceptions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="526"/>
+        <location filename="../Debugger/DebugUI.py" line="529"/>
         <source>&amp;Ignored Exceptions...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="530"/>
+        <location filename="../Debugger/DebugUI.py" line="533"/>
         <source>Configure ignored exceptions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="532"/>
+        <location filename="../Debugger/DebugUI.py" line="535"/>
         <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="551"/>
+        <location filename="../Debugger/DebugUI.py" line="554"/>
         <source>Toggle Breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="545"/>
+        <location filename="../Debugger/DebugUI.py" line="548"/>
         <source>Shift+F11</source>
         <comment>Debug|Toggle Breakpoint</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="552"/>
+        <location filename="../Debugger/DebugUI.py" line="555"/>
         <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="566"/>
+        <location filename="../Debugger/DebugUI.py" line="569"/>
         <source>Edit Breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="560"/>
+        <location filename="../Debugger/DebugUI.py" line="563"/>
         <source>Edit Breakpoint...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="560"/>
+        <location filename="../Debugger/DebugUI.py" line="563"/>
         <source>Shift+F12</source>
         <comment>Debug|Edit Breakpoint</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="567"/>
+        <location filename="../Debugger/DebugUI.py" line="570"/>
         <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="582"/>
+        <location filename="../Debugger/DebugUI.py" line="585"/>
         <source>Next Breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="575"/>
+        <location filename="../Debugger/DebugUI.py" line="578"/>
         <source>Ctrl+Shift+PgDown</source>
         <comment>Debug|Next Breakpoint</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="583"/>
+        <location filename="../Debugger/DebugUI.py" line="586"/>
         <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="597"/>
+        <location filename="../Debugger/DebugUI.py" line="600"/>
         <source>Previous Breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="590"/>
+        <location filename="../Debugger/DebugUI.py" line="593"/>
         <source>Ctrl+Shift+PgUp</source>
         <comment>Debug|Previous Breakpoint</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="598"/>
+        <location filename="../Debugger/DebugUI.py" line="601"/>
         <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="610"/>
+        <location filename="../Debugger/DebugUI.py" line="613"/>
         <source>Clear Breakpoints</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="611"/>
+        <location filename="../Debugger/DebugUI.py" line="614"/>
         <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="637"/>
+        <location filename="../Debugger/DebugUI.py" line="640"/>
         <source>&amp;Debug</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="641"/>
+        <location filename="../Debugger/DebugUI.py" line="644"/>
         <source>&amp;Breakpoints</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="684"/>
+        <location filename="../Debugger/DebugUI.py" line="687"/>
         <source>Start</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="698"/>
+        <location filename="../Debugger/DebugUI.py" line="701"/>
         <source>Debug</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1122"/>
+        <location filename="../Debugger/DebugUI.py" line="1125"/>
         <source>Message: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1141"/>
+        <location filename="../Debugger/DebugUI.py" line="1144"/>
         <source>Program terminated</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1169"/>
+        <location filename="../Debugger/DebugUI.py" line="1172"/>
         <source>The program being debugged contains an unspecified syntax error.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1188"/>
+        <location filename="../Debugger/DebugUI.py" line="1191"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1212"/>
+        <location filename="../Debugger/DebugUI.py" line="1215"/>
         <source>An unhandled exception occured. See the shell window for details.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1262"/>
+        <location filename="../Debugger/DebugUI.py" line="1265"/>
         <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1277"/>
+        <location filename="../Debugger/DebugUI.py" line="1280"/>
         <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1331"/>
+        <location filename="../Debugger/DebugUI.py" line="1334"/>
         <source>&lt;p&gt;The program generate the signal &quot;{0}&quot;.&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1345"/>
+        <location filename="../Debugger/DebugUI.py" line="1348"/>
         <source>The program being debugged has terminated unexpectedly.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1452"/>
+        <location filename="../Debugger/DebugUI.py" line="1455"/>
         <source>Breakpoint Condition Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1452"/>
+        <location filename="../Debugger/DebugUI.py" line="1455"/>
         <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1491"/>
+        <location filename="../Debugger/DebugUI.py" line="1494"/>
         <source>Watch Expression Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1491"/>
+        <location filename="../Debugger/DebugUI.py" line="1494"/>
         <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1521"/>
+        <location filename="../Debugger/DebugUI.py" line="1524"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; already exists.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1526"/>
+        <location filename="../Debugger/DebugUI.py" line="1529"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1531"/>
+        <location filename="../Debugger/DebugUI.py" line="1534"/>
         <source>Watch expression already exists</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1700"/>
+        <location filename="../Debugger/DebugUI.py" line="1703"/>
         <source>Coverage of Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1687"/>
+        <location filename="../Debugger/DebugUI.py" line="1690"/>
         <source>Coverage of Script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1973"/>
+        <location filename="../Debugger/DebugUI.py" line="1976"/>
         <source>There is no main script defined for the current project. Aborting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1837"/>
+        <location filename="../Debugger/DebugUI.py" line="1840"/>
         <source>Profile of Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1824"/>
+        <location filename="../Debugger/DebugUI.py" line="1827"/>
         <source>Profile of Script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2111"/>
+        <location filename="../Debugger/DebugUI.py" line="2114"/>
         <source>There is no main script defined for the current project. No debugging possible.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="406"/>
+        <location filename="../Debugger/DebugUI.py" line="409"/>
         <source>Move Instruction Pointer to Cursor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="406"/>
+        <location filename="../Debugger/DebugUI.py" line="409"/>
         <source>&amp;Jump To Cursor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="411"/>
-        <source>Skip the code from the current line to the current cursor position</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="414"/>
+        <source>Skip the code from the current line to the current cursor position</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="417"/>
         <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It&apos;s not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1409"/>
+        <location filename="../Debugger/DebugUI.py" line="1412"/>
         <source>No locals available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="639"/>
+        <location filename="../Debugger/DebugUI.py" line="642"/>
         <source>Sta&amp;rt</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7379,32 +7379,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="389"/>
+        <location filename="../Debugger/DebugUI.py" line="392"/>
         <source>Continue Until</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="389"/>
+        <location filename="../Debugger/DebugUI.py" line="392"/>
         <source>Continue &amp;Until</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="394"/>
-        <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="397"/>
+        <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="400"/>
         <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1127"/>
+        <location filename="../Debugger/DebugUI.py" line="1130"/>
         <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1131"/>
+        <location filename="../Debugger/DebugUI.py" line="1134"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7821,22 +7821,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="282"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="283"/>
         <source>Add allowed host</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305"/>
         <source>Enter the IP address of an allowed host</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="316"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318"/>
         <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="316"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318"/>
         <source>Edit allowed host</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8122,7 +8122,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/DebuggerPropertiesDialog.py" line="129"/>
+        <location filename="../Project/DebuggerPropertiesDialog.py" line="130"/>
         <source>All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8908,7 +8908,7 @@
 <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="316"/>
         <source>.desktop Wizard</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9243,22 +9243,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>FreeDesktop Standard .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>KDE Plasma MetaData .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>Ubuntu Unity QuickList .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="316"/>
         <source>Only one of &apos;Only Show In&apos; or  &apos;Not Show In&apos; allowed.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9349,37 +9349,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="220"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="223"/>
         <source>Download canceled: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="193"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="196"/>
         <source>VirusTotal scan scheduled: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="210"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="213"/>
         <source>Save File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="249"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="252"/>
         <source>Download directory ({0}) couldn&apos;t be created.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="439"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="442"/>
         <source>?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="452"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="455"/>
         <source>{0} of {1} - Stopped</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="448"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="451"/>
         <source>{0} downloaded</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9389,7 +9389,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="437"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="440"/>
         <source>{0} of {1} ({2}/sec) {3}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9407,42 +9407,42 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="107"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="108"/>
         <source>Open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="111"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="112"/>
         <source>Cancel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="115"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="116"/>
         <source>Open Containing Folder</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="119"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="120"/>
         <source>Go to Download Page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="122"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="123"/>
         <source>Copy Download Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="126"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="127"/>
         <source>Select All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="135"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="136"/>
         <source>Remove From List</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="168"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="169"/>
         <source>There are %n downloads in progress.
 Do you want to quit anyway?</source>
         <translation type="unfinished">
@@ -9450,39 +9450,39 @@
         </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="257"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="258"/>
         <source>Suspicuous URL detected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="257"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="258"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="588"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="589"/>
         <source>Download Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="500"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="501"/>
         <source>Downloads finished</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="500"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="501"/>
         <source>All files have been downloaded.</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="622"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="623"/>
         <source>{0}% of %n file(s) ({1}) {2}</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="629"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="630"/>
         <source>{0}% - Download Manager</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9611,27 +9611,27 @@
 <context>
     <name>E5GoogleMail</name>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="159"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="160"/>
         <source>The client secrets file is not present. Has the Gmail API been enabled?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="196"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="197"/>
         <source>OAuth2 Authorization Code</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="196"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="197"/>
         <source>Enter the OAuth2 authorization code:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="240"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="241"/>
         <source>No authorized session available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="258"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="259"/>
         <source>Message #{0} sent.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9639,7 +9639,7 @@
 <context>
     <name>E5GraphicsView</name>
     <message>
-        <location filename="../E5Graphics/E5GraphicsView.py" line="57"/>
+        <location filename="../E5Graphics/E5GraphicsView.py" line="59"/>
         <source>&lt;b&gt;Graphics View&lt;/b&gt;
 &lt;p&gt;This graphics view is used to show a diagram. 
 There are various actions available to manipulate the 
@@ -9658,7 +9658,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Graphics/E5GraphicsView.py" line="415"/>
+        <location filename="../E5Graphics/E5GraphicsView.py" line="417"/>
         <source>{0}, Page {1}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10096,12 +10096,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5NetworkProxyFactory.py" line="227"/>
+        <location filename="../E5Network/E5NetworkProxyFactory.py" line="229"/>
         <source>Proxy Configuration Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5NetworkProxyFactory.py" line="227"/>
+        <location filename="../E5Network/E5NetworkProxyFactory.py" line="229"/>
         <source>Proxy usage was activated but no proxy host for protocol &apos;{0}&apos; configured.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10109,32 +10109,32 @@
 <context>
     <name>E5PathPickerBase</name>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="161"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="162"/>
         <source>Enter Path Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="158"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="159"/>
         <source>Enter Path Names separated by &apos;;&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="499"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="500"/>
         <source>Choose a file to open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="501"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="502"/>
         <source>Choose files to open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="506"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="507"/>
         <source>Choose a file to save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="508"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="509"/>
         <source>Choose a directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10200,32 +10200,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="107"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="117"/>
         <source>Process canceled.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="121"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="134"/>
         <source>Process finished successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="123"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="136"/>
         <source>Process crashed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="125"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="138"/>
         <source>Process finished with exit code {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="179"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="192"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="179"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="192"/>
         <source>&lt;p&gt;The process &lt;b&gt;{0}&lt;/b&gt; could not be started.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10271,12 +10271,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="80"/>
+        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="82"/>
         <source>(Unknown)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="82"/>
+        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="84"/>
         <source>(Unknown common name)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10364,72 +10364,72 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="300"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="305"/>
         <source>(Unknown)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="302"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="307"/>
         <source>(Unknown common name)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="150"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="152"/>
         <source>Delete Server Certificate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="150"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="152"/>
         <source>&lt;p&gt;Shall the server certificate really be deleted?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;&lt;p&gt;If the server certificate is deleted, the normal security checks will be reinstantiated and the server has to present a valid certificate.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="489"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="495"/>
         <source>Import Certificate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="399"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="405"/>
         <source>&lt;p&gt;The certificate &lt;b&gt;{0}&lt;/b&gt; already exists. Skipping.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="354"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="359"/>
         <source>Delete CA Certificate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="354"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="359"/>
         <source>&lt;p&gt;Shall the CA certificate really be deleted?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;&lt;p&gt;If the CA certificate is deleted, the browser will not trust any certificate issued by this CA.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="499"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="505"/>
         <source>Export Certificate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="440"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="446"/>
         <source>Certificate File (PEM) (*.pem);;Certificate File (DER) (*.der)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="456"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="462"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="467"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="473"/>
         <source>&lt;p&gt;The certificate could not be written to file &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="489"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="495"/>
         <source>Certificate Files (*.pem *.crt *.der *.cer *.ca);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="499"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="505"/>
         <source>&lt;p&gt;The certificate could not be read from file &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10525,7 +10525,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesInfoWidget.py" line="151"/>
+        <location filename="../E5Network/E5SslCertificatesInfoWidget.py" line="156"/>
         <source>&lt;not part of the certificate&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10533,42 +10533,42 @@
 <context>
     <name>E5SslErrorHandler</name>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="141"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="142"/>
         <source>SSL Errors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="141"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="142"/>
         <source>&lt;p&gt;SSL Errors for &lt;br /&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Do you want to ignore these errors?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="156"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="157"/>
         <source>Certificates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="156"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="157"/>
         <source>&lt;p&gt;Certificates:&lt;br/&gt;{0}&lt;br/&gt;Do you want to accept all these certificates?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="210"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="212"/>
         <source>Name: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="220"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="223"/>
         <source>&lt;br/&gt;Organization: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="230"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="234"/>
         <source>&lt;br/&gt;Issuer: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="239"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="244"/>
         <source>&lt;br/&gt;Not valid before: {0}&lt;br/&gt;Valid Until: {1}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10576,59 +10576,59 @@
 <context>
     <name>E5SslInfoWidget</name>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="55"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="56"/>
         <source>Identity</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="65"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="66"/>
         <source>Warning: this site is NOT carrying a certificate.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="73"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="74"/>
         <source>The certificate for this site is valid and has been verified by:
 {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="80"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="81"/>
         <source>The certificate for this site is NOT valid.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="89"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="90"/>
         <source>Certificate Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="104"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="105"/>
         <source>Encryption</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="115"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="116"/>
         <source>Your connection to &quot;{0}&quot; is NOT encrypted.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="124"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="125"/>
         <source>Your connection to &quot;{0}&quot; is encrypted.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="143"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="144"/>
         <source>unknown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="166"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="167"/>
         <source>It uses protocol: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="173"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="174"/>
         <source>It is encrypted using {0} at {1} bits, with {2} for message authentication and {3} as key exchange mechanism.
 
 </source>
@@ -10673,12 +10673,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5StringListEditWidget.py" line="99"/>
+        <location filename="../E5Gui/E5StringListEditWidget.py" line="100"/>
         <source>Add Entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5StringListEditWidget.py" line="99"/>
+        <location filename="../E5Gui/E5StringListEditWidget.py" line="100"/>
         <source>Enter the entry to add to the list:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10696,32 +10696,32 @@
 <context>
     <name>E5TextEditSearchWidget</name>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="81"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="83"/>
         <source>Find:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="104"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="107"/>
         <source>Match case</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="109"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="112"/>
         <source>Whole word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="119"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="122"/>
         <source>Press to find the previous occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="126"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="129"/>
         <source>Press to find the next occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="341"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="347"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10837,42 +10837,42 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="84"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="85"/>
         <source>--Separator--</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="145"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="151"/>
         <source>New Toolbar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="137"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="143"/>
         <source>Toolbar Name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="208"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="214"/>
         <source>A toolbar with the name &lt;b&gt;{0}&lt;/b&gt; already exists.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="170"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="176"/>
         <source>Remove Toolbar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="170"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="176"/>
         <source>Should the toolbar &lt;b&gt;{0}&lt;/b&gt; really be removed?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="208"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="214"/>
         <source>Rename Toolbar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="197"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="203"/>
         <source>New Toolbar Name:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10880,7 +10880,7 @@
 <context>
     <name>E5XmlRpcClient</name>
     <message>
-        <location filename="../E5Network/E5XmlRpcClient.py" line="108"/>
+        <location filename="../E5Network/E5XmlRpcClient.py" line="111"/>
         <source>SSL Error</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10976,7 +10976,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/EditBreakpointDialog.py" line="86"/>
+        <location filename="../Debugger/EditBreakpointDialog.py" line="87"/>
         <source>Add Breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11057,932 +11057,932 @@
 <context>
     <name>Editor</name>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3146"/>
+        <location filename="../QScintilla/Editor.py" line="3153"/>
         <source>Open File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="389"/>
+        <location filename="../QScintilla/Editor.py" line="391"/>
         <source>&lt;p&gt;The size of the file &lt;b&gt;{0}&lt;/b&gt; is &lt;b&gt;{1} KB&lt;/b&gt;. Do you really want to load it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="478"/>
+        <location filename="../QScintilla/Editor.py" line="480"/>
         <source>&lt;b&gt;A Source Editor Window&lt;/b&gt;&lt;p&gt;This window is used to display and edit a source file.  You can open as many of these as you like. The name of the file is displayed in the window&apos;s titlebar.&lt;/p&gt;&lt;p&gt;In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.&lt;/p&gt;&lt;p&gt;In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.&lt;/p&gt;&lt;p&gt;These actions can be reversed via the context menu.&lt;/p&gt;&lt;p&gt;Ctrl clicking on a syntax error marker shows some info about this error.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="795"/>
+        <location filename="../QScintilla/Editor.py" line="797"/>
         <source>Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="798"/>
+        <location filename="../QScintilla/Editor.py" line="800"/>
         <source>Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="801"/>
+        <location filename="../QScintilla/Editor.py" line="803"/>
         <source>Revert to last saved state</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="805"/>
+        <location filename="../QScintilla/Editor.py" line="807"/>
         <source>Cut</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="808"/>
+        <location filename="../QScintilla/Editor.py" line="810"/>
         <source>Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="811"/>
+        <location filename="../QScintilla/Editor.py" line="813"/>
         <source>Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="819"/>
+        <location filename="../QScintilla/Editor.py" line="821"/>
         <source>Indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="822"/>
+        <location filename="../QScintilla/Editor.py" line="824"/>
         <source>Unindent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="825"/>
+        <location filename="../QScintilla/Editor.py" line="827"/>
         <source>Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="828"/>
+        <location filename="../QScintilla/Editor.py" line="830"/>
         <source>Uncomment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="831"/>
+        <location filename="../QScintilla/Editor.py" line="833"/>
         <source>Stream Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="834"/>
+        <location filename="../QScintilla/Editor.py" line="836"/>
         <source>Box Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="842"/>
-        <source>Select to brace</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="844"/>
+        <source>Select to brace</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="846"/>
         <source>Select all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="845"/>
+        <location filename="../QScintilla/Editor.py" line="847"/>
         <source>Deselect all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7935"/>
+        <location filename="../QScintilla/Editor.py" line="7978"/>
         <source>Check spelling...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="853"/>
+        <location filename="../QScintilla/Editor.py" line="855"/>
         <source>Check spelling of selection...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="857"/>
+        <location filename="../QScintilla/Editor.py" line="859"/>
         <source>Remove from dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="863"/>
+        <location filename="../QScintilla/Editor.py" line="865"/>
         <source>Shorten empty lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="870"/>
+        <location filename="../QScintilla/Editor.py" line="872"/>
         <source>Use Monospaced Font</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="875"/>
+        <location filename="../QScintilla/Editor.py" line="877"/>
         <source>Autosave enabled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="879"/>
+        <location filename="../QScintilla/Editor.py" line="881"/>
         <source>Typing aids enabled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="886"/>
+        <location filename="../QScintilla/Editor.py" line="888"/>
         <source>Automatic Completion enabled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="894"/>
+        <location filename="../QScintilla/Editor.py" line="896"/>
         <source>Calltip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="910"/>
+        <location filename="../QScintilla/Editor.py" line="912"/>
         <source>New Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="913"/>
+        <location filename="../QScintilla/Editor.py" line="915"/>
         <source>New Document View (with new split)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="918"/>
+        <location filename="../QScintilla/Editor.py" line="920"/>
         <source>Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="924"/>
+        <location filename="../QScintilla/Editor.py" line="926"/>
         <source>Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="927"/>
+        <location filename="../QScintilla/Editor.py" line="929"/>
         <source>Save As...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="930"/>
+        <location filename="../QScintilla/Editor.py" line="932"/>
         <source>Save Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="936"/>
+        <location filename="../QScintilla/Editor.py" line="938"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="940"/>
+        <location filename="../QScintilla/Editor.py" line="942"/>
         <source>Print Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="943"/>
+        <location filename="../QScintilla/Editor.py" line="945"/>
         <source>Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="966"/>
+        <location filename="../QScintilla/Editor.py" line="968"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="972"/>
-        <source>Complete from Document</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="974"/>
-        <source>Complete from APIs</source>
+        <source>Complete from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="976"/>
+        <source>Complete from APIs</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="978"/>
         <source>Complete from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="990"/>
+        <location filename="../QScintilla/Editor.py" line="992"/>
         <source>Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1000"/>
+        <location filename="../QScintilla/Editor.py" line="1002"/>
         <source>Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1010"/>
-        <source>Show</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1012"/>
+        <source>Show</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1014"/>
         <source>Code metrics...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1013"/>
-        <source>Code coverage...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1015"/>
+        <source>Code coverage...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1017"/>
         <source>Show code coverage annotations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1018"/>
+        <location filename="../QScintilla/Editor.py" line="1020"/>
         <source>Hide code coverage annotations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1021"/>
+        <location filename="../QScintilla/Editor.py" line="1023"/>
         <source>Profile data...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1034"/>
-        <source>Diagrams</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1036"/>
-        <source>Class Diagram...</source>
+        <source>Diagrams</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1038"/>
-        <source>Package Diagram...</source>
+        <source>Class Diagram...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1040"/>
-        <source>Imports Diagram...</source>
+        <source>Package Diagram...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1042"/>
+        <source>Imports Diagram...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1044"/>
         <source>Application Diagram...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1046"/>
+        <location filename="../QScintilla/Editor.py" line="1048"/>
         <source>Load Diagram...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1060"/>
+        <location filename="../QScintilla/Editor.py" line="1062"/>
         <source>Languages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1193"/>
+        <location filename="../QScintilla/Editor.py" line="1195"/>
         <source>No Language</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1089"/>
+        <location filename="../QScintilla/Editor.py" line="1091"/>
         <source>Guessed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
+        <location filename="../QScintilla/Editor.py" line="1431"/>
         <source>Alternatives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1109"/>
+        <location filename="../QScintilla/Editor.py" line="1111"/>
         <source>Encodings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1131"/>
+        <location filename="../QScintilla/Editor.py" line="1133"/>
         <source>Re-Open With Encoding</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1150"/>
+        <location filename="../QScintilla/Editor.py" line="1152"/>
         <source>End-of-Line Type</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1154"/>
+        <location filename="../QScintilla/Editor.py" line="1156"/>
         <source>Unix</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1161"/>
+        <location filename="../QScintilla/Editor.py" line="1163"/>
         <source>Windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1168"/>
+        <location filename="../QScintilla/Editor.py" line="1170"/>
         <source>Macintosh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1218"/>
+        <location filename="../QScintilla/Editor.py" line="1220"/>
         <source>Export as</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1240"/>
-        <source>Toggle bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1242"/>
-        <source>Next bookmark</source>
+        <source>Toggle bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1244"/>
-        <source>Previous bookmark</source>
+        <source>Next bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1246"/>
+        <source>Previous bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1248"/>
         <source>Clear all bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1255"/>
-        <source>Toggle breakpoint</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1257"/>
+        <source>Toggle breakpoint</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1259"/>
         <source>Toggle temporary breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1260"/>
+        <location filename="../QScintilla/Editor.py" line="1262"/>
         <source>Edit breakpoint...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5656"/>
+        <location filename="../QScintilla/Editor.py" line="5696"/>
         <source>Enable breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1265"/>
-        <source>Next breakpoint</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1267"/>
+        <source>Next breakpoint</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1269"/>
         <source>Previous breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1272"/>
+        <location filename="../QScintilla/Editor.py" line="1274"/>
         <source>Clear all breakpoints</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1320"/>
+        <location filename="../QScintilla/Editor.py" line="1322"/>
         <source>Goto syntax error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1324"/>
+        <location filename="../QScintilla/Editor.py" line="1326"/>
         <source>Show syntax error message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1329"/>
+        <location filename="../QScintilla/Editor.py" line="1331"/>
         <source>Clear syntax error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1334"/>
+        <location filename="../QScintilla/Editor.py" line="1336"/>
         <source>Next warning</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1338"/>
+        <location filename="../QScintilla/Editor.py" line="1340"/>
         <source>Previous warning</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1342"/>
+        <location filename="../QScintilla/Editor.py" line="1344"/>
         <source>Show warning message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1346"/>
+        <location filename="../QScintilla/Editor.py" line="1348"/>
         <source>Clear warnings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1351"/>
+        <location filename="../QScintilla/Editor.py" line="1353"/>
         <source>Next uncovered line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1355"/>
+        <location filename="../QScintilla/Editor.py" line="1357"/>
         <source>Previous uncovered line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1360"/>
+        <location filename="../QScintilla/Editor.py" line="1362"/>
         <source>Next task</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1364"/>
+        <location filename="../QScintilla/Editor.py" line="1366"/>
         <source>Previous task</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1369"/>
+        <location filename="../QScintilla/Editor.py" line="1371"/>
         <source>Next change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1373"/>
+        <location filename="../QScintilla/Editor.py" line="1375"/>
         <source>Previous change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1414"/>
+        <location filename="../QScintilla/Editor.py" line="1416"/>
         <source>Export source</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1406"/>
+        <location filename="../QScintilla/Editor.py" line="1408"/>
         <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1414"/>
+        <location filename="../QScintilla/Editor.py" line="1416"/>
         <source>No export format given. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1425"/>
+        <location filename="../QScintilla/Editor.py" line="1427"/>
         <source>Alternatives ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1445"/>
+        <location filename="../QScintilla/Editor.py" line="1447"/>
         <source>Pygments Lexer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1445"/>
+        <location filename="../QScintilla/Editor.py" line="1447"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1989"/>
+        <location filename="../QScintilla/Editor.py" line="1991"/>
         <source>Modification of Read Only file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1989"/>
+        <location filename="../QScintilla/Editor.py" line="1991"/>
         <source>You are attempting to change a read only file. Please save to a different file first.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2711"/>
+        <location filename="../QScintilla/Editor.py" line="2715"/>
         <source>Printing...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2728"/>
+        <location filename="../QScintilla/Editor.py" line="2735"/>
         <source>Printing completed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2730"/>
+        <location filename="../QScintilla/Editor.py" line="2737"/>
         <source>Error while printing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2733"/>
+        <location filename="../QScintilla/Editor.py" line="2740"/>
         <source>Printing aborted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3088"/>
+        <location filename="../QScintilla/Editor.py" line="3095"/>
         <source>File Modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3088"/>
+        <location filename="../QScintilla/Editor.py" line="3095"/>
         <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="../QScintilla/Editor.py" line="3146"/>
+        <location filename="../QScintilla/Editor.py" line="3153"/>
         <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/Editor.py" line="3333"/>
+        <location filename="../QScintilla/Editor.py" line="3340"/>
         <source>Save File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3270"/>
+        <location filename="../QScintilla/Editor.py" line="3277"/>
         <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/Editor.py" line="3333"/>
+        <location filename="../QScintilla/Editor.py" line="3340"/>
         <source>&lt;p&gt;The 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="4811"/>
+        <location filename="../QScintilla/Editor.py" line="4838"/>
         <source>Autocompletion</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4811"/>
+        <location filename="../QScintilla/Editor.py" line="4838"/>
         <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="4943"/>
+        <location filename="../QScintilla/Editor.py" line="4980"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4943"/>
+        <location filename="../QScintilla/Editor.py" line="4980"/>
         <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="5222"/>
+        <location filename="../QScintilla/Editor.py" line="5262"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5222"/>
+        <location filename="../QScintilla/Editor.py" line="5262"/>
         <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="5659"/>
+        <location filename="../QScintilla/Editor.py" line="5699"/>
         <source>Disable breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6034"/>
+        <location filename="../QScintilla/Editor.py" line="6074"/>
         <source>Code Coverage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6034"/>
+        <location filename="../QScintilla/Editor.py" line="6074"/>
         <source>Please select a coverage file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6097"/>
+        <location filename="../QScintilla/Editor.py" line="6137"/>
         <source>Show Code Coverage Annotations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6090"/>
+        <location filename="../QScintilla/Editor.py" line="6130"/>
         <source>All lines have been covered.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6097"/>
+        <location filename="../QScintilla/Editor.py" line="6137"/>
         <source>There is no coverage file available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6214"/>
+        <location filename="../QScintilla/Editor.py" line="6254"/>
         <source>Profile Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6214"/>
+        <location filename="../QScintilla/Editor.py" line="6254"/>
         <source>Please select a profile file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6376"/>
+        <location filename="../QScintilla/Editor.py" line="6416"/>
         <source>Syntax Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6376"/>
+        <location filename="../QScintilla/Editor.py" line="6416"/>
         <source>No syntax error message available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6588"/>
+        <location filename="../QScintilla/Editor.py" line="6628"/>
         <source>Warning</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6588"/>
+        <location filename="../QScintilla/Editor.py" line="6628"/>
         <source>No warning messages available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6650"/>
+        <location filename="../QScintilla/Editor.py" line="6690"/>
         <source>Style: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6653"/>
+        <location filename="../QScintilla/Editor.py" line="6693"/>
         <source>Warning: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6660"/>
+        <location filename="../QScintilla/Editor.py" line="6700"/>
         <source>Error: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Macro Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Select a macro name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6793"/>
+        <location filename="../QScintilla/Editor.py" line="6833"/>
         <source>Load macro file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6835"/>
+        <location filename="../QScintilla/Editor.py" line="6875"/>
         <source>Macro files (*.macro)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6815"/>
+        <location filename="../QScintilla/Editor.py" line="6855"/>
         <source>Error loading macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6806"/>
+        <location filename="../QScintilla/Editor.py" line="6846"/>
         <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="6815"/>
+        <location filename="../QScintilla/Editor.py" line="6855"/>
         <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="6835"/>
+        <location filename="../QScintilla/Editor.py" line="6875"/>
         <source>Save macro file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6852"/>
+        <location filename="../QScintilla/Editor.py" line="6892"/>
         <source>Save macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6852"/>
+        <location filename="../QScintilla/Editor.py" line="6892"/>
         <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="6867"/>
+        <location filename="../QScintilla/Editor.py" line="6907"/>
         <source>Error saving macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6867"/>
+        <location filename="../QScintilla/Editor.py" line="6907"/>
         <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="6880"/>
+        <location filename="../QScintilla/Editor.py" line="6920"/>
         <source>Start Macro Recording</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6880"/>
+        <location filename="../QScintilla/Editor.py" line="6920"/>
         <source>Macro recording is already active. Start new?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6906"/>
+        <location filename="../QScintilla/Editor.py" line="6946"/>
         <source>Macro Recording</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6906"/>
+        <location filename="../QScintilla/Editor.py" line="6946"/>
         <source>Enter name of the macro:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7072"/>
+        <location filename="../QScintilla/Editor.py" line="7112"/>
         <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="7076"/>
+        <location filename="../QScintilla/Editor.py" line="7116"/>
         <source>File changed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7267"/>
+        <location filename="../QScintilla/Editor.py" line="7310"/>
         <source>{0} (ro)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7408"/>
+        <location filename="../QScintilla/Editor.py" line="7451"/>
         <source>Drop Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7408"/>
+        <location filename="../QScintilla/Editor.py" line="7451"/>
         <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="7429"/>
+        <location filename="../QScintilla/Editor.py" line="7472"/>
         <source>Resources</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7431"/>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
         <source>Add file...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7433"/>
+        <location filename="../QScintilla/Editor.py" line="7476"/>
         <source>Add files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7435"/>
+        <location filename="../QScintilla/Editor.py" line="7478"/>
         <source>Add aliased file...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7438"/>
+        <location filename="../QScintilla/Editor.py" line="7481"/>
         <source>Add localized resource...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7442"/>
+        <location filename="../QScintilla/Editor.py" line="7485"/>
         <source>Add resource frame</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7461"/>
-        <source>Add file resource</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7477"/>
-        <source>Add file resources</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="7504"/>
+        <source>Add file resource</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7520"/>
+        <source>Add file resources</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7547"/>
         <source>Add aliased file resource</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7504"/>
+        <location filename="../QScintilla/Editor.py" line="7547"/>
         <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7570"/>
+        <location filename="../QScintilla/Editor.py" line="7613"/>
         <source>Package Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7570"/>
+        <location filename="../QScintilla/Editor.py" line="7613"/>
         <source>Include class attributes?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7592"/>
+        <location filename="../QScintilla/Editor.py" line="7635"/>
         <source>Imports Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7592"/>
+        <location filename="../QScintilla/Editor.py" line="7635"/>
         <source>Include imports from external modules?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7606"/>
+        <location filename="../QScintilla/Editor.py" line="7649"/>
         <source>Application Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7606"/>
+        <location filename="../QScintilla/Editor.py" line="7649"/>
         <source>Include module names?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7938"/>
+        <location filename="../QScintilla/Editor.py" line="7981"/>
         <source>Add to dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7940"/>
+        <location filename="../QScintilla/Editor.py" line="7983"/>
         <source>Ignore All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8356"/>
+        <location filename="../QScintilla/Editor.py" line="8399"/>
         <source>Sort Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8356"/>
+        <location filename="../QScintilla/Editor.py" line="8399"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8445"/>
+        <location filename="../QScintilla/Editor.py" line="8488"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8445"/>
+        <location filename="../QScintilla/Editor.py" line="8488"/>
         <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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="969"/>
+        <location filename="../QScintilla/Editor.py" line="971"/>
         <source>Clear Completions Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="896"/>
+        <location filename="../QScintilla/Editor.py" line="898"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1377"/>
+        <location filename="../QScintilla/Editor.py" line="1379"/>
         <source>Clear changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="815"/>
+        <location filename="../QScintilla/Editor.py" line="817"/>
         <source>Execute Selection In Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8566"/>
+        <location filename="../QScintilla/Editor.py" line="8609"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8566"/>
+        <location filename="../QScintilla/Editor.py" line="8609"/>
         <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/Editor.py" line="1281"/>
+        <location filename="../QScintilla/Editor.py" line="1283"/>
         <source>Toggle all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1286"/>
+        <location filename="../QScintilla/Editor.py" line="1288"/>
         <source>Toggle all folds (including children)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1291"/>
+        <location filename="../QScintilla/Editor.py" line="1293"/>
         <source>Toggle current fold</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1297"/>
+        <location filename="../QScintilla/Editor.py" line="1299"/>
         <source>Expand (including children)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1302"/>
+        <location filename="../QScintilla/Editor.py" line="1304"/>
         <source>Collapse (including children)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1308"/>
+        <location filename="../QScintilla/Editor.py" line="1310"/>
         <source>Clear all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1189"/>
+        <location filename="../QScintilla/Editor.py" line="1191"/>
         <source>Spell Check Languages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7106"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8760"/>
+        <location filename="../QScintilla/Editor.py" line="8803"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12374,82 +12374,82 @@
 <context>
     <name>EditorButtonsWidget</name>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="174"/>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="176"/>
         <source>Bold</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="176"/>
-        <source>Italic</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="178"/>
+        <source>Italic</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="180"/>
         <source>Strike Through</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="181"/>
-        <source>Header 1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="183"/>
-        <source>Header 2</source>
+        <source>Header 1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="185"/>
-        <source>Header 3</source>
+        <source>Header 2</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="187"/>
+        <source>Header 3</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="189"/>
         <source>Header</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="192"/>
-        <source>Inline Code</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="194"/>
-        <source>Code Block</source>
+        <source>Inline Code</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="196"/>
+        <source>Code Block</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="198"/>
         <source>Quote</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="199"/>
-        <source>Add Hyperlink</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="201"/>
-        <source>Add Horizontal Line</source>
+        <source>Add Hyperlink</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="203"/>
+        <source>Add Horizontal Line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="205"/>
         <source>Add Image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="206"/>
-        <source>Add Bulleted List</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="208"/>
+        <source>Add Bulleted List</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="210"/>
         <source>Add Numbered List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="274"/>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="276"/>
         <source>Level {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -13389,12 +13389,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="243"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="244"/>
         <source>Tab and Indent Override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="243"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="244"/>
         <source>Shall the selected entries really be removed?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -13575,7 +13575,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="426"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="427"/>
         <source>Fill to end of line</source>
         <translation type="unfinished"></translation>
     </message>
@@ -13685,27 +13685,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="424"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="425"/>
         <source>Enabled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="425"/>
-        <source>Disabled</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="426"/>
+        <source>Disabled</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="427"/>
         <source>Select fill to end of line for all styles</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="591"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="592"/>
         <source>Export Highlighting Styles</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="642"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="643"/>
         <source>Import Highlighting Styles</source>
         <translation type="unfinished"></translation>
     </message>
@@ -13730,27 +13730,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="783"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="784"/>
         <source>Delete Sub-Style</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="783"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="784"/>
         <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="823"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="824"/>
         <source>{0} - Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="851"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="852"/>
         <source>Reset Sub-Styles to Default</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="851"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="852"/>
         <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>
@@ -13800,27 +13800,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="548"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="549"/>
         <source>Highlighting Styles File (*.ehj);;XML Highlighting Styles File (*.e6h)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="567"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="568"/>
         <source>&lt;p&gt;The highlighting styles file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="591"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="592"/>
         <source>&lt;p&gt;The highlighting styles 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="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="610"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="611"/>
         <source>Highlighting Styles File (*.ehj);;XML Highlighting Styles File (*.e6h *.e4h)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="642"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="643"/>
         <source>&lt;p&gt;The highlighting styles 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>
@@ -14031,47 +14031,47 @@
 <context>
     <name>EditorOutlineView</name>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="268"/>
+        <location filename="../QScintilla/EditorOutline.py" line="269"/>
         <source>Goto</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="310"/>
+        <location filename="../QScintilla/EditorOutline.py" line="311"/>
         <source>Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="314"/>
+        <location filename="../QScintilla/EditorOutline.py" line="315"/>
         <source>Copy Path to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="319"/>
+        <location filename="../QScintilla/EditorOutline.py" line="320"/>
         <source>Expand All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="323"/>
+        <location filename="../QScintilla/EditorOutline.py" line="324"/>
         <source>Collapse All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="328"/>
+        <location filename="../QScintilla/EditorOutline.py" line="329"/>
         <source>Increment Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="332"/>
+        <location filename="../QScintilla/EditorOutline.py" line="333"/>
         <source>Decrement Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="390"/>
+        <location filename="../QScintilla/EditorOutline.py" line="391"/>
         <source>Line {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="336"/>
+        <location filename="../QScintilla/EditorOutline.py" line="337"/>
         <source>Set Default Width</source>
         <translation type="unfinished"></translation>
     </message>
@@ -15549,32 +15549,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="59"/>
         <source>Word Boundary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="60"/>
-        <source>Character Boundary</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="62"/>
+        <source>Character Boundary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="65"/>
         <source>No Indicator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="64"/>
-        <source>Indicator by Text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="66"/>
-        <source>Indicator by Margin</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="68"/>
+        <source>Indicator by Text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="71"/>
+        <source>Indicator by Margin</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="74"/>
         <source>Indicator in Line Number Margin</source>
         <translation type="unfinished"></translation>
     </message>
@@ -15730,22 +15730,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="72"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="78"/>
         <source>Fixed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="74"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="80"/>
         <source>Aligned</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="76"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="82"/>
         <source>Aligned plus One</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="79"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="85"/>
         <source>Aligned plus Two</source>
         <translation type="unfinished"></translation>
     </message>
@@ -16409,37 +16409,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="133"/>
+        <location filename="../UI/EmailDialog.py" line="134"/>
         <source>Close dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="133"/>
+        <location filename="../UI/EmailDialog.py" line="134"/>
         <source>Do you really want to close the dialog?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="321"/>
+        <location filename="../UI/EmailDialog.py" line="322"/>
         <source>Mail Server Password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="321"/>
+        <location filename="../UI/EmailDialog.py" line="322"/>
         <source>Enter your mail server password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="341"/>
+        <location filename="../UI/EmailDialog.py" line="342"/>
         <source>&lt;p&gt;Authentication failed.&lt;br&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="410"/>
+        <location filename="../UI/EmailDialog.py" line="411"/>
         <source>&lt;p&gt;Message could not be sent.&lt;br&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="423"/>
+        <location filename="../UI/EmailDialog.py" line="424"/>
         <source>Attach file</source>
         <translation type="unfinished"></translation>
     </message>
@@ -16449,22 +16449,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="157"/>
+        <location filename="../UI/EmailDialog.py" line="158"/>
         <source>Gmail API Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="366"/>
+        <location filename="../UI/EmailDialog.py" line="367"/>
         <source>Send Message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="151"/>
+        <location filename="../UI/EmailDialog.py" line="152"/>
         <source>&lt;p&gt;The Google Mail Client API is not installed. Use &lt;code&gt;{0}&lt;/code&gt; to install it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="410"/>
+        <location filename="../UI/EmailDialog.py" line="411"/>
         <source>Send Message via Gmail</source>
         <translation type="unfinished"></translation>
     </message>
@@ -16948,22 +16948,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="82"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="84"/>
         <source>{0} - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="89"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="89"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="128"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="137"/>
         <source>
 {0} finished.
 </source>
@@ -17236,7 +17236,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="62"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="63"/>
         <source>&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot;&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;&lt;html&gt;&lt;head&gt;&lt;title&gt;&lt;/title&gt;&lt;/head&gt;&lt;body style=&quot;background-color:{BodyBgColor};color:{BodyColor}&quot;&gt;&lt;h1 style=&quot;background-color:{Level1HeaderBgColor};color:{Level1HeaderColor}&quot;&gt;Level 1 Header&lt;/h1&gt;&lt;h3 style=&quot;background-color:{Level2HeaderBgColor};color:{Level2HeaderColor}&quot;&gt;Level 2 Header&lt;/h3&gt;&lt;h2 style=&quot;background-color:{CFBgColor};color:{CFColor}&quot;&gt;Class and Function Header&lt;/h2&gt;Standard body text with &lt;a style=&quot;color:{LinkColor}&quot;&gt;some links&lt;/a&gt; embedded.&lt;/body&gt;&lt;/html&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17331,29 +17331,29 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="82"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="84"/>
         <source>{0} - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="89"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="89"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="120"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="126"/>
         <source>
 {0} crashed.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="129"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="138"/>
         <source>
 {0} finished.
 </source>
@@ -17436,17 +17436,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/ErrorLogDialog.py" line="44"/>
+        <location filename="../UI/ErrorLogDialog.py" line="45"/>
         <source>Delete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/ErrorLogDialog.py" line="45"/>
-        <source>Close</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/ErrorLogDialog.py" line="46"/>
+        <source>Close</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/ErrorLogDialog.py" line="47"/>
         <source>Error Log</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17962,22 +17962,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="108"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="109"/>
         <source>Remember</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="110"/>
-        <source>Allow</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="111"/>
+        <source>Allow</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="112"/>
         <source>Deny</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="133"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="134"/>
         <source>{0} wants to use an unknown feature.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18025,17 +18025,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="161"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="165"/>
         <source>Host</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="162"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="166"/>
         <source>Permission</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="68"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="69"/>
         <source>Geolocation</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18050,42 +18050,42 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="186"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="191"/>
         <source>Allow</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="187"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="193"/>
         <source>Deny</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="83"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="85"/>
         <source>Microphone</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="98"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="101"/>
         <source>Camera</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="113"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="117"/>
         <source>Microphone &amp;&amp; Camera</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="129"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="133"/>
         <source>Mouse Lock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="147"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="151"/>
         <source>Desktop Video</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="163"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="167"/>
         <source>Desktop Audio &amp;&amp; Video</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18141,17 +18141,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="86"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="87"/>
         <source>Add RSS Feed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="81"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="82"/>
         <source>The feed was added successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="86"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="87"/>
         <source>The feed was already added before.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18209,67 +18209,67 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="182"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="183"/>
         <source>Duplicate Feed URL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="182"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="183"/>
         <source>A feed with the URL {0} exists already. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="204"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="205"/>
         <source>Delete Feed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="204"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="205"/>
         <source>&lt;p&gt;Do you really want to delete the feed &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="316"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="317"/>
         <source>Error fetching feed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="346"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="347"/>
         <source>&amp;Open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="348"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="349"/>
         <source>Open in New &amp;Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="359"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="360"/>
         <source>&amp;Copy URL to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="366"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="367"/>
         <source>&amp;Show error data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="483"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="490"/>
         <source>Error loading feed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="350"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="351"/>
         <source>Open in New &amp;Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="353"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="354"/>
         <source>Open in New &amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="355"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="356"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18921,62 +18921,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="740"/>
+        <location filename="../UI/FindFileDialog.py" line="744"/>
         <source>Replace in Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="450"/>
+        <location filename="../UI/FindFileDialog.py" line="453"/>
         <source>Invalid search expression</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="450"/>
+        <location filename="../UI/FindFileDialog.py" line="453"/>
         <source>&lt;p&gt;The search expression is not valid.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="573"/>
+        <location filename="../UI/FindFileDialog.py" line="576"/>
         <source>{0} / {1}</source>
         <comment>occurrences / files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../UI/FindFileDialog.py" line="574"/>
+        <location filename="../UI/FindFileDialog.py" line="577"/>
         <source>%n occurrence(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../UI/FindFileDialog.py" line="574"/>
+        <location filename="../UI/FindFileDialog.py" line="577"/>
         <source>%n file(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="699"/>
+        <location filename="../UI/FindFileDialog.py" line="703"/>
         <source>&lt;p&gt;Could not read the file &lt;b&gt;{0}&lt;/b&gt;. Skipping it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="714"/>
+        <location filename="../UI/FindFileDialog.py" line="718"/>
         <source>&lt;p&gt;The current and the original hash of the file &lt;b&gt;{0}&lt;/b&gt; are different. Skipping it.&lt;/p&gt;&lt;p&gt;Hash 1: {1}&lt;/p&gt;&lt;p&gt;Hash 2: {2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="740"/>
+        <location filename="../UI/FindFileDialog.py" line="744"/>
         <source>&lt;p&gt;Could not save the file &lt;b&gt;{0}&lt;/b&gt;. Skipping it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="767"/>
+        <location filename="../UI/FindFileDialog.py" line="771"/>
         <source>Open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="768"/>
+        <location filename="../UI/FindFileDialog.py" line="772"/>
         <source>Copy Path to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19094,7 +19094,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileNameDialog.py" line="58"/>
+        <location filename="../UI/FindFileNameDialog.py" line="59"/>
         <source>Opens the selected file</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20087,7 +20087,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitArchiveDataDialog.py" line="83"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitArchiveDataDialog.py" line="85"/>
         <source>Select Archive File</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20165,22 +20165,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="52"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="54"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="54"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="56"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="173"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="173"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20301,12 +20301,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20516,7 +20516,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBranchPushDialog.py" line="34"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBranchPushDialog.py" line="35"/>
         <source>&lt;all branches&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20827,7 +20827,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitCopyDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitCopyDialog.py" line="90"/>
         <source>Select target</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20895,12 +20895,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="115"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="115"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20963,37 +20963,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="82"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="88"/>
         <source>Additional Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="110"/>
         <source>Process canceled.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="112"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="125"/>
         <source>Process finished successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="127"/>
         <source>Process crashed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="129"/>
         <source>Process finished with exit code {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="182"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="182"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -21036,82 +21036,82 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="90"/>
         <source>Working Tree to Staging Area</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="89"/>
-        <source>Staging Area to HEAD Commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="90"/>
-        <source>Working Tree to HEAD Commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="91"/>
-        <source>Working to Staging (top) and Staging to HEAD (bottom)</source>
+        <source>Staging Area to HEAD Commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="92"/>
+        <source>Working Tree to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="93"/>
+        <source>Working to Staging (top) and Staging to HEAD (bottom)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="95"/>
         <source>Stash Contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="96"/>
         <source>Stash Contents of {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="166"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="168"/>
         <source>Difference ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="174"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="174"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="198"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="200"/>
         <source>There is no difference.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="219"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="225"/>
         <source>&lt;Start&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="220"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="226"/>
         <source>&lt;End&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="355"/>
         <source>Save Diff</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="314"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="322"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="331"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="339"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="355"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -21270,12 +21270,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="110"/>
         <source>Commit ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="111"/>
         <source>Author</source>
         <translation type="unfinished"></translation>
     </message>
@@ -21285,7 +21285,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="112"/>
         <source>Committer</source>
         <translation type="unfinished"></translation>
     </message>
@@ -21295,7 +21295,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="110"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="113"/>
         <source>Subject</source>
         <translation type="unfinished"></translation>
     </message>
@@ -21370,7 +21370,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2095"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2113"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
@@ -21430,328 +21430,328 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="97"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="96"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="99"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
         <source>Find</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="108"/>
         <source>Filter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="111"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="114"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="131"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit ID&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2} &amp;lt;{3}&amp;gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5} &amp;lt;{6}&amp;gt;&lt;/td&gt;&lt;/tr&gt;{7}&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;{9}&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="140"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="143"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Children&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="146"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Children&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="149"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="152"/>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="155"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Message&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="203"/>
-        <source>Added</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="204"/>
-        <source>Deleted</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="205"/>
-        <source>Modified</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="206"/>
-        <source>Copied</source>
+        <source>Added</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="207"/>
-        <source>Renamed</source>
+        <source>Deleted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="208"/>
-        <source>Type changed</source>
+        <source>Modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="209"/>
-        <source>Unmerged</source>
+        <source>Copied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="210"/>
+        <source>Renamed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="211"/>
+        <source>Type changed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="212"/>
+        <source>Unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="213"/>
         <source>Unknown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="246"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="249"/>
         <source>Show Commit ID Column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="248"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="251"/>
         <source>Press to show the commit ID column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="256"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="259"/>
         <source>Show Author Columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="258"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="261"/>
         <source>Press to show the author columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="266"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="269"/>
         <source>Show Committer Columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="268"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="271"/>
         <source>Press to show the committer columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="276"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="279"/>
         <source>Show Branches Column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="278"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="281"/>
         <source>Press to show the branches column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="286"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="289"/>
         <source>Show Tags Column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="291"/>
         <source>Press to show the Tags column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="315"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="318"/>
         <source>Copy Commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="317"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="320"/>
         <source>Cherry-pick the selected commits to the current branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="322"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="325"/>
         <source>Tag</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="324"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="327"/>
         <source>Tag the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1789"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1807"/>
         <source>Branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="328"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="331"/>
         <source>Create a new branch at the selected commit.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="330"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="333"/>
         <source>Branch &amp;&amp; Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="332"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="335"/>
         <source>Create a new branch at the selected commit and switch the work tree to it.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1859"/>
         <source>Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="338"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="341"/>
         <source>Switch the working directory to the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1867"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1885"/>
         <source>Show Short Log</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="344"/>
-        <source>Show a dialog with a log output for release notes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="347"/>
+        <source>Show a dialog with a log output for release notes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="350"/>
         <source>Describe</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="349"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="352"/>
         <source>Show the most recent tag reachable from a commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="634"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="639"/>
         <source>The git process did not finish within 30s.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="637"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="642"/>
         <source>Could not start the git executable.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="640"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="645"/>
         <source>Git Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="756"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="761"/>
         <source>{0} ({1}%)</source>
         <comment>action, confidence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="819"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="827"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="819"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="827"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1262"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1280"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1274"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1292"/>
         <source>&lt;a href=&quot;sbsdiff:{0}_{1}&quot;&gt;Side-by-Side Compare&lt;/a&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1721"/>
         <source>Copy Changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1859"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1867"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1885"/>
         <source>Select a branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1820"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1838"/>
         <source>Select a default branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1820"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1838"/>
         <source>Branch &amp; Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2049"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2067"/>
         <source>Find Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2049"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2067"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2127"/>
         <source>Differences to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2124"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2142"/>
         <source>Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2150"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2168"/>
         <source>There is no difference.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2312"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2330"/>
         <source>Save Diff</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2279"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2297"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2296"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2314"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2312"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2330"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -21931,12 +21931,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="87"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="88"/>
         <source>Select Repository-Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="102"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="103"/>
         <source>Select Project Directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -22092,7 +22092,7 @@
 <context>
     <name>GitPatchFilesDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="82"/>
         <source>Patch Files</source>
         <translation type="unfinished"></translation>
     </message>
@@ -22147,7 +22147,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="82"/>
         <source>Patch Files (*.diff *.patch);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -22185,12 +22185,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -24215,22 +24215,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="54"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="56"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="56"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="58"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="198"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="198"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -24422,12 +24422,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="144"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="148"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="144"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="148"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -24726,71 +24726,71 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="60"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="63"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="62"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="65"/>
         <source>Press to refresh the list of stashes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="77"/>
-        <source>Show</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="80"/>
+        <source>Show</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="83"/>
         <source>Restore &amp;&amp; Keep</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="82"/>
-        <source>Restore &amp;&amp; Delete</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="85"/>
-        <source>Create Branch</source>
+        <source>Restore &amp;&amp; Delete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="88"/>
+        <source>Create Branch</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="91"/>
         <source>Delete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="93"/>
         <source>Delete All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="176"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="183"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="176"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="183"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="363"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="377"/>
         <source>%n file(s) changed</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="365"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="379"/>
         <source>%n line(s) inserted</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="367"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="381"/>
         <source>%n line(s) deleted</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -24858,7 +24858,7 @@
 <context>
     <name>GitStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="379"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="386"/>
         <source>Git Status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -24884,7 +24884,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="647"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="665"/>
         <source>Commit</source>
         <translation type="unfinished"></translation>
     </message>
@@ -24969,312 +24969,312 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="102"/>
         <source>Stage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="106"/>
         <source>Revert Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="110"/>
         <source>Stage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="112"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="114"/>
         <source>Revert Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="120"/>
         <source>Unstage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="122"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="124"/>
         <source>Unstage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="163"/>
-        <source>added</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="164"/>
-        <source>copied</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="165"/>
-        <source>deleted</source>
+        <source>added</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="166"/>
-        <source>modified</source>
+        <source>copied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="167"/>
-        <source>renamed</source>
+        <source>deleted</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="168"/>
+        <source>modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="169"/>
+        <source>renamed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="171"/>
         <source>not tracked</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="168"/>
-        <source>unmerged</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="162"/>
-        <source>unmodified</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
+        <source>unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="164"/>
+        <source>unmodified</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="172"/>
         <source>ignored</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="188"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="190"/>
         <source>Commit the selected changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="189"/>
-        <source>Amend</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="191"/>
-        <source>Amend the latest commit with the selected changes</source>
+        <source>Amend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="193"/>
-        <source>Select all for commit</source>
+        <source>Amend the latest commit with the selected changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="195"/>
+        <source>Select all for commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="197"/>
         <source>Unselect all from commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="688"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="706"/>
         <source>Add</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="201"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="203"/>
         <source>Add the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="202"/>
-        <source>Stage changes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="204"/>
-        <source>Stages all changes of the selected files</source>
+        <source>Stage changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="206"/>
-        <source>Unstage changes</source>
+        <source>Stages all changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="208"/>
+        <source>Unstage changes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210"/>
         <source>Unstages all changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="824"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="842"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="215"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="217"/>
         <source>Shows the differences of the selected entry in a separate dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="218"/>
-        <source>Differences Side-By-Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="220"/>
+        <source>Differences Side-By-Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="222"/>
         <source>Shows the differences of the selected entry side-by-side in a separate dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789"/>
         <source>Revert</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="228"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="230"/>
         <source>Reverts the changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="233"/>
-        <source>Forget missing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="235"/>
-        <source>Forgets about the selected missing files</source>
+        <source>Forget missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="237"/>
-        <source>Restore missing</source>
+        <source>Forgets about the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="239"/>
+        <source>Restore missing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="241"/>
         <source>Restores the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244"/>
-        <source>Edit file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="246"/>
+        <source>Edit file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="248"/>
         <source>Edit the selected conflicting file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="251"/>
-        <source>Adjust column sizes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253"/>
+        <source>Adjust column sizes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="255"/>
         <source>Adjusts the width of all columns to their contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="414"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="414"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="581"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="599"/>
         <source>all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="647"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="665"/>
         <source>There are no entries selected to be committed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="688"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="706"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="710"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="728"/>
         <source>Stage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="710"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="728"/>
         <source>There are no stageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="732"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="750"/>
         <source>Unstage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="732"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="750"/>
         <source>There are no unstageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="754"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="772"/>
         <source>Forget Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="795"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="813"/>
         <source>There are no missing entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789"/>
         <source>There are no uncommitted, unstaged changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="795"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="813"/>
         <source>Restore Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="824"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="842"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="876"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
         <source>Working Tree to Staging Area</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="855"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="873"/>
         <source>Staging Area to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="877"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="895"/>
         <source>Working Tree to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="879"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="897"/>
         <source>Side-by-Side Difference</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="879"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="897"/>
         <source>Select the compare method.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1188"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1212"/>
         <source>Revert selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1190"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1214"/>
         <source>Revert hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1191"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1215"/>
         <source>Are you sure you want to revert the selected changes?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -25371,12 +25371,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="103"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="105"/>
         <source>Select Submodule Repository Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="129"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="131"/>
         <source>Select Submodule Directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -25760,12 +25760,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="95"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="97"/>
         <source>Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="95"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="97"/>
         <source>Name</source>
         <translation type="unfinished"></translation>
     </message>
@@ -25815,22 +25815,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="92"/>
         <source>Annotation Message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="96"/>
         <source>Git Branches List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="133"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="133"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26415,7 +26415,7 @@
 <context>
     <name>HelpDocsInstaller</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpDocsInstaller.py" line="239"/>
+        <location filename="../WebBrowser/QtHelp/HelpDocsInstaller.py" line="241"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be registered. &lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26566,22 +26566,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="205"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="211"/>
         <source>Open Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="206"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="212"/>
         <source>Open Link in New Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="207"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="213"/>
         <source>Open Link in Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="209"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="215"/>
         <source>Open Link in New Window</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26589,22 +26589,22 @@
 <context>
     <name>HelpSearchWidget</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="145"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="150"/>
         <source>Open Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="146"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="151"/>
         <source>Open Link in New Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="147"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="152"/>
         <source>Open Link in Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="149"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="154"/>
         <source>Open Link in New Window</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26612,22 +26612,22 @@
 <context>
     <name>HelpTocWidget</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="158"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="164"/>
         <source>Open Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="159"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="165"/>
         <source>Open Link in New Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="160"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="166"/>
         <source>Open Link in Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="162"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="168"/>
         <source>Open Link in New Window</source>
         <translation type="unfinished"></translation>
     </message>
@@ -27556,166 +27556,166 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="782"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="783"/>
         <source>&lt;p&gt;This part of the status bar displays some selection information.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="790"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="792"/>
         <source>&lt;p&gt;This part of the status bar displays the size of the binary data.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="798"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="801"/>
         <source>&lt;p&gt;This part of the status bar displays the edit mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="806"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="810"/>
         <source>&lt;p&gt;This part of the status bar displays the read only mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="826"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="831"/>
         <source>Address: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="845"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="850"/>
         <source>Selection: {0} - {1} ({2} Bytes)</source>
         <comment>0: start, 1: end, 2: selection length</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="851"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="856"/>
         <source>Selection: -</source>
         <comment>no selection available</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="862"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="867"/>
         <source>ro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="862"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="867"/>
         <source>rw</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="880"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="885"/>
         <source>Overwrite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="880"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="885"/>
         <source>Insert</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="899"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="904"/>
         <source>Size: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="942"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="947"/>
         <source>Open binary file in new window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1061"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1066"/>
         <source>All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="963"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="968"/>
         <source>The loaded file has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="981"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="986"/>
         <source>The file &apos;{0}&apos; does not exist.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="988"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="993"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1014"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1019"/>
         <source>Open binary file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1071"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1076"/>
         <source>Save binary file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1156"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1161"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1181"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1186"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1187"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1192"/>
         <source>File saved</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1156"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1161"/>
         <source>Save to readable file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1140"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1145"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1140"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1145"/>
         <source>Text Files (*.txt)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1223"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1228"/>
         <source>Untitled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1227"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1232"/>
         <source>{0}[*] - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1227"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1232"/>
         <source>Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1431"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1436"/>
         <source>&amp;Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1181"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1186"/>
         <source>eric Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1284"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1289"/>
         <source>About eric Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1284"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1289"/>
         <source>The eric Hex Editor is a simple editor component to edit binary files.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -28824,7 +28824,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBackoutDialog.py" line="174"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBackoutDialog.py" line="176"/>
         <source>Backed out changeset &lt;{0}&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -28937,12 +28937,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="43"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="44"/>
         <source>Move Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="46"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="47"/>
         <source>Define Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
@@ -28999,17 +28999,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="46"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="48"/>
         <source>Mercurial Incoming Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="48"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="50"/>
         <source>Mercurial Outgoing Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="121"/>
         <source>no bookmarks found</source>
         <translation type="unfinished"></translation>
     </message>
@@ -29069,72 +29069,72 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="125"/>
         <source>no bookmarks defined</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="247"/>
-        <source>Switch to</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="251"/>
-        <source>Delete</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="254"/>
-        <source>Rename</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="258"/>
-        <source>Pull</source>
+        <source>Switch to</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="262"/>
+        <source>Delete</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="265"/>
+        <source>Rename</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="269"/>
+        <source>Pull</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="273"/>
         <source>Push</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="299"/>
         <source>Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="299"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="318"/>
         <source>Delete Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="318"/>
         <source>&lt;p&gt;Shall the bookmark &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="323"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="334"/>
         <source>Rename Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="323"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="334"/>
         <source>&lt;p&gt;Enter the new name for bookmark &lt;b&gt;{0}&lt;/b&gt;:&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="267"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="278"/>
         <source>Push Current</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="272"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="283"/>
         <source>Push All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -29553,7 +29553,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="173"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="183"/>
         <source>Resolved</source>
         <translation type="unfinished"></translation>
     </message>
@@ -29563,7 +29563,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="171"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="181"/>
         <source>Unresolved</source>
         <translation type="unfinished"></translation>
     </message>
@@ -29593,17 +29593,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="51"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="54"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="53"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="56"/>
         <source>Press to refresh the list of conflicts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="175"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="185"/>
         <source>Unknown Status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -29754,52 +29754,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="91"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="93"/>
         <source>Patch Contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="101"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="101"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="120"/>
         <source>There is no difference.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="137"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="143"/>
         <source>&lt;Start&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="138"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="144"/>
         <source>&lt;End&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="245"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="254"/>
         <source>Save Diff</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="213"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="222"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="230"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="239"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="245"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="254"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -30052,7 +30052,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="218"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="228"/>
         <source>Revision</source>
         <translation type="unfinished"></translation>
     </message>
@@ -30087,7 +30087,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="95"/>
         <source>no signatures found</source>
         <translation type="unfinished"></translation>
     </message>
@@ -30605,17 +30605,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="131"/>
         <source>Revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="135"/>
+        <source>Phase</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="132"/>
-        <source>Phase</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="129"/>
         <source>Author</source>
         <translation type="unfinished"></translation>
     </message>
@@ -30625,7 +30625,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="130"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="133"/>
         <source>Message</source>
         <translation type="unfinished"></translation>
     </message>
@@ -30700,243 +30700,243 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="118"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="117"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="120"/>
         <source>Press to refresh the list of changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="128"/>
         <source>Find</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="126"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="129"/>
         <source>Filter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="134"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="172"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="175"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="178"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="190"/>
         <source>All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="208"/>
         <source>Added</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="206"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="209"/>
         <source>Deleted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="207"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="210"/>
         <source>Modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="211"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="214"/>
         <source>Draft</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="212"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="215"/>
         <source>Public</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="213"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="216"/>
         <source>Secret</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="222"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="225"/>
         <source>Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1997"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2016"/>
         <source>Copy Changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="266"/>
         <source>Copy the selected changesets to the current branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="272"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="275"/>
         <source>Change Phase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="274"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="277"/>
         <source>Change the phase of the selected revisions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="276"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="279"/>
         <source>&lt;b&gt;Change Phase&lt;/b&gt;
 &lt;p&gt;This changes the phase of the selected revisions. The selected revisions have to have the same current phase.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="281"/>
-        <source>Tag</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="284"/>
+        <source>Tag</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="287"/>
         <source>Tag the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2068"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2087"/>
         <source>Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="294"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="297"/>
         <source>Switch the working directory to the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2165"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2184"/>
         <source>Pull Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="315"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="318"/>
         <source>Pull changes from a remote repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="317"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="320"/>
         <source>Pull Large Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="319"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="322"/>
         <source>Pull large files for selected revisions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="324"/>
-        <source>Push Selected Changes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="327"/>
-        <source>Push changes of the selected changeset and its ancestors to a remote repository</source>
+        <source>Push Selected Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="330"/>
-        <source>Push All Changes</source>
+        <source>Push changes of the selected changeset and its ancestors to a remote repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="333"/>
+        <source>Push All Changes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="336"/>
         <source>Push all changes to a remote repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="842"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="847"/>
         <source>Mercurial Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1135"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1146"/>
         <source>{0} (large file)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2302"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2321"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2443"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2462"/>
         <source>Find Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2443"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2462"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2211"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2230"/>
         <source>Strip Changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="376"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="379"/>
         <source>Strip changesets from a repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="299"/>
-        <source>Define Bookmark...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="302"/>
+        <source>Define Bookmark...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="305"/>
         <source>Bookmark the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="304"/>
-        <source>Move Bookmark...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="307"/>
+        <source>Move Bookmark...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="310"/>
         <source>Move bookmark to the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2091"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2110"/>
         <source>Define Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2091"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2110"/>
         <source>Enter bookmark name for changeset &quot;{0}&quot;:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2134"/>
         <source>Move Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2134"/>
         <source>Select the bookmark to be moved  to changeset &quot;{0}&quot;:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2054"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2073"/>
         <source>Select bookmark to switch to (leave empty to use revision):</source>
         <translation type="unfinished"></translation>
     </message>
@@ -30951,143 +30951,143 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="175"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Latest Tag&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="156"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branch&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;{4}&lt;tr&gt;&lt;td&gt;&lt;b&gt;Message&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="163"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="166"/>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="169"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Children&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="266"/>
-        <source>Merge with Changeset</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="269"/>
+        <source>Merge with Changeset</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="272"/>
         <source>Merge the working directory with the selected changeset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="338"/>
-        <source>Create Changegroup</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="341"/>
+        <source>Create Changegroup</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="344"/>
         <source>Create a changegroup file containing the selected changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="343"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="346"/>
         <source>&lt;b&gt;Create Changegroup&lt;/b&gt;
 &lt;p&gt;This creates a changegroup file containing the selected revisions. If no revisions are selected, all changesets will be bundled. If one revision is selected, it will be interpreted as the base revision. Otherwise the lowest revision will be used as the base revision and all other revision will be bundled. If the dialog is showing outgoing changesets, all selected changesets will be bundled.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2302"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2321"/>
         <source>Apply Changegroup</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="355"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="358"/>
         <source>Apply the currently viewed changegroup file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="360"/>
-        <source>Sign Revisions</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="363"/>
+        <source>Sign Revisions</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="366"/>
         <source>Add a signature for the selected revisions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="365"/>
-        <source>Verify Signatures</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="368"/>
+        <source>Verify Signatures</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="371"/>
         <source>Verify all signatures there may be for the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="381"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="384"/>
         <source>Select All Entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="383"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="386"/>
         <source>Deselect All Entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1376"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1392"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1387"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1403"/>
         <source>&lt;a href=&quot;sbsdiff:{0}_{1}&quot;&gt;Side-by-Side Compare&lt;/a&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1523"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1539"/>
         <source>Pull Selected Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2487"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2506"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2497"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2516"/>
         <source>Differences to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2513"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2532"/>
         <source>Diff to Parent {0}{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2538"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2557"/>
         <source>There is no difference.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2680"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2699"/>
         <source>Save Diff</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2648"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2667"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2665"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2684"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2680"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2699"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -31097,7 +31097,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2486"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2505"/>
         <source>Generating differences ...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -31107,12 +31107,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="286"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="289"/>
         <source>Close Heads</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="289"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="292"/>
         <source>Close the selected heads</source>
         <translation type="unfinished"></translation>
     </message>
@@ -33145,22 +33145,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="206"/>
         <source>Remove Guards</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="206"/>
         <source>Do you really want to remove the selected guards?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="253"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="258"/>
         <source>Apply Guard Definitions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="253"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="258"/>
         <source>&lt;p&gt;The defined guards could not be applied.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -33221,7 +33221,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesGuardsSelectionDialog.py" line="44"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesGuardsSelectionDialog.py" line="46"/>
         <source>Active Guards</source>
         <translation type="unfinished"></translation>
     </message>
@@ -33234,7 +33234,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py" line="118"/>
         <source>Error: </source>
         <translation type="unfinished"></translation>
     </message>
@@ -33302,32 +33302,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="43"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="46"/>
         <source>applied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="44"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="47"/>
         <source>not applied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="45"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="48"/>
         <source>guarded</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="46"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="49"/>
         <source>missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="138"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="145"/>
         <source>no patches found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="193"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="205"/>
         <source>unknown</source>
         <translation type="unfinished"></translation>
     </message>
@@ -33481,12 +33481,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="67"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="68"/>
         <source>Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="69"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="70"/>
         <source>Press to refresh the queues list</source>
         <translation type="unfinished"></translation>
     </message>
@@ -34210,46 +34210,46 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="49"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="52"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="51"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="54"/>
         <source>Press to refresh the list of shelves</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="60"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="63"/>
         <source>Restore selected shelve</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="62"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="65"/>
         <source>Delete selected shelves</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="64"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="67"/>
         <source>Delete all shelves</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="266"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="280"/>
         <source>%n file(s) changed</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="268"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="282"/>
         <source>%n line(s) inserted</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="270"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="284"/>
         <source>%n line(s) deleted</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -34325,7 +34325,7 @@
 <context>
     <name>HgStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="310"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="314"/>
         <source>Mercurial Status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -34346,7 +34346,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="494"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="506"/>
         <source>Commit</source>
         <translation type="unfinished"></translation>
     </message>
@@ -34361,12 +34361,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="124"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="126"/>
         <source>Commit the selected changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="640"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="652"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
@@ -34386,167 +34386,167 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="127"/>
         <source>Select all for commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="135"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="137"/>
         <source>Add as Large Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="140"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="142"/>
         <source>Add as Normal Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="168"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="170"/>
         <source>Forget missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="174"/>
         <source>Restore missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="190"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="192"/>
         <source>Adjust column sizes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="558"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="570"/>
         <source>Add</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="94"/>
-        <source>added</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="97"/>
-        <source>modified</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="98"/>
-        <source>removed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="99"/>
-        <source>not tracked</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="100"/>
-        <source>missing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="95"/>
-        <source>normal</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="96"/>
+        <source>added</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="99"/>
+        <source>modified</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="100"/>
+        <source>removed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="101"/>
+        <source>not tracked</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="102"/>
+        <source>missing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="97"/>
+        <source>normal</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="98"/>
         <source>ignored</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="311"/>
         <source>Mercurial Queue Repository Status</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="416"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="428"/>
         <source>all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="494"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="506"/>
         <source>There are no entries selected to be committed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="558"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="570"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="581"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="593"/>
         <source>Remove</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="622"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="634"/>
         <source>There are no missing entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="622"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="634"/>
         <source>Revert</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="660"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="672"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="667"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="679"/>
         <source>Side-by-Side Diff</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="667"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="679"/>
         <source>Only one file with uncommitted changes must be selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="127"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="129"/>
         <source>Unselect all from commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="134"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="136"/>
         <source>Add the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="137"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="139"/>
         <source>Add the selected files as a large files using the &apos;Large Files&apos; extension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="142"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="144"/>
         <source>Add the selected files as a normal files using the &apos;Large Files&apos; extension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="150"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="152"/>
         <source>Shows the differences of the selected entry in a separate dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="153"/>
-        <source>Differences Side-By-Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="155"/>
+        <source>Differences Side-By-Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="157"/>
         <source>Shows the differences of the selected entry side-by-side in a separate dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="163"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="165"/>
         <source>Reverts the changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="172"/>
         <source>Forgets about the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
@@ -34556,37 +34556,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="174"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="176"/>
         <source>Restores the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="194"/>
         <source>Adjusts the width of all columns to their contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="179"/>
-        <source>Commit Merge</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="181"/>
-        <source>Commit all the merged changes.</source>
+        <source>Commit Merge</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="183"/>
-        <source>Abort Merge</source>
+        <source>Commit all the merged changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="185"/>
+        <source>Abort Merge</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="187"/>
         <source>Abort an uncommitted merge and lose all changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="761"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="779"/>
         <source>Merge</source>
         <translation type="unfinished"></translation>
     </message>
@@ -34741,247 +34741,247 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="230"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="232"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="234"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="236"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="238"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="240"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="242"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="244"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Message&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="248"/>
-        <source>empty repository</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="250"/>
+        <source>empty repository</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="252"/>
         <source>no revision checked out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="251"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="253"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Remarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="255"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="257"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branch&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="265"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="270"/>
-        <source>{0} modified</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="272"/>
-        <source>{0} added</source>
+        <source>{0} modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="274"/>
-        <source>{0} removed</source>
+        <source>{0} added</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="276"/>
-        <source>{0} renamed</source>
+        <source>{0} removed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="278"/>
-        <source>{0} copied</source>
+        <source>{0} renamed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="280"/>
-        <source>{0} deleted</source>
+        <source>{0} copied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="282"/>
-        <source>{0} unknown</source>
+        <source>{0} deleted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="284"/>
-        <source>{0} ignored</source>
+        <source>{0} unknown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="286"/>
+        <source>{0} ignored</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="288"/>
         <source>{0} unresolved</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="289"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="291"/>
         <source>{0} subrepos</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="292"/>
-        <source>Merge needed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="294"/>
-        <source>New Branch</source>
+        <source>Merge needed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="296"/>
-        <source>Head is closed</source>
+        <source>New Branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="298"/>
-        <source>No commit required</source>
+        <source>Head is closed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="300"/>
+        <source>No commit required</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="302"/>
         <source>New Branch Head</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="301"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="303"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Status&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="306"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="308"/>
         <source>current</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="308"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="310"/>
         <source>%n new changeset(s)&lt;br/&gt;Update required</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="312"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="314"/>
         <source>%n new changeset(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="314"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="316"/>
         <source>%n branch head(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="316"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="318"/>
         <source>{0}&lt;br/&gt;{1}&lt;br/&gt;Merge required</source>
         <comment>0 is changesets, 1 is branch heads</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="321"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="323"/>
         <source>unknown status</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="322"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="324"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Update Status&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="327"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="329"/>
         <source>synched</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="331"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="333"/>
         <source>1 or more incoming changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="335"/>
         <source>%n outgoing changeset(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="336"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="338"/>
         <source>%n incoming bookmark(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="339"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="341"/>
         <source>%n outgoing bookmark(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="342"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="344"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Remote Status&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="349"/>
         <source>empty queue</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="351"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="353"/>
         <source>{0} applied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="354"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="356"/>
         <source>{0} unapplied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="357"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="359"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Queues Status&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="362"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="364"/>
         <source>No files to upload</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="364"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="366"/>
         <source>%n file(s) to upload</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="368"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Large Files&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="371"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="373"/>
         <source>&lt;p&gt;No status information available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -35031,72 +35031,72 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="90"/>
         <source>Mercurial Branches List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="91"/>
         <source>Status</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="200"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="211"/>
         <source>active</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="216"/>
         <source>yes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="42"/>
-        <source>&amp;Refresh</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="44"/>
+        <source>&amp;Refresh</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="46"/>
         <source>Press to refresh the list</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="278"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="292"/>
         <source>Switch to</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="347"/>
         <source>Close Branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="321"/>
         <source>Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="321"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="326"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="340"/>
         <source>The branch &quot;default&quot; cannot be closed. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="347"/>
         <source>&lt;p&gt;Shall the branch &lt;b&gt;{0}&lt;/b&gt; really be closed?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="380"/>
         <source>Close Branches</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="380"/>
         <source>Do you really want to close all listed branches?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -35864,7 +35864,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="122"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="123"/>
         <source>&amp;Remove</source>
         <translation type="unfinished"></translation>
     </message>
@@ -35879,32 +35879,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="105"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="106"/>
         <source>&amp;Open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="108"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="109"/>
         <source>Open in New &amp;Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="121"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="122"/>
         <source>&amp;Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="111"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="112"/>
         <source>Open in New &amp;Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="114"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="115"/>
         <source>Open in New &amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="117"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="118"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation type="unfinished"></translation>
     </message>
@@ -35970,12 +35970,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryMenu.py" line="447"/>
+        <location filename="../WebBrowser/History/HistoryMenu.py" line="448"/>
         <source>Restore All Closed Tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryMenu.py" line="450"/>
+        <location filename="../WebBrowser/History/HistoryMenu.py" line="451"/>
         <source>Clear List</source>
         <translation type="unfinished"></translation>
     </message>
@@ -36001,12 +36001,12 @@
 <context>
     <name>HistoryTreeModel</name>
     <message>
-        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="64"/>
+        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="65"/>
         <source>Earlier Today</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="67"/>
+        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="68"/>
         <source>%n item(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -36118,12 +36118,12 @@
 <context>
     <name>IbmWatsonEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="251"/>
+        <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="251"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
         <source>IBM Watson: No translation available.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -36138,12 +36138,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="243"/>
+        <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="231"/>
+        <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>
@@ -36152,102 +36152,102 @@
 <context>
     <name>IconEditorGrid</name>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="208"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="211"/>
         <source>Set Pixel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="209"/>
-        <source>Erase Pixel</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="210"/>
-        <source>Draw Line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="211"/>
-        <source>Draw Rectangle</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="212"/>
-        <source>Draw Filled Rectangle</source>
+        <source>Erase Pixel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="213"/>
-        <source>Draw Circle</source>
+        <source>Draw Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="214"/>
-        <source>Draw Filled Circle</source>
+        <source>Draw Rectangle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="215"/>
-        <source>Draw Ellipse</source>
+        <source>Draw Filled Rectangle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="216"/>
-        <source>Draw Filled Ellipse</source>
+        <source>Draw Circle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="217"/>
+        <source>Draw Filled Circle</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="218"/>
+        <source>Draw Ellipse</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="219"/>
+        <source>Draw Filled Ellipse</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="220"/>
         <source>Fill Region</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="846"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="853"/>
         <source>Cut Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="905"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="912"/>
         <source>Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="905"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="912"/>
         <source>&lt;p&gt;The clipboard image is larger than the current image.&lt;br/&gt;Paste as new image?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="918"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="925"/>
         <source>Paste Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="936"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="943"/>
         <source>Pasting Image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="936"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="943"/>
         <source>Invalid image data in clipboard.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="947"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="954"/>
         <source>Paste Clipboard as New Image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="976"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="983"/>
         <source>Clear Image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="996"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="1003"/>
         <source>Resize Image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="1023"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="1030"/>
         <source>Convert to Grayscale</source>
         <translation type="unfinished"></translation>
     </message>
@@ -36255,57 +36255,57 @@
 <context>
     <name>IconEditorPalette</name>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="48"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="49"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This is a 1:1 preview of the current icon.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="58"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="60"/>
         <source>&lt;b&gt;Current Color&lt;/b&gt;&lt;p&gt;This is the currently selected color used for drawing.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="66"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="69"/>
         <source>&lt;b&gt;Current Color Value&lt;/b&gt;&lt;p&gt;This is the currently selected color value used for drawing.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="73"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="76"/>
         <source>Select Color</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="74"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="77"/>
         <source>&lt;b&gt;Select Color&lt;/b&gt;&lt;p&gt;Select the current drawing color via a color selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="84"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="87"/>
         <source>&lt;b&gt;Select alpha channel value&lt;/b&gt;&lt;p&gt;Select the value for the alpha channel of the current color.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="92"/>
-        <source>Compositing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorPalette.py" line="95"/>
+        <source>Compositing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorPalette.py" line="98"/>
         <source>Replace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="97"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="100"/>
         <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Replace the existing pixel with a new color.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="103"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="106"/>
         <source>Blend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="105"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="108"/>
         <source>&lt;b&gt;Blend&lt;/b&gt;&lt;p&gt;Blend the new color over the existing pixel.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -36313,1090 +36313,1090 @@
 <context>
     <name>IconEditorWindow</name>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="125"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="126"/>
         <source>Windows Bitmap File (*.bmp)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="128"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="129"/>
         <source>Graphic Interchange Format File (*.gif)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="130"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="131"/>
         <source>Windows Icon File (*.ico)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="132"/>
-        <source>JPEG File (*.jpg)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="133"/>
-        <source>JPEG File (*.jpeg)</source>
+        <source>JPEG File (*.jpg)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="134"/>
-        <source>Multiple-Image Network Graphics File (*.mng)</source>
+        <source>JPEG File (*.jpeg)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="135"/>
-        <source>Portable Bitmap File (*.pbm)</source>
+        <source>Multiple-Image Network Graphics File (*.mng)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="136"/>
-        <source>Paintbrush Bitmap File (*.pcx)</source>
+        <source>Portable Bitmap File (*.pbm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="137"/>
-        <source>Portable Graymap File (*.pgm)</source>
+        <source>Paintbrush Bitmap File (*.pcx)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="138"/>
-        <source>Portable Network Graphics File (*.png)</source>
+        <source>Portable Graymap File (*.pgm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="139"/>
-        <source>Portable Pixmap File (*.ppm)</source>
+        <source>Portable Network Graphics File (*.png)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="140"/>
-        <source>Silicon Graphics Image File (*.sgi)</source>
+        <source>Portable Pixmap File (*.ppm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="141"/>
-        <source>Scalable Vector Graphics File (*.svg)</source>
+        <source>Silicon Graphics Image File (*.sgi)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="142"/>
+        <source>Scalable Vector Graphics File (*.svg)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="143"/>
         <source>Compressed Scalable Vector Graphics File (*.svgz)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="144"/>
-        <source>Targa Graphic File (*.tga)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="145"/>
-        <source>TIFF File (*.tif)</source>
+        <source>Targa Graphic File (*.tga)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="146"/>
-        <source>TIFF File (*.tiff)</source>
+        <source>TIFF File (*.tif)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="147"/>
+        <source>TIFF File (*.tiff)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="148"/>
         <source>WAP Bitmap File (*.wbmp)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="149"/>
-        <source>X11 Bitmap File (*.xbm)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="150"/>
+        <source>X11 Bitmap File (*.xbm)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="151"/>
         <source>X11 Pixmap File (*.xpm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="161"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="162"/>
         <source>All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
         <source>New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
         <source>&amp;New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="199"/>
-        <source>Create a new icon</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="200"/>
+        <source>Create a new icon</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="201"/>
         <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;This creates a new icon.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="207"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="208"/>
         <source>New Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="207"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="208"/>
         <source>New &amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="212"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="213"/>
         <source>Open a new icon editor window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="214"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="215"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new icon editor window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
         <source>Open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
         <source>&amp;Open...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="227"/>
-        <source>Open an icon file for editing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="228"/>
+        <source>Open an icon file for editing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="229"/>
         <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new icon file for editing. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
         <source>Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
         <source>&amp;Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="242"/>
-        <source>Save the current icon</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="243"/>
+        <source>Save the current icon</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="244"/>
         <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of the icon editor window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
         <source>Save As</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
         <source>Save &amp;As...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="256"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="257"/>
         <source>Save the current icon to a new file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="258"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="259"/>
         <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current icon to a new file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
         <source>Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
         <source>&amp;Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="271"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="272"/>
         <source>Close the current icon editor window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="273"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="274"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current icon editor window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="280"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="281"/>
         <source>Close All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="280"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="281"/>
         <source>Close &amp;All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="284"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="285"/>
         <source>Close all icon editor windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="286"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="287"/>
         <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all icon editor windows except the first one.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="293"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="294"/>
         <source>Close Others</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="297"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="298"/>
         <source>Close all other icon editor windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="299"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="300"/>
         <source>&lt;b&gt;Close Others&lt;/b&gt;&lt;p&gt;Closes all other icon editor windows.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
         <source>Quit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
         <source>&amp;Quit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="312"/>
-        <source>Quit the icon editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="313"/>
+        <source>Quit the icon editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="314"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the icon editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>&amp;Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="332"/>
-        <source>Undo the last change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="333"/>
+        <source>Undo the last change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="334"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
         <source>Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
         <source>&amp;Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="346"/>
-        <source>Redo the last change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="347"/>
+        <source>Redo the last change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="348"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Cut</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Cu&amp;t</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="361"/>
-        <source>Cut the selection</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="362"/>
+        <source>Cut the selection</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="363"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>&amp;Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="376"/>
-        <source>Copy the selection</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="377"/>
+        <source>Copy the selection</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="378"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>&amp;Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="391"/>
-        <source>Paste the clipboard image</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="392"/>
+        <source>Paste the clipboard image</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="393"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="399"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
         <source>Paste as New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="399"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
         <source>Paste as &amp;New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="403"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="404"/>
         <source>Paste the clipboard image replacing the current one</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="405"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="406"/>
         <source>&lt;b&gt;Paste as New&lt;/b&gt;&lt;p&gt;Paste the clipboard image replacing the current one.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
         <source>Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
         <source>Cl&amp;ear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="419"/>
-        <source>Clear the icon image</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="420"/>
+        <source>Clear the icon image</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="421"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Clear the icon image and set it to be completely transparent.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
         <source>Select All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
         <source>&amp;Select All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="434"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="435"/>
         <source>Select the complete icon image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="436"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="437"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Selects the complete icon image.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="444"/>
         <source>Change Size</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="444"/>
         <source>Change Si&amp;ze...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="449"/>
-        <source>Change the icon size</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="450"/>
+        <source>Change the icon size</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="451"/>
         <source>&lt;b&gt;Change Size...&lt;/b&gt;&lt;p&gt;Changes the icon size.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="457"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="458"/>
         <source>Grayscale</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="457"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="458"/>
         <source>&amp;Grayscale</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="463"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="464"/>
         <source>Change the icon to grayscale</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="465"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="466"/>
         <source>&lt;b&gt;Grayscale&lt;/b&gt;&lt;p&gt;Changes the icon to grayscale.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
         <source>Zoom in</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
         <source>Zoom &amp;in</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="500"/>
-        <source>Zoom in on the icon</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="501"/>
+        <source>Zoom in on the icon</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="502"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the icon. This makes the grid bigger.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
         <source>Zoom out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
         <source>Zoom &amp;out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="514"/>
-        <source>Zoom out on the icon</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="515"/>
+        <source>Zoom out on the icon</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="516"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the icon. This makes the grid smaller.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
         <source>Zoom reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="528"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="529"/>
         <source>Reset the zoom of the icon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="530"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="531"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the icon. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="538"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="539"/>
         <source>Show Grid</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="538"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="539"/>
         <source>Show &amp;Grid</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="544"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="545"/>
         <source>Toggle the display of the grid</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="546"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="547"/>
         <source>&lt;b&gt;Show Grid&lt;/b&gt;&lt;p&gt;Toggle the display of the grid.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="565"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
         <source>Freehand</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="565"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
         <source>&amp;Freehand</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="571"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="572"/>
         <source>&lt;b&gt;Free hand&lt;/b&gt;&lt;p&gt;Draws non linear lines.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="580"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="581"/>
         <source>Color Picker</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="580"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="581"/>
         <source>&amp;Color Picker</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="586"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="587"/>
         <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="597"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
         <source>Rectangle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="597"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
         <source>&amp;Rectangle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="603"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="604"/>
         <source>&lt;b&gt;Rectangle&lt;/b&gt;&lt;p&gt;Draw a rectangle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="612"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="613"/>
         <source>Filled Rectangle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="612"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="613"/>
         <source>F&amp;illed Rectangle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="618"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="619"/>
         <source>&lt;b&gt;Filled Rectangle&lt;/b&gt;&lt;p&gt;Draw a filled rectangle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="628"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
         <source>Circle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="634"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="635"/>
         <source>&lt;b&gt;Circle&lt;/b&gt;&lt;p&gt;Draw a circle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="643"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="644"/>
         <source>Filled Circle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="643"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="644"/>
         <source>Fille&amp;d Circle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="649"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="650"/>
         <source>&lt;b&gt;Filled Circle&lt;/b&gt;&lt;p&gt;Draw a filled circle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="659"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
         <source>Ellipse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="659"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
         <source>&amp;Ellipse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="665"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="666"/>
         <source>&lt;b&gt;Ellipse&lt;/b&gt;&lt;p&gt;Draw an ellipse.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="674"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="675"/>
         <source>Filled Ellipse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="674"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="675"/>
         <source>Fille&amp;d Elli&amp;pse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="680"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="681"/>
         <source>&lt;b&gt;Filled Ellipse&lt;/b&gt;&lt;p&gt;Draw a filled ellipse.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="690"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="691"/>
         <source>Flood Fill</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="690"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="691"/>
         <source>Fl&amp;ood Fill</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="696"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="697"/>
         <source>&lt;b&gt;Flood Fill&lt;/b&gt;&lt;p&gt;Fill adjoining pixels with the same color with the current color.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="706"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
         <source>Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="706"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
         <source>&amp;Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="712"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="713"/>
         <source>&lt;b&gt;Line&lt;/b&gt;&lt;p&gt;Draw a line.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="721"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
         <source>Eraser (Transparent)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="721"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
         <source>Eraser (&amp;Transparent)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="727"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="728"/>
         <source>&lt;b&gt;Eraser (Transparent)&lt;/b&gt;&lt;p&gt;Erase pixels by setting them to transparent.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="736"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="737"/>
         <source>Rectangular Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="753"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="754"/>
         <source>Rect&amp;angular Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="742"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="743"/>
         <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="753"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="754"/>
         <source>Circular Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="759"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="760"/>
         <source>&lt;b&gt;Circular Selection&lt;/b&gt;&lt;p&gt;Select a circular section of the icon using the mouse.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="776"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
         <source>About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="776"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
         <source>&amp;About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="780"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="781"/>
         <source>Display information about this software</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="782"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="783"/>
         <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="../IconEditor/IconEditorWindow.py" line="788"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
         <source>About Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="788"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
         <source>About &amp;Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="792"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="793"/>
         <source>Display information about the Qt toolkit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="794"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="795"/>
         <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="../IconEditor/IconEditorWindow.py" line="801"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="801"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="801"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="807"/>
-        <source>Context sensitive help</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="808"/>
+        <source>Context sensitive help</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="809"/>
         <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="../IconEditor/IconEditorWindow.py" line="825"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="826"/>
         <source>&amp;File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="842"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="843"/>
         <source>&amp;Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="858"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="859"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="866"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="867"/>
         <source>&amp;Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="885"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="886"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="895"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="896"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="909"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="910"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="922"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="923"/>
         <source>View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="927"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="928"/>
         <source>Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="945"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="946"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="959"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="960"/>
         <source>&lt;p&gt;This part of the status bar displays the icon size.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="966"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="967"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1062"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1069"/>
         <source>Open icon file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1112"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1119"/>
         <source>Save icon file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1112"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1119"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1148"/>
-        <source>The file &apos;{0}&apos; does not exist.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="1155"/>
+        <source>The file &apos;{0}&apos; does not exist.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1162"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1189"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1196"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1201"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1208"/>
         <source>Icon saved</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1216"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1223"/>
         <source>Untitled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1227"/>
         <source>{0}[*] - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1227"/>
         <source>Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1241"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1248"/>
         <source>The icon image has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="148"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="149"/>
         <source>WebP Image File (*.webp)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="126"/>
-        <source>Windows Cursor File (*.cur)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="127"/>
+        <source>Windows Cursor File (*.cur)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="128"/>
         <source>DirectDraw-Surface File (*.dds)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="129"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="130"/>
         <source>Apple Icon File (*.icns)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="131"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="132"/>
         <source>JPEG2000 File (*.jp2)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1241"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1248"/>
         <source>eric Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1331"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1338"/>
         <source>About eric Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1331"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1338"/>
         <source>The eric Icon Editor is a simple editor component to perform icon drawing tasks.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -37666,22 +37666,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="175"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="176"/>
         <source>Include Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="175"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="176"/>
         <source>Select Include Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="388"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="391"/>
         <source>Undefine Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="388"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="391"/>
         <source>Enter a variable name to be undefined:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -38192,52 +38192,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="70"/>
+        <location filename="../UI/InstallInfoDialog.py" line="71"/>
         <source>Yes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="70"/>
+        <location filename="../UI/InstallInfoDialog.py" line="71"/>
         <source>No</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="74"/>
+        <location filename="../UI/InstallInfoDialog.py" line="75"/>
         <source>&apos;eric-ide&apos; was installed from PyPI using the pip command.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="80"/>
+        <location filename="../UI/InstallInfoDialog.py" line="81"/>
         <source>The information shown in this dialog was guessed at the first start of eric.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="98"/>
+        <location filename="../UI/InstallInfoDialog.py" line="99"/>
         <source>Load Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="98"/>
+        <location filename="../UI/InstallInfoDialog.py" line="99"/>
         <source>&lt;p&gt;The file containing the install information could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="150"/>
+        <location filename="../UI/InstallInfoDialog.py" line="151"/>
         <source>Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="150"/>
+        <location filename="../UI/InstallInfoDialog.py" line="151"/>
         <source>The install information was edited. Unsaved changes will be lost. Save first?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="187"/>
+        <location filename="../UI/InstallInfoDialog.py" line="188"/>
         <source>Save Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="187"/>
+        <location filename="../UI/InstallInfoDialog.py" line="188"/>
         <source>&lt;p&gt;The file containing the install information could not be written.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -38247,17 +38247,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="60"/>
+        <location filename="../UI/InstallInfoDialog.py" line="61"/>
         <source>Installed as Administrator:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="62"/>
+        <location filename="../UI/InstallInfoDialog.py" line="63"/>
         <source>Installed with sudo:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="92"/>
+        <location filename="../UI/InstallInfoDialog.py" line="93"/>
         <source>unknown</source>
         <translation type="unfinished"></translation>
     </message>
@@ -38267,7 +38267,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="86"/>
+        <location filename="../UI/InstallInfoDialog.py" line="87"/>
         <source>The installation information was provided by the user.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -38277,22 +38277,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="254"/>
+        <location filename="../UI/InstallInfoDialog.py" line="255"/>
         <source>Upgrade Instructions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="200"/>
+        <location filename="../UI/InstallInfoDialog.py" line="201"/>
         <source>Delete Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="200"/>
+        <location filename="../UI/InstallInfoDialog.py" line="201"/>
         <source>Do you really want to delete the installation information? It will be recreated at the next start.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="227"/>
+        <location filename="../UI/InstallInfoDialog.py" line="228"/>
         <source>Perform the following step(s) with Administrator privileges.
 </source>
         <translation type="unfinished"></translation>
@@ -39428,72 +39428,72 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="189"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="191"/>
         <source>Edit Identity</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="172"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="174"/>
         <source>The identity must contain at least one nick name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="189"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="191"/>
         <source>The identity must have a real name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="237"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="239"/>
         <source>Add Identity</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="287"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="289"/>
         <source>Identity Name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="297"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="299"/>
         <source>An identity named &lt;b&gt;{0}&lt;/b&gt; already exists. You must provide a different name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="312"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="314"/>
         <source>The identity has to have a name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="312"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="314"/>
         <source>Copy Identity</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="297"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="299"/>
         <source>Rename Identity</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="336"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="338"/>
         <source>This identity is in use. If you remove it, the network settings using it will fall back to the default identity. Should it be deleted anyway?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="341"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="343"/>
         <source>Do you really want to delete all information for this identity?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="344"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="346"/>
         <source>Delete Identity</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="477"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="480"/>
         <source>Press to show the password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="471"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="474"/>
         <source>Press to hide the password</source>
         <translation type="unfinished"></translation>
     </message>
@@ -39594,22 +39594,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="254"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="258"/>
         <source>Yes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="256"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="260"/>
         <source>No</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="185"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="189"/>
         <source>Delete Channel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="185"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="189"/>
         <source>Do you really want to delete channel &lt;b&gt;{0}&lt;/b&gt;?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -39750,62 +39750,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="341"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="343"/>
         <source>Press to disconnect from the network</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="346"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="348"/>
         <source>Press to connect to the selected network</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="434"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="436"/>
         <source>Save Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="417"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="419"/>
         <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="434"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="436"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="452"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="454"/>
         <source>Error saving Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="452"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="454"/>
         <source>&lt;p&gt;The messages contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="465"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="467"/>
         <source>Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="469"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="471"/>
         <source>Cut all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="472"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="474"/>
         <source>Copy all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="476"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="478"/>
         <source>Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="480"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="482"/>
         <source>Save</source>
         <translation type="unfinished"></translation>
     </message>
@@ -40260,298 +40260,298 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="244"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="245"/>
         <source>Disconnect from Server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="244"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="245"/>
         <source>&lt;p&gt;Do you really want to disconnect from &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;&lt;p&gt;All channels will be closed.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="186"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="187"/>
         <source>SSL Connection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="186"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="187"/>
         <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="564"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="565"/>
         <source>Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="219"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="220"/>
         <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="230"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="231"/>
         <source>Looking for server {0} (port {1})...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="253"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="254"/>
         <source>Disconnecting from server {0}...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="258"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="259"/>
         <source>Disconnecting from network {0}...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="263"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="264"/>
         <source>Disconnecting from server.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="519"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="520"/>
         <source>Server found,connecting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="528"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="529"/>
         <source>Connected,logging in...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="564"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="565"/>
         <source>Server disconnected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="611"/>
         <source>Message Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="611"/>
         <source>Unknown message received from server:&lt;br/&gt;{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="676"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="677"/>
         <source>Notice</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="687"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="688"/>
         <source>You have set your personal modes to &lt;b&gt;[{0}]&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="691"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="692"/>
         <source>{0} has changed your personal modes to &lt;b&gt;[{1}]&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="694"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="695"/>
         <source>Mode</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="701"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="702"/>
         <source>You have left channel {0}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="712"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="713"/>
         <source>You are now known as {0}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="717"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="718"/>
         <source>User {0} is now known as {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="727"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="728"/>
         <source>Server Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="763"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="764"/>
         <source>Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="778"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="779"/>
         <source>Welcome</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="780"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="781"/>
         <source>Support</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="782"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="783"/>
         <source>User</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="784"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="785"/>
         <source>MOTD</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="786"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="787"/>
         <source>Away</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="788"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="789"/>
         <source>Info ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="792"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="793"/>
         <source>Message of the day</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="794"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="795"/>
         <source>End of message of the day</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="797"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="798"/>
         <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="803"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="804"/>
         <source>Current users on {0}: {1}, max. {2}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="808"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="809"/>
         <source>Current users on the network: {0}, max. {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="812"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="813"/>
         <source>You are no longer marked as being away.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="814"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="815"/>
         <source>You have been marked as being away.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="934"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
         <source>SSL Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="876"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="877"/>
         <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="907"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
         <source>Socket Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="884"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="885"/>
         <source>The host was not found. Please check the host name and port settings.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="890"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="891"/>
         <source>The connection was refused by the peer. Please check the host name and port settings.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="896"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="897"/>
         <source>The SSL handshake failed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="901"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="902"/>
         <source>The following network error occurred:&lt;br/&gt;{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="907"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
         <source>A network error occurred.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="920"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="921"/>
         <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="934"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
         <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1015"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1016"/>
         <source>CTCP</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="992"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="993"/>
         <source>Received Version request from {0}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="998"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="999"/>
         <source>Received CTCP-PING request from {0}, sending answer.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1006"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1007"/>
         <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1015"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1016"/>
         <source>Received unknown CTCP-{0} request from {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1030"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1031"/>
         <source>{0} ({1})</source>
         <comment>channel name, users count</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1071"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1072"/>
         <source>Critical</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1052"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1053"/>
         <source>No nickname acceptable to the server configured for &lt;b&gt;{0}&lt;/b&gt;. Disconnecting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1071"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1072"/>
         <source>The given nickname is already in use.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="643"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="644"/>
         <source>Received CTCP-PING response from {0} with latency of {1} ms.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="649"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="650"/>
         <source>Received unknown CTCP-{0} response from {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="723"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="724"/>
         <source>Received PONG from {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -42697,57 +42697,57 @@
 <context>
     <name>Listspace</name>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="257"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="258"/>
         <source>Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="260"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="261"/>
         <source>Close Others</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="264"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="265"/>
         <source>Close All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="267"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="268"/>
         <source>Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="270"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="271"/>
         <source>Save As...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="273"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="274"/>
         <source>Save All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="277"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="278"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="281"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="282"/>
         <source>Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="285"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="286"/>
         <source>Copy Path to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="440"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="441"/>
         <source>Untitled {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="581"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="582"/>
         <source>{0} (ro)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -42969,67 +42969,67 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="57"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="58"/>
         <source>Uninstall Selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="60"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="62"/>
         <source>Cancel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="177"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="180"/>
         <source>Error downloading dictionaries list</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="177"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="180"/>
         <source>&lt;p&gt;Could not download the dictionaries list from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="200"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="203"/>
         <source>Dictionaries URL Changed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="200"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="203"/>
         <source>The URL of the spell check dictionaries has changed. Select the &quot;Refresh&quot; button to get the new dictionaries list.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="212"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="215"/>
         <source>Error installing dictionaries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="212"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="215"/>
         <source>&lt;p&gt;None of the dictionary locations is writable by you. Please download required dictionaries manually and install them as administrator.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="263"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="266"/>
         <source>{0} ({1})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="372"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="376"/>
         <source>Error downloading dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="357"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="361"/>
         <source>&lt;p&gt;Could not download the requested dictionary file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="357"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="361"/>
         <source>Error downloading dictionary file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="372"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="376"/>
         <source>&lt;p&gt;The downloaded dictionary archive is invalid. Skipping it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -43100,22 +43100,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="50"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="51"/>
         <source>Wrong password entered.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="54"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="55"/>
         <source>New password must not be empty.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="61"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="62"/>
         <source>Repeated password is wrong.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="66"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="67"/>
         <source>Old and new password must not be the same.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -43599,7 +43599,7 @@
 <context>
     <name>MicroPythonCommandsInterface</name>
     <message>
-        <location filename="../MicroPython/MicroPythonCommandsInterface.py" line="284"/>
+        <location filename="../MicroPython/MicroPythonCommandsInterface.py" line="285"/>
         <source>Detected an error without indications.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -43931,22 +43931,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="72"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="73"/>
         <source>max. X:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="81"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="83"/>
         <source>Enter the maximum number of data points to be plotted.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="330"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="332"/>
         <source>Save Chart Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="330"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="332"/>
         <source>&lt;p&gt;The chart data could not be saved into file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -44029,7 +44029,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="69"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="77"/>
         <source>All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -44099,37 +44099,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="48"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="49"/>
         <source>Dark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="50"/>
-        <source>Blue Cerulean</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="52"/>
+        <source>Blue Cerulean</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="55"/>
         <source>Brown Sand</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="54"/>
-        <source>Blue NCS</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="56"/>
-        <source>High Contrast</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="58"/>
+        <source>Blue NCS</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="61"/>
+        <source>High Contrast</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="64"/>
         <source>Blue Icy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="60"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="67"/>
         <source>Qt</source>
         <translation type="unfinished"></translation>
     </message>
@@ -44270,54 +44270,54 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="562"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="566"/>
         <source>Press to connect the selected device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="276"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="278"/>
         <source>&lt;h3&gt;The QtSerialPort package is not available.&lt;br/&gt;MicroPython support is deactivated.&lt;/h3&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../MicroPython/MicroPythonWidget.py" line="318"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="320"/>
         <source>%n supported device(s) detected.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="340"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="342"/>
         <source>No supported devices detected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="532"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="536"/>
         <source>Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="534"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="538"/>
         <source>Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="535"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="539"/>
         <source>Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="557"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="561"/>
         <source>Press to disconnect the current device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="578"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="582"/>
         <source>No device attached</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="578"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="582"/>
         <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -44326,212 +44326,212 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="605"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="609"/>
         <source>Start REPL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="605"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="609"/>
         <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1054"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1068"/>
         <source>Serial Device Connect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1054"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1068"/>
         <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1099"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1113"/>
         <source>Run Script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1082"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1096"/>
         <source>There is no editor open. Abort...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1090"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1104"/>
         <source>The current editor does not contain a script. Abort...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1099"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1113"/>
         <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1123"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1137"/>
         <source>Open Python File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1123"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1137"/>
         <source>Python3 Files (*.py);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1168"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1182"/>
         <source>Start Chart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1168"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1182"/>
         <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1197"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1211"/>
         <source>Unsaved Chart Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1197"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1211"/>
         <source>The chart contains unsaved data.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1248"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1262"/>
         <source>Start File Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1248"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1262"/>
         <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1322"/>
-        <source>Show Version</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1325"/>
-        <source>Show Implementation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1452"/>
-        <source>Synchronize Time</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1333"/>
-        <source>Show Device Time</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../MicroPython/MicroPythonWidget.py" line="1336"/>
+        <source>Show Version</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1339"/>
+        <source>Show Implementation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1466"/>
+        <source>Synchronize Time</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1347"/>
+        <source>Show Device Time</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1350"/>
         <source>Show Local Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1673"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1687"/>
         <source>Compile Python File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1693"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1707"/>
         <source>Compile Current Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1388"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1402"/>
         <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1397"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1411"/>
         <source>No version information available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1399"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1413"/>
         <source>Device Version Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1422"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1436"/>
         <source>unknown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1426"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1440"/>
         <source>Device Implementation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1426"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1440"/>
         <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1452"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1466"/>
         <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1475"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1489"/>
         <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1483"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1497"/>
         <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1500"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1514"/>
         <source>Device Date and Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1513"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1527"/>
         <source>Local Date and Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1513"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1527"/>
         <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1581"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1595"/>
         <source>Error handling device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1581"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1595"/>
         <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1621"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1635"/>
         <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1643"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1657"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1653"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1667"/>
         <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1663"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1677"/>
         <source>&apos;mpy-cross&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1686"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1700"/>
         <source>The current editor does not contain a Python file. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -44546,114 +44546,114 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1181"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1195"/>
         <source>&#xc2;&#xb5;Py Chart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1264"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1278"/>
         <source>&#xc2;&#xb5;Py Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1365"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1379"/>
         <source>Show Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1378"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1392"/>
         <source>Configure</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1339"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1353"/>
         <source>Show Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1358"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1372"/>
         <source>Download Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1556"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1570"/>
         <source>Date and Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1539"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1553"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{0}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1556"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1570"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align=&apos;center&apos;&gt;{0} {1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="410"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="412"/>
         <source>Unknown MicroPython Device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1375"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1389"/>
         <source>Ignored Serial Devices</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1304"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1318"/>
         <source>Downloads</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="323"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="325"/>
         <source>{0} - {1} ({2})</source>
         <comment>board name, description, port name</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="382"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="384"/>
         <source>&lt;p&gt;Detected these unknown serial devices&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please report them together with the board name and a short description to &lt;a href=&quot;mailto:{1}&quot;&gt; the eric bug reporting address&lt;/a&gt; if it is a MicroPython board.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="382"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="384"/>
         <source>{0} (0x{1:04x}/0x{2:04x})</source>
         <comment>description, VId, PId</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="410"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="412"/>
         <source>Would you like to add them to the list of manually configured devices?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1373"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1387"/>
         <source>Manage Unknown Devices</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1778"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1792"/>
         <source>Add Unknown Devices</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1778"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1792"/>
         <source>Select the devices to be added:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1370"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1384"/>
         <source>Flash UF2 Device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="350"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="352"/>
         <source>Manual Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../MicroPython/MicroPythonWidget.py" line="344"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="346"/>
         <source>
 %n unknown device(s) for manual selection.</source>
         <translation type="unfinished">
@@ -44848,674 +44848,674 @@
 <context>
     <name>MiniEditor</name>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2701"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2702"/>
         <source>Save File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2701"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2702"/>
         <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="2708"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2709"/>
         <source>File saved</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="467"/>
+        <location filename="../QScintilla/MiniEditor.py" line="468"/>
         <source>Line: {0:5}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="471"/>
+        <location filename="../QScintilla/MiniEditor.py" line="472"/>
         <source>Pos: {0:5}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>&amp;New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="551"/>
-        <source>Open an empty editor window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="552"/>
+        <source>Open an empty editor window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="553"/>
         <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="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>Open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>&amp;Open...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="565"/>
-        <source>Open a file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="566"/>
+        <source>Open a file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="567"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>&amp;Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="579"/>
-        <source>Save the current file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="580"/>
+        <source>Save the current file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="581"/>
         <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="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Save as</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Save &amp;as...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="593"/>
+        <location filename="../QScintilla/MiniEditor.py" line="594"/>
         <source>Save the current file to a new one</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="595"/>
+        <location filename="../QScintilla/MiniEditor.py" line="596"/>
         <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="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save &amp;Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="608"/>
+        <location filename="../QScintilla/MiniEditor.py" line="609"/>
         <source>Save a copy of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="610"/>
+        <location filename="../QScintilla/MiniEditor.py" line="611"/>
         <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="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>&amp;Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="624"/>
-        <source>Close the editor window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="625"/>
+        <source>Close the editor window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="626"/>
         <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="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>&amp;Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="638"/>
-        <source>Print the current file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="639"/>
+        <source>Print the current file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="640"/>
         <source>&lt;b&gt;Print File&lt;/b&gt;&lt;p&gt;Print the contents of the current file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="646"/>
+        <location filename="../QScintilla/MiniEditor.py" line="647"/>
         <source>Print Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="651"/>
+        <location filename="../QScintilla/MiniEditor.py" line="652"/>
         <source>Print preview of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="653"/>
+        <location filename="../QScintilla/MiniEditor.py" line="654"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the current file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>&amp;Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="671"/>
-        <source>Undo the last change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="672"/>
+        <source>Undo the last change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="673"/>
         <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="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>&amp;Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="685"/>
-        <source>Redo the last change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="686"/>
+        <source>Redo the last change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="687"/>
         <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="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Cut</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Cu&amp;t</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="700"/>
-        <source>Cut the selection</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="701"/>
+        <source>Cut the selection</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="702"/>
         <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="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>&amp;Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="716"/>
-        <source>Copy the selection</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="717"/>
+        <source>Copy the selection</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="718"/>
         <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="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>&amp;Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="732"/>
+        <location filename="../QScintilla/MiniEditor.py" line="733"/>
         <source>Paste the last cut/copied text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="734"/>
+        <location filename="../QScintilla/MiniEditor.py" line="735"/>
         <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="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Cl&amp;ear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="749"/>
-        <source>Clear all text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="750"/>
+        <source>Clear all text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="751"/>
         <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="../QScintilla/MiniEditor.py" line="2353"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2354"/>
         <source>About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2353"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2354"/>
         <source>&amp;About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2358"/>
         <source>Display information about this software</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2359"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2360"/>
         <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="2365"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2366"/>
         <source>About Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2365"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2366"/>
         <source>About &amp;Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2369"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2370"/>
         <source>Display information about the Qt toolkit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2371"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2372"/>
         <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="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2384"/>
-        <source>Context sensitive help</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2385"/>
+        <source>Context sensitive help</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
         <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="2401"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2402"/>
         <source>&amp;File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2413"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2414"/>
         <source>&amp;Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2439"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2440"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2451"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2452"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2464"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2465"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2474"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2475"/>
         <source>Find</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2488"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2489"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2509"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2510"/>
         <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="2516"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2517"/>
         <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="2523"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2524"/>
         <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="2540"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2541"/>
         <source>Ready</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2567"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2568"/>
         <source>The document has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2594"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2595"/>
         <source>Open File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2594"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2595"/>
         <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="2622"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2623"/>
         <source>File loaded</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3055"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3066"/>
         <source>Untitled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2737"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2738"/>
         <source>{0}[*] - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2737"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2738"/>
         <source>Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3018"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3026"/>
         <source>Printing...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3036"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3047"/>
         <source>Printing completed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3038"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3049"/>
         <source>Error while printing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3041"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3052"/>
         <source>Printing aborted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3096"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3107"/>
         <source>Select all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3097"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3108"/>
         <source>Deselect all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3111"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3122"/>
         <source>Languages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3114"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3125"/>
         <source>No Language</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3138"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3149"/>
         <source>Guessed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3160"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3171"/>
         <source>Alternatives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3156"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3167"/>
         <source>Alternatives ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3184"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3195"/>
         <source>Pygments Lexer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3184"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3195"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3698"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3709"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3698"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3709"/>
         <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="2720"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2721"/>
         <source>[*] - {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="486"/>
+        <location filename="../QScintilla/MiniEditor.py" line="487"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2431"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2432"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2481"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2482"/>
         <source>View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2501"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2502"/>
         <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2534"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2535"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="397"/>
+        <location filename="../QScintilla/MiniEditor.py" line="398"/>
         <source>About eric Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="397"/>
+        <location filename="../QScintilla/MiniEditor.py" line="398"/>
         <source>The eric 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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2567"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2568"/>
         <source>eric Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46010,12 +46010,12 @@
 <context>
     <name>MouseUtilities</name>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="29"/>
+        <location filename="../Utilities/MouseUtilities.py" line="31"/>
         <source>Shift</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="31"/>
+        <location filename="../Utilities/MouseUtilities.py" line="33"/>
         <source>Alt</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46025,37 +46025,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="33"/>
+        <location filename="../Utilities/MouseUtilities.py" line="35"/>
         <source>Ctrl</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="35"/>
+        <location filename="../Utilities/MouseUtilities.py" line="37"/>
         <source>Meta</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="43"/>
-        <source>Left Button</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Utilities/MouseUtilities.py" line="45"/>
-        <source>Right Button</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Utilities/MouseUtilities.py" line="47"/>
-        <source>Middle Button</source>
+        <source>Left Button</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Utilities/MouseUtilities.py" line="49"/>
-        <source>Extra Button 1</source>
+        <source>Right Button</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Utilities/MouseUtilities.py" line="51"/>
+        <source>Middle Button</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Utilities/MouseUtilities.py" line="53"/>
+        <source>Extra Button 1</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Utilities/MouseUtilities.py" line="55"/>
         <source>Extra Button 2</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46541,32 +46541,32 @@
 <context>
     <name>NavigationBar</name>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="55"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="56"/>
         <source>Move one screen backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="65"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="67"/>
         <source>Move one screen forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="83"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="86"/>
         <source>Move to the initial screen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="95"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="99"/>
         <source>Exit Fullscreen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="273"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="281"/>
         <source>Clear History</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="108"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="113"/>
         <source>Main Menu</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46604,12 +46604,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/NetworkManager.py" line="336"/>
+        <location filename="../WebBrowser/Network/NetworkManager.py" line="338"/>
         <source>Authentication required</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/NetworkManager.py" line="337"/>
+        <location filename="../WebBrowser/Network/NetworkManager.py" line="339"/>
         <source>Authentication is required to access:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47234,27 +47234,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="184"/>
+        <location filename="../UI/NumbersWidget.py" line="194"/>
         <source>Auto</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="185"/>
+        <location filename="../UI/NumbersWidget.py" line="195"/>
         <source>Dec</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="186"/>
+        <location filename="../UI/NumbersWidget.py" line="196"/>
         <source>Hex</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="187"/>
+        <location filename="../UI/NumbersWidget.py" line="197"/>
         <source>Oct</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="188"/>
+        <location filename="../UI/NumbersWidget.py" line="198"/>
         <source>Bin</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47403,17 +47403,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="136"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="143"/>
         <source>&lt;strong&gt;Description:&lt;/strong&gt; {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="141"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="148"/>
         <source>&lt;strong&gt;Provides contextual suggestions&lt;/strong&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="149"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="156"/>
         <source>Comma-separated list of keywords that may be entered in the location bar followed by search terms to search with this engine</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47421,7 +47421,7 @@
 <context>
     <name>OpenSearchManager</name>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchManager.py" line="462"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchManager.py" line="463"/>
         <source>&lt;p&gt;Do you want to add the following engine to your list of search engines?&lt;br/&gt;&lt;br/&gt;Name: {0}&lt;br/&gt;Searches on: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48030,12 +48030,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="146"/>
+        <location filename="../PipInterface/PipDialog.py" line="156"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="146"/>
+        <location filename="../PipInterface/PipDialog.py" line="156"/>
         <source>The process {0} could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48111,7 +48111,7 @@
 <context>
     <name>PipFreezeDialog</name>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="225"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="227"/>
         <source>Generate Requirements</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48196,27 +48196,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="225"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="227"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="114"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="116"/>
         <source>The requirements were changed. Do you want to overwrite these changes?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="156"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="158"/>
         <source>No output generated by &apos;pip freeze&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="193"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="195"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; already exists. Do you want to overwrite it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="205"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="207"/>
         <source>&lt;p&gt;The requirements could not be written to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48399,32 +48399,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="190"/>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="193"/>
         <source>any</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="229"/>
-        <source>B</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PipInterface/PipPackageDetailsDialog.py" line="232"/>
-        <source>KB</source>
+        <source>B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackageDetailsDialog.py" line="235"/>
-        <source>MB</source>
+        <source>KB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackageDetailsDialog.py" line="238"/>
+        <source>MB</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="241"/>
         <source>GB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="239"/>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="242"/>
         <source>{0:.1f} {1}</source>
         <comment>value, unit</comment>
         <translation type="unfinished"></translation>
@@ -48566,7 +48566,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="189"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="192"/>
         <source>Name:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48581,7 +48581,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="193"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="196"/>
         <source>Summary:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48611,174 +48611,174 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="190"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="193"/>
         <source>Version:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="191"/>
-        <source>Location:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="192"/>
-        <source>Requires:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="194"/>
-        <source>Homepage:</source>
+        <source>Location:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="195"/>
-        <source>Author:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="196"/>
-        <source>Author Email:</source>
+        <source>Requires:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="197"/>
-        <source>License:</source>
+        <source>Homepage:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="198"/>
-        <source>Metadata Version:</source>
+        <source>Author:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="199"/>
-        <source>Installer:</source>
+        <source>Author Email:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="200"/>
-        <source>Classifiers:</source>
+        <source>License:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="201"/>
-        <source>Entry Points:</source>
+        <source>Metadata Version:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="202"/>
+        <source>Installer:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="203"/>
+        <source>Classifiers:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="204"/>
+        <source>Entry Points:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="205"/>
         <source>Files:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="351"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="360"/>
         <source>Getting installed packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="366"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="375"/>
         <source>Getting outdated packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../PipInterface/PipPackagesWidget.py" line="776"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="791"/>
         <source>%n package(s) found.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
         <source>Search PyPI</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
         <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="960"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="975"/>
         <source>Install Pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="963"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="978"/>
         <source>Install Pip to User-Site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="966"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="981"/>
         <source>Repair Pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1083"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1098"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="973"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="988"/>
         <source>Install Local Package</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="977"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="992"/>
         <source>Install Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="980"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="995"/>
         <source>Uninstall Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="983"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="998"/>
         <source>Generate Requirements...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1001"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1016"/>
         <source>Edit User Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1004"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1019"/>
         <source>Edit Environment Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1009"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1024"/>
         <source>Configure...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1194"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1209"/>
         <source>Edit Configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1194"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1209"/>
         <source>No valid configuration path determined. Aborting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="987"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1002"/>
         <source>Show Cache Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="990"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1005"/>
         <source>Show Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="993"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1008"/>
         <source>Remove Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="996"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1011"/>
         <source>Purge Cache...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48788,17 +48788,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="759"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="774"/>
         <source>&lt;p&gt;Received an error while searching for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="778"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="793"/>
         <source>Showing first 20 packages found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="785"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="800"/>
         <source>&lt;p&gt;There were no results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49043,17 +49043,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInfoDialog.py" line="101"/>
+        <location filename="../PluginManager/PluginInfoDialog.py" line="105"/>
         <source>Yes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../PluginManager/PluginInfoDialog.py" line="78"/>
+        <source>No</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../PluginManager/PluginInfoDialog.py" line="77"/>
-        <source>No</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../PluginManager/PluginInfoDialog.py" line="76"/>
         <source>On-Demand</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49134,17 +49134,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="75"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="77"/>
         <source>User plugins directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="81"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="83"/>
         <source>Global plugins directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="145"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="147"/>
         <source>Plugin ZIP-Archives:
 {0}
 
@@ -49153,77 +49153,77 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="162"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="164"/>
         <source>Select plugin ZIP-archives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="162"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="164"/>
         <source>Plugin archive (*.zip)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="231"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="233"/>
         <source>Installing {0} ...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="236"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="238"/>
         <source>  ok</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="243"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="245"/>
         <source>The plugins were installed successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="246"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="248"/>
         <source>Some plugins could not be installed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="274"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="276"/>
         <source>&lt;p&gt;The archive file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="315"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="317"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not a valid plugin ZIP-archive. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="294"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="296"/>
         <source>&lt;p&gt;The destination directory &lt;b&gt;{0}&lt;/b&gt; is not writeable. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="364"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="366"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; does not contain a &apos;packageName&apos; attribute. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="374"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="376"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; does not conform with the PyQt v2 API. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="389"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="391"/>
         <source>&lt;p&gt;The plugin package &lt;b&gt;{0}&lt;/b&gt; exists. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="402"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="404"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; exists. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="496"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="498"/>
         <source>Error installing plugin. Reason: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="505"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="507"/>
         <source>Unspecific exception installing plugin.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49271,22 +49271,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1292"/>
+        <location filename="../PluginManager/PluginManager.py" line="1293"/>
         <source>Error downloading file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1292"/>
+        <location filename="../PluginManager/PluginManager.py" line="1293"/>
         <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1329"/>
+        <location filename="../PluginManager/PluginManager.py" line="1330"/>
         <source>New plugin versions available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1329"/>
+        <location filename="../PluginManager/PluginManager.py" line="1330"/>
         <source>&lt;p&gt;There are new plug-ins or plug-in updates available. Use the plug-in repository dialog to get them.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49565,138 +49565,138 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="117"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="120"/>
         <source>Hide</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="119"/>
-        <source>Hide Selected</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="122"/>
-        <source>Show All</source>
+        <source>Hide Selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="125"/>
+        <source>Show All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="128"/>
         <source>Cleanup Downloads</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="359"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="362"/>
         <source>Download Plugin Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="359"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="362"/>
         <source>The requested plugins were downloaded.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="407"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="410"/>
         <source>Plugins Repository URL Changed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="407"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="410"/>
         <source>The URL of the Plugins Repository has changed. Select the &quot;Update&quot; button to get the new repository file.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="415"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="418"/>
         <source>Read plugins repository file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="415"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="418"/>
         <source>&lt;p&gt;The plugins repository file &lt;b&gt;{0}&lt;/b&gt; could not be read. Select Update&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="423"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="426"/>
         <source>No plugin repository file available.
 Select Update.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="484"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="491"/>
         <source>Error downloading file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="484"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="491"/>
         <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="568"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="575"/>
         <source>Stable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="574"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="581"/>
         <source>Unstable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="586"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="593"/>
         <source>Unknown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="600"/>
-        <source>up-to-date</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="603"/>
-        <source>new download available</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="607"/>
+        <source>up-to-date</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="610"/>
+        <source>new download available</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="614"/>
         <source>update installable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="611"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="618"/>
         <source>updated download available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="979"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="986"/>
         <source>Cleanup of Plugin Downloads</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="979"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="986"/>
         <source>&lt;p&gt;The plugin download &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="430"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="433"/>
         <source>New: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="432"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="435"/>
         <source>Local Updates: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="434"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="437"/>
         <source>Remote Updates: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="580"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="587"/>
         <source>Obsolete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="615"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="622"/>
         <source>error determining status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49704,17 +49704,17 @@
 <context>
     <name>PluginRepositoryWindow</name>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>&lt;p&gt;Could not start the process.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>OK</source>
         <translation type="unfinished"></translation>
     </message>
@@ -50066,17 +50066,17 @@
 <context>
     <name>Preferences</name>
     <message>
-        <location filename="../Preferences/__init__.py" line="1640"/>
+        <location filename="../Preferences/__init__.py" line="1649"/>
         <source>Export Preferences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1668"/>
+        <location filename="../Preferences/__init__.py" line="1677"/>
         <source>Properties File (*.ini);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1668"/>
+        <location filename="../Preferences/__init__.py" line="1677"/>
         <source>Import Preferences</source>
         <translation type="unfinished"></translation>
     </message>
@@ -50097,7 +50097,7 @@
 <context>
     <name>PreviewModel</name>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="432"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="434"/>
         <source>Variable Name</source>
         <translation type="unfinished"></translation>
     </message>
@@ -50105,27 +50105,27 @@
 <context>
     <name>PreviewProcessingThread</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="463"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="466"/>
         <source>&lt;p&gt;No preview available for this type of file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="572"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="575"/>
         <source>&lt;p&gt;ReStructuredText preview requires the &lt;b&gt;sphinx&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager,&apos;pip install Sphinx&apos; or see &lt;a href=&quot;http://pypi.python.org/pypi/Sphinx&quot;&gt;this page.&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Alternatively you may disable Sphinx usage on the Editor, Filehandling configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="632"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="635"/>
         <source>&lt;p&gt;ReStructuredText preview requires the &lt;b&gt;python-docutils&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager, &apos;pip install docutils&apos; or see &lt;a href=&quot;http://pypi.python.org/pypi/docutils&quot;&gt;this page.&lt;/a&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="675"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="678"/>
         <source>&lt;p&gt;Markdown preview requires the &lt;b&gt;Markdown&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager, &apos;pip install Markdown&apos; or see &lt;a href=&quot;http://pythonhosted.org/Markdown/install.html&quot;&gt;installation instructions.&lt;/a&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="647"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="650"/>
         <source>&lt;p&gt;Docutils returned an error:&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -50133,42 +50133,42 @@
 <context>
     <name>PreviewerHTML</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="74"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="77"/>
         <source>Enable JavaScript</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="75"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="78"/>
         <source>Select to enable JavaScript for HTML previews</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="79"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="82"/>
         <source>Enable Server Side Includes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="81"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="84"/>
         <source>Select to enable support for Server Side Includes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="194"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="197"/>
         <source>&lt;p&gt;No preview available for this type of file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="253"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="256"/>
         <source>Preview - {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="255"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="258"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="57"/>
+        <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 type="unfinished"></translation>
     </message>
@@ -50249,17 +50249,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="76"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="80"/>
         <source>Portrait</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="78"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="82"/>
         <source>Landscape</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="79"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="83"/>
         <source>{0}, {1}</source>
         <comment>page size, page orientation</comment>
         <translation type="unfinished"></translation>
@@ -50444,7 +50444,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="433"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="434"/>
         <source>(unknown)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -50464,12 +50464,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="436"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="437"/>
         <source>(not executable)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="479"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="481"/>
         <source>(not found)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -50484,7 +50484,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="398"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="399"/>
         <source>(module not found)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51848,32 +51848,32 @@
 <context>
     <name>ProjectBaseBrowser</name>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="128"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="132"/>
         <source>Open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="294"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="300"/>
         <source>Delete directories</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="294"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="300"/>
         <source>Do you really want to delete these directories from the project?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="496"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="503"/>
         <source>local</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="537"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="544"/>
         <source>Select entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="537"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="544"/>
         <source>There were no matching entries found.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51934,7 +51934,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBrowserModel.py" line="797"/>
+        <location filename="../Project/ProjectBrowserModel.py" line="803"/>
         <source>local</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52123,7 +52123,7 @@
 <context>
     <name>ProjectFormsBrowser</name>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1009"/>
         <source>Forms</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52353,57 +52353,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="784"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="788"/>
         <source>Form Compilation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="768"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="772"/>
         <source>The compilation of the form file was successful.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="775"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="779"/>
         <source>&lt;p&gt;The compilation of the form file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="784"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="788"/>
         <source>The compilation of the form file failed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="870"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="874"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="870"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="874"/>
         <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="962"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="966"/>
         <source>Compiling forms...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>Abort</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>%v/%m Forms</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>Determining changed forms...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1031"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1035"/>
         <source>Compiling changed forms...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53043,7 +53043,7 @@
 <context>
     <name>ProjectResourcesBrowser</name>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="861"/>
         <source>Resources</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53153,57 +53153,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="624"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="628"/>
         <source>Resource Compilation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="610"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="614"/>
         <source>The compilation of the resource file was successful.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="617"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="621"/>
         <source>&lt;p&gt;The compilation of the resource file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="624"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="628"/>
         <source>The compilation of the resource file failed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="713"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="717"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="713"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="717"/>
         <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="779"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="783"/>
         <source>Compiling resources...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>Abort</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>%v/%m Resources</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>Determining changed resources...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="889"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="893"/>
         <source>Compiling changed resources...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -54263,7 +54263,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="349"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="361"/>
         <source>Coverage</source>
         <translation type="unfinished"></translation>
     </message>
@@ -54294,54 +54294,54 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>%v/%m Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="58"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="60"/>
         <source>Open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="61"/>
-        <source>Annotate</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../DataViews/PyCoverageDialog.py" line="63"/>
+        <source>Annotate</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyCoverageDialog.py" line="65"/>
         <source>Annotate all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="64"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="66"/>
         <source>Delete annotated files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="67"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="69"/>
         <source>Erase Coverage Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="243"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="246"/>
         <source>Parse Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../DataViews/PyCoverageDialog.py" line="243"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="246"/>
         <source>%n file(s) could not be parsed. Coverage info for these is not available.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>Annotating files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>Abort</source>
         <translation type="unfinished"></translation>
     </message>
@@ -54349,7 +54349,7 @@
 <context>
     <name>PyProfileDialog</name>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="234"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="239"/>
         <source>Profile Results</source>
         <translation type="unfinished"></translation>
     </message>
@@ -54432,57 +54432,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="337"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="354"/>
         <source>Exclude Python Library</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="89"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="92"/>
         <source>Erase Profiling Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="91"/>
-        <source>Erase Timing Info</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../DataViews/PyProfileDialog.py" line="94"/>
+        <source>Erase Timing Info</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="97"/>
         <source>Erase All Infos</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="215"/>
-        <source>function calls</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="218"/>
-        <source>primitive calls</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../DataViews/PyProfileDialog.py" line="220"/>
+        <source>function calls</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="223"/>
+        <source>primitive calls</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="225"/>
         <source>CPU seconds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="234"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="239"/>
         <source>&lt;p&gt;There is no profiling data available for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="246"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="251"/>
         <source>Loading Profiling Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="246"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="251"/>
         <source>&lt;p&gt;The profiling data could not be read from file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="333"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="350"/>
         <source>Include Python Library</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55038,132 +55038,132 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="102"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="103"/>
         <source>Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="104"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="105"/>
         <source>Copy the regular expression to the clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="188"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="190"/>
         <source>Named reference</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="182"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="184"/>
         <source>No named groups have been defined yet.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="188"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="190"/>
         <source>Select group name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="372"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="374"/>
         <source>Save regular expression</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="360"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="362"/>
         <source>RegExp Files (*.rx);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="334"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="336"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="372"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="374"/>
         <source>&lt;p&gt;The regular expression could not be saved.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="360"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="362"/>
         <source>Load regular expression</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="414"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="416"/>
         <source>Validation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="414"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="416"/>
         <source>The regular expression is valid.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="578"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="581"/>
         <source>Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="564"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="567"/>
         <source>Invalid regular expression: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="571"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="574"/>
         <source>Invalid regular expression: missing group name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="433"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="435"/>
         <source>A regular expression must be given.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="478"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="480"/>
         <source>Regexp</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="488"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="490"/>
         <source>Offset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="496"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="498"/>
         <source>Captures</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="503"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="505"/>
         <source>Text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="506"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="508"/>
         <source>Characters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="511"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="513"/>
         <source>Match</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="526"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="528"/>
         <source>Capture #{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="546"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="549"/>
         <source>No more matches</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="550"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="553"/>
         <source>No matches</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="578"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="581"/>
         <source>A regular expression and a text must be given.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55744,37 +55744,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="247"/>
+        <location filename="../UI/PythonAstViewer.py" line="249"/>
         <source>Module</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="279"/>
+        <location filename="../UI/PythonAstViewer.py" line="281"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="300"/>
+        <location filename="../UI/PythonAstViewer.py" line="302"/>
         <source>{0},{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="307"/>
+        <location filename="../UI/PythonAstViewer.py" line="309"/>
         <source>{0}  -  {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="211"/>
+        <location filename="../UI/PythonAstViewer.py" line="213"/>
         <source>No editor has been opened.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="222"/>
+        <location filename="../UI/PythonAstViewer.py" line="224"/>
         <source>The current editor does not contain any source code.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="228"/>
+        <location filename="../UI/PythonAstViewer.py" line="230"/>
         <source>The current editor does not contain Python source code.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55827,7 +55827,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="695"/>
+        <location filename="../UI/PythonDisViewer.py" line="698"/>
         <source>Code Object &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55882,72 +55882,72 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="810"/>
+        <location filename="../UI/PythonDisViewer.py" line="813"/>
         <source>Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="812"/>
+        <location filename="../UI/PythonDisViewer.py" line="815"/>
         <source>Filename</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="814"/>
+        <location filename="../UI/PythonDisViewer.py" line="817"/>
         <source>First Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="816"/>
+        <location filename="../UI/PythonDisViewer.py" line="819"/>
         <source>Argument Count</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="818"/>
+        <location filename="../UI/PythonDisViewer.py" line="821"/>
         <source>Positional-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../UI/PythonDisViewer.py" line="827"/>
+        <source>Number of Locals</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="829"/>
+        <source>Stack Size</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="831"/>
+        <source>Flags</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="834"/>
+        <source>Constants</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="837"/>
+        <source>Names</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="840"/>
+        <source>Variable Names</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="843"/>
+        <source>Free Variables</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="846"/>
+        <source>Cell Variables</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/PythonDisViewer.py" line="824"/>
-        <source>Number of Locals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="826"/>
-        <source>Stack Size</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="828"/>
-        <source>Flags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="831"/>
-        <source>Constants</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="834"/>
-        <source>Names</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="837"/>
-        <source>Variable Names</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="840"/>
-        <source>Free Variables</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="843"/>
-        <source>Cell Variables</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="821"/>
         <source>Keyword-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
@@ -57475,197 +57475,197 @@
 <context>
     <name>QRegularExpressionWizardWidget</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="96"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="97"/>
         <source>Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="98"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="99"/>
         <source>Save the regular expression to a file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="100"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="101"/>
         <source>Load</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="102"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="103"/>
         <source>Load a regular expression from a file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="105"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="106"/>
         <source>Validate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="107"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="108"/>
         <source>Validate the regular expression</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="109"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="110"/>
         <source>Execute</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="111"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="112"/>
         <source>Execute the regular expression</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="113"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="114"/>
         <source>Next match</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="115"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="116"/>
         <source>Show the next match of the regular expression</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="128"/>
-        <source>Copy</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="130"/>
+        <source>Copy</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="132"/>
         <source>Copy the regular expression to the clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="702"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="706"/>
         <source>Communication Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="169"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="172"/>
         <source>&lt;p&gt;The PyQt5 backend reported an error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="292"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="295"/>
         <source>Named reference</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="286"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="289"/>
         <source>No named groups have been defined yet.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="292"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="295"/>
         <source>Select group name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="454"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="457"/>
         <source>Save regular expression</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="442"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="445"/>
         <source>RegExp Files (*.rx);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="416"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="419"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="454"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="457"/>
         <source>&lt;p&gt;The regular expression could not be saved.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="442"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="445"/>
         <source>Load regular expression</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="507"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="510"/>
         <source>Validation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="507"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="510"/>
         <source>The regular expression is valid.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="708"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="712"/>
         <source>Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="582"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="585"/>
         <source>Invalid regular expression: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="696"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="700"/>
         <source>Invalid response received from PyQt5 backend.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="702"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="706"/>
         <source>Communication with PyQt5 backend failed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="538"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="541"/>
         <source>A regular expression must be given.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="602"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="605"/>
         <source>Regexp</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="613"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="616"/>
         <source>Offset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="621"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="624"/>
         <source>Captures</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="629"/>
-        <source>Text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="632"/>
+        <source>Text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="635"/>
         <source>Characters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="637"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="640"/>
         <source>Match</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="652"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="655"/>
         <source>Capture #{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="676"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="680"/>
         <source>No more matches</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="681"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="685"/>
         <source>No matches</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="708"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="712"/>
         <source>A regular expression and a text must be given.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -57703,7 +57703,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="174"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="176"/>
         <source>Add Documentation</source>
         <translation type="unfinished"></translation>
     </message>
@@ -57718,22 +57718,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="174"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="176"/>
         <source>The namespace &lt;b&gt;{0}&lt;/b&gt; is already registered.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="211"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="213"/>
         <source>Remove Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="196"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="198"/>
         <source>Do you really want to remove the selected documentation sets from the database?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="211"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="213"/>
         <source>Some documents currently opened reference the documentation you are attempting to remove. Removing the documentation will close those documents. Remove anyway?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -57788,7 +57788,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="406"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="410"/>
         <source>Remove Filters</source>
         <translation type="unfinished"></translation>
     </message>
@@ -57798,7 +57798,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="434"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="438"/>
         <source>Remove Attributes</source>
         <translation type="unfinished"></translation>
     </message>
@@ -57843,22 +57843,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="385"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="389"/>
         <source>Add Filter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="385"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="389"/>
         <source>Filter name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="406"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="410"/>
         <source>Do you really want to remove the selected filters from the database?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="434"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="438"/>
         <source>Do you really want to remove the selected attributes from the database?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -57876,27 +57876,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="139"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="142"/>
         <source>Delete Documentation Sets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="86"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="89"/>
         <source>Shall the selected documentation sets really be deleted?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="102"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="105"/>
         <source>&lt;p&gt;The documentation set &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="121"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="124"/>
         <source>Shall the selected documentation set categories really be deleted?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="139"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="142"/>
         <source>Shall all documentation sets really be deleted?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59374,87 +59374,87 @@
 <context>
     <name>SafeBrowsingAPI</name>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="391"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="400"/>
         <source>&lt;h3&gt;Malware Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to install harmful programs on your computer in order to steal or destroy your data.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="398"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="407"/>
         <source>&lt;h3&gt;Phishing Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to trick you into doing something dangerous online, such as revealing passwords or personal information, usually through a fake website.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="406"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="415"/>
         <source>&lt;h3&gt;Unwanted Software Warning&lt;/h3&gt;&lt;p&gt;The software you are about to download may negatively affect your browsing or computing experience.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="412"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="421"/>
         <source>&lt;h3&gt;Potentially Harmful Application&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to trick you into installing applications, that may negatively affect your browsing experience.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="426"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="435"/>
         <source>&lt;h3&gt;Unknown Threat Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit was found in the Safe Browsing Database but was not classified yet.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="446"/>
-        <source>Malware</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="449"/>
-        <source>Phishing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="452"/>
-        <source>Unwanted Software</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="455"/>
-        <source>Harmful Application</source>
+        <source>Malware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="458"/>
-        <source>Malicious Binary</source>
+        <source>Phishing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="461"/>
+        <source>Unwanted Software</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="464"/>
+        <source>Harmful Application</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="467"/>
+        <source>Malicious Binary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="470"/>
         <source>Unknown Threat</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="532"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="541"/>
         <source>any defined platform</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="535"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="544"/>
         <source>all defined platforms</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="538"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="547"/>
         <source>unknown platform</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="492"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="501"/>
         <source>executable program</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="495"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="504"/>
         <source>unknown type</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="419"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="428"/>
         <source>&lt;h3&gt;Malicious Binary Warning&lt;/h3&gt;&lt;p&gt;The software you are about to download may be harmful to your computer.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59462,7 +59462,7 @@
 <context>
     <name>SafeBrowsingDialog</name>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="171"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="173"/>
         <source>Safe Browsing Management</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59552,52 +59552,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="312"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="314"/>
         <source>Check URL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="171"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="173"/>
         <source>The dialog contains unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="213"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="215"/>
         <source>Update Safe Browsing Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="196"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="198"/>
         <source>Updating the Safe Browsing cache might be a lengthy operation. Please be patient!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="207"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="209"/>
         <source>&lt;p&gt;Updating the Safe Browsing cache failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="213"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="215"/>
         <source>&lt;p&gt;Updating the Safe Browsing cache failed.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="224"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="226"/>
         <source>Clear Safe Browsing Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="224"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="226"/>
         <source>Do you really want to clear the Safe Browsing cache? Re-populating it might take some time.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="304"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="306"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing Database.&lt;/p&gt;{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="312"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="314"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was not found in the Safe Browsing Database and may be considered safe.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59627,17 +59627,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="339"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="341"/>
         <source>The next automatic threat list update will be done now.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="342"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="344"/>
         <source>&lt;p&gt;The next automatic threat list update will be done at &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="346"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="348"/>
         <source>Update Time</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59657,7 +59657,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="296"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="298"/>
         <source>&lt;p&gt;The Google Safe Browsing Server reported an error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59750,37 +59750,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="173"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="174"/>
         <source>Find Prev</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="982"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="984"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="1128"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="1130"/>
         <source>Replaced {0} occurrences.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="1133"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="1135"/>
         <source>Nothing replaced because &apos;{0}&apos; was not found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="181"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="183"/>
         <source>Replace and Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="191"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="193"/>
         <source>Replace Occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="201"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="203"/>
         <source>Replace All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59872,12 +59872,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SearchWidget.py" line="98"/>
+        <location filename="../WebBrowser/SearchWidget.py" line="100"/>
         <source>Expression was not found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/SearchWidget.py" line="208"/>
+        <location filename="../UI/SearchWidget.py" line="210"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -60354,7 +60354,7 @@
 <context>
     <name>SendRefererWhitelistDialog</name>
     <message>
-        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="50"/>
+        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="51"/>
         <source>Send Referer Whitelist</source>
         <translation type="unfinished"></translation>
     </message>
@@ -60394,7 +60394,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="50"/>
+        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="51"/>
         <source>Enter host name to add to the whitelist:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -60525,7 +60525,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Session/SessionManager.py" line="710"/>
+        <location filename="../WebBrowser/Session/SessionManager.py" line="712"/>
         <source>{0} (last session)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -60929,42 +60929,42 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="544"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="549"/>
         <source>Package Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="576"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="581"/>
         <source>Packages Root Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="615"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="620"/>
         <source>Add Package</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="615"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="620"/>
         <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; is not a Python package.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="671"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="676"/>
         <source>Add Scripts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="671"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="676"/>
         <source>Python Files (*.py);;All Files(*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="710"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="715"/>
         <source>Add Python Modules</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="710"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="715"/>
         <source>Python Files (*.py)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -61014,12 +61014,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="153"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="155"/>
         <source>Reading Trove Classifiers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="153"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="155"/>
         <source>&lt;p&gt;The Trove Classifiers 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>
@@ -61079,7 +61079,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="789"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="796"/>
         <source>Source Directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -61117,88 +61117,88 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="248"/>
+        <location filename="../QScintilla/Shell.py" line="249"/>
         <source>Passive &gt;&gt;&gt; </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="291"/>
+        <location filename="../QScintilla/Shell.py" line="292"/>
         <source>Start</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="296"/>
-        <source>History</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="297"/>
-        <source>Select entry</source>
+        <source>History</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Shell.py" line="298"/>
+        <source>Select entry</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="299"/>
         <source>Show</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="311"/>
+        <location filename="../QScintilla/Shell.py" line="312"/>
         <source>Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="303"/>
-        <source>Cut</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="304"/>
-        <source>Copy</source>
+        <source>Cut</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Shell.py" line="305"/>
+        <source>Copy</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="306"/>
         <source>Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="309"/>
+        <location filename="../QScintilla/Shell.py" line="310"/>
         <source>Find</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="319"/>
+        <location filename="../QScintilla/Shell.py" line="320"/>
         <source>Configure...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="773"/>
+        <location filename="../QScintilla/Shell.py" line="781"/>
         <source>Select History</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="773"/>
+        <location filename="../QScintilla/Shell.py" line="781"/>
         <source>Select the history entry to execute (most recent shown last).</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="839"/>
+        <location filename="../QScintilla/Shell.py" line="847"/>
         <source>Passive Debug Mode</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="840"/>
+        <location filename="../QScintilla/Shell.py" line="848"/>
         <source>
 Not connected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="843"/>
+        <location filename="../QScintilla/Shell.py" line="851"/>
         <source>No.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="891"/>
+        <location filename="../QScintilla/Shell.py" line="899"/>
         <source>Exception &quot;{0}&quot;
 {1}
 File: {2}, Line: {3}
@@ -61206,101 +61206,101 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="901"/>
+        <location filename="../QScintilla/Shell.py" line="909"/>
         <source>Exception &quot;{0}&quot;
 {1}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="926"/>
+        <location filename="../QScintilla/Shell.py" line="934"/>
         <source>Unspecified syntax error.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="928"/>
+        <location filename="../QScintilla/Shell.py" line="936"/>
         <source>Syntax error &quot;{1}&quot; in file {0} at line {2}, character {3}.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="951"/>
+        <location filename="../QScintilla/Shell.py" line="959"/>
         <source>Signal &quot;{0}&quot; generated in file {1} at line {2}.
 Function: {3}({4})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1033"/>
-        <source>StdOut: {0}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="1041"/>
+        <source>StdOut: {0}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="1049"/>
         <source>StdErr: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2178"/>
+        <location filename="../QScintilla/Shell.py" line="2199"/>
         <source>Drop Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2178"/>
+        <location filename="../QScintilla/Shell.py" line="2199"/>
         <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/Shell.py" line="2035"/>
+        <location filename="../QScintilla/Shell.py" line="2056"/>
         <source>Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/Shell.py" line="313"/>
+        <source>Restart</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="314"/>
+        <source>Restart and Clear</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="318"/>
+        <source>Active Name</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="1867"/>
+        <source>Available Virtual Environments:
+{0}
+</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="1917"/>
+        <source>Current Virtual Environment: &apos;{0}&apos;
+</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="853"/>
+        <source>{0} on {1}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="1075"/>
+        <source>&lt;{0}&gt; {1}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Shell.py" line="159"/>
-        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;restart&apos; kills the shell and starts a new one. &apos;clear&apos; clears the display of the shell window. &apos;start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;envs&apos; or &apos;environments&apos; commands. The active virtual environment can be questioned by the &apos;which&apos; command. &apos;quit&apos; or &apos;exit&apos; is used to exit the application. These commands (except environments&apos;, &apos;envs&apos; and &apos;which&apos;) are available through the window menus as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="186"/>
-        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.&lt;/p&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;restart&apos; kills the shell and starts a new one. &apos;clear&apos; clears the display of the shell window. &apos;start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;envs&apos; or &apos;environments&apos; commands. The active virtual environment can be questioned by the &apos;which&apos; command. These commands (except environments&apos; and &apos;envs&apos;) are available through the context menu as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;&lt;p&gt;In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="312"/>
-        <source>Restart</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="313"/>
-        <source>Restart and Clear</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="317"/>
-        <source>Active Name</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="1850"/>
-        <source>Available Virtual Environments:
-{0}
-</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="1896"/>
-        <source>Current Virtual Environment: &apos;{0}&apos;
-</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="845"/>
-        <source>{0} on {1}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="1067"/>
-        <source>&lt;{0}&gt; {1}</source>
+        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;%restart&apos; kills the shell and starts a new one. &apos;%clear&apos; clears the display of the shell window. &apos;%start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. &apos;%start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;%envs&apos; or &apos;%environments&apos; commands. The active virtual environment can be questioned by the &apos;%which&apos; command. &apos;%quit&apos; or &apos;%exit&apos; is used to exit the application. These commands (except &apos;%environments&apos;, &apos;%envs&apos; and &apos;%which&apos;) are available through the window menus as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="187"/>
+        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.&lt;/p&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;%restart&apos; kills the shell and starts a new one. &apos;%clear&apos; clears the display of the shell window. &apos;%start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. &apos;%start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;%envs&apos; or &apos;%environments&apos; commands. The active virtual environment can be questioned by the &apos;%which&apos; command. These commands (except &apos;%environments&apos; and &apos;%envs&apos;) are available through the context menu as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;&lt;p&gt;In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -62206,87 +62206,87 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="131"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="132"/>
         <source>Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="135"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="136"/>
         <source>General</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="139"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="140"/>
         <source>Wizards</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="145"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="146"/>
         <source>Debug</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="149"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="150"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="153"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="154"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="157"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="158"/>
         <source>Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="161"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="162"/>
         <source>View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="165"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="166"/>
         <source>Macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="169"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="170"/>
         <source>Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="174"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="175"/>
         <source>Spelling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="181"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="182"/>
         <source>Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="364"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="365"/>
         <source>Edit shortcuts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="327"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="328"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has already been allocated to the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="347"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="348"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; hides the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="364"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="365"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is hidden by the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="197"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="198"/>
         <source>eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62390,42 +62390,42 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="263"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="264"/>
         <source>Preview not available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="290"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="291"/>
         <source>Copy Image Location to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="293"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="294"/>
         <source>Copy Image Name to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="357"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="358"/>
         <source>Save Image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="346"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="347"/>
         <source>All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="357"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="358"/>
         <source>&lt;p&gt;Cannot write to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="276"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="277"/>
         <source>Loading...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="334"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="335"/>
         <source>&lt;p&gt;This preview is not available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62463,62 +62463,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="68"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="70"/>
         <source>Your connection to this site is &lt;b&gt;secure&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="73"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="75"/>
         <source>Your connection to this site is &lt;b&gt;not secure&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="88"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="90"/>
         <source>This is your &lt;b&gt;{0}.&lt;/b&gt; visit of this site.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="94"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="96"/>
         <source>You have &lt;b&gt;never&lt;/b&gt; visited this site before.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="103"/>
-        <source>first</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="105"/>
-        <source>second</source>
+        <source>first</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="107"/>
+        <source>second</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="109"/>
         <source>third</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="108"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="110"/>
         <source>This is your &lt;b&gt;{0}&lt;/b&gt; visit of this site.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="129"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="131"/>
         <source>Register as &lt;b&gt;{0}&lt;/b&gt; links handler.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="136"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="138"/>
         <source>Register</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="153"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="156"/>
         <source>More...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="62"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="64"/>
         <source>Your connection to this site &lt;b&gt;may not be secure&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62706,28 +62706,28 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="252"/>
+        <location filename="../Snapshot/SnapWidget.py" line="253"/>
         <source>Save Snapshot</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="231"/>
+        <location filename="../Snapshot/SnapWidget.py" line="232"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="252"/>
+        <location filename="../Snapshot/SnapWidget.py" line="253"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="355"/>
+        <location filename="../Snapshot/SnapWidget.py" line="356"/>
         <source>Preview of the snapshot image ({0} x {1})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="389"/>
+        <location filename="../Snapshot/SnapWidget.py" line="390"/>
         <source>The application contains an unsaved snapshot.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62767,7 +62767,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="419"/>
+        <location filename="../Snapshot/SnapWidget.py" line="420"/>
         <source>eric Snapshot</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62775,7 +62775,7 @@
 <context>
     <name>SnapshotFreehandGrabber</name>
     <message>
-        <location filename="../Snapshot/SnapshotFreehandGrabber.py" line="72"/>
+        <location filename="../Snapshot/SnapshotFreehandGrabber.py" line="76"/>
         <source>Select a region using the mouse. To take the snapshot, press the Enter key or double click. Press Esc to quit.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62783,7 +62783,7 @@
 <context>
     <name>SnapshotRegionGrabber</name>
     <message>
-        <location filename="../Snapshot/SnapshotRegionGrabber.py" line="104"/>
+        <location filename="../Snapshot/SnapshotRegionGrabber.py" line="107"/>
         <source>Select a region using the mouse. To take the snapshot, press the Enter key or double click. Press Esc to quit.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62791,7 +62791,7 @@
 <context>
     <name>SnapshotTimer</name>
     <message numerus="yes">
-        <location filename="../Snapshot/SnapshotTimer.py" line="104"/>
+        <location filename="../Snapshot/SnapshotTimer.py" line="110"/>
         <source>Snapshot will be taken in %n seconds</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -62912,27 +62912,27 @@
 <context>
     <name>SpeedDial</name>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="207"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="208"/>
         <source>Saving Speed Dial data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="207"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="208"/>
         <source>&lt;p&gt;Speed Dial data could not be saved to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="220"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="221"/>
         <source>Reset Speed Dials</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="220"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="221"/>
         <source>Are you sure you want to reset the speed dials to the default pages?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="401"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="402"/>
         <source>Unable to load</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63326,22 +63326,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="162"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="163"/>
         <source>Unable to open database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="162"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="163"/>
         <source>An error occurred while opening the connection.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="304"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="307"/>
         <source>Query OK.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="306"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="309"/>
         <source>Query OK, number of affected rows: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63505,62 +63505,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="52"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="53"/>
         <source>Revocation information for the certificate is not available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="55"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="56"/>
         <source>The certificate has been revoked.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="57"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="58"/>
         <source>The certificate is invalid.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="59"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="60"/>
         <source>The certificate is signed using a weak signature algorithm.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="62"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="63"/>
         <source>The host name specified in the certificate is not unique.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="65"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="66"/>
         <source>The certificate contains a weak key.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="67"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="69"/>
         <source>The certificate claimed DNS names that are in violation of name constraints.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="73"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="75"/>
         <source>The certificate has a validity period that is too long.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="98"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="101"/>
         <source>No error description available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="129"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="132"/>
         <source>Remove Selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="134"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="137"/>
         <source>Remove All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="82"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="85"/>
         <source>Certificate Transparency was required for this connection, but the server did not provide information that complied with the policy.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63600,7 +63600,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="151"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="154"/>
         <source>Environment Variables:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63610,75 +63610,75 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="165"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="168"/>
         <source>Uncheck to disable exception reporting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="168"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="171"/>
         <source>&lt;b&gt;Report exceptions&lt;/b&gt;
 &lt;p&gt;Uncheck this in order to disable exception reporting.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="172"/>
-        <source>Report exceptions</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="175"/>
+        <source>Report exceptions</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="178"/>
         <source>Alt+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="185"/>
-        <source>Select to clear the display of the interpreter window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="188"/>
-        <source>&lt;b&gt;Clear interpreter window&lt;/b&gt;&lt;p&gt;This clears the display of the interpreter window before starting the debug client.&lt;/p&gt;</source>
+        <source>Select to clear the display of the interpreter window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="191"/>
+        <source>&lt;b&gt;Clear interpreter window&lt;/b&gt;&lt;p&gt;This clears the display of the interpreter window before starting the debug client.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="194"/>
         <source>Clear interpreter window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="201"/>
-        <source>Select to start the debugger in a console window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="204"/>
+        <source>Select to start the debugger in a console window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="207"/>
         <source>&lt;b&gt;Start in console&lt;/b&gt;
 &lt;p&gt;Select to start the debugger in a console window. The console command has to be configured on the Debugger-&amp;gt;General page&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="208"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="211"/>
         <source>Start in console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="215"/>
-        <source>Select this to erase the collected coverage information</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="218"/>
+        <source>Select this to erase the collected coverage information</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="221"/>
         <source>&lt;b&gt;Erase coverage information&lt;/b&gt;
 &lt;p&gt;Select this to erase the collected coverage information before the next coverage run.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="222"/>
-        <source>Erase coverage information</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="225"/>
+        <source>Erase coverage information</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="228"/>
         <source>Alt+C</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63688,7 +63688,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="141"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="144"/>
         <source>Virtual Environment:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63889,42 +63889,42 @@
 <context>
     <name>StartDialog</name>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="108"/>
+        <location filename="../Debugger/StartDialog.py" line="109"/>
         <source>Clear Histories</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Debugger/StartDialog.py" line="281"/>
+        <source>Edit History</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="268"/>
+        <source>Command Line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="269"/>
+        <source>Working Directory</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="270"/>
+        <source>Environment</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="281"/>
+        <source>Select the history list to be edited:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Debugger/StartDialog.py" line="279"/>
-        <source>Edit History</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="266"/>
-        <source>Command Line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="267"/>
-        <source>Working Directory</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="268"/>
-        <source>Environment</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="279"/>
-        <source>Select the history list to be edited:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="277"/>
         <source>No Debug Programs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="142"/>
+        <location filename="../Debugger/StartDialog.py" line="143"/>
         <source>Enter the list of programs or program patterns not to be debugged separated by &apos;{0}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -64818,12 +64818,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2244"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2245"/>
         <source>Subversion Lock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2244"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2245"/>
         <source>Enter lock comment</source>
         <translation type="unfinished"></translation>
     </message>
@@ -64964,32 +64964,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="91"/>
+        <location filename="../Graphics/SvgDiagram.py" line="92"/>
         <source>Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="96"/>
+        <location filename="../Graphics/SvgDiagram.py" line="97"/>
         <source>Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="101"/>
+        <location filename="../Graphics/SvgDiagram.py" line="102"/>
         <source>Print Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="131"/>
+        <location filename="../Graphics/SvgDiagram.py" line="132"/>
         <source>Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="135"/>
+        <location filename="../Graphics/SvgDiagram.py" line="136"/>
         <source>Graphics</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="362"/>
+        <location filename="../Graphics/SvgDiagram.py" line="363"/>
         <source>Diagram: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65062,12 +65062,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="102"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="102"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65142,22 +65142,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="83"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="85"/>
         <source>Files (relative to {0}):</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="152"/>
         <source>No changelists found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65389,29 +65389,29 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="75"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="77"/>
         <source>Revision {0}.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="82"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="84"/>
         <source> (binary)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="86"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="88"/>
         <source>{0} {1}{2}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="169"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="169"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65447,7 +65447,7 @@
 <context>
     <name>SvnDiffDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="175"/>
         <source>Subversion Diff</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65517,58 +65517,58 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="175"/>
         <source>There is no temporary directory available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="211"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="219"/>
         <source>Processing file &apos;{0}&apos;...
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="207"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="209"/>
         <source>There is no difference.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="220"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="226"/>
         <source>&lt;Start&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="221"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="227"/>
         <source>&lt;End&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="399"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="409"/>
         <source>Save Diff</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="367"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="377"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="384"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="394"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="399"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="409"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="189"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="189"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65749,17 +65749,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="664"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="679"/>
         <source>Revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="661"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="676"/>
         <source>Author</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="164"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="167"/>
         <source>Message</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65899,37 +65899,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="93"/>
         <source>Added</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="91"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="94"/>
         <source>Deleted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="92"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="95"/>
         <source>Modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="93"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="96"/>
         <source>Replaced</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="519"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="535"/>
         <source>Subversion Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="309"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="317"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="309"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="317"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -66070,7 +66070,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="129"/>
         <source>&amp;URL:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -66133,7 +66133,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="121"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="122"/>
         <source>Pat&amp;h:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67024,17 +67024,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnPropListDialog.py" line="145"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnPropListDialog.py" line="152"/>
         <source>None</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="154"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="154"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67228,22 +67228,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="204"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="208"/>
         <source>The installed version of PySvn should be 1.4.0 or better.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="281"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="288"/>
         <source>Subversion Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="267"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="267"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67359,7 +67359,7 @@
 <context>
     <name>SvnStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="400"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="406"/>
         <source>Subversion Status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67380,7 +67380,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="742"/>
         <source>Commit</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67560,257 +67560,257 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="83"/>
         <source>Commit changes to repository...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="83"/>
-        <source>Select all for commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="85"/>
+        <source>Select all for commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="87"/>
         <source>Deselect all from commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="88"/>
-        <source>Add to repository</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="90"/>
-        <source>Show differences</source>
+        <source>Add to repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="92"/>
-        <source>Show differences side-by-side</source>
+        <source>Show differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="94"/>
-        <source>Revert changes</source>
+        <source>Show differences side-by-side</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="96"/>
+        <source>Revert changes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="98"/>
         <source>Restore missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="102"/>
         <source>Add to Changelist</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979"/>
         <source>Remove from Changelist</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="873"/>
-        <source>Lock</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890"/>
+        <source>Lock</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="907"/>
         <source>Unlock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="111"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="113"/>
         <source>Break lock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="116"/>
         <source>Steal lock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="120"/>
         <source>Adjust column sizes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="189"/>
-        <source>locked</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="190"/>
-        <source>other lock</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="191"/>
-        <source>stolen lock</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="192"/>
-        <source>broken lock</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="188"/>
-        <source>not locked</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="196"/>
-        <source>no</source>
+        <source>locked</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="193"/>
+        <source>other lock</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="194"/>
+        <source>stolen lock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="195"/>
+        <source>broken lock</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="191"/>
+        <source>not locked</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="199"/>
+        <source>no</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="198"/>
         <source>yes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="637"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="654"/>
         <source>all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="742"/>
         <source>There are no entries selected to be committed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="765"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="782"/>
         <source>Add</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="765"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="782"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="811"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="828"/>
         <source>Revert</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="850"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="867"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="811"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="828"/>
         <source>There are no missing entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="829"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="846"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="857"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="874"/>
         <source>Side-by-Side Diff</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="857"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="874"/>
         <source>Only one file with uncommitted changes must be selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="873"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890"/>
         <source>There are no unlocked files available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="926"/>
-        <source>There are no locked files available/selected.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="908"/>
-        <source>Break Lock</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="926"/>
-        <source>Steal Lock</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="943"/>
+        <source>There are no locked files available/selected.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="925"/>
+        <source>Break Lock</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="943"/>
+        <source>Steal Lock</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="960"/>
         <source>There are no files available/selected not belonging to a changelist.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979"/>
         <source>There are no files available/selected belonging to a changelist.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="158"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="161"/>
         <source>added</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="160"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="163"/>
         <source>deleted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="171"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="174"/>
         <source>modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="169"/>
+        <source>missing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="168"/>
+        <source>unversioned</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="173"/>
+        <source>normal</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="166"/>
-        <source>missing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="165"/>
-        <source>unversioned</source>
+        <source>replaced</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="175"/>
+        <source>conflict</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="188"/>
+        <source>external</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="164"/>
+        <source>ignored</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="170"/>
-        <source>normal</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="163"/>
-        <source>replaced</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="172"/>
-        <source>conflict</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="185"/>
-        <source>external</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="161"/>
-        <source>ignored</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="167"/>
         <source>type error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="413"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="413"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67980,52 +67980,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="96"/>
         <source>Subversion Branches List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="127"/>
         <source>Subversion Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="107"/>
         <source>The URL of the project repository could not be retrieved from the working copy. The list operation will be aborted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="127"/>
         <source>The URL of the project repository has an invalid format. The list operation will be aborted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="155"/>
         <source>Subversion List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="142"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="144"/>
         <source>Enter the repository URL containing the tags or branches</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="155"/>
         <source>The repository URL is empty. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="160"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="162"/>
         <source>The installed version of PySvn should be 1.4.0 or better.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="172"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="172"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -69994,27 +69994,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="98"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="101"/>
         <source>Errors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="288"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="297"/>
         <source>Error: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="274"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="283"/>
         <source>Preparing files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="298"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="307"/>
         <source>Transferring data...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="397"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="409"/>
         <source>No issues found.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -70300,72 +70300,72 @@
 <context>
     <name>TabManagerWidget</name>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="73"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="74"/>
         <source>Tab Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="127"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="128"/>
         <source>Saved Tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="171"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="172"/>
         <source>Local File System:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="173"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="174"/>
         <source>eric Web Browser:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="175"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="176"/>
         <source> [FTP]:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="314"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="317"/>
         <source>Window {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="315"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="318"/>
         <source>Double click to switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="506"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="509"/>
         <source>Group by</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="507"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="510"/>
         <source>&amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="512"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="515"/>
         <source>&amp;Domain</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="517"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="520"/>
         <source>&amp;Host</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="528"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="531"/>
         <source>&amp;Bookmark checked tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="533"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="536"/>
         <source>&amp;Close checked tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="567"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="570"/>
         <source>Show Tab Manager</source>
         <translation type="unfinished"></translation>
     </message>
@@ -70373,77 +70373,77 @@
 <context>
     <name>TabWidget</name>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="212"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="216"/>
         <source>Show a navigation menu</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="243"/>
-        <source>Move Left</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="246"/>
-        <source>Move Right</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="249"/>
-        <source>Move First</source>
+        <source>Move Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="252"/>
+        <source>Move Right</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="255"/>
+        <source>Move First</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="258"/>
         <source>Move Last</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="256"/>
-        <source>Close</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="259"/>
-        <source>Close Others</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="262"/>
-        <source>Close All</source>
+        <source>Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="265"/>
-        <source>Save</source>
+        <source>Close Others</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="268"/>
-        <source>Save As...</source>
+        <source>Close All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="271"/>
+        <source>Save</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="274"/>
+        <source>Save As...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="277"/>
         <source>Save All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="275"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="281"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="279"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="285"/>
         <source>Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="283"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="289"/>
         <source>Copy Path to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="437"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="443"/>
         <source>{0} (ro)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -70451,12 +70451,12 @@
 <context>
     <name>Tabview</name>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1002"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1008"/>
         <source>Untitled {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1406"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1412"/>
         <source>{0} (ro)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -71008,17 +71008,17 @@
 <context>
     <name>TemplateMultipleVariablesDialog</name>
     <message>
-        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="105"/>
+        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="106"/>
         <source>Enter Template Variables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="106"/>
-        <source>&amp;OK</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="107"/>
+        <source>&amp;OK</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="108"/>
         <source>&amp;Cancel</source>
         <translation type="unfinished"></translation>
     </message>
@@ -72014,12 +72014,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/TranslationPropertiesDialog.py" line="148"/>
+        <location filename="../Project/TranslationPropertiesDialog.py" line="149"/>
         <source>Exempt file from translation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/TranslationPropertiesDialog.py" line="161"/>
+        <location filename="../Project/TranslationPropertiesDialog.py" line="162"/>
         <source>Exempt directory from translation</source>
         <translation type="unfinished"></translation>
     </message>
@@ -73411,97 +73411,97 @@
 <context>
     <name>UMLGraphicsView</name>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="78"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="79"/>
         <source>Delete shapes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="83"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="84"/>
         <source>Increase width by {0} points</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="90"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="91"/>
         <source>Increase height by {0} points</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="97"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="98"/>
         <source>Decrease width by {0} points</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="104"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="105"/>
         <source>Decrease height by {0} points</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="111"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="112"/>
         <source>Set size</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="116"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="117"/>
         <source>Re-Scan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="121"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="122"/>
         <source>Re-Layout</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="126"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="127"/>
         <source>Align Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="132"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="134"/>
         <source>Align Center Horizontal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="138"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="141"/>
         <source>Align Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="144"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="148"/>
         <source>Align Top</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="150"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="155"/>
         <source>Align Center Vertical</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="156"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="162"/>
         <source>Align Bottom</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="208"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="215"/>
         <source>Graphics</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="357"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="364"/>
         <source>Save Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="330"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="337"/>
         <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="345"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="352"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="357"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="364"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -73585,7 +73585,7 @@
 <context>
     <name>UnittestDialog</name>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="903"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="906"/>
         <source>Unittest</source>
         <translation type="unfinished"></translation>
     </message>
@@ -73756,102 +73756,102 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="96"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="98"/>
         <source>Start</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="98"/>
-        <source>Start the selected testsuite</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PyUnit/UnittestDialog.py" line="100"/>
+        <source>Start the selected testsuite</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PyUnit/UnittestDialog.py" line="102"/>
         <source>&lt;b&gt;Start Test&lt;/b&gt;&lt;p&gt;This button starts the selected testsuite.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="103"/>
-        <source>Rerun Failed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PyUnit/UnittestDialog.py" line="105"/>
-        <source>Reruns failed tests of the selected testsuite</source>
+        <source>Rerun Failed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PyUnit/UnittestDialog.py" line="107"/>
+        <source>Reruns failed tests of the selected testsuite</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PyUnit/UnittestDialog.py" line="109"/>
         <source>&lt;b&gt;Rerun Failed&lt;/b&gt;&lt;p&gt;This button reruns all failed tests of the selected testsuite.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="111"/>
-        <source>Stop</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PyUnit/UnittestDialog.py" line="113"/>
+        <source>Stop</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PyUnit/UnittestDialog.py" line="115"/>
         <source>Stop the running unittest</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="114"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="116"/>
         <source>&lt;b&gt;Stop Test&lt;/b&gt;&lt;p&gt;This button stops a running unittest.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="166"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="168"/>
         <source>^Failure: </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="167"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="169"/>
         <source>^Error: </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="304"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="306"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="699"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="702"/>
         <source>Preparing Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="985"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="988"/>
         <source>Running</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1029"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1032"/>
         <source>Failure: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1044"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1047"/>
         <source>Error: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1059"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1062"/>
         <source>    Skipped: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1077"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1080"/>
         <source>    Expected Failure</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1094"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1097"/>
         <source>    Unexpected Success</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1158"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1161"/>
         <source>Show Source</source>
         <translation type="unfinished"></translation>
     </message>
@@ -73918,17 +73918,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="703"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="706"/>
         <source>Unittest with auto-discovery</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="787"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="790"/>
         <source>You must enter a start directory for auto-discovery.</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../PyUnit/UnittestDialog.py" line="1009"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1012"/>
         <source>Ran %n test(s) in {0:.3f}s</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -73940,54 +73940,54 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="89"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="91"/>
         <source>Discover</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="91"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="93"/>
         <source>Discover tests</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="382"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="384"/>
         <source>Discovering Tests</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="447"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="449"/>
         <source>&lt;p&gt;Unable to discover tests.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../PyUnit/UnittestDialog.py" line="619"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="622"/>
         <source>Discovered %n Test(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="624"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="627"/>
         <source>&lt;p&gt;Unable to discover tests.&lt;/p&gt;&lt;p&gt;{0}&lt;br/&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="690"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="693"/>
         <source>You must select auto-discovery or enter a test suite file or a dotted test name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="712"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="715"/>
         <source>&lt;Unnamed Test&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="903"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="906"/>
         <source>&lt;p&gt;Unable to run test &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;br/&gt;{2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="93"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="95"/>
         <source>&lt;b&gt;Discover&lt;/b&gt;&lt;p&gt;This button starts a discovery of available tests.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74012,12 +74012,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="720"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="723"/>
         <source>No test case has been selected. Shall all test cases be run?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="300"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="302"/>
         <source>Python3 Files ({0});;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74135,7 +74135,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/UrlBar/UrlBar.py" line="454"/>
+        <location filename="../WebBrowser/UrlBar/UrlBar.py" line="465"/>
         <source>Unknown</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74344,1781 +74344,1781 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1886"/>
+        <location filename="../UI/UserInterface.py" line="1896"/>
         <source>Left Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1911"/>
+        <location filename="../UI/UserInterface.py" line="1921"/>
         <source>Horizontal Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1898"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <source>Right Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
+        <location filename="../UI/UserInterface.py" line="1754"/>
         <source>Project-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
+        <location filename="../UI/UserInterface.py" line="1771"/>
         <source>Multiproject-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
+        <location filename="../UI/UserInterface.py" line="1878"/>
         <source>Template-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="1789"/>
+        <source>Debug-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1123"/>
+        <source>Cooperation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1996"/>
+        <source>IRC</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1859"/>
+        <source>Task-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1841"/>
+        <source>Log-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1807"/>
+        <source>Shell</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1824"/>
+        <source>File-Browser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1179"/>
+        <source>Symbols</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1188"/>
+        <source>Numbers</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1608"/>
+        <source>{0} - Passive Mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1615"/>
+        <source>{0} - {1} - Passive Mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1619"/>
+        <source>{0} - {1} - {2} - Passive Mode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1642"/>
+        <source>Quit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1642"/>
+        <source>&amp;Quit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1642"/>
+        <source>Ctrl+Q</source>
+        <comment>File|Quit</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1648"/>
+        <source>Quit the IDE</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1649"/>
+        <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1701"/>
+        <source>New Window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1701"/>
+        <source>New &amp;Window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1701"/>
+        <source>Ctrl+Shift+N</source>
+        <comment>File|New Window</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1720"/>
+        <source>Edit Profile</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1726"/>
+        <source>Activate the edit view profile</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1728"/>
+        <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1737"/>
+        <source>Debug Profile</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1743"/>
+        <source>Activate the debug view profile</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1745"/>
+        <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1754"/>
+        <source>&amp;Project-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1754"/>
+        <source>Alt+Shift+P</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1760"/>
+        <source>Switch the input focus to the Project-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1762"/>
+        <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1771"/>
+        <source>&amp;Multiproject-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1771"/>
+        <source>Alt+Shift+M</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1777"/>
+        <source>Switch the input focus to the Multiproject-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="1779"/>
-        <source>Debug-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1118"/>
-        <source>Cooperation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
-        <source>IRC</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1849"/>
-        <source>Task-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
-        <source>Log-Viewer</source>
+        <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1789"/>
+        <source>&amp;Debug-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1789"/>
+        <source>Alt+Shift+D</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1795"/>
+        <source>Switch the input focus to the Debug-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="1797"/>
-        <source>Shell</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
-        <source>File-Browser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1174"/>
-        <source>Symbols</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1183"/>
-        <source>Numbers</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1598"/>
-        <source>{0} - Passive Mode</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1605"/>
-        <source>{0} - {1} - Passive Mode</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1609"/>
-        <source>{0} - {1} - {2} - Passive Mode</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
-        <source>Quit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
-        <source>&amp;Quit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
-        <source>Ctrl+Q</source>
-        <comment>File|Quit</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1638"/>
-        <source>Quit the IDE</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1639"/>
-        <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
-        <source>New Window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
-        <source>New &amp;Window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
-        <source>Ctrl+Shift+N</source>
-        <comment>File|New Window</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1710"/>
-        <source>Edit Profile</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1716"/>
-        <source>Activate the edit view profile</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1718"/>
-        <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1727"/>
-        <source>Debug Profile</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1733"/>
-        <source>Activate the debug view profile</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1735"/>
-        <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
-        <source>&amp;Project-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
-        <source>Alt+Shift+P</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
-        <source>Switch the input focus to the Project-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1752"/>
-        <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
-        <source>&amp;Multiproject-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
-        <source>Alt+Shift+M</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1767"/>
-        <source>Switch the input focus to the Multiproject-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1769"/>
-        <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
-        <source>&amp;Debug-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
-        <source>Alt+Shift+D</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
-        <source>Switch the input focus to the Debug-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1787"/>
         <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>&amp;Shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>Alt+Shift+S</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1803"/>
+        <location filename="../UI/UserInterface.py" line="1813"/>
         <source>Switch the input focus to the Shell window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1805"/>
+        <location filename="../UI/UserInterface.py" line="1815"/>
         <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
+        <location filename="../UI/UserInterface.py" line="1824"/>
         <source>&amp;File-Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
+        <location filename="../UI/UserInterface.py" line="1824"/>
         <source>Alt+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
+        <location filename="../UI/UserInterface.py" line="1830"/>
         <source>Switch the input focus to the File-Browser window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1822"/>
+        <location filename="../UI/UserInterface.py" line="1832"/>
         <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
         <source>Lo&amp;g-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
         <source>Alt+Shift+G</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1837"/>
+        <location filename="../UI/UserInterface.py" line="1847"/>
         <source>Switch the input focus to the Log-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
-        <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1849"/>
+        <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1859"/>
         <source>&amp;Task-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1849"/>
+        <location filename="../UI/UserInterface.py" line="1859"/>
         <source>Alt+Shift+T</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1855"/>
+        <location filename="../UI/UserInterface.py" line="1865"/>
         <source>Switch the input focus to the Task-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1857"/>
+        <location filename="../UI/UserInterface.py" line="1867"/>
         <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
+        <location filename="../UI/UserInterface.py" line="1878"/>
         <source>Templ&amp;ate-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
+        <location filename="../UI/UserInterface.py" line="1878"/>
         <source>Alt+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1874"/>
+        <location filename="../UI/UserInterface.py" line="1884"/>
         <source>Switch the input focus to the Template-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1876"/>
-        <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1886"/>
+        <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1896"/>
         <source>&amp;Left Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1889"/>
+        <location filename="../UI/UserInterface.py" line="1899"/>
         <source>Toggle the Left Toolbox window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1890"/>
+        <location filename="../UI/UserInterface.py" line="1900"/>
         <source>&lt;b&gt;Toggle the Left Toolbox window&lt;/b&gt;&lt;p&gt;If the Left Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1898"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <source>&amp;Right Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1902"/>
+        <location filename="../UI/UserInterface.py" line="1912"/>
         <source>Toggle the Right Toolbox window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1903"/>
+        <location filename="../UI/UserInterface.py" line="1913"/>
         <source>&lt;b&gt;Toggle the Right Toolbox window&lt;/b&gt;&lt;p&gt;If the Right Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1911"/>
+        <location filename="../UI/UserInterface.py" line="1921"/>
         <source>&amp;Horizontal Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1915"/>
-        <source>Toggle the Horizontal Toolbox window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1917"/>
-        <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1925"/>
-        <source>Left Sidebar</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1925"/>
+        <source>Toggle the Horizontal Toolbox window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1927"/>
+        <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1935"/>
+        <source>Left Sidebar</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <source>&amp;Left Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1929"/>
+        <location filename="../UI/UserInterface.py" line="1939"/>
         <source>Toggle the left sidebar window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1930"/>
+        <location filename="../UI/UserInterface.py" line="1940"/>
         <source>&lt;b&gt;Toggle the left sidebar window&lt;/b&gt;&lt;p&gt;If the left sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1948"/>
         <source>Right Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1948"/>
         <source>&amp;Right Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1942"/>
-        <source>Toggle the right sidebar window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1944"/>
-        <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1952"/>
-        <source>Bottom Sidebar</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1952"/>
+        <source>Toggle the right sidebar window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1954"/>
+        <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1962"/>
+        <source>Bottom Sidebar</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1962"/>
         <source>&amp;Bottom Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1956"/>
+        <location filename="../UI/UserInterface.py" line="1966"/>
         <source>Toggle the bottom sidebar window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1958"/>
+        <location filename="../UI/UserInterface.py" line="1968"/>
         <source>&lt;b&gt;Toggle the bottom sidebar window&lt;/b&gt;&lt;p&gt;If the bottom sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Cooperation-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Co&amp;operation-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Alt+Shift+O</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1973"/>
+        <location filename="../UI/UserInterface.py" line="1983"/>
         <source>Switch the input focus to the Cooperation-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="1985"/>
         <source>&lt;b&gt;Activate Cooperation-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Cooperation-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
+        <location filename="../UI/UserInterface.py" line="1996"/>
         <source>&amp;IRC</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1992"/>
+        <location filename="../UI/UserInterface.py" line="2002"/>
         <source>Switch the input focus to the IRC window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
-        <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2004"/>
-        <source>Symbols-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2004"/>
+        <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2014"/>
+        <source>Symbols-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2014"/>
         <source>S&amp;ymbols-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2004"/>
+        <location filename="../UI/UserInterface.py" line="2014"/>
         <source>Alt+Shift+Y</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2010"/>
+        <location filename="../UI/UserInterface.py" line="2020"/>
         <source>Switch the input focus to the Symbols-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2012"/>
+        <location filename="../UI/UserInterface.py" line="2022"/>
         <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
+        <location filename="../UI/UserInterface.py" line="2033"/>
         <source>Numbers-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
+        <location filename="../UI/UserInterface.py" line="2033"/>
         <source>Num&amp;bers-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
+        <location filename="../UI/UserInterface.py" line="2033"/>
         <source>Alt+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2029"/>
+        <location filename="../UI/UserInterface.py" line="2039"/>
         <source>Switch the input focus to the Numbers-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2031"/>
+        <location filename="../UI/UserInterface.py" line="2041"/>
         <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>Shift+F1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2122"/>
+        <location filename="../UI/UserInterface.py" line="2132"/>
         <source>Context sensitive help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2123"/>
+        <location filename="../UI/UserInterface.py" line="2133"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>Helpviewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>&amp;Helpviewer...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>F1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2140"/>
+        <location filename="../UI/UserInterface.py" line="2150"/>
         <source>Open the helpviewer window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2160"/>
+        <location filename="../UI/UserInterface.py" line="2170"/>
         <source>Show Versions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2160"/>
+        <location filename="../UI/UserInterface.py" line="2170"/>
         <source>Show &amp;Versions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2164"/>
+        <location filename="../UI/UserInterface.py" line="2174"/>
         <source>Display version information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2166"/>
-        <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2176"/>
+        <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2186"/>
         <source>Check for Updates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2173"/>
+        <location filename="../UI/UserInterface.py" line="2183"/>
         <source>Check for &amp;Updates...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2184"/>
+        <location filename="../UI/UserInterface.py" line="2194"/>
         <source>Show downloadable versions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2184"/>
+        <location filename="../UI/UserInterface.py" line="2194"/>
         <source>Show &amp;downloadable versions...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2188"/>
+        <location filename="../UI/UserInterface.py" line="2198"/>
         <source>Show the versions available for download</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2203"/>
+        <location filename="../UI/UserInterface.py" line="2213"/>
         <source>Show Error Log</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2199"/>
+        <location filename="../UI/UserInterface.py" line="2209"/>
         <source>Show Error &amp;Log...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2204"/>
+        <location filename="../UI/UserInterface.py" line="2214"/>
         <source>&lt;b&gt;Show Error Log...&lt;/b&gt;&lt;p&gt;Opens a dialog showing the most recent error log.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3818"/>
+        <location filename="../UI/UserInterface.py" line="3828"/>
         <source>Report Bug</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2225"/>
+        <location filename="../UI/UserInterface.py" line="2235"/>
         <source>Report &amp;Bug...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2229"/>
+        <location filename="../UI/UserInterface.py" line="2239"/>
         <source>Report a bug</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2230"/>
+        <location filename="../UI/UserInterface.py" line="2240"/>
         <source>&lt;b&gt;Report Bug...&lt;/b&gt;&lt;p&gt;Opens a dialog to report a bug.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
+        <location filename="../UI/UserInterface.py" line="2247"/>
         <source>Request Feature</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
+        <location filename="../UI/UserInterface.py" line="2247"/>
         <source>Request &amp;Feature...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2241"/>
+        <location filename="../UI/UserInterface.py" line="2251"/>
         <source>Send a feature request</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2243"/>
+        <location filename="../UI/UserInterface.py" line="2253"/>
         <source>&lt;b&gt;Request Feature...&lt;/b&gt;&lt;p&gt;Opens a dialog to send a feature request.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3361"/>
+        <location filename="../UI/UserInterface.py" line="3371"/>
         <source>Unittest</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2252"/>
+        <location filename="../UI/UserInterface.py" line="2262"/>
         <source>&amp;Unittest...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2257"/>
+        <location filename="../UI/UserInterface.py" line="2267"/>
         <source>Start unittest dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2258"/>
+        <location filename="../UI/UserInterface.py" line="2268"/>
         <source>&lt;b&gt;Unittest&lt;/b&gt;&lt;p&gt;Perform unit tests. The dialog gives you the ability to select and run a unittest suite.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2266"/>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>Unittest Restart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2266"/>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>&amp;Restart Unittest...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2271"/>
+        <location filename="../UI/UserInterface.py" line="2281"/>
         <source>Restart last unittest</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2272"/>
+        <location filename="../UI/UserInterface.py" line="2282"/>
         <source>&lt;b&gt;Restart Unittest&lt;/b&gt;&lt;p&gt;Restart the unittest performed last.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2280"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <source>Unittest Rerun Failed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2280"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <source>Rerun Failed Tests...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2285"/>
+        <location filename="../UI/UserInterface.py" line="2295"/>
         <source>Rerun failed tests of the last run</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2287"/>
+        <location filename="../UI/UserInterface.py" line="2297"/>
         <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last unittest run.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2296"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Unittest Script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2296"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Unittest &amp;Script...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2301"/>
-        <source>Run unittest with current script</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2303"/>
-        <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2311"/>
+        <source>Run unittest with current script</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2313"/>
+        <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2321"/>
         <source>Unittest Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2311"/>
+        <location filename="../UI/UserInterface.py" line="2321"/>
         <source>Unittest &amp;Project...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2316"/>
+        <location filename="../UI/UserInterface.py" line="2326"/>
         <source>Run unittest with current project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2318"/>
+        <location filename="../UI/UserInterface.py" line="2328"/>
         <source>&lt;b&gt;Unittest Project&lt;/b&gt;&lt;p&gt;Run unittest with current project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2338"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Qt-Designer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2338"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Qt-&amp;Designer...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2343"/>
+        <location filename="../UI/UserInterface.py" line="2353"/>
         <source>Start Qt-Designer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2344"/>
+        <location filename="../UI/UserInterface.py" line="2354"/>
         <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2364"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Qt-Linguist</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2364"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Qt-&amp;Linguist...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2369"/>
-        <source>Start Qt-Linguist</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2370"/>
-        <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2379"/>
-        <source>UI Previewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2379"/>
+        <source>Start Qt-Linguist</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2380"/>
+        <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2389"/>
+        <source>UI Previewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2389"/>
         <source>&amp;UI Previewer...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2384"/>
+        <location filename="../UI/UserInterface.py" line="2394"/>
         <source>Start the UI Previewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2385"/>
+        <location filename="../UI/UserInterface.py" line="2395"/>
         <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2392"/>
+        <location filename="../UI/UserInterface.py" line="2402"/>
         <source>Translations Previewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2392"/>
+        <location filename="../UI/UserInterface.py" line="2402"/>
         <source>&amp;Translations Previewer...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2397"/>
+        <location filename="../UI/UserInterface.py" line="2407"/>
         <source>Start the Translations Previewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2399"/>
+        <location filename="../UI/UserInterface.py" line="2409"/>
         <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2406"/>
+        <location filename="../UI/UserInterface.py" line="2416"/>
         <source>Compare Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2406"/>
+        <location filename="../UI/UserInterface.py" line="2416"/>
         <source>&amp;Compare Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2424"/>
+        <location filename="../UI/UserInterface.py" line="2434"/>
         <source>Compare two files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2412"/>
+        <location filename="../UI/UserInterface.py" line="2422"/>
         <source>&lt;b&gt;Compare Files&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2419"/>
+        <location filename="../UI/UserInterface.py" line="2429"/>
         <source>Compare Files side by side</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2419"/>
+        <location filename="../UI/UserInterface.py" line="2429"/>
         <source>Compare &amp;Files side by side...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2425"/>
+        <location filename="../UI/UserInterface.py" line="2435"/>
         <source>&lt;b&gt;Compare Files side by side&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files and show the result side by side.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2433"/>
+        <location filename="../UI/UserInterface.py" line="2443"/>
         <source>SQL Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2433"/>
+        <location filename="../UI/UserInterface.py" line="2443"/>
         <source>SQL &amp;Browser...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2438"/>
+        <location filename="../UI/UserInterface.py" line="2448"/>
         <source>Browse a SQL database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2439"/>
+        <location filename="../UI/UserInterface.py" line="2449"/>
         <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2451"/>
+        <location filename="../UI/UserInterface.py" line="2461"/>
         <source>Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2446"/>
+        <location filename="../UI/UserInterface.py" line="2456"/>
         <source>Mini &amp;Editor...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2452"/>
+        <location filename="../UI/UserInterface.py" line="2462"/>
         <source>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Open a dialog with a simplified editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2459"/>
+        <location filename="../UI/UserInterface.py" line="2469"/>
         <source>Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2459"/>
+        <location filename="../UI/UserInterface.py" line="2469"/>
         <source>&amp;Hex Editor...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2488"/>
+        <location filename="../UI/UserInterface.py" line="2498"/>
         <source>Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2488"/>
+        <location filename="../UI/UserInterface.py" line="2498"/>
         <source>&amp;Icon Editor...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2502"/>
+        <location filename="../UI/UserInterface.py" line="2512"/>
         <source>Snapshot</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2502"/>
+        <location filename="../UI/UserInterface.py" line="2512"/>
         <source>&amp;Snapshot...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2507"/>
-        <source>Take snapshots of a screen region</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2509"/>
-        <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2517"/>
-        <source>Preferences</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2517"/>
+        <source>Take snapshots of a screen region</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2519"/>
+        <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2527"/>
+        <source>Preferences</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2527"/>
         <source>&amp;Preferences...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2522"/>
+        <location filename="../UI/UserInterface.py" line="2532"/>
         <source>Set the prefered configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2524"/>
+        <location filename="../UI/UserInterface.py" line="2534"/>
         <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2533"/>
+        <location filename="../UI/UserInterface.py" line="2543"/>
         <source>Export Preferences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2533"/>
+        <location filename="../UI/UserInterface.py" line="2543"/>
         <source>E&amp;xport Preferences...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2538"/>
+        <location filename="../UI/UserInterface.py" line="2548"/>
         <source>Export the current configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2540"/>
+        <location filename="../UI/UserInterface.py" line="2550"/>
         <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2547"/>
+        <location filename="../UI/UserInterface.py" line="2557"/>
         <source>Import Preferences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2547"/>
+        <location filename="../UI/UserInterface.py" line="2557"/>
         <source>I&amp;mport Preferences...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2552"/>
+        <location filename="../UI/UserInterface.py" line="2562"/>
         <source>Import a previously exported configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2554"/>
+        <location filename="../UI/UserInterface.py" line="2564"/>
         <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2561"/>
+        <location filename="../UI/UserInterface.py" line="2571"/>
         <source>Reload APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2561"/>
+        <location filename="../UI/UserInterface.py" line="2571"/>
         <source>Reload &amp;APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2565"/>
+        <location filename="../UI/UserInterface.py" line="2575"/>
         <source>Reload the API information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2567"/>
+        <location filename="../UI/UserInterface.py" line="2577"/>
         <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2579"/>
+        <location filename="../UI/UserInterface.py" line="2589"/>
         <source>Show external tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2574"/>
+        <location filename="../UI/UserInterface.py" line="2584"/>
         <source>Show external &amp;tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2590"/>
+        <location filename="../UI/UserInterface.py" line="2600"/>
         <source>View Profiles</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2590"/>
+        <location filename="../UI/UserInterface.py" line="2600"/>
         <source>&amp;View Profiles...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2595"/>
+        <location filename="../UI/UserInterface.py" line="2605"/>
         <source>Configure view profiles</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2597"/>
-        <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2607"/>
-        <source>Toolbars</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2607"/>
+        <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2617"/>
+        <source>Toolbars</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2617"/>
         <source>Tool&amp;bars...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2612"/>
-        <source>Configure toolbars</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2613"/>
-        <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2622"/>
+        <source>Configure toolbars</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2623"/>
+        <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2632"/>
         <source>Keyboard Shortcuts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2622"/>
+        <location filename="../UI/UserInterface.py" line="2632"/>
         <source>Keyboard &amp;Shortcuts...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2627"/>
-        <source>Set the keyboard shortcuts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2629"/>
-        <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6313"/>
-        <source>Export Keyboard Shortcuts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2637"/>
+        <source>Set the keyboard shortcuts</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2639"/>
+        <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6333"/>
+        <source>Export Keyboard Shortcuts</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2647"/>
         <source>&amp;Export Keyboard Shortcuts...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2642"/>
+        <location filename="../UI/UserInterface.py" line="2652"/>
         <source>Export the keyboard shortcuts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2644"/>
+        <location filename="../UI/UserInterface.py" line="2654"/>
         <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6329"/>
+        <location filename="../UI/UserInterface.py" line="6349"/>
         <source>Import Keyboard Shortcuts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2651"/>
+        <location filename="../UI/UserInterface.py" line="2661"/>
         <source>&amp;Import Keyboard Shortcuts...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2656"/>
-        <source>Import the keyboard shortcuts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2658"/>
-        <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2666"/>
-        <source>Manage SSL Certificates</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2666"/>
+        <source>Import the keyboard shortcuts</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2668"/>
+        <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2676"/>
+        <source>Manage SSL Certificates</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2676"/>
         <source>Manage SSL Certificates...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2671"/>
+        <location filename="../UI/UserInterface.py" line="2681"/>
         <source>Manage the saved SSL certificates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2673"/>
+        <location filename="../UI/UserInterface.py" line="2683"/>
         <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2682"/>
+        <location filename="../UI/UserInterface.py" line="2692"/>
         <source>Edit Message Filters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2682"/>
+        <location filename="../UI/UserInterface.py" line="2692"/>
         <source>Edit Message Filters...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2687"/>
+        <location filename="../UI/UserInterface.py" line="2697"/>
         <source>Edit the message filters used to suppress unwanted messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2689"/>
+        <location filename="../UI/UserInterface.py" line="2699"/>
         <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2705"/>
+        <location filename="../UI/UserInterface.py" line="2715"/>
         <source>Clear private data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2707"/>
+        <location filename="../UI/UserInterface.py" line="2717"/>
         <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2716"/>
-        <source>Activate current editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2716"/>
-        <source>Alt+Shift+E</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2726"/>
-        <source>Show next</source>
+        <source>Activate current editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2726"/>
+        <source>Alt+Shift+E</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2736"/>
+        <source>Show next</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2736"/>
         <source>Ctrl+Alt+Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2735"/>
+        <location filename="../UI/UserInterface.py" line="2745"/>
         <source>Show previous</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2735"/>
+        <location filename="../UI/UserInterface.py" line="2745"/>
         <source>Shift+Ctrl+Alt+Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2744"/>
+        <location filename="../UI/UserInterface.py" line="2754"/>
         <source>Switch between tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2744"/>
+        <location filename="../UI/UserInterface.py" line="2754"/>
         <source>Ctrl+1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2753"/>
+        <location filename="../UI/UserInterface.py" line="2763"/>
         <source>Plugin Infos</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2753"/>
+        <location filename="../UI/UserInterface.py" line="2763"/>
         <source>&amp;Plugin Infos...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2757"/>
+        <location filename="../UI/UserInterface.py" line="2767"/>
         <source>Show Plugin Infos</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2758"/>
+        <location filename="../UI/UserInterface.py" line="2768"/>
         <source>&lt;b&gt;Plugin Infos...&lt;/b&gt;&lt;p&gt;This opens a dialog, that show some information about loaded plugins.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2771"/>
+        <location filename="../UI/UserInterface.py" line="2781"/>
         <source>Install Plugins</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2766"/>
+        <location filename="../UI/UserInterface.py" line="2776"/>
         <source>&amp;Install Plugins...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2772"/>
+        <location filename="../UI/UserInterface.py" line="2782"/>
         <source>&lt;b&gt;Install Plugins...&lt;/b&gt;&lt;p&gt;This opens a dialog to install or update plugins.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2784"/>
+        <location filename="../UI/UserInterface.py" line="2794"/>
         <source>Uninstall Plugin</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2779"/>
+        <location filename="../UI/UserInterface.py" line="2789"/>
         <source>&amp;Uninstall Plugin...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2785"/>
+        <location filename="../UI/UserInterface.py" line="2795"/>
         <source>&lt;b&gt;Uninstall Plugin...&lt;/b&gt;&lt;p&gt;This opens a dialog to uninstall a plugin.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2792"/>
+        <location filename="../UI/UserInterface.py" line="2802"/>
         <source>Plugin Repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2792"/>
+        <location filename="../UI/UserInterface.py" line="2802"/>
         <source>Plugin &amp;Repository...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2797"/>
+        <location filename="../UI/UserInterface.py" line="2807"/>
         <source>Show Plugins available for download</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2799"/>
+        <location filename="../UI/UserInterface.py" line="2809"/>
         <source>&lt;b&gt;Plugin Repository...&lt;/b&gt;&lt;p&gt;This opens a dialog, that shows a list of plugins available on the Internet.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2858"/>
+        <location filename="../UI/UserInterface.py" line="2868"/>
         <source>Qt5 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2862"/>
+        <location filename="../UI/UserInterface.py" line="2872"/>
         <source>Open Qt5 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2888"/>
+        <location filename="../UI/UserInterface.py" line="2898"/>
         <source>PyQt5 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2892"/>
+        <location filename="../UI/UserInterface.py" line="2902"/>
         <source>Open PyQt5 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2927"/>
+        <location filename="../UI/UserInterface.py" line="2937"/>
         <source>Python 3 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2931"/>
+        <location filename="../UI/UserInterface.py" line="2941"/>
         <source>Open Python 3 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2933"/>
+        <location filename="../UI/UserInterface.py" line="2943"/>
         <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2949"/>
+        <location filename="../UI/UserInterface.py" line="2959"/>
         <source>Eric API Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2953"/>
+        <location filename="../UI/UserInterface.py" line="2963"/>
         <source>Open Eric API Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3154"/>
+        <location filename="../UI/UserInterface.py" line="3164"/>
         <source>&amp;Unittest</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3098"/>
-        <source>E&amp;xtras</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="3108"/>
+        <source>E&amp;xtras</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3118"/>
         <source>Wi&amp;zards</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3171"/>
+        <location filename="../UI/UserInterface.py" line="3181"/>
         <source>Select Tool Group</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3182"/>
+        <location filename="../UI/UserInterface.py" line="3192"/>
         <source>Se&amp;ttings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3212"/>
+        <location filename="../UI/UserInterface.py" line="3222"/>
         <source>&amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3221"/>
+        <location filename="../UI/UserInterface.py" line="3231"/>
         <source>&amp;Windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3273"/>
+        <location filename="../UI/UserInterface.py" line="3283"/>
         <source>&amp;Toolbars</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3135"/>
+        <location filename="../UI/UserInterface.py" line="3145"/>
         <source>P&amp;lugins</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3144"/>
+        <location filename="../UI/UserInterface.py" line="3154"/>
         <source>Configure...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3287"/>
+        <location filename="../UI/UserInterface.py" line="3297"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3360"/>
+        <location filename="../UI/UserInterface.py" line="3370"/>
         <source>Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3362"/>
+        <location filename="../UI/UserInterface.py" line="3372"/>
         <source>Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5220"/>
+        <location filename="../UI/UserInterface.py" line="5237"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3364"/>
+        <location filename="../UI/UserInterface.py" line="3374"/>
         <source>Profiles</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3365"/>
+        <location filename="../UI/UserInterface.py" line="3375"/>
         <source>Plugins</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3530"/>
+        <location filename="../UI/UserInterface.py" line="3540"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3537"/>
+        <location filename="../UI/UserInterface.py" line="3547"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3544"/>
+        <location filename="../UI/UserInterface.py" line="3554"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3551"/>
+        <location filename="../UI/UserInterface.py" line="3561"/>
         <source>&lt;p&gt;This part of the status bar displays an indication of the current editors files writability.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3558"/>
+        <location filename="../UI/UserInterface.py" line="3568"/>
         <source>&lt;p&gt;This part of the status bar displays the line number of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3565"/>
+        <location filename="../UI/UserInterface.py" line="3575"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3636"/>
+        <location filename="../UI/UserInterface.py" line="3646"/>
         <source>External Tools/{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7279"/>
+        <location filename="../UI/UserInterface.py" line="7300"/>
         <source>&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3818"/>
+        <location filename="../UI/UserInterface.py" line="3828"/>
         <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4138"/>
+        <location filename="../UI/UserInterface.py" line="4148"/>
         <source>Restart application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4138"/>
+        <location filename="../UI/UserInterface.py" line="4148"/>
         <source>The application needs to be restarted. Do it now?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4174"/>
+        <location filename="../UI/UserInterface.py" line="4184"/>
         <source>&amp;Builtin Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4191"/>
+        <location filename="../UI/UserInterface.py" line="4201"/>
         <source>&amp;Plugin Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4194"/>
+        <location filename="../UI/UserInterface.py" line="4204"/>
         <source>&amp;User Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4219"/>
+        <location filename="../UI/UserInterface.py" line="4229"/>
         <source>Configure Tool Groups ...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4223"/>
+        <location filename="../UI/UserInterface.py" line="4233"/>
         <source>Configure current Tool Group ...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4266"/>
+        <location filename="../UI/UserInterface.py" line="4276"/>
         <source>No User Tools Configured</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4340"/>
+        <location filename="../UI/UserInterface.py" line="4350"/>
         <source>&amp;Show all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4342"/>
+        <location filename="../UI/UserInterface.py" line="4352"/>
         <source>&amp;Hide all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5348"/>
+        <location filename="../UI/UserInterface.py" line="5365"/>
         <source>Problem</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5348"/>
+        <location filename="../UI/UserInterface.py" line="5365"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist or is zero length.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5543"/>
+        <location filename="../UI/UserInterface.py" line="5560"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5073"/>
+        <location filename="../UI/UserInterface.py" line="5090"/>
         <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5143"/>
+        <location filename="../UI/UserInterface.py" line="5160"/>
         <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5187"/>
+        <location filename="../UI/UserInterface.py" line="5204"/>
         <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5220"/>
+        <location filename="../UI/UserInterface.py" line="5237"/>
         <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5234"/>
+        <location filename="../UI/UserInterface.py" line="5251"/>
         <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5254"/>
+        <location filename="../UI/UserInterface.py" line="5271"/>
         <source>&lt;p&gt;Could not start the help viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5304"/>
+        <location filename="../UI/UserInterface.py" line="5321"/>
         <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5361"/>
+        <location filename="../UI/UserInterface.py" line="5378"/>
         <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5384"/>
+        <location filename="../UI/UserInterface.py" line="5401"/>
         <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5456"/>
+        <location filename="../UI/UserInterface.py" line="5473"/>
         <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5488"/>
+        <location filename="../UI/UserInterface.py" line="5505"/>
         <source>External Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5479"/>
+        <location filename="../UI/UserInterface.py" line="5496"/>
         <source>No tool entry found for external tool &apos;{0}&apos; in tool group &apos;{1}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5488"/>
+        <location filename="../UI/UserInterface.py" line="5505"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5527"/>
+        <location filename="../UI/UserInterface.py" line="5544"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5543"/>
+        <location filename="../UI/UserInterface.py" line="5560"/>
         <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5621"/>
+        <location filename="../UI/UserInterface.py" line="5638"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="5900"/>
+        <source>Documentation Missing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5900"/>
+        <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; could not be found.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="5883"/>
-        <source>Documentation Missing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5883"/>
-        <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; could not be found.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5866"/>
         <source>Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6086"/>
+        <location filename="../UI/UserInterface.py" line="6103"/>
         <source>Open Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6086"/>
+        <location filename="../UI/UserInterface.py" line="6103"/>
         <source>Could not start a web browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6518"/>
+        <location filename="../UI/UserInterface.py" line="6538"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1669"/>
+        <location filename="../UI/UserInterface.py" line="1679"/>
         <source>Save session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6556"/>
+        <location filename="../UI/UserInterface.py" line="6576"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6611"/>
+        <location filename="../UI/UserInterface.py" line="6631"/>
         <source>Read session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6611"/>
+        <location filename="../UI/UserInterface.py" line="6631"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6897"/>
+        <location filename="../UI/UserInterface.py" line="6917"/>
         <source>Drop Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6897"/>
+        <location filename="../UI/UserInterface.py" line="6917"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7062"/>
+        <location filename="../UI/UserInterface.py" line="7082"/>
         <source>&amp;Cancel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7062"/>
+        <location filename="../UI/UserInterface.py" line="7082"/>
         <source>%v/%m</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7066"/>
+        <location filename="../UI/UserInterface.py" line="7086"/>
         <source>Version Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7071"/>
+        <location filename="../UI/UserInterface.py" line="7091"/>
         <source>Trying host {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7129"/>
+        <location filename="../UI/UserInterface.py" line="7150"/>
         <source>Error getting versions information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7122"/>
+        <location filename="../UI/UserInterface.py" line="7143"/>
         <source>The versions information could not be downloaded. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7129"/>
+        <location filename="../UI/UserInterface.py" line="7150"/>
         <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7221"/>
+        <location filename="../UI/UserInterface.py" line="7242"/>
         <source>Update available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7240"/>
+        <location filename="../UI/UserInterface.py" line="7261"/>
         <source>Error during updates check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7240"/>
+        <location filename="../UI/UserInterface.py" line="7261"/>
         <source>Could not perform updates check.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7264"/>
+        <location filename="../UI/UserInterface.py" line="7285"/>
         <source>&lt;h3&gt;Available versions&lt;/h3&gt;&lt;table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7316"/>
+        <location filename="../UI/UserInterface.py" line="7337"/>
         <source>First time usage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7335"/>
+        <location filename="../UI/UserInterface.py" line="7356"/>
         <source>Select Workspace Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1665"/>
+        <location filename="../UI/UserInterface.py" line="1675"/>
         <source>Save session...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1670"/>
+        <location filename="../UI/UserInterface.py" line="1680"/>
         <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6650"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <source>Load session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1678"/>
+        <location filename="../UI/UserInterface.py" line="1688"/>
         <source>Load session...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1683"/>
+        <location filename="../UI/UserInterface.py" line="1693"/>
         <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6703"/>
+        <location filename="../UI/UserInterface.py" line="6723"/>
         <source>Crash Session found!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6703"/>
+        <location filename="../UI/UserInterface.py" line="6723"/>
         <source>A session file of a crashed session was found. Shall this session be restored?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76133,448 +76133,448 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7209"/>
+        <location filename="../UI/UserInterface.py" line="7230"/>
         <source>Update Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7209"/>
+        <location filename="../UI/UserInterface.py" line="7230"/>
         <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2042"/>
+        <location filename="../UI/UserInterface.py" line="2052"/>
         <source>Code Documentation Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2863"/>
+        <location filename="../UI/UserInterface.py" line="2873"/>
         <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2894"/>
+        <location filename="../UI/UserInterface.py" line="2904"/>
         <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2970"/>
+        <location filename="../UI/UserInterface.py" line="2980"/>
         <source>PySide2 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2974"/>
+        <location filename="../UI/UserInterface.py" line="2984"/>
         <source>Open PySide2 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2976"/>
+        <location filename="../UI/UserInterface.py" line="2986"/>
         <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5866"/>
+        <location filename="../UI/UserInterface.py" line="5883"/>
         <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2813"/>
+        <location filename="../UI/UserInterface.py" line="2823"/>
         <source>Virtualenv Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2807"/>
+        <location filename="../UI/UserInterface.py" line="2817"/>
         <source>&amp;Virtualenv Manager...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2815"/>
+        <location filename="../UI/UserInterface.py" line="2825"/>
         <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2830"/>
+        <location filename="../UI/UserInterface.py" line="2840"/>
         <source>Virtualenv Configurator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2824"/>
+        <location filename="../UI/UserInterface.py" line="2834"/>
         <source>Virtualenv &amp;Configurator...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2832"/>
+        <location filename="../UI/UserInterface.py" line="2842"/>
         <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3228"/>
+        <location filename="../UI/UserInterface.py" line="3238"/>
         <source>Left Side</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3240"/>
+        <location filename="../UI/UserInterface.py" line="3250"/>
         <source>Bottom Side</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3247"/>
+        <location filename="../UI/UserInterface.py" line="3257"/>
         <source>Right Side</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3267"/>
+        <location filename="../UI/UserInterface.py" line="3277"/>
         <source>Plug-ins</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
+        <location filename="../UI/UserInterface.py" line="1659"/>
         <source>Restart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
+        <location filename="../UI/UserInterface.py" line="1659"/>
         <source>Ctrl+Shift+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1655"/>
+        <location filename="../UI/UserInterface.py" line="1665"/>
         <source>Restart the IDE</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1656"/>
+        <location filename="../UI/UserInterface.py" line="1666"/>
         <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6043"/>
+        <location filename="../UI/UserInterface.py" line="6060"/>
         <source>Start Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="2090"/>
+        <source>Conda</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2072"/>
+        <source>PyPI</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3586"/>
+        <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2108"/>
+        <source>MicroPython</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1996"/>
+        <source>Ctrl+Alt+Shift+I</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2052"/>
+        <source>Ctrl+Alt+Shift+D</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2058"/>
+        <source>Switch the input focus to the Code Documentation Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2061"/>
+        <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2072"/>
+        <source>Ctrl+Alt+Shift+P</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2078"/>
+        <source>Switch the input focus to the PyPI window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="2080"/>
-        <source>Conda</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2062"/>
-        <source>PyPI</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3576"/>
-        <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2098"/>
-        <source>MicroPython</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
-        <source>Ctrl+Alt+Shift+I</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2042"/>
-        <source>Ctrl+Alt+Shift+D</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2048"/>
-        <source>Switch the input focus to the Code Documentation Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2051"/>
-        <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2062"/>
-        <source>Ctrl+Alt+Shift+P</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2068"/>
-        <source>Switch the input focus to the PyPI window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2070"/>
         <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2080"/>
+        <location filename="../UI/UserInterface.py" line="2090"/>
         <source>Ctrl+Alt+Shift+C</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2086"/>
+        <location filename="../UI/UserInterface.py" line="2096"/>
         <source>Switch the input focus to the Conda window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2088"/>
-        <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2098"/>
+        <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2108"/>
         <source>Ctrl+Alt+Shift+M</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2104"/>
+        <location filename="../UI/UserInterface.py" line="2114"/>
         <source>Switch the input focus to the MicroPython window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2106"/>
+        <location filename="../UI/UserInterface.py" line="2116"/>
         <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3225"/>
+        <location filename="../UI/UserInterface.py" line="3235"/>
         <source>Central Park</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3745"/>
+        <location filename="../UI/UserInterface.py" line="3755"/>
         <source>&lt;h2&gt;Version Numbers&lt;/h2&gt;&lt;table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5082"/>
+        <location filename="../UI/UserInterface.py" line="5099"/>
         <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5152"/>
+        <location filename="../UI/UserInterface.py" line="5169"/>
         <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5196"/>
+        <location filename="../UI/UserInterface.py" line="5213"/>
         <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2211"/>
+        <location filename="../UI/UserInterface.py" line="2221"/>
         <source>Show Install Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2211"/>
+        <location filename="../UI/UserInterface.py" line="2221"/>
         <source>Show Install &amp;Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2215"/>
+        <location filename="../UI/UserInterface.py" line="2225"/>
         <source>Show Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2217"/>
+        <location filename="../UI/UserInterface.py" line="2227"/>
         <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2873"/>
+        <location filename="../UI/UserInterface.py" line="2883"/>
         <source>Qt6 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2877"/>
+        <location filename="../UI/UserInterface.py" line="2887"/>
         <source>Open Qt6 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2878"/>
+        <location filename="../UI/UserInterface.py" line="2888"/>
         <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2905"/>
+        <location filename="../UI/UserInterface.py" line="2915"/>
         <source>PyQt6 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2909"/>
+        <location filename="../UI/UserInterface.py" line="2919"/>
         <source>Open PyQt6 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2911"/>
+        <location filename="../UI/UserInterface.py" line="2921"/>
         <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2990"/>
+        <location filename="../UI/UserInterface.py" line="3000"/>
         <source>PySide6 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2994"/>
+        <location filename="../UI/UserInterface.py" line="3004"/>
         <source>Open PySide6 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2996"/>
+        <location filename="../UI/UserInterface.py" line="3006"/>
         <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5761"/>
+        <location filename="../UI/UserInterface.py" line="5778"/>
         <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1697"/>
+        <location filename="../UI/UserInterface.py" line="1707"/>
         <source>Open a new eric instance</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1699"/>
+        <location filename="../UI/UserInterface.py" line="1709"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2142"/>
+        <location filename="../UI/UserInterface.py" line="2152"/>
         <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is search in the Qt help collection.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2177"/>
+        <location filename="../UI/UserInterface.py" line="2187"/>
         <source>&lt;b&gt;Check for Updates...&lt;/b&gt;&lt;p&gt;Checks the internet for updates of eric.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2190"/>
+        <location filename="../UI/UserInterface.py" line="2200"/>
         <source>&lt;b&gt;Show downloadable versions...&lt;/b&gt;&lt;p&gt;Shows the eric versions available for download from the internet.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2464"/>
-        <source>Start the eric Hex Editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2466"/>
-        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2474"/>
+        <source>Start the eric Hex Editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2476"/>
+        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2484"/>
         <source>eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2474"/>
+        <location filename="../UI/UserInterface.py" line="2484"/>
         <source>eric &amp;Web Browser...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2479"/>
+        <location filename="../UI/UserInterface.py" line="2489"/>
         <source>Start the eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2481"/>
+        <location filename="../UI/UserInterface.py" line="2491"/>
         <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2493"/>
+        <location filename="../UI/UserInterface.py" line="2503"/>
         <source>Start the eric Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2495"/>
+        <location filename="../UI/UserInterface.py" line="2505"/>
         <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2581"/>
+        <location filename="../UI/UserInterface.py" line="2591"/>
         <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2955"/>
+        <location filename="../UI/UserInterface.py" line="2965"/>
         <source>&lt;b&gt;Eric API Documentation&lt;/b&gt;&lt;p&gt;Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5979"/>
+        <location filename="../UI/UserInterface.py" line="5996"/>
         <source>The eric web browser could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6043"/>
+        <location filename="../UI/UserInterface.py" line="6060"/>
         <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7221"/>
+        <location filename="../UI/UserInterface.py" line="7242"/>
         <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7199"/>
+        <location filename="../UI/UserInterface.py" line="7220"/>
         <source>You are using a snapshot release of eric. A more up-to-date stable release might be available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7233"/>
+        <location filename="../UI/UserInterface.py" line="7254"/>
         <source>eric is up to date</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7233"/>
+        <location filename="../UI/UserInterface.py" line="7254"/>
         <source>You are using the latest version of eric</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7316"/>
+        <location filename="../UI/UserInterface.py" line="7337"/>
         <source>eric has not been configured yet. The configuration dialog will be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6294"/>
+        <location filename="../UI/UserInterface.py" line="6314"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard Shortcuts File (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6313"/>
+        <location filename="../UI/UserInterface.py" line="6333"/>
         <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6329"/>
+        <location filename="../UI/UserInterface.py" line="6349"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6518"/>
+        <location filename="../UI/UserInterface.py" line="6538"/>
         <source>Read Tasks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6627"/>
+        <location filename="../UI/UserInterface.py" line="6647"/>
         <source>Save Session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6584"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>Read Session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6650"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76654,7 +76654,7 @@
 <context>
     <name>Utilities</name>
     <message>
-        <location filename="../Utilities/__init__.py" line="1453"/>
+        <location filename="../Utilities/__init__.py" line="1454"/>
         <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76940,37 +76940,37 @@
 <context>
     <name>VariablesViewer</name>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="958"/>
+        <location filename="../Debugger/VariablesViewer.py" line="965"/>
         <source>Global Variables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="959"/>
-        <source>&lt;b&gt;The Global Variables Viewer Window&lt;/b&gt;&lt;p&gt;This window displays the global variables of the debugged program.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/VariablesViewer.py" line="965"/>
-        <source>Local Variables</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/VariablesViewer.py" line="966"/>
+        <source>&lt;b&gt;The Global Variables Viewer Window&lt;/b&gt;&lt;p&gt;This window displays the global variables of the debugged program.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/VariablesViewer.py" line="972"/>
+        <source>Local Variables</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/VariablesViewer.py" line="973"/>
         <source>&lt;b&gt;The Local Variables Viewer Window&lt;/b&gt;&lt;p&gt;This window displays the local variables of the debugged program.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1083"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1090"/>
         <source>Show Details...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1096"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1103"/>
         <source>Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1098"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1105"/>
         <source>Configure...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76980,22 +76980,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1085"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1092"/>
         <source>Expand</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1086"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1093"/>
         <source>Collapse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1087"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1094"/>
         <source>Collapse All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1099"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1106"/>
         <source>Variables Type Filter...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77636,7 +77636,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VCS/VersionControl.py" line="761"/>
+        <location filename="../VCS/VersionControl.py" line="764"/>
         <source>Repository status checking is switched off</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77650,3213 +77650,3213 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="749"/>
         <source>Print Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1452"/>
+        <location filename="../ViewManager/ViewManager.py" line="1453"/>
         <source>Move left one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1452"/>
+        <location filename="../ViewManager/ViewManager.py" line="1453"/>
         <source>Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1461"/>
+        <location filename="../ViewManager/ViewManager.py" line="1462"/>
         <source>Meta+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1466"/>
+        <location filename="../ViewManager/ViewManager.py" line="1467"/>
         <source>Move right one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1466"/>
+        <location filename="../ViewManager/ViewManager.py" line="1467"/>
         <source>Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1474"/>
+        <location filename="../ViewManager/ViewManager.py" line="1475"/>
         <source>Meta+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1481"/>
         <source>Move up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1481"/>
         <source>Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1486"/>
+        <location filename="../ViewManager/ViewManager.py" line="1487"/>
         <source>Meta+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1492"/>
+        <location filename="../ViewManager/ViewManager.py" line="1493"/>
         <source>Move down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1492"/>
+        <location filename="../ViewManager/ViewManager.py" line="1493"/>
         <source>Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1498"/>
+        <location filename="../ViewManager/ViewManager.py" line="1499"/>
         <source>Meta+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1504"/>
+        <location filename="../ViewManager/ViewManager.py" line="1505"/>
         <source>Move left one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1538"/>
+        <location filename="../ViewManager/ViewManager.py" line="1539"/>
         <source>Alt+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1518"/>
+        <location filename="../ViewManager/ViewManager.py" line="1519"/>
         <source>Move right one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2418"/>
+        <location filename="../ViewManager/ViewManager.py" line="2419"/>
         <source>Alt+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1532"/>
+        <location filename="../ViewManager/ViewManager.py" line="1533"/>
         <source>Move left one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1583"/>
+        <location filename="../ViewManager/ViewManager.py" line="1584"/>
         <source>Ctrl+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1547"/>
+        <location filename="../ViewManager/ViewManager.py" line="1548"/>
         <source>Move right one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2173"/>
         <source>Ctrl+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1559"/>
+        <location filename="../ViewManager/ViewManager.py" line="1560"/>
         <source>Move to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2373"/>
+        <location filename="../ViewManager/ViewManager.py" line="2374"/>
         <source>Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1575"/>
+        <location filename="../ViewManager/ViewManager.py" line="1576"/>
         <source>Move to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1586"/>
+        <location filename="../ViewManager/ViewManager.py" line="1587"/>
         <source>Alt+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1592"/>
+        <location filename="../ViewManager/ViewManager.py" line="1593"/>
         <source>Move to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1600"/>
+        <location filename="../ViewManager/ViewManager.py" line="1601"/>
         <source>Meta+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2388"/>
+        <location filename="../ViewManager/ViewManager.py" line="2389"/>
         <source>End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1609"/>
+        <location filename="../ViewManager/ViewManager.py" line="1610"/>
         <source>Scroll view down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1699"/>
+        <location filename="../ViewManager/ViewManager.py" line="1700"/>
         <source>Ctrl+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1621"/>
+        <location filename="../ViewManager/ViewManager.py" line="1622"/>
         <source>Scroll view up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1683"/>
         <source>Ctrl+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1632"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Move up one paragraph</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1632"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Alt+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1641"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Move down one paragraph</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1641"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Alt+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1653"/>
+        <location filename="../ViewManager/ViewManager.py" line="1654"/>
         <source>Move up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1653"/>
+        <location filename="../ViewManager/ViewManager.py" line="1654"/>
         <source>PgUp</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1662"/>
+        <location filename="../ViewManager/ViewManager.py" line="1663"/>
         <source>Move down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1662"/>
+        <location filename="../ViewManager/ViewManager.py" line="1663"/>
         <source>PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1668"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Meta+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1674"/>
+        <location filename="../ViewManager/ViewManager.py" line="1675"/>
         <source>Move to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1685"/>
+        <location filename="../ViewManager/ViewManager.py" line="1686"/>
         <source>Ctrl+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1692"/>
         <source>Move to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1702"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>Ctrl+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1708"/>
+        <location filename="../ViewManager/ViewManager.py" line="1709"/>
         <source>Indent one level</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1708"/>
+        <location filename="../ViewManager/ViewManager.py" line="1709"/>
         <source>Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1717"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Unindent one level</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1717"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Shift+Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1728"/>
         <source>Extend selection left one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1728"/>
         <source>Shift+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1737"/>
         <source>Meta+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1742"/>
+        <location filename="../ViewManager/ViewManager.py" line="1743"/>
         <source>Extend selection right one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1742"/>
+        <location filename="../ViewManager/ViewManager.py" line="1743"/>
         <source>Shift+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1751"/>
+        <location filename="../ViewManager/ViewManager.py" line="1752"/>
         <source>Meta+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1757"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Extend selection up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1757"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Shift+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1766"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Meta+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1772"/>
+        <location filename="../ViewManager/ViewManager.py" line="1773"/>
         <source>Extend selection down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1772"/>
+        <location filename="../ViewManager/ViewManager.py" line="1773"/>
         <source>Shift+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1781"/>
+        <location filename="../ViewManager/ViewManager.py" line="1782"/>
         <source>Meta+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1787"/>
+        <location filename="../ViewManager/ViewManager.py" line="1788"/>
         <source>Extend selection left one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1823"/>
+        <location filename="../ViewManager/ViewManager.py" line="1824"/>
         <source>Alt+Shift+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1802"/>
         <source>Extend selection right one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2433"/>
+        <location filename="../ViewManager/ViewManager.py" line="2434"/>
         <source>Alt+Shift+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1815"/>
+        <location filename="../ViewManager/ViewManager.py" line="1816"/>
         <source>Extend selection left one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2527"/>
+        <location filename="../ViewManager/ViewManager.py" line="2528"/>
         <source>Ctrl+Shift+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1832"/>
+        <location filename="../ViewManager/ViewManager.py" line="1833"/>
         <source>Extend selection right one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2189"/>
+        <location filename="../ViewManager/ViewManager.py" line="2190"/>
         <source>Ctrl+Shift+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1849"/>
+        <location filename="../ViewManager/ViewManager.py" line="1850"/>
         <source>Extend selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1861"/>
+        <location filename="../ViewManager/ViewManager.py" line="1862"/>
         <source>Shift+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1867"/>
+        <location filename="../ViewManager/ViewManager.py" line="1868"/>
         <source>Extend selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1875"/>
+        <location filename="../ViewManager/ViewManager.py" line="1876"/>
         <source>Meta+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1878"/>
+        <location filename="../ViewManager/ViewManager.py" line="1879"/>
         <source>Shift+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1884"/>
+        <location filename="../ViewManager/ViewManager.py" line="1885"/>
         <source>Extend selection up one paragraph</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1884"/>
+        <location filename="../ViewManager/ViewManager.py" line="1885"/>
         <source>Alt+Shift+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1897"/>
+        <location filename="../ViewManager/ViewManager.py" line="1898"/>
         <source>Extend selection down one paragraph</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1897"/>
+        <location filename="../ViewManager/ViewManager.py" line="1898"/>
         <source>Alt+Shift+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1910"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1910"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Shift+PgUp</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1922"/>
+        <location filename="../ViewManager/ViewManager.py" line="1923"/>
         <source>Extend selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1922"/>
+        <location filename="../ViewManager/ViewManager.py" line="1923"/>
         <source>Shift+PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1932"/>
+        <location filename="../ViewManager/ViewManager.py" line="1933"/>
         <source>Meta+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1939"/>
         <source>Extend selection to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1946"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Ctrl+Shift+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1949"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Ctrl+Shift+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1955"/>
+        <location filename="../ViewManager/ViewManager.py" line="1956"/>
         <source>Extend selection to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1963"/>
+        <location filename="../ViewManager/ViewManager.py" line="1964"/>
         <source>Ctrl+Shift+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1966"/>
+        <location filename="../ViewManager/ViewManager.py" line="1967"/>
         <source>Ctrl+Shift+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1972"/>
+        <location filename="../ViewManager/ViewManager.py" line="1973"/>
         <source>Delete previous character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1972"/>
+        <location filename="../ViewManager/ViewManager.py" line="1973"/>
         <source>Backspace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1981"/>
+        <location filename="../ViewManager/ViewManager.py" line="1982"/>
         <source>Meta+H</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1984"/>
+        <location filename="../ViewManager/ViewManager.py" line="1985"/>
         <source>Shift+Backspace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1990"/>
+        <location filename="../ViewManager/ViewManager.py" line="1991"/>
         <source>Delete previous character if not at start of line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2003"/>
+        <location filename="../ViewManager/ViewManager.py" line="2004"/>
         <source>Delete current character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2003"/>
+        <location filename="../ViewManager/ViewManager.py" line="2004"/>
         <source>Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2011"/>
+        <location filename="../ViewManager/ViewManager.py" line="2012"/>
         <source>Meta+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2017"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <source>Delete word to left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2017"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <source>Ctrl+Backspace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2028"/>
+        <location filename="../ViewManager/ViewManager.py" line="2029"/>
         <source>Delete word to right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2028"/>
+        <location filename="../ViewManager/ViewManager.py" line="2029"/>
         <source>Ctrl+Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2038"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Delete line to left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2038"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2049"/>
+        <location filename="../ViewManager/ViewManager.py" line="2050"/>
         <source>Delete line to right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2055"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Meta+K</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2058"/>
+        <location filename="../ViewManager/ViewManager.py" line="2059"/>
         <source>Ctrl+Shift+Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Insert new line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Return</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Enter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Delete current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Ctrl+Shift+L</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2098"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Duplicate current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2098"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Ctrl+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2109"/>
+        <location filename="../ViewManager/ViewManager.py" line="2110"/>
         <source>Swap current and previous lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2109"/>
+        <location filename="../ViewManager/ViewManager.py" line="2110"/>
         <source>Ctrl+T</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2132"/>
+        <location filename="../ViewManager/ViewManager.py" line="2133"/>
         <source>Cut current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2132"/>
+        <location filename="../ViewManager/ViewManager.py" line="2133"/>
         <source>Alt+Shift+L</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2142"/>
+        <location filename="../ViewManager/ViewManager.py" line="2143"/>
         <source>Copy current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2142"/>
+        <location filename="../ViewManager/ViewManager.py" line="2143"/>
         <source>Ctrl+Shift+T</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2153"/>
+        <location filename="../ViewManager/ViewManager.py" line="2154"/>
         <source>Toggle insert/overtype</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2153"/>
+        <location filename="../ViewManager/ViewManager.py" line="2154"/>
         <source>Ins</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2717"/>
+        <location filename="../ViewManager/ViewManager.py" line="2718"/>
         <source>Convert selection to lower case</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2717"/>
+        <location filename="../ViewManager/ViewManager.py" line="2718"/>
         <source>Alt+Shift+U</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2729"/>
+        <location filename="../ViewManager/ViewManager.py" line="2730"/>
         <source>Convert selection to upper case</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2729"/>
+        <location filename="../ViewManager/ViewManager.py" line="2730"/>
         <source>Ctrl+Shift+U</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2164"/>
+        <location filename="../ViewManager/ViewManager.py" line="2165"/>
         <source>Move to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2175"/>
+        <location filename="../ViewManager/ViewManager.py" line="2176"/>
         <source>Alt+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Extend selection to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2195"/>
+        <location filename="../ViewManager/ViewManager.py" line="2196"/>
         <source>Formfeed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2204"/>
+        <location filename="../ViewManager/ViewManager.py" line="2205"/>
         <source>Escape</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2204"/>
+        <location filename="../ViewManager/ViewManager.py" line="2205"/>
         <source>Esc</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2213"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <source>Extend rectangular selection down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2213"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <source>Alt+Ctrl+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2223"/>
+        <location filename="../ViewManager/ViewManager.py" line="2224"/>
         <source>Meta+Alt+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2229"/>
+        <location filename="../ViewManager/ViewManager.py" line="2230"/>
         <source>Extend rectangular selection up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2229"/>
+        <location filename="../ViewManager/ViewManager.py" line="2230"/>
         <source>Alt+Ctrl+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2238"/>
+        <location filename="../ViewManager/ViewManager.py" line="2239"/>
         <source>Meta+Alt+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2244"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <source>Extend rectangular selection left one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2244"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <source>Alt+Ctrl+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2256"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <source>Meta+Alt+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2262"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Extend rectangular selection right one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2262"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Alt+Ctrl+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2275"/>
         <source>Meta+Alt+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2280"/>
+        <location filename="../ViewManager/ViewManager.py" line="2281"/>
         <source>Extend rectangular selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2293"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Alt+Shift+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2299"/>
+        <location filename="../ViewManager/ViewManager.py" line="2300"/>
         <source>Extend rectangular selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2309"/>
+        <location filename="../ViewManager/ViewManager.py" line="2310"/>
         <source>Meta+Alt+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2312"/>
+        <location filename="../ViewManager/ViewManager.py" line="2313"/>
         <source>Alt+Shift+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2318"/>
+        <location filename="../ViewManager/ViewManager.py" line="2319"/>
         <source>Extend rectangular selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2318"/>
+        <location filename="../ViewManager/ViewManager.py" line="2319"/>
         <source>Alt+Shift+PgUp</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2333"/>
+        <location filename="../ViewManager/ViewManager.py" line="2334"/>
         <source>Extend rectangular selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2333"/>
+        <location filename="../ViewManager/ViewManager.py" line="2334"/>
         <source>Alt+Shift+PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2345"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <source>Meta+Alt+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2351"/>
+        <location filename="../ViewManager/ViewManager.py" line="2352"/>
         <source>Duplicate current selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2351"/>
+        <location filename="../ViewManager/ViewManager.py" line="2352"/>
         <source>Ctrl+Shift+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2365"/>
+        <location filename="../ViewManager/ViewManager.py" line="2366"/>
         <source>Scroll to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2380"/>
+        <location filename="../ViewManager/ViewManager.py" line="2381"/>
         <source>Scroll to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2395"/>
+        <location filename="../ViewManager/ViewManager.py" line="2396"/>
         <source>Scroll vertically to center current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2403"/>
+        <location filename="../ViewManager/ViewManager.py" line="2404"/>
         <source>Meta+L</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2410"/>
+        <location filename="../ViewManager/ViewManager.py" line="2411"/>
         <source>Move to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2425"/>
+        <location filename="../ViewManager/ViewManager.py" line="2426"/>
         <source>Extend selection to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2441"/>
+        <location filename="../ViewManager/ViewManager.py" line="2442"/>
         <source>Move to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2453"/>
+        <location filename="../ViewManager/ViewManager.py" line="2454"/>
         <source>Extend selection to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2465"/>
+        <location filename="../ViewManager/ViewManager.py" line="2466"/>
         <source>Move to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2473"/>
+        <location filename="../ViewManager/ViewManager.py" line="2474"/>
         <source>Meta+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2480"/>
+        <location filename="../ViewManager/ViewManager.py" line="2481"/>
         <source>Extend selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2491"/>
+        <location filename="../ViewManager/ViewManager.py" line="2492"/>
         <source>Meta+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2498"/>
+        <location filename="../ViewManager/ViewManager.py" line="2499"/>
         <source>Extend rectangular selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2508"/>
+        <location filename="../ViewManager/ViewManager.py" line="2509"/>
         <source>Meta+Alt+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2516"/>
+        <location filename="../ViewManager/ViewManager.py" line="2517"/>
         <source>Extend selection to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2535"/>
+        <location filename="../ViewManager/ViewManager.py" line="2536"/>
         <source>Move to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2549"/>
+        <location filename="../ViewManager/ViewManager.py" line="2550"/>
         <source>Extend selection to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2564"/>
+        <location filename="../ViewManager/ViewManager.py" line="2565"/>
         <source>Move to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2581"/>
+        <location filename="../ViewManager/ViewManager.py" line="2582"/>
         <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="2598"/>
+        <location filename="../ViewManager/ViewManager.py" line="2599"/>
         <source>Move to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2612"/>
+        <location filename="../ViewManager/ViewManager.py" line="2613"/>
         <source>Extend selection to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2627"/>
+        <location filename="../ViewManager/ViewManager.py" line="2628"/>
         <source>Stuttered move up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2639"/>
+        <location filename="../ViewManager/ViewManager.py" line="2640"/>
         <source>Stuttered extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2652"/>
+        <location filename="../ViewManager/ViewManager.py" line="2653"/>
         <source>Stuttered move down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2664"/>
+        <location filename="../ViewManager/ViewManager.py" line="2665"/>
         <source>Stuttered extend selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2677"/>
+        <location filename="../ViewManager/ViewManager.py" line="2678"/>
         <source>Delete right to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2685"/>
+        <location filename="../ViewManager/ViewManager.py" line="2686"/>
         <source>Alt+Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2692"/>
+        <location filename="../ViewManager/ViewManager.py" line="2693"/>
         <source>Move selected lines up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2704"/>
+        <location filename="../ViewManager/ViewManager.py" line="2705"/>
         <source>Move selected lines down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3296"/>
+        <location filename="../ViewManager/ViewManager.py" line="3297"/>
         <source>Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2849"/>
+        <location filename="../ViewManager/ViewManager.py" line="2850"/>
         <source>&amp;Search...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2849"/>
+        <location filename="../ViewManager/ViewManager.py" line="2850"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2857"/>
+        <location filename="../ViewManager/ViewManager.py" line="2858"/>
         <source>Search for a text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2859"/>
+        <location filename="../ViewManager/ViewManager.py" line="2860"/>
         <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="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>Search next</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>Search &amp;next</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2878"/>
+        <location filename="../ViewManager/ViewManager.py" line="2879"/>
         <source>Search next occurrence of text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2880"/>
+        <location filename="../ViewManager/ViewManager.py" line="2881"/>
         <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="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Search previous</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Search &amp;previous</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2898"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>Search previous occurrence of text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2900"/>
+        <location filename="../ViewManager/ViewManager.py" line="2901"/>
         <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="2910"/>
+        <location filename="../ViewManager/ViewManager.py" line="2911"/>
         <source>Clear search markers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2910"/>
+        <location filename="../ViewManager/ViewManager.py" line="2911"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Clear all displayed search markers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2920"/>
+        <location filename="../ViewManager/ViewManager.py" line="2921"/>
         <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="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>Replace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>&amp;Replace...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2982"/>
+        <location filename="../ViewManager/ViewManager.py" line="2983"/>
         <source>Replace some text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2984"/>
+        <location filename="../ViewManager/ViewManager.py" line="2985"/>
         <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="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>&amp;New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="592"/>
+        <location filename="../ViewManager/ViewManager.py" line="593"/>
         <source>Open an empty editor window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="595"/>
+        <location filename="../ViewManager/ViewManager.py" line="596"/>
         <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="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>Open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>&amp;Open...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="611"/>
+        <location filename="../ViewManager/ViewManager.py" line="612"/>
         <source>Open a file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="613"/>
+        <location filename="../ViewManager/ViewManager.py" line="614"/>
         <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="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>&amp;Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="632"/>
+        <location filename="../ViewManager/ViewManager.py" line="633"/>
         <source>Close the current window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="636"/>
         <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="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="644"/>
         <source>Close All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="644"/>
         <source>Clos&amp;e All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="647"/>
+        <location filename="../ViewManager/ViewManager.py" line="648"/>
         <source>Close all editor windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="650"/>
+        <location filename="../ViewManager/ViewManager.py" line="651"/>
         <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="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>&amp;Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="669"/>
+        <location filename="../ViewManager/ViewManager.py" line="670"/>
         <source>Save the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="671"/>
+        <location filename="../ViewManager/ViewManager.py" line="672"/>
         <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="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Save as</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Save &amp;as...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="686"/>
+        <location filename="../ViewManager/ViewManager.py" line="687"/>
         <source>Save the current file to a new one</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="688"/>
+        <location filename="../ViewManager/ViewManager.py" line="689"/>
         <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="697"/>
+        <location filename="../ViewManager/ViewManager.py" line="698"/>
         <source>Save Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="697"/>
+        <location filename="../ViewManager/ViewManager.py" line="698"/>
         <source>Save &amp;Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="702"/>
+        <location filename="../ViewManager/ViewManager.py" line="703"/>
         <source>Save a copy of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="704"/>
+        <location filename="../ViewManager/ViewManager.py" line="705"/>
         <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="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="714"/>
         <source>Save all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="714"/>
         <source>Save a&amp;ll</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="718"/>
+        <location filename="../ViewManager/ViewManager.py" line="719"/>
         <source>Save all files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="720"/>
+        <location filename="../ViewManager/ViewManager.py" line="721"/>
         <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="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>&amp;Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="737"/>
+        <location filename="../ViewManager/ViewManager.py" line="738"/>
         <source>Print the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="739"/>
+        <location filename="../ViewManager/ViewManager.py" line="740"/>
         <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="753"/>
+        <location filename="../ViewManager/ViewManager.py" line="754"/>
         <source>Print preview of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="755"/>
+        <location filename="../ViewManager/ViewManager.py" line="756"/>
         <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="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Search File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Search &amp;File...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Alt+Ctrl+F</source>
         <comment>File|Search File</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="771"/>
+        <location filename="../ViewManager/ViewManager.py" line="772"/>
         <source>Search for a file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="773"/>
+        <location filename="../ViewManager/ViewManager.py" line="774"/>
         <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="787"/>
+        <location filename="../ViewManager/ViewManager.py" line="788"/>
         <source>&amp;File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="789"/>
+        <location filename="../ViewManager/ViewManager.py" line="790"/>
         <source>Open &amp;Recent Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="792"/>
+        <location filename="../ViewManager/ViewManager.py" line="793"/>
         <source>Open &amp;Bookmarked Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="840"/>
+        <location filename="../ViewManager/ViewManager.py" line="841"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="863"/>
+        <location filename="../ViewManager/ViewManager.py" line="864"/>
         <source>Export as</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>&amp;Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="896"/>
+        <location filename="../ViewManager/ViewManager.py" line="897"/>
         <source>Undo the last change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="898"/>
+        <location filename="../ViewManager/ViewManager.py" line="899"/>
         <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="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>&amp;Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="914"/>
+        <location filename="../ViewManager/ViewManager.py" line="915"/>
         <source>Redo the last change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="916"/>
+        <location filename="../ViewManager/ViewManager.py" line="917"/>
         <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="933"/>
+        <location filename="../ViewManager/ViewManager.py" line="934"/>
         <source>Revert to last saved state</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="924"/>
+        <location filename="../ViewManager/ViewManager.py" line="925"/>
         <source>Re&amp;vert to last saved state</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="924"/>
+        <location filename="../ViewManager/ViewManager.py" line="925"/>
         <source>Ctrl+Y</source>
         <comment>Edit|Revert</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="935"/>
+        <location filename="../ViewManager/ViewManager.py" line="936"/>
         <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="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Cut</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Cu&amp;t</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="955"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Cut the selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="958"/>
         <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="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>&amp;Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="976"/>
         <source>Copy the selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="977"/>
+        <location filename="../ViewManager/ViewManager.py" line="978"/>
         <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="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>&amp;Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="995"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Paste the last cut/copied text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="998"/>
         <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="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1014"/>
+        <location filename="../ViewManager/ViewManager.py" line="1015"/>
         <source>Clear all text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1016"/>
+        <location filename="../ViewManager/ViewManager.py" line="1017"/>
         <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="1031"/>
+        <location filename="../ViewManager/ViewManager.py" line="1032"/>
         <source>Join Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1024"/>
+        <location filename="../ViewManager/ViewManager.py" line="1025"/>
         <source>Ctrl+J</source>
         <comment>Edit|Join Lines</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1033"/>
+        <location filename="../ViewManager/ViewManager.py" line="1034"/>
         <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="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>Indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>&amp;Indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>Ctrl+I</source>
         <comment>Edit|Indent</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1049"/>
+        <location filename="../ViewManager/ViewManager.py" line="1050"/>
         <source>Indent line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1051"/>
+        <location filename="../ViewManager/ViewManager.py" line="1052"/>
         <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="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>Unindent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>U&amp;nindent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>Ctrl+Shift+I</source>
         <comment>Edit|Unindent</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1068"/>
+        <location filename="../ViewManager/ViewManager.py" line="1069"/>
         <source>Unindent line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1070"/>
+        <location filename="../ViewManager/ViewManager.py" line="1071"/>
         <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="1079"/>
+        <location filename="../ViewManager/ViewManager.py" line="1080"/>
         <source>Smart indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1085"/>
+        <location filename="../ViewManager/ViewManager.py" line="1086"/>
         <source>Smart indent Line or Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1087"/>
+        <location filename="../ViewManager/ViewManager.py" line="1088"/>
         <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="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>C&amp;omment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>Ctrl+M</source>
         <comment>Edit|Comment</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1104"/>
+        <location filename="../ViewManager/ViewManager.py" line="1105"/>
         <source>Comment Line or Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1106"/>
+        <location filename="../ViewManager/ViewManager.py" line="1107"/>
         <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="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Uncomment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Unco&amp;mment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Alt+Ctrl+M</source>
         <comment>Edit|Uncomment</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1123"/>
+        <location filename="../ViewManager/ViewManager.py" line="1124"/>
         <source>Uncomment Line or Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1125"/>
+        <location filename="../ViewManager/ViewManager.py" line="1126"/>
         <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="1134"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Toggle Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1134"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Ctrl+Shift+M</source>
         <comment>Edit|Toggle Comment</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1142"/>
+        <location filename="../ViewManager/ViewManager.py" line="1143"/>
         <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="1146"/>
+        <location filename="../ViewManager/ViewManager.py" line="1147"/>
         <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="1156"/>
+        <location filename="../ViewManager/ViewManager.py" line="1157"/>
         <source>Stream Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1161"/>
+        <location filename="../ViewManager/ViewManager.py" line="1162"/>
         <source>Stream Comment Line or Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1164"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <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="1173"/>
+        <location filename="../ViewManager/ViewManager.py" line="1174"/>
         <source>Box Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1178"/>
+        <location filename="../ViewManager/ViewManager.py" line="1179"/>
         <source>Box Comment Line or Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1180"/>
+        <location filename="../ViewManager/ViewManager.py" line="1181"/>
         <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="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Select to brace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Select to &amp;brace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Ctrl+E</source>
         <comment>Edit|Select to brace</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1196"/>
+        <location filename="../ViewManager/ViewManager.py" line="1197"/>
         <source>Select text to the matching brace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1198"/>
+        <location filename="../ViewManager/ViewManager.py" line="1199"/>
         <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="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>Select all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>&amp;Select all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select all</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1215"/>
+        <location filename="../ViewManager/ViewManager.py" line="1216"/>
         <source>Select all text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1217"/>
+        <location filename="../ViewManager/ViewManager.py" line="1218"/>
         <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="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>Deselect all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>&amp;Deselect all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>Alt+Ctrl+A</source>
         <comment>Edit|Deselect all</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1232"/>
+        <location filename="../ViewManager/ViewManager.py" line="1233"/>
         <source>Deselect all text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1234"/>
+        <location filename="../ViewManager/ViewManager.py" line="1235"/>
         <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="1249"/>
+        <location filename="../ViewManager/ViewManager.py" line="1250"/>
         <source>Convert Line End Characters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1242"/>
+        <location filename="../ViewManager/ViewManager.py" line="1243"/>
         <source>Convert &amp;Line End Characters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1251"/>
+        <location filename="../ViewManager/ViewManager.py" line="1252"/>
         <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="1265"/>
+        <location filename="../ViewManager/ViewManager.py" line="1266"/>
         <source>Shorten empty lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1267"/>
+        <location filename="../ViewManager/ViewManager.py" line="1268"/>
         <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="2748"/>
+        <location filename="../ViewManager/ViewManager.py" line="2749"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1277"/>
         <source>&amp;Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1277"/>
         <source>Ctrl+Space</source>
         <comment>Edit|Complete</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1283"/>
+        <location filename="../ViewManager/ViewManager.py" line="1284"/>
         <source>Complete current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1285"/>
+        <location filename="../ViewManager/ViewManager.py" line="1286"/>
         <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="1294"/>
+        <location filename="../ViewManager/ViewManager.py" line="1295"/>
         <source>Complete from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1294"/>
+        <location filename="../ViewManager/ViewManager.py" line="1295"/>
         <source>Ctrl+Shift+Space</source>
         <comment>Edit|Complete from Document</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1304"/>
+        <location filename="../ViewManager/ViewManager.py" line="1305"/>
         <source>Complete current word from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1307"/>
+        <location filename="../ViewManager/ViewManager.py" line="1308"/>
         <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="1317"/>
+        <location filename="../ViewManager/ViewManager.py" line="1318"/>
         <source>Complete from APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1317"/>
+        <location filename="../ViewManager/ViewManager.py" line="1318"/>
         <source>Ctrl+Alt+Space</source>
         <comment>Edit|Complete from APIs</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1328"/>
         <source>Complete current word from APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1330"/>
+        <location filename="../ViewManager/ViewManager.py" line="1331"/>
         <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="1340"/>
+        <location filename="../ViewManager/ViewManager.py" line="1341"/>
         <source>Complete from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1340"/>
+        <location filename="../ViewManager/ViewManager.py" line="1341"/>
         <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="1350"/>
+        <location filename="../ViewManager/ViewManager.py" line="1351"/>
         <source>Complete current word from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1353"/>
+        <location filename="../ViewManager/ViewManager.py" line="1354"/>
         <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="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>Calltip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>&amp;Calltip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>Meta+Alt+Space</source>
         <comment>Edit|Calltip</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1370"/>
+        <location filename="../ViewManager/ViewManager.py" line="1371"/>
         <source>Show Calltips</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1372"/>
+        <location filename="../ViewManager/ViewManager.py" line="1373"/>
         <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="1399"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Sort</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1399"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Ctrl+Alt+S</source>
         <comment>Edit|Sort</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1406"/>
+        <location filename="../ViewManager/ViewManager.py" line="1407"/>
         <source>Sort the lines containing the rectangular selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1409"/>
+        <location filename="../ViewManager/ViewManager.py" line="1410"/>
         <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="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <source>Insert new line below current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <source>Shift+Return</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <source>Shift+Enter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3262"/>
+        <location filename="../ViewManager/ViewManager.py" line="3263"/>
         <source>&amp;Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2758"/>
+        <location filename="../ViewManager/ViewManager.py" line="2759"/>
         <source>&amp;Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2817"/>
+        <location filename="../ViewManager/ViewManager.py" line="2818"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2929"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>Search current word forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2929"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2940"/>
+        <location filename="../ViewManager/ViewManager.py" line="2941"/>
         <source>Search next occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2943"/>
+        <location filename="../ViewManager/ViewManager.py" line="2944"/>
         <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="2952"/>
+        <location filename="../ViewManager/ViewManager.py" line="2953"/>
         <source>Search current word backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2952"/>
+        <location filename="../ViewManager/ViewManager.py" line="2953"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2963"/>
+        <location filename="../ViewManager/ViewManager.py" line="2964"/>
         <source>Search previous occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2966"/>
+        <location filename="../ViewManager/ViewManager.py" line="2967"/>
         <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="3070"/>
+        <location filename="../ViewManager/ViewManager.py" line="3071"/>
         <source>Goto Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3062"/>
+        <location filename="../ViewManager/ViewManager.py" line="3063"/>
         <source>&amp;Goto Line...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3062"/>
+        <location filename="../ViewManager/ViewManager.py" line="3063"/>
         <source>Ctrl+G</source>
         <comment>Search|Goto Line</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3072"/>
+        <location filename="../ViewManager/ViewManager.py" line="3073"/>
         <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="3089"/>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
         <source>Goto Brace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3081"/>
+        <location filename="../ViewManager/ViewManager.py" line="3082"/>
         <source>Goto &amp;Brace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3081"/>
+        <location filename="../ViewManager/ViewManager.py" line="3082"/>
         <source>Ctrl+L</source>
         <comment>Search|Goto Brace</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3091"/>
+        <location filename="../ViewManager/ViewManager.py" line="3092"/>
         <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="3110"/>
+        <location filename="../ViewManager/ViewManager.py" line="3111"/>
         <source>Goto Last Edit Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3099"/>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3099"/>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <source>Ctrl+Shift+G</source>
         <comment>Search|Goto Last Edit Location</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3113"/>
+        <location filename="../ViewManager/ViewManager.py" line="3114"/>
         <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="3122"/>
+        <location filename="../ViewManager/ViewManager.py" line="3123"/>
         <source>Goto Previous Method or Class</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3122"/>
+        <location filename="../ViewManager/ViewManager.py" line="3123"/>
         <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="3132"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <source>Go to the previous method or class definition</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3136"/>
+        <location filename="../ViewManager/ViewManager.py" line="3137"/>
         <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="3146"/>
+        <location filename="../ViewManager/ViewManager.py" line="3147"/>
         <source>Goto Next Method or Class</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3146"/>
+        <location filename="../ViewManager/ViewManager.py" line="3147"/>
         <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="3156"/>
+        <location filename="../ViewManager/ViewManager.py" line="3157"/>
         <source>Go to the next method or class definition</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3158"/>
+        <location filename="../ViewManager/ViewManager.py" line="3159"/>
         <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="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Search in Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Search in &amp;Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3177"/>
+        <location filename="../ViewManager/ViewManager.py" line="3178"/>
         <source>Search for a text in files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3179"/>
+        <location filename="../ViewManager/ViewManager.py" line="3180"/>
         <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="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Replace in Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Replace in F&amp;iles...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3196"/>
+        <location filename="../ViewManager/ViewManager.py" line="3197"/>
         <source>Search for a text in files and replace it</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3198"/>
+        <location filename="../ViewManager/ViewManager.py" line="3199"/>
         <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="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <source>Search in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <source>Search in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <source>Meta+Ctrl+Alt+F</source>
         <comment>Search|Search Open Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3220"/>
+        <location filename="../ViewManager/ViewManager.py" line="3221"/>
         <source>Search for a text in open files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3222"/>
+        <location filename="../ViewManager/ViewManager.py" line="3223"/>
         <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="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <source>Replace in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <source>Replace in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <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="3242"/>
+        <location filename="../ViewManager/ViewManager.py" line="3243"/>
         <source>Search for a text in open files and replace it</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3244"/>
+        <location filename="../ViewManager/ViewManager.py" line="3245"/>
         <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="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom in</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom &amp;in</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3344"/>
-        <source>Zoom in on the text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3346"/>
+        <source>Zoom in on the text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3348"/>
         <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="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom &amp;out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3363"/>
-        <source>Zoom out on the text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3365"/>
+        <source>Zoom out on the text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3367"/>
         <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="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Zoom reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3381"/>
-        <source>Reset the zoom of the text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3383"/>
+        <source>Reset the zoom of the text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3385"/>
         <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="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>Zoom</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>&amp;Zoom</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3400"/>
-        <source>Zoom the text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3402"/>
+        <source>Zoom the text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3404"/>
         <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="3415"/>
-        <source>Toggle all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3411"/>
-        <source>&amp;Toggle all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3417"/>
+        <source>Toggle all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3413"/>
+        <source>&amp;Toggle all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3419"/>
         <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="3431"/>
-        <source>Toggle all folds (including children)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3425"/>
-        <source>Toggle all &amp;folds (including children)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3433"/>
+        <source>Toggle all folds (including children)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3427"/>
+        <source>Toggle all &amp;folds (including children)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3435"/>
         <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="3447"/>
-        <source>Toggle current fold</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3443"/>
-        <source>Toggle &amp;current fold</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3449"/>
+        <source>Toggle current fold</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3445"/>
+        <source>Toggle &amp;current fold</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3451"/>
         <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="3479"/>
-        <source>Remove all highlights</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3481"/>
+        <source>Remove all highlights</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3483"/>
         <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="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3491"/>
         <source>New Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3491"/>
         <source>New &amp;Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3494"/>
-        <source>Open a new view of the current document</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3496"/>
+        <source>Open a new view of the current document</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3498"/>
         <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="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3508"/>
         <source>New Document View (with new split)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3513"/>
+        <location filename="../ViewManager/ViewManager.py" line="3515"/>
         <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="3516"/>
+        <location filename="../ViewManager/ViewManager.py" line="3518"/>
         <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="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3529"/>
         <source>Split view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3529"/>
         <source>&amp;Split view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3532"/>
-        <source>Add a split to the view</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3534"/>
+        <source>Add a split to the view</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3536"/>
         <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="3542"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Arrange horizontally</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3542"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Arrange &amp;horizontally</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3548"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3550"/>
         <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="3557"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>Remove split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3557"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>&amp;Remove split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3562"/>
-        <source>Remove the current split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3564"/>
+        <source>Remove the current split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3566"/>
         <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="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>Next split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>&amp;Next split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3579"/>
-        <source>Move to the next split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3581"/>
+        <source>Move to the next split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3583"/>
         <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="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Previous split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>&amp;Previous split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3595"/>
-        <source>Move to the previous split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3597"/>
+        <source>Move to the previous split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3599"/>
         <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="3605"/>
+        <location filename="../ViewManager/ViewManager.py" line="3607"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3610"/>
-        <source>Preview the current file in the web browser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3612"/>
+        <source>Preview the current file in the web browser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3614"/>
         <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="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3683"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3718"/>
+        <location filename="../ViewManager/ViewManager.py" line="3720"/>
         <source>View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3754"/>
-        <source>Start Macro Recording</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3748"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3756"/>
+        <source>Start Macro Recording</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3750"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3758"/>
         <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="3768"/>
-        <source>Stop Macro Recording</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3764"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3770"/>
+        <source>Stop Macro Recording</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3766"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3772"/>
         <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="3782"/>
-        <source>Run Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3778"/>
-        <source>&amp;Run Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3784"/>
+        <source>Run Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3780"/>
+        <source>&amp;Run Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <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="3796"/>
-        <source>Delete Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3792"/>
-        <source>&amp;Delete Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Delete Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3794"/>
+        <source>&amp;Delete Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3800"/>
         <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="3810"/>
-        <source>Load Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3806"/>
-        <source>&amp;Load Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3812"/>
+        <source>Load Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3808"/>
+        <source>&amp;Load Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3814"/>
         <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="3824"/>
-        <source>Save Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3820"/>
-        <source>&amp;Save Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3826"/>
+        <source>Save Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
+        <source>&amp;Save Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3828"/>
         <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="3842"/>
+        <location filename="../ViewManager/ViewManager.py" line="3844"/>
         <source>&amp;Macros</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3868"/>
-        <source>Toggle Bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3860"/>
-        <source>&amp;Toggle Bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3860"/>
-        <source>Alt+Ctrl+T</source>
-        <comment>Bookmark|Toggle</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3870"/>
+        <source>Toggle Bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
+        <source>&amp;Toggle Bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
+        <source>Alt+Ctrl+T</source>
+        <comment>Bookmark|Toggle</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3872"/>
         <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="3887"/>
-        <source>Next Bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3879"/>
-        <source>&amp;Next Bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3879"/>
-        <source>Ctrl+PgDown</source>
-        <comment>Bookmark|Next</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3889"/>
+        <source>Next Bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3881"/>
+        <source>&amp;Next Bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3881"/>
+        <source>Ctrl+PgDown</source>
+        <comment>Bookmark|Next</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3891"/>
         <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="3905"/>
-        <source>Previous Bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3897"/>
-        <source>&amp;Previous Bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3897"/>
-        <source>Ctrl+PgUp</source>
-        <comment>Bookmark|Previous</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3907"/>
+        <source>Previous Bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3899"/>
+        <source>&amp;Previous Bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3899"/>
+        <source>Ctrl+PgUp</source>
+        <comment>Bookmark|Previous</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3909"/>
         <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="3922"/>
-        <source>Clear Bookmarks</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3915"/>
-        <source>&amp;Clear Bookmarks</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3915"/>
-        <source>Alt+Ctrl+C</source>
-        <comment>Bookmark|Clear</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3924"/>
+        <source>Clear Bookmarks</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
+        <source>&amp;Clear Bookmarks</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
+        <source>Alt+Ctrl+C</source>
+        <comment>Bookmark|Clear</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3926"/>
         <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="3938"/>
-        <source>Goto Syntax Error</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3932"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3940"/>
+        <source>Goto Syntax Error</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3934"/>
+        <source>&amp;Goto Syntax Error</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3942"/>
         <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="3953"/>
-        <source>Clear Syntax Errors</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3948"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3955"/>
+        <source>Clear Syntax Errors</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3950"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3957"/>
         <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="3970"/>
-        <source>Next warning message</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3964"/>
-        <source>&amp;Next warning message</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3972"/>
+        <source>Next warning message</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3966"/>
+        <source>&amp;Next warning message</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3974"/>
         <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="3989"/>
-        <source>Previous warning message</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3981"/>
-        <source>&amp;Previous warning message</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3991"/>
+        <source>Previous warning message</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3983"/>
+        <source>&amp;Previous warning message</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3993"/>
         <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="4007"/>
-        <source>Clear Warning Messages</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4000"/>
-        <source>Clear &amp;Warning Messages</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4009"/>
+        <source>Clear Warning Messages</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
+        <source>Clear &amp;Warning Messages</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4011"/>
         <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="4023"/>
-        <source>Next uncovered line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4017"/>
-        <source>&amp;Next uncovered line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4025"/>
+        <source>Next uncovered line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4019"/>
+        <source>&amp;Next uncovered line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4027"/>
         <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="4042"/>
-        <source>Previous uncovered line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4034"/>
-        <source>&amp;Previous uncovered line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4044"/>
+        <source>Previous uncovered line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
+        <source>&amp;Previous uncovered line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4046"/>
         <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="4060"/>
-        <source>Next Task</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4054"/>
-        <source>&amp;Next Task</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4062"/>
+        <source>Next Task</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4056"/>
+        <source>&amp;Next Task</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4064"/>
         <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="4077"/>
-        <source>Previous Task</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4070"/>
-        <source>&amp;Previous Task</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4079"/>
+        <source>Previous Task</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4072"/>
+        <source>&amp;Previous Task</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4081"/>
         <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="4094"/>
-        <source>Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4088"/>
-        <source>&amp;Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4096"/>
+        <source>Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4090"/>
+        <source>&amp;Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <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="4112"/>
-        <source>Previous Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4105"/>
-        <source>&amp;Previous Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4114"/>
+        <source>Previous Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4107"/>
+        <source>&amp;Previous Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4116"/>
         <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="4133"/>
+        <location filename="../ViewManager/ViewManager.py" line="4135"/>
         <source>&amp;Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4179"/>
+        <location filename="../ViewManager/ViewManager.py" line="4181"/>
         <source>Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Check spelling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Check &amp;spelling...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4221"/>
-        <source>Perform spell check of current editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4223"/>
+        <source>Perform spell check of current editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4225"/>
         <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="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>Automatic spell checking</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>&amp;Automatic spell checking</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4239"/>
-        <source>(De-)Activate automatic spell checking</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4241"/>
+        <source>(De-)Activate automatic spell checking</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4243"/>
         <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="4272"/>
-        <source>Edit Dictionary</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4274"/>
+        <source>Edit Dictionary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4276"/>
         <source>Project Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4277"/>
+        <location filename="../ViewManager/ViewManager.py" line="4279"/>
         <source>Project Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4282"/>
+        <location filename="../ViewManager/ViewManager.py" line="4284"/>
         <source>User Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4285"/>
+        <location filename="../ViewManager/ViewManager.py" line="4287"/>
         <source>User Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4308"/>
+        <location filename="../ViewManager/ViewManager.py" line="4310"/>
         <source>Spelling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4333"/>
         <source>Open files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4377"/>
         <source>File Modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4377"/>
         <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="4774"/>
+        <location filename="../ViewManager/ViewManager.py" line="4776"/>
         <source>Line: {0:5}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4780"/>
+        <location filename="../ViewManager/ViewManager.py" line="4782"/>
         <source>Pos: {0:5}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4801"/>
+        <location filename="../ViewManager/ViewManager.py" line="4803"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4808"/>
+        <location filename="../ViewManager/ViewManager.py" line="4810"/>
         <source>EOL Mode: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5219"/>
+        <location filename="../ViewManager/ViewManager.py" line="5221"/>
         <source>&amp;Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5213"/>
+        <location filename="../ViewManager/ViewManager.py" line="5215"/>
         <source>&amp;Add</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5216"/>
+        <location filename="../ViewManager/ViewManager.py" line="5218"/>
         <source>&amp;Edit...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6255"/>
+        <location filename="../ViewManager/ViewManager.py" line="6257"/>
         <source>Edit Spelling Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6214"/>
+        <location filename="../ViewManager/ViewManager.py" line="6216"/>
         <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="6232"/>
+        <location filename="../ViewManager/ViewManager.py" line="6234"/>
         <source>Editing {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6243"/>
+        <location filename="../ViewManager/ViewManager.py" line="6245"/>
         <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="6255"/>
+        <location filename="../ViewManager/ViewManager.py" line="6257"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2995"/>
         <source>Replace and Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2995"/>
         <source>Meta+R</source>
         <comment>Search|Replace and Search</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3004"/>
+        <location filename="../ViewManager/ViewManager.py" line="3005"/>
         <source>Replace the found text and search the next occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3007"/>
+        <location filename="../ViewManager/ViewManager.py" line="3008"/>
         <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="3018"/>
+        <location filename="../ViewManager/ViewManager.py" line="3019"/>
         <source>Replace Occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3018"/>
+        <location filename="../ViewManager/ViewManager.py" line="3019"/>
         <source>Ctrl+Meta+R</source>
         <comment>Search|Replace Occurrence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3028"/>
+        <location filename="../ViewManager/ViewManager.py" line="3029"/>
         <source>Replace the found text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3030"/>
+        <location filename="../ViewManager/ViewManager.py" line="3031"/>
         <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="3040"/>
+        <location filename="../ViewManager/ViewManager.py" line="3041"/>
         <source>Replace All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3040"/>
+        <location filename="../ViewManager/ViewManager.py" line="3041"/>
         <source>Shift+Meta+R</source>
         <comment>Search|Replace All</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3050"/>
+        <location filename="../ViewManager/ViewManager.py" line="3051"/>
         <source>Replace search text occurrences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3052"/>
+        <location filename="../ViewManager/ViewManager.py" line="3053"/>
         <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="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1382"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1382"/>
         <source>Ctrl+Alt+I</source>
         <comment>Edit|Code Info</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1389"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Show Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1392"/>
         <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="3462"/>
-        <source>Clear all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3458"/>
-        <source>Clear &amp;all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3464"/>
+        <source>Clear all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3460"/>
+        <source>Clear &amp;all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3466"/>
         <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="2120"/>
+        <location filename="../ViewManager/ViewManager.py" line="2121"/>
         <source>Reverse selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2120"/>
+        <location filename="../ViewManager/ViewManager.py" line="2121"/>
         <source>Meta+Alt+R</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3622"/>
+        <location filename="../ViewManager/ViewManager.py" line="3624"/>
         <source>Python AST Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3627"/>
-        <source>Show the AST for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3629"/>
+        <source>Show the AST for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3631"/>
         <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="3639"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>Python Disassembly Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3646"/>
-        <source>Show the Disassembly for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3648"/>
+        <source>Show the Disassembly for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3650"/>
         <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>
@@ -80876,23 +80876,23 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1418"/>
+        <location filename="../ViewManager/ViewManager.py" line="1419"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1418"/>
+        <location filename="../ViewManager/ViewManager.py" line="1419"/>
         <source>Ctrl+Alt+D</source>
         <comment>Edit|Generate Docstring</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1425"/>
+        <location filename="../ViewManager/ViewManager.py" line="1426"/>
         <source>Generate a docstring for the current function/method</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1428"/>
+        <location filename="../ViewManager/ViewManager.py" line="1429"/>
         <source>&lt;b&gt;Generate Docstring&lt;/b&gt;&lt;p&gt;Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -81368,32 +81368,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="342"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="346"/>
         <source>&lt;virtualenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="360"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="364"/>
         <source>&lt;No suitable virtualenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="362"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="366"/>
         <source>virtualenv Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="396"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="400"/>
         <source>&lt;pyvenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="416"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="420"/>
         <source>&lt;No suitable pyvenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="418"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="422"/>
         <source>pyvenv Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -81533,7 +81533,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="430"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="434"/>
         <source>conda Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -81556,72 +81556,72 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="110"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="112"/>
         <source>Executing: {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="154"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="163"/>
         <source>Failed
 
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="166"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="175"/>
         <source>
 virtualenv finished.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="195"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="204"/>
         <source>No suitable virtualenv program could be started.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="259"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="268"/>
         <source>
 Writing log file &apos;{0}&apos;.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="264"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="273"/>
         <source>Output:
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="269"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="278"/>
         <source>Errors:
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="272"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="281"/>
         <source>The logfile &apos;{0}&apos; could not be written.
 Reason: {1}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="302"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="311"/>
         <source>Done.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="292"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="301"/>
         <source>
 Writing script file &apos;{0}&apos;.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="299"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="308"/>
         <source>The script file &apos;{0}&apos; could not be written.
 Reason: {1}
 </source>
@@ -81640,14 +81640,14 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="164"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="173"/>
         <source>
 pyvenv finished.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="191"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="200"/>
         <source>No suitable pyvenv program could be started.
 </source>
         <translation type="unfinished"></translation>
@@ -82106,82 +82106,82 @@
 <context>
     <name>WatchPointViewer</name>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="47"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="49"/>
         <source>Watchpoints</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="174"/>
-        <source>Add</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="141"/>
-        <source>Edit...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="143"/>
-        <source>Enable</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/WatchPointViewer.py" line="178"/>
-        <source>Enable all</source>
+        <source>Add</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="145"/>
+        <source>Edit...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Debugger/WatchPointViewer.py" line="147"/>
-        <source>Disable</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="183"/>
-        <source>Disable all</source>
+        <source>Enable</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="182"/>
+        <source>Enable all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Debugger/WatchPointViewer.py" line="151"/>
+        <source>Disable</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="187"/>
+        <source>Disable all</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="155"/>
         <source>Delete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="188"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="192"/>
         <source>Delete all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="191"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="195"/>
         <source>Configure...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="176"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="180"/>
         <source>Enable selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="181"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="185"/>
         <source>Disable selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="186"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="190"/>
         <source>Delete selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="240"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="244"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; already exists.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="245"/>
-        <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/WatchPointViewer.py" line="249"/>
+        <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="253"/>
         <source>Watch expression already exists</source>
         <translation type="unfinished"></translation>
     </message>
@@ -82618,33 +82618,33 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="42"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="43"/>
         <source>Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="43"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="45"/>
         <source>Warning</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="44"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="47"/>
         <source>Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="97"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="100"/>
         <source>[{0}] {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="102"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="105"/>
         <source> at line {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="107"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="110"/>
         <source>URL: {0}
 </source>
         <translation type="unfinished"></translation>
@@ -83209,12 +83209,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="185"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="188"/>
         <source>Suspicuous URL detected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="185"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="188"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -83458,12 +83458,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="702"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="706"/>
         <source>SSL Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="702"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="706"/>
         <source>This site does not contain SSL information.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -83529,132 +83529,132 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="135"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="136"/>
         <source>Show a navigation menu for closed tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="149"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="152"/>
         <source>Open a new web browser tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="163"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="166"/>
         <source>New Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="167"/>
-        <source>Move Left</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="170"/>
+        <source>Move Left</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="173"/>
         <source>Move Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="174"/>
-        <source>Duplicate Page</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="177"/>
-        <source>Close</source>
+        <source>Duplicate Page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="180"/>
+        <source>Close</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="183"/>
         <source>Close Others</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="211"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="214"/>
         <source>Close All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="186"/>
-        <source>Print Preview</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="189"/>
-        <source>Print</source>
+        <source>Print Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="192"/>
+        <source>Print</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="195"/>
         <source>Print as PDF</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="213"/>
-        <source>Reload All</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="216"/>
+        <source>Reload All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="219"/>
         <source>Bookmark All Tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="220"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="223"/>
         <source>Restore Closed Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="250"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="253"/>
         <source>Unmute Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="254"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="257"/>
         <source>Mute Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="456"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="459"/>
         <source>...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="753"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="763"/>
         <source>Print to PDF</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="703"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="713"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="753"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="763"/>
         <source>&lt;p&gt;The PDF could not be written to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Error:&lt;/b&gt; {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="912"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="922"/>
         <source>Loading...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="921"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="931"/>
         <source>Finished loading</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="888"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="898"/>
         <source>Failed to load</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
         <source>Are you sure you want to close the window?</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
         <source>Are you sure you want to close the window?
 You have %n tab(s) open.</source>
         <translation type="unfinished">
@@ -83662,22 +83662,22 @@
         </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="969"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="979"/>
         <source>&amp;Quit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="982"/>
         <source>C&amp;lose Current Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1153"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1165"/>
         <source>Restore All Closed Tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1155"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1167"/>
         <source>Clear List</source>
         <translation type="unfinished"></translation>
     </message>
@@ -83685,7 +83685,7 @@
 <context>
     <name>WebBrowserTools</name>
     <message>
-        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="250"/>
+        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="254"/>
         <source>&lt;unknown&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -83913,27 +83913,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1791"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1816"/>
         <source>Try reloading the page or closing some tabs to make more memory available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1780"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1797"/>
         <source>Render Process terminated abnormally</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1783"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1804"/>
         <source>The render process crashed while loading this page.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1786"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1811"/>
         <source>The render process was killed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1788"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1813"/>
         <source>The render process terminated while loading this page.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -83943,37 +83943,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1914"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1939"/>
         <source>Web Archive (*.mhtml *.mht)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1915"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1940"/>
         <source>HTML File (*.html *.htm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1916"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1941"/>
         <source>HTML File with all resources (*.html *.htm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1939"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1964"/>
         <source>Save Web Page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1731"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1742"/>
         <source>Empty Page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2289"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2321"/>
         <source>Quota Request</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2289"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2321"/>
         <source>&lt;p&gt; Allow the website at &lt;b&gt;{0}&lt;/b&gt; to use &lt;b&gt;{1}&lt;/b&gt; of persistent storage?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -84097,2000 +84097,2000 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1467"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1472"/>
         <source>Index</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1480"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1485"/>
         <source>Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1743"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1748"/>
         <source>JavaScript Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>New Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>&amp;New Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>Ctrl+T</source>
         <comment>File|New Tab</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="666"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="671"/>
         <source>Open a new web browser tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="667"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="672"/>
         <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>New Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>New &amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>Ctrl+N</source>
         <comment>File|New Window</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="680"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="685"/>
         <source>Open a new web browser window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="681"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="686"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new web browser window in the current privacy mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>New Private Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="689"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="694"/>
         <source>New &amp;Private Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="689"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="694"/>
         <source>Ctrl+Shift+P</source>
         <comment>File|New Private Window</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="695"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="700"/>
         <source>Open a new private web browser window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="697"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="702"/>
         <source>&lt;b&gt;New Private Window&lt;/b&gt;&lt;p&gt;This opens a new private web browser window by starting a new web browser instance in private mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2503"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2508"/>
         <source>Open File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="705"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="710"/>
         <source>&amp;Open File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="705"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="710"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="711"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="716"/>
         <source>Open a file for display</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="712"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="717"/>
         <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new file for display. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Open File in New Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Open File in New &amp;Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Shift+Ctrl+O</source>
         <comment>File|Open in new tab</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="726"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="731"/>
         <source>Open a file for display in a new tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="733"/>
         <source>&lt;b&gt;Open File in New Tab&lt;/b&gt;&lt;p&gt;This opens a new file for display in a new tab. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
         <source>Save As</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
         <source>&amp;Save As...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="743"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="748"/>
         <source>Save the current page to disk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="745"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="750"/>
         <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current page to disk.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="754"/>
-        <source>Save Page Screen</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="754"/>
-        <source>Save Page Screen...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="759"/>
+        <source>Save Page Screen</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="759"/>
+        <source>Save Page Screen...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="764"/>
         <source>Save the visible part of the current page as a screen shot</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="772"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="777"/>
         <source>Import Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="772"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="777"/>
         <source>&amp;Import Bookmarks...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="776"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="781"/>
         <source>Import bookmarks from other browsers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="778"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="783"/>
         <source>&lt;b&gt;Import Bookmarks&lt;/b&gt;&lt;p&gt;Import bookmarks from other browsers.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="786"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="791"/>
         <source>Export Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="786"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="791"/>
         <source>&amp;Export Bookmarks...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="790"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="795"/>
         <source>Export the bookmarks into a file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="792"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="797"/>
         <source>&lt;b&gt;Export Bookmarks&lt;/b&gt;&lt;p&gt;Export the bookmarks into a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2122"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2127"/>
         <source>Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="800"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="805"/>
         <source>&amp;Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="800"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="805"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="806"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="811"/>
         <source>Print the displayed help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="807"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="812"/>
         <source>&lt;b&gt;Print&lt;/b&gt;&lt;p&gt;Print the displayed help text.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="814"/>
-        <source>Print as PDF</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="819"/>
+        <source>Print as PDF</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="824"/>
         <source>Print the displayed help as PDF</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="821"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="826"/>
         <source>&lt;b&gt;Print as PDF&lt;/b&gt;&lt;p&gt;Print the displayed help text as a PDF file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="829"/>
-        <source>Print Preview</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="834"/>
+        <source>Print Preview</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="839"/>
         <source>Print preview of the displayed help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="836"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="841"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the displayed help text.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>&amp;Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="864"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="869"/>
         <source>Close the current help window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="866"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="871"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="873"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="878"/>
         <source>Close All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="873"/>
-        <source>Close &amp;All</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="877"/>
-        <source>Close all help windows</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="878"/>
+        <source>Close &amp;All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="882"/>
+        <source>Close all help windows</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="883"/>
         <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all web browser windows except the first one.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="886"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="891"/>
         <source>Quit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2854"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2859"/>
         <source>&amp;Quit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="886"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="891"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>Backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>&amp;Backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>Alt+Left</source>
         <comment>Go|Backward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="906"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="911"/>
         <source>Move one screen backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="907"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="912"/>
         <source>&lt;b&gt;Backward&lt;/b&gt;&lt;p&gt;Moves one screen backward. If none is available, this action is disabled.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>Forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>&amp;Forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>Alt+Right</source>
         <comment>Go|Forward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="921"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="926"/>
         <source>Move one screen forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="923"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="928"/>
         <source>&lt;b&gt;Forward&lt;/b&gt;&lt;p&gt;Moves one screen forward. If none is available, this action is disabled.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>&amp;Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>Ctrl+Home</source>
         <comment>Go|Home</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="939"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="944"/>
         <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>Reload</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>&amp;Reload</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>Ctrl+R</source>
         <comment>Go|Reload</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>F5</source>
         <comment>Go|Reload</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="953"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="958"/>
         <source>Reload the current screen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="955"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="960"/>
         <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Stop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>&amp;Stop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Ctrl+.</source>
         <comment>Go|Stop</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Esc</source>
         <comment>Go|Stop</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="969"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="974"/>
         <source>Stop loading</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="970"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="975"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>&amp;Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="983"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="988"/>
         <source>Copy the selected text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="984"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="989"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Cut</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Cu&amp;t</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="997"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1002"/>
         <source>Cut the selected text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="998"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1003"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>&amp;Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1011"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1016"/>
         <source>Paste text from the clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1012"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1017"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>&amp;Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1025"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1030"/>
         <source>Undo the last edit action</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1026"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1031"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>&amp;Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1039"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1044"/>
         <source>Redo the last edit action</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1040"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1045"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>Select All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>&amp;Select All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1053"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1058"/>
         <source>Select all text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1054"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1059"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1061"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1066"/>
         <source>Unselect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1061"/>
-        <source>Alt+Ctrl+A</source>
-        <comment>Edit|Unselect</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1066"/>
+        <source>Alt+Ctrl+A</source>
+        <comment>Edit|Unselect</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1071"/>
         <source>Clear current selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1067"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1072"/>
         <source>&lt;b&gt;Unselect&lt;/b&gt;&lt;p&gt;Clear the selection of the current browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>Find...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>&amp;Find...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>Ctrl+F</source>
         <comment>Edit|Find</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1080"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1085"/>
         <source>Find text in page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1081"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1086"/>
         <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>Find next</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>Find &amp;next</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>F3</source>
         <comment>Edit|Find next</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1094"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1099"/>
         <source>Find next occurrence of text in page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1096"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1101"/>
         <source>&lt;b&gt;Find next&lt;/b&gt;&lt;p&gt;Find the next occurrence of text in the current page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Find previous</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Find &amp;previous</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Shift+F3</source>
         <comment>Edit|Find previous</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1109"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1114"/>
         <source>Find previous occurrence of text in page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1111"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1116"/>
         <source>&lt;b&gt;Find previous&lt;/b&gt;&lt;p&gt;Find the previous occurrence of text in the current page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
         <source>Manage Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
         <source>&amp;Manage Bookmarks...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
-        <source>Ctrl+Shift+B</source>
-        <comment>Help|Manage bookmarks</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
+        <source>Ctrl+Shift+B</source>
+        <comment>Help|Manage bookmarks</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1130"/>
         <source>Open a dialog to manage the bookmarks.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1127"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1132"/>
         <source>&lt;b&gt;Manage Bookmarks...&lt;/b&gt;&lt;p&gt;Open a dialog to manage the bookmarks.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Add Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Add &amp;Bookmark...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Ctrl+D</source>
         <comment>Help|Add bookmark</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1142"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1147"/>
         <source>Open a dialog to add a bookmark.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1144"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1149"/>
         <source>&lt;b&gt;Add Bookmark&lt;/b&gt;&lt;p&gt;Open a dialog to add the current URL as a bookmark.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1151"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1156"/>
         <source>Add Folder</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1151"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1156"/>
         <source>Add &amp;Folder...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1155"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1160"/>
         <source>Open a dialog to add a new bookmarks folder.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1157"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1162"/>
         <source>&lt;b&gt;Add Folder...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1165"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1170"/>
         <source>Bookmark All Tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1165"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1170"/>
         <source>Bookmark All Tabs...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1169"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1174"/>
         <source>Bookmark all open tabs.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1171"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1176"/>
         <source>&lt;b&gt;Bookmark All Tabs...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder for all open tabs.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1185"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1190"/>
         <source>Context sensitive help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1186"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1191"/>
         <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="../WebBrowser/WebBrowserWindow.py" line="1197"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1202"/>
         <source>About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1197"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1202"/>
         <source>&amp;About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1201"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1206"/>
         <source>Display information about this software</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1203"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1208"/>
         <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="../WebBrowser/WebBrowserWindow.py" line="1210"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1215"/>
         <source>About Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1210"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1215"/>
         <source>About &amp;Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1214"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1219"/>
         <source>Display information about the Qt toolkit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1216"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1221"/>
         <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="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom in</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom &amp;in</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1230"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1235"/>
         <source>Zoom in on the web page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1231"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1236"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the web page. This makes the web page bigger.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom &amp;out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1246"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1251"/>
         <source>Zoom out on the web page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1247"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1252"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the web page. This makes the web page smaller.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Zoom reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1261"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1266"/>
         <source>Reset the zoom of the web page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1263"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1268"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the web page. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1271"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1276"/>
         <source>Show page source</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1271"/>
-        <source>Ctrl+U</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1276"/>
+        <source>Ctrl+U</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1281"/>
         <source>Show the page source in an editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1278"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1283"/>
         <source>&lt;b&gt;Show page source&lt;/b&gt;&lt;p&gt;Show the page source in an editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1286"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1291"/>
         <source>Full Screen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1286"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1291"/>
         <source>&amp;Full Screen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1296"/>
-        <source>F11</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1301"/>
-        <source>Show next tab</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1301"/>
+        <source>F11</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1306"/>
+        <source>Show next tab</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1306"/>
         <source>Ctrl+Alt+Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1310"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1315"/>
         <source>Show previous tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1310"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1315"/>
         <source>Shift+Ctrl+Alt+Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1319"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1324"/>
         <source>Switch between tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1319"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1324"/>
         <source>Ctrl+1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1328"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1333"/>
         <source>Preferences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1328"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1333"/>
         <source>&amp;Preferences...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1332"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1337"/>
         <source>Set the prefered configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1334"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1339"/>
         <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1342"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1347"/>
         <source>Languages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1342"/>
-        <source>&amp;Languages...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1347"/>
+        <source>&amp;Languages...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1352"/>
         <source>Configure the accepted languages for web pages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1349"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1354"/>
         <source>&lt;b&gt;Languages&lt;/b&gt;&lt;p&gt;Configure the accepted languages for web pages.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1357"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1362"/>
         <source>Cookies</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1357"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1362"/>
         <source>C&amp;ookies...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1361"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1366"/>
         <source>Configure cookies handling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1363"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1368"/>
         <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1371"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1376"/>
         <source>Personal Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1371"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1376"/>
         <source>Personal Information...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1377"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1382"/>
         <source>Configure personal information for completing form fields</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1379"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1384"/>
         <source>&lt;b&gt;Personal Information...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the personal information used for completing form fields.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1388"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1393"/>
         <source>GreaseMonkey Scripts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1388"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1393"/>
         <source>GreaseMonkey Scripts...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1394"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1399"/>
         <source>Configure the GreaseMonkey Scripts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1396"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1401"/>
         <source>&lt;b&gt;GreaseMonkey Scripts...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available GreaseMonkey Scripts.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1405"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1410"/>
         <source>Edit Message Filters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1405"/>
-        <source>Edit Message Filters...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1410"/>
+        <source>Edit Message Filters...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1415"/>
         <source>Edit the message filters used to suppress unwanted messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1412"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1417"/>
         <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1422"/>
-        <source>Edit HTML5 Feature Permissions</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1422"/>
-        <source>Edit HTML5 Feature Permissions...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1427"/>
+        <source>Edit HTML5 Feature Permissions</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1427"/>
+        <source>Edit HTML5 Feature Permissions...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1432"/>
         <source>Edit the remembered HTML5 feature permissions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1429"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1434"/>
         <source>&lt;b&gt;Edit HTML5 Feature Permissions&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the remembered HTML5 feature permissions.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1439"/>
-        <source>Sync with Table of Contents</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1444"/>
+        <source>Sync with Table of Contents</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1449"/>
         <source>Synchronizes the table of contents with current page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1446"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1451"/>
         <source>&lt;b&gt;Sync with Table of Contents&lt;/b&gt;&lt;p&gt;Synchronizes the table of contents with current page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1454"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1459"/>
         <source>Table of Contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1458"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1463"/>
         <source>Shows the table of contents window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1460"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1465"/>
         <source>&lt;b&gt;Table of Contents&lt;/b&gt;&lt;p&gt;Shows the table of contents window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1471"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1476"/>
         <source>Shows the index window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1473"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1478"/>
         <source>&lt;b&gt;Index&lt;/b&gt;&lt;p&gt;Shows the index window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1484"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1489"/>
         <source>Shows the search window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1486"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1491"/>
         <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1494"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1499"/>
         <source>Manage QtHelp Documents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1494"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1499"/>
         <source>Manage QtHelp &amp;Documents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1498"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1503"/>
         <source>Shows a dialog to manage the QtHelp documentation set</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1500"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1505"/>
         <source>&lt;b&gt;Manage QtHelp Documents&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the QtHelp documentation set.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1509"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1514"/>
         <source>Reindex Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1509"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1514"/>
         <source>&amp;Reindex Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1513"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1518"/>
         <source>Reindexes the documentation set</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1520"/>
         <source>&lt;b&gt;Reindex Documentation&lt;/b&gt;&lt;p&gt;Reindexes the documentation set.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1529"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1534"/>
         <source>Clear private data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1531"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1536"/>
         <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like browsing history, search history or the favicons database.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/>
-        <source>Clear icons database</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/>
-        <source>Clear &amp;icons database</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1545"/>
+        <source>Clear icons database</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1545"/>
+        <source>Clear &amp;icons database</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1550"/>
         <source>Clear the database of favicons</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1547"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1552"/>
         <source>&lt;b&gt;Clear icons database&lt;/b&gt;&lt;p&gt;Clears the database of favicons of previously visited URLs.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1555"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1560"/>
         <source>Manage saved Favicons</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1561"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/>
         <source>Show a dialog to manage the saved favicons</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1563"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1568"/>
         <source>&lt;b&gt;Manage saved Favicons&lt;/b&gt;&lt;p&gt;This shows a dialog to manage the saved favicons of previously visited URLs.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1576"/>
         <source>Configure Search Engines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/>
-        <source>Configure Search &amp;Engines...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1576"/>
+        <source>Configure Search &amp;Engines...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/>
         <source>Configure the available search engines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1578"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1583"/>
         <source>&lt;b&gt;Configure Search Engines...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available search engines.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1592"/>
         <source>Manage Saved Passwords</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1592"/>
         <source>Manage Saved Passwords...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1593"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/>
         <source>Manage the saved passwords</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1595"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1600"/>
         <source>&lt;b&gt;Manage Saved Passwords...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved passwords.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1602"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/>
         <source>Ad Block</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1602"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/>
         <source>&amp;Ad Block...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1608"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1613"/>
         <source>Configure AdBlock subscriptions and rules</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1610"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1615"/>
         <source>&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure AdBlock subscriptions and rules.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1618"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/>
         <source>Manage SSL Certificate Errors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1618"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/>
         <source>Manage SSL Certificate Errors...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1624"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1629"/>
         <source>Manage the accepted SSL certificate Errors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1626"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/>
         <source>&lt;b&gt;Manage SSL Certificate Errors...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the accepted SSL certificate errors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1651"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1656"/>
         <source>Downloads</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1655"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1660"/>
         <source>Shows the downloads window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1657"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1662"/>
         <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>RSS Feeds Dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>&amp;RSS Feeds Dialog...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>Ctrl+Shift+F</source>
         <comment>Help|RSS Feeds Dialog</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1671"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1676"/>
         <source>Open a dialog showing the configured RSS feeds.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1673"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1678"/>
         <source>&lt;b&gt;RSS Feeds Dialog...&lt;/b&gt;&lt;p&gt;Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>Siteinfo Dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>&amp;Siteinfo Dialog...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>Ctrl+Shift+I</source>
         <comment>Help|Siteinfo Dialog</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1688"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1693"/>
         <source>Open a dialog showing some information about the current site.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1690"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1695"/>
         <source>&lt;b&gt;Siteinfo Dialog...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the current site.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1703"/>
         <source>Manage User Agent Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1703"/>
         <source>Manage &amp;User Agent Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1702"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1707"/>
         <source>Shows a dialog to manage the User Agent settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1704"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1709"/>
         <source>&lt;b&gt;Manage User Agent Settings&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the User Agent settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1712"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1717"/>
         <source>Synchronize data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1712"/>
-        <source>&amp;Synchronize Data...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1717"/>
+        <source>&amp;Synchronize Data...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1722"/>
         <source>Shows a dialog to synchronize data via the network</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1719"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1724"/>
         <source>&lt;b&gt;Synchronize Data...&lt;/b&gt;&lt;p&gt;This shows a dialog to synchronize data via the network.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/>
         <source>Manage Saved Zoom Values</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/>
         <source>Manage Saved Zoom Values...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1734"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1739"/>
         <source>Manage the saved zoom values</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1736"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1741"/>
         <source>&lt;b&gt;Manage Saved Zoom Values...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved zoom values.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1747"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1752"/>
         <source>Toggle the JavaScript console window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1749"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1754"/>
         <source>&lt;b&gt;JavaScript Console&lt;/b&gt;&lt;p&gt;This toggles the JavaScript console window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1757"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1762"/>
         <source>Tab Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1761"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1766"/>
         <source>Shows the tab manager window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1763"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1768"/>
         <source>&lt;b&gt;Tab Manager&lt;/b&gt;&lt;p&gt;Shows the tab manager window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1910"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1915"/>
         <source>&amp;File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1942"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1947"/>
         <source>&amp;Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2181"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2186"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1969"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1974"/>
         <source>Text Encoding</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1981"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1986"/>
         <source>H&amp;istory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1998"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2003"/>
         <source>&amp;Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2014"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2019"/>
         <source>&amp;Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2046"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2051"/>
         <source>Global User Agent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2212"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2217"/>
         <source>&amp;Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2087"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2092"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2236"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2241"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2261"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2266"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2274"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2279"/>
         <source>View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2284"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2289"/>
         <source>Find</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2293"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2298"/>
         <source>Filter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2303"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2308"/>
         <source>Filtered by: </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2311"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2316"/>
         <source>Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2323"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2328"/>
         <source>Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2332"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2337"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2339"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2344"/>
         <source>VirusTotal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1785"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1790"/>
         <source>Scan current site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4613"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4626"/>
         <source>IP Address Report</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4623"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4636"/>
         <source>Domain Report</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>&lt;p&gt;Could not start the process.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>OK</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2503"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2508"/>
         <source>HTML Files (*.html *.htm *.mhtml *.mht);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2667"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2672"/>
         <source>Saved Tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3392"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3399"/>
         <source>Could not find an associated content.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3486"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3493"/>
         <source>Updating search index</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3560"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3567"/>
         <source>Looking for Documentation...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3590"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3597"/>
         <source>Unfiltered</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3607"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3614"/>
         <source>Help Engine</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4144"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4151"/>
         <source>ISO</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4155"/>
+        <source>Windows</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4153"/>
+        <source>Unicode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4161"/>
+        <source>Other</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4157"/>
+        <source>IBM</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4591"/>
+        <source>VirusTotal Scan</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4591"/>
+        <source>&lt;p&gt;The VirusTotal scan could not be scheduled.&lt;p&gt;
+&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4617"/>
+        <source>Enter a valid IPv4 address in dotted quad notation:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4626"/>
+        <source>The given IP address is not in dotted quad notation.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4636"/>
+        <source>Enter a valid domain name:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="942"/>
+        <source>Move to the initial screen</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1298"/>
+        <source>Meta+Ctrl+F</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2223"/>
+        <source>&amp;VirusTotal</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2188"/>
+        <source>&amp;Windows</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2086"/>
+        <source>&amp;Toolbars</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2121"/>
+        <source>Save</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2140"/>
+        <source>Show All History...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4186"/>
+        <source>Menu Bar</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4191"/>
+        <source>Bookmarks</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4196"/>
+        <source>Status Bar</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4210"/>
+        <source>&amp;Show all</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4212"/>
+        <source>&amp;Hide all</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="849"/>
+        <source>Send Page Link</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="854"/>
+        <source>Send the link of the current page via email</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="856"/>
+        <source>&lt;b&gt;Send Page Link&lt;/b&gt;&lt;p&gt;Send the link of the current page via email.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1776"/>
+        <source>Session Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1776"/>
+        <source>Session Manager...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1780"/>
+        <source>Shows the session manager window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1782"/>
+        <source>&lt;b&gt;Session Manager&lt;/b&gt;&lt;p&gt;Shows the session manager window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2114"/>
+        <source>Sessions</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2850"/>
+        <source>Are you sure you want to close the web browser?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2850"/>
+        <source>Are you sure you want to close the web browser?
+You have {0} windows with {1} tabs open.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/>
+        <source>Manage Safe Browsing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/>
+        <source>Manage Safe Browsing...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1647"/>
+        <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1645"/>
+        <source>Configure Safe Browsing and manage local cache</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="767"/>
+        <source>&lt;b&gt;Save Page Screen...&lt;/b&gt;&lt;p&gt;Saves the visible part of the current page as a screen shot.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1828"/>
+        <source>Keyboard Shortcuts</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1828"/>
+        <source>Keyboard &amp;Shortcuts...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1834"/>
+        <source>Set the keyboard shortcuts</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1836"/>
+        <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5009"/>
+        <source>Export Keyboard Shortcuts</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1844"/>
+        <source>&amp;Export Keyboard Shortcuts...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1849"/>
+        <source>Export the keyboard shortcuts</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1851"/>
+        <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5025"/>
+        <source>Import Keyboard Shortcuts</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1858"/>
+        <source>&amp;Import Keyboard Shortcuts...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1863"/>
+        <source>Import the keyboard shortcuts</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1865"/>
+        <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1872"/>
+        <source>Protocol Handler Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1872"/>
+        <source>Protocol Handler Manager...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1876"/>
+        <source>Shows the protocol handler manager window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1878"/>
+        <source>&lt;b&gt;Protocol Handler Manager&lt;/b&gt;&lt;p&gt;Shows the protocol handler manager window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="4148"/>
-        <source>Windows</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4146"/>
-        <source>Unicode</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4154"/>
-        <source>Other</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4150"/>
-        <source>IBM</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4578"/>
-        <source>VirusTotal Scan</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4578"/>
-        <source>&lt;p&gt;The VirusTotal scan could not be scheduled.&lt;p&gt;
-&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4604"/>
-        <source>Enter a valid IPv4 address in dotted quad notation:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4613"/>
-        <source>The given IP address is not in dotted quad notation.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4623"/>
-        <source>Enter a valid domain name:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="937"/>
-        <source>Move to the initial screen</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1293"/>
-        <source>Meta+Ctrl+F</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2218"/>
-        <source>&amp;VirusTotal</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2183"/>
-        <source>&amp;Windows</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2081"/>
-        <source>&amp;Toolbars</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2116"/>
-        <source>Save</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2135"/>
-        <source>Show All History...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4179"/>
-        <source>Menu Bar</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4184"/>
-        <source>Bookmarks</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4189"/>
-        <source>Status Bar</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4203"/>
-        <source>&amp;Show all</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4205"/>
-        <source>&amp;Hide all</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="844"/>
-        <source>Send Page Link</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="849"/>
-        <source>Send the link of the current page via email</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="851"/>
-        <source>&lt;b&gt;Send Page Link&lt;/b&gt;&lt;p&gt;Send the link of the current page via email.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1771"/>
-        <source>Session Manager</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1771"/>
-        <source>Session Manager...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1775"/>
-        <source>Shows the session manager window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1777"/>
-        <source>&lt;b&gt;Session Manager&lt;/b&gt;&lt;p&gt;Shows the session manager window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2109"/>
-        <source>Sessions</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2845"/>
-        <source>Are you sure you want to close the web browser?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2845"/>
-        <source>Are you sure you want to close the web browser?
-You have {0} windows with {1} tabs open.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1635"/>
-        <source>Manage Safe Browsing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1635"/>
-        <source>Manage Safe Browsing...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1642"/>
-        <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/>
-        <source>Configure Safe Browsing and manage local cache</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="762"/>
-        <source>&lt;b&gt;Save Page Screen...&lt;/b&gt;&lt;p&gt;Saves the visible part of the current page as a screen shot.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1823"/>
-        <source>Keyboard Shortcuts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1823"/>
-        <source>Keyboard &amp;Shortcuts...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1829"/>
-        <source>Set the keyboard shortcuts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1831"/>
-        <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4991"/>
-        <source>Export Keyboard Shortcuts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1839"/>
-        <source>&amp;Export Keyboard Shortcuts...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1844"/>
-        <source>Export the keyboard shortcuts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1846"/>
-        <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5007"/>
-        <source>Import Keyboard Shortcuts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1853"/>
-        <source>&amp;Import Keyboard Shortcuts...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1858"/>
-        <source>Import the keyboard shortcuts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1860"/>
-        <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1867"/>
-        <source>Protocol Handler Manager</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1867"/>
-        <source>Protocol Handler Manager...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1871"/>
-        <source>Shows the protocol handler manager window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1873"/>
-        <source>&lt;b&gt;Protocol Handler Manager&lt;/b&gt;&lt;p&gt;Shows the protocol handler manager window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4141"/>
         <source>System</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4152"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4159"/>
         <source>Apple</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2189"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2194"/>
         <source>QtHelp</source>
         <translation type="unfinished"></translation>
     </message>
@@ -86100,37 +86100,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3570"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3577"/>
         <source>eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="892"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="897"/>
         <source>Quit the eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="893"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="898"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2544"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2549"/>
         <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chrome {2}.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4972"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4990"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard Shortcuts File (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5009"/>
         <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5007"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5025"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -86480,12 +86480,12 @@
 <context>
     <name>eric6</name>
     <message>
-        <location filename="../eric6.py" line="397"/>
+        <location filename="../eric6.py" line="398"/>
         <source>Starting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../eric6.py" line="402"/>
+        <location filename="../eric6.py" line="403"/>
         <source>Generating Main Window...</source>
         <translation type="unfinished"></translation>
     </message>
--- a/eric6/i18n/eric6_en.ts	Tue Mar 02 19:22:12 2021 +0100
+++ b/eric6/i18n/eric6_en.ts	Tue Mar 02 19:49:43 2021 +0100
@@ -1,6 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.1" language="en">
+<!DOCTYPE TS><TS version="2.0" language="en" sourcelanguage="">
 <context>
     <name>AboutDialog</name>
     <message>
@@ -100,22 +99,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="166"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="167"/>
         <source>Learn more about writing rules...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="159"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="160"/>
         <source>Update Subscription</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="146"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="147"/>
         <source>Browse Subscriptions...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="243"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="244"/>
         <source>Remove Subscription</source>
         <translation type="unfinished"></translation>
     </message>
@@ -130,37 +129,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="139"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="140"/>
         <source>Add Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="142"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="143"/>
         <source>Remove Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="154"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="155"/>
         <source>Disable Subscription</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="156"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="157"/>
         <source>Enable Subscription</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="162"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="163"/>
         <source>Update All Subscriptions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="233"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="234"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt; and all subscriptions requiring it?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="240"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="241"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -259,17 +258,17 @@
 <context>
     <name>AdBlockManager</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="232"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="233"/>
         <source>Custom Rules</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="334"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="335"/>
         <source>Subscribe?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="334"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="335"/>
         <source>&lt;p&gt;Subscribe to this AdBlock subscription?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -277,47 +276,47 @@
 <context>
     <name>AdBlockSubscription</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="291"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="294"/>
         <source>Load subscription rules</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="500"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="503"/>
         <source>Downloading subscription rules</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="397"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="400"/>
         <source>&lt;p&gt;Subscription rules could not be downloaded.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="410"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="413"/>
         <source>Got empty subscription rules.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="523"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="527"/>
         <source>Saving subscription rules</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="291"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="294"/>
         <source>AdBlock file &apos;{0}&apos; does not start with [Adblock.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="500"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="503"/>
         <source>&lt;p&gt;AdBlock subscription &lt;b&gt;{0}&lt;/b&gt; has a wrong checksum.&lt;br/&gt;Found: {1}&lt;br/&gt;Calculated: {2}&lt;br/&gt;Use it anyway?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="281"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="284"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for reading.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="523"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="527"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for writing.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -325,27 +324,27 @@
 <context>
     <name>AdBlockTreeWidget</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="123"/>
         <source>Add Custom Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="123"/>
         <source>Write your rule here:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="164"/>
-        <source>Add Rule</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="166"/>
+        <source>Add Rule</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="168"/>
         <source>Remove Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="219"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="227"/>
         <source>{0} (recently updated)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1119,7 +1118,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MultiProject/AddProjectDialog.py" line="64"/>
+        <location filename="../MultiProject/AddProjectDialog.py" line="65"/>
         <source>Project Properties</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1584,37 +1583,37 @@
 <context>
     <name>BackgroundService</name>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="134"/>
+        <location filename="../Utilities/BackgroundService.py" line="135"/>
         <source>{0} not configured.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="189"/>
+        <location filename="../Utilities/BackgroundService.py" line="190"/>
         <source>Restart background client?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="444"/>
+        <location filename="../Utilities/BackgroundService.py" line="445"/>
         <source>Eric&apos;s background client disconnected because of an unknown reason.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="450"/>
+        <location filename="../Utilities/BackgroundService.py" line="451"/>
         <source>Background client disconnected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="189"/>
+        <location filename="../Utilities/BackgroundService.py" line="190"/>
         <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It&apos;s used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;&apos;Yes&apos;&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Retry&apos;&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;No&apos;&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="450"/>
+        <location filename="../Utilities/BackgroundService.py" line="451"/>
         <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="215"/>
+        <location filename="../Utilities/BackgroundService.py" line="216"/>
         <source>An error in Eric&apos;s background client stopped the service.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1860,7 +1859,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="173"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="174"/>
         <source>&amp;Delete</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1875,62 +1874,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="155"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="156"/>
         <source>&amp;Open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="157"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="158"/>
         <source>Open in New &amp;Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="168"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="169"/>
         <source>Edit &amp;Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="171"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="172"/>
         <source>Edit &amp;Address</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="342"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="355"/>
         <source>New Folder</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="177"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="178"/>
         <source>&amp;Properties...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="162"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="163"/>
         <source>Open in New &amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="164"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="165"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="159"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="160"/>
         <source>Open in New &amp;Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="181"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="182"/>
         <source>New &amp;Folder...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="334"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="347"/>
         <source>New Bookmark Folder</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="334"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="347"/>
         <source>Enter title for new bookmark folder:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2094,7 +2093,7 @@
     </message>
     <message>
         <location filename="../WebBrowser/Bookmarks/BookmarksMenu.py" line="170"/>
-        <source>Open in New Tab	Ctrl+LMB</source>
+        <source>Open in New Tab<byte value="x9"/>Ctrl+LMB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -2163,7 +2162,7 @@
     </message>
     <message>
         <location filename="../WebBrowser/Bookmarks/BookmarksToolBar.py" line="90"/>
-        <source>Open in New Tab	Ctrl+LMB</source>
+        <source>Open in New Tab<byte value="x9"/>Ctrl+LMB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -2233,72 +2232,72 @@
 <context>
     <name>BreakPointViewer</name>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="52"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="54"/>
         <source>Breakpoints</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="192"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="198"/>
         <source>Add</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="159"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="165"/>
         <source>Edit...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="161"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="167"/>
         <source>Enable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="196"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="202"/>
         <source>Enable all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="164"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="170"/>
         <source>Disable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="201"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="207"/>
         <source>Disable all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="168"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="174"/>
         <source>Delete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="206"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="212"/>
         <source>Delete all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="171"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="177"/>
         <source>Goto</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="209"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="215"/>
         <source>Configure...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="194"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="200"/>
         <source>Enable selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="199"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="205"/>
         <source>Disable selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="204"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="210"/>
         <source>Delete selected</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2311,62 +2310,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="282"/>
+        <location filename="../UI/Browser.py" line="284"/>
         <source>Open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="231"/>
+        <location filename="../UI/Browser.py" line="233"/>
         <source>Run unittest...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="314"/>
+        <location filename="../UI/Browser.py" line="316"/>
         <source>Copy Path to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="261"/>
+        <location filename="../UI/Browser.py" line="263"/>
         <source>Open in Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="340"/>
+        <location filename="../UI/Browser.py" line="342"/>
         <source>New toplevel directory...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="296"/>
+        <location filename="../UI/Browser.py" line="298"/>
         <source>Add as toplevel directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="299"/>
+        <location filename="../UI/Browser.py" line="301"/>
         <source>Remove from toplevel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="303"/>
+        <location filename="../UI/Browser.py" line="305"/>
         <source>Refresh directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="307"/>
+        <location filename="../UI/Browser.py" line="309"/>
         <source>Find in this directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="642"/>
+        <location filename="../UI/Browser.py" line="644"/>
         <source>New toplevel directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="326"/>
+        <location filename="../UI/Browser.py" line="328"/>
         <source>Goto</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="433"/>
+        <location filename="../UI/Browser.py" line="435"/>
         <source>Line {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2376,152 +2375,152 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="553"/>
+        <location filename="../UI/Browser.py" line="555"/>
         <source>Show Mime-Type</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="526"/>
+        <location filename="../UI/Browser.py" line="528"/>
         <source>The mime type of the file could not be determined.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="544"/>
+        <location filename="../UI/Browser.py" line="546"/>
         <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="553"/>
+        <location filename="../UI/Browser.py" line="555"/>
         <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt; Shall it be added to the list of text mime types?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="258"/>
+        <location filename="../UI/Browser.py" line="260"/>
         <source>Open in Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="310"/>
+        <location filename="../UI/Browser.py" line="312"/>
         <source>Find &amp;&amp; Replace in this directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="239"/>
+        <location filename="../UI/Browser.py" line="241"/>
         <source>Refresh Source File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="212"/>
+        <location filename="../UI/Browser.py" line="214"/>
         <source>Show Hidden Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="219"/>
-        <source>New</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/Browser.py" line="221"/>
+        <source>New</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/Browser.py" line="223"/>
         <source>Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="224"/>
+        <location filename="../UI/Browser.py" line="226"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="321"/>
+        <location filename="../UI/Browser.py" line="323"/>
         <source>Delete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="879"/>
+        <location filename="../UI/Browser.py" line="881"/>
         <source>New Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="861"/>
+        <location filename="../UI/Browser.py" line="863"/>
         <source>Name for new directory:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="902"/>
+        <location filename="../UI/Browser.py" line="904"/>
         <source>A file or directory named &lt;b&gt;{0}&lt;/b&gt; exists already. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="879"/>
+        <location filename="../UI/Browser.py" line="881"/>
         <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="913"/>
+        <location filename="../UI/Browser.py" line="915"/>
         <source>New File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="894"/>
+        <location filename="../UI/Browser.py" line="896"/>
         <source>Name for new file:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="913"/>
+        <location filename="../UI/Browser.py" line="915"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="942"/>
+        <location filename="../UI/Browser.py" line="944"/>
         <source>Do you really want to move this file to the trash?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="946"/>
+        <location filename="../UI/Browser.py" line="948"/>
         <source>Do you really want to delete this file?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1043"/>
+        <location filename="../UI/Browser.py" line="1045"/>
         <source>Delete File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1043"/>
+        <location filename="../UI/Browser.py" line="1045"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="979"/>
+        <location filename="../UI/Browser.py" line="981"/>
         <source>Do you really want to move this directory to the trash?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="983"/>
+        <location filename="../UI/Browser.py" line="985"/>
         <source>Do you really want to delete this directory?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1000"/>
+        <location filename="../UI/Browser.py" line="1002"/>
         <source>Delete Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1000"/>
+        <location filename="../UI/Browser.py" line="1002"/>
         <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1023"/>
+        <location filename="../UI/Browser.py" line="1025"/>
         <source>Do you really want to move these files to the trash?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1027"/>
+        <location filename="../UI/Browser.py" line="1029"/>
         <source>Do you really want to delete these files?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1032"/>
+        <location filename="../UI/Browser.py" line="1034"/>
         <source>Delete Files</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2534,27 +2533,27 @@
         <translation>Name</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="653"/>
+        <location filename="../UI/BrowserModel.py" line="660"/>
         <source>Coding: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="660"/>
+        <location filename="../UI/BrowserModel.py" line="667"/>
         <source>Globals</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="759"/>
+        <location filename="../UI/BrowserModel.py" line="766"/>
         <source>Attributes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="769"/>
+        <location filename="../UI/BrowserModel.py" line="776"/>
         <source>Class Attributes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="666"/>
+        <location filename="../UI/BrowserModel.py" line="673"/>
         <source>Imports</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2577,40 +2576,40 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="71"/>
+        <location filename="../Debugger/CallStackViewer.py" line="72"/>
         <source>File: {0}
 Line: {1}
 {2}{3}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="73"/>
+        <location filename="../Debugger/CallStackViewer.py" line="74"/>
         <source>File: {0}
 Line: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="202"/>
+        <location filename="../Debugger/CallStackViewer.py" line="203"/>
         <source>Save Call Stack Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="188"/>
+        <location filename="../Debugger/CallStackViewer.py" line="189"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="202"/>
+        <location filename="../Debugger/CallStackViewer.py" line="203"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="224"/>
+        <location filename="../Debugger/CallStackViewer.py" line="225"/>
         <source>Error saving Call Stack Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="224"/>
+        <location filename="../Debugger/CallStackViewer.py" line="225"/>
         <source>&lt;p&gt;The call stack info could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2620,7 +2619,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="213"/>
+        <location filename="../Debugger/CallStackViewer.py" line="214"/>
         <source>Call Stack of &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3215,32 +3214,32 @@
 <context>
     <name>CodeDocumentationViewer</name>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="208"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="211"/>
         <source>Code Info Provider:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="221"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="227"/>
         <source>Select the code info provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="223"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="229"/>
         <source>&lt;disabled&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="404"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="410"/>
         <source>No documentation available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="425"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="431"/>
         <source>No source code documentation provider has been registered. This function has been disabled.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="430"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="436"/>
         <source>This function has been disabled.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3359,32 +3358,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="193"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="205"/>
         <source>files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="195"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="207"/>
         <source>lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="197"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="209"/>
         <source>bytes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="199"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="211"/>
         <source>comments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="203"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="215"/>
         <source>empty lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="205"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="217"/>
         <source>non-commentary lines</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3394,17 +3393,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="201"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="213"/>
         <source>comment lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="52"/>
-        <source>Collapse All</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../DataViews/CodeMetricsDialog.py" line="54"/>
+        <source>Collapse All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="56"/>
         <source>Expand All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3638,7 +3637,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="244"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="246"/>
         <source>Error: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3648,7 +3647,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1037"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1044"/>
         <source>No issues found.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3673,12 +3672,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="963"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="968"/>
         <source>{0} (ignored)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="856"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="861"/>
         <source>Preparing files...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3688,12 +3687,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="217"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="219"/>
         <source>Errors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="895"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="900"/>
         <source>Transferring data...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3798,7 +3797,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1040"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1047"/>
         <source>No files found (check your ignore list).</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4108,12 +4107,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2004"/>
         <source>Commented Code Whitelist Pattern</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2004"/>
         <source>Enter a Commented Code Whitelist Pattern</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4955,7 +4954,7 @@
 <context>
     <name>CondaExecDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="96"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="102"/>
         <source>Conda Execution</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4982,45 +4981,45 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="96"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="102"/>
         <source>The conda executable could not be started. Is it configured correctly?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="103"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="109"/>
         <source>Operation started.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="134"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="143"/>
         <source>Operation finished.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="154"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="163"/>
         <source>Conda command &apos;{0}&apos; did not return success.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="164"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="173"/>
         <source>
 Conda Message: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="203"/>
-        <source>{0} (Size: {1})</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="208"/>
-        <source>Fetching {0} ...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../CondaInterface/CondaExecDialog.py" line="212"/>
+        <source>{0} (Size: {1})</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="217"/>
+        <source>Fetching {0} ...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="221"/>
         <source> Done.
 </source>
         <translation type="unfinished"></translation>
@@ -5029,7 +5028,7 @@
 <context>
     <name>CondaExportDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="209"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="211"/>
         <source>Generate Requirements</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5109,27 +5108,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="209"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="211"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="109"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="111"/>
         <source>The requirements were changed. Do you want to overwrite these changes?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="140"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="142"/>
         <source>No output generated by conda.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="177"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="179"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; already exists. Do you want to overwrite it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="189"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="191"/>
         <source>&lt;p&gt;The requirements could not be written to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5311,7 +5310,7 @@
 <context>
     <name>CondaPackageDetailsDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaPackageDetailsWidget.py" line="91"/>
+        <location filename="../CondaInterface/CondaPackageDetailsWidget.py" line="93"/>
         <source>Package Details</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5512,132 +5511,132 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="123"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="125"/>
         <source>Clean</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="124"/>
-        <source>All</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="126"/>
-        <source>Cache</source>
+        <source>All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="128"/>
+        <source>Cache</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="130"/>
         <source>Lock Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="131"/>
-        <source>Packages</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="133"/>
+        <source>Packages</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="135"/>
         <source>Tarballs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="136"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="138"/>
         <source>About Conda...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="139"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="141"/>
         <source>Update Conda</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="575"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="581"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="144"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="146"/>
         <source>Install Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="147"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="149"/>
         <source>Generate Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="150"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="152"/>
         <source>Create Environment from Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="617"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="623"/>
         <source>Clone Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="662"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="668"/>
         <source>Delete Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="160"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="162"/>
         <source>Edit User Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="164"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="166"/>
         <source>Configure...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="221"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="223"/>
         <source>Getting installed packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="234"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="236"/>
         <source>Getting outdated packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="256"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="260"/>
         <source>{0} (Build: {1})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="397"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="403"/>
         <source>Conda Search Package Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="555"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="561"/>
         <source>Package Specifications (separated by whitespace):</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="575"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="581"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="641"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="647"/>
         <source>Create Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="662"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="668"/>
         <source>&lt;p&gt;Shall the environment &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="687"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="693"/>
         <source>Edit Configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="687"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="693"/>
         <source>The configuration file &quot;{0}&quot; does not exist or is not writable.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5888,23 +5887,23 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="571"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="578"/>
         <source>Preferences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="576"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="584"/>
         <source>Please select an entry of the list 
 to display the configuration page.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="661"/>
         <source>Configuration Page Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
+        <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 type="unfinished"></translation>
     </message>
@@ -6122,17 +6121,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="82"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="87"/>
         <source>Allow</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="91"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="96"/>
         <source>Block</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="100"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="105"/>
         <source>Allow For Session</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6273,7 +6272,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="175"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="176"/>
         <source>&lt;no cookie selected&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6318,37 +6317,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="143"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="144"/>
         <source>Remove All Cookies</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="143"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="144"/>
         <source>Do you really want to remove all stored cookies?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="177"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="178"/>
         <source>Remove Cookies</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="186"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="187"/>
         <source>Secure connections only</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="188"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="189"/>
         <source>All connections</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="190"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="191"/>
         <source>Session Cookie</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="197"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="198"/>
         <source>Remove Cookie</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6634,57 +6633,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="135"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="136"/>
         <source>Create Dialog Code</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="135"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="136"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; exists but does not contain any classes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="225"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="226"/>
         <source>uic error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="216"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="217"/>
         <source>&lt;p&gt;There was an error loading the form &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="578"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="580"/>
         <source>Code Generation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="448"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="449"/>
         <source>&lt;p&gt;Could not open the code template file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="485"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="486"/>
         <source>&lt;p&gt;Could not open the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="578"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="580"/>
         <source>&lt;p&gt;Could not write the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="225"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="226"/>
         <source>&lt;p&gt;The project specific Python interpreter &lt;b&gt;{0}&lt;/b&gt; could not be started or did not finish within 30 seconds.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="401"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="402"/>
         <source>&lt;p&gt;Code generation for project language &quot;{0}&quot; is not supported.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="437"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="438"/>
         <source>&lt;p&gt;No code template file available for project type &quot;{0}&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6727,51 +6726,51 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="865"/>
+        <location filename="../Debugger/DebugServer.py" line="867"/>
         <source>Connection from illegal host</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="865"/>
+        <location filename="../Debugger/DebugServer.py" line="867"/>
         <source>&lt;p&gt;A connection was attempted by the illegal host &lt;b&gt;{0}&lt;/b&gt;. Accept this connection?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1875"/>
+        <location filename="../Debugger/DebugServer.py" line="1877"/>
         <source>
 Not connected
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="2144"/>
+        <location filename="../Debugger/DebugServer.py" line="2146"/>
         <source>Passive debug connection received
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="2158"/>
+        <location filename="../Debugger/DebugServer.py" line="2160"/>
         <source>Passive debug connection closed
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="351"/>
+        <location filename="../Debugger/DebugServer.py" line="353"/>
         <source>Register Debugger Interface</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="351"/>
+        <location filename="../Debugger/DebugServer.py" line="353"/>
         <source>&lt;p&gt;The debugger interface &lt;b&gt;{0}&lt;/b&gt; has already been registered. Ignoring this request.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1601"/>
         <source>Start Debugger</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1601"/>
         <source>&lt;p&gt;The debugger type &lt;b&gt;{0}&lt;/b&gt; is not supported or not configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6779,7 +6778,7 @@
 <context>
     <name>DebugUI</name>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1961"/>
+        <location filename="../Debugger/DebugUI.py" line="1964"/>
         <source>Run Script</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6799,7 +6798,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1973"/>
+        <location filename="../Debugger/DebugUI.py" line="1976"/>
         <source>Run Project</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6809,576 +6808,576 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="220"/>
+        <location filename="../Debugger/DebugUI.py" line="221"/>
         <source>Run the current Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="221"/>
+        <location filename="../Debugger/DebugUI.py" line="222"/>
         <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="231"/>
+        <location filename="../Debugger/DebugUI.py" line="232"/>
         <source>Coverage run of Script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="231"/>
+        <location filename="../Debugger/DebugUI.py" line="232"/>
         <source>Coverage run of Script...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="236"/>
+        <location filename="../Debugger/DebugUI.py" line="237"/>
         <source>Perform a coverage run of the current Script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="238"/>
+        <location filename="../Debugger/DebugUI.py" line="239"/>
         <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="247"/>
+        <location filename="../Debugger/DebugUI.py" line="248"/>
         <source>Coverage run of Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="247"/>
+        <location filename="../Debugger/DebugUI.py" line="248"/>
         <source>Coverage run of Project...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="252"/>
+        <location filename="../Debugger/DebugUI.py" line="253"/>
         <source>Perform a coverage run of the current Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="254"/>
+        <location filename="../Debugger/DebugUI.py" line="255"/>
         <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="264"/>
+        <location filename="../Debugger/DebugUI.py" line="265"/>
         <source>Profile Script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="264"/>
+        <location filename="../Debugger/DebugUI.py" line="265"/>
         <source>Profile Script...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="268"/>
-        <source>Profile the current Script</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="269"/>
+        <source>Profile the current Script</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="270"/>
         <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="277"/>
+        <location filename="../Debugger/DebugUI.py" line="278"/>
         <source>Profile Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="277"/>
+        <location filename="../Debugger/DebugUI.py" line="278"/>
         <source>Profile Project...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="282"/>
+        <location filename="../Debugger/DebugUI.py" line="283"/>
         <source>Profile the current Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="284"/>
+        <location filename="../Debugger/DebugUI.py" line="285"/>
         <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2094"/>
+        <location filename="../Debugger/DebugUI.py" line="2097"/>
         <source>Debug Script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="293"/>
+        <location filename="../Debugger/DebugUI.py" line="294"/>
         <source>&amp;Debug Script...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="298"/>
-        <source>Debug the current Script</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="299"/>
+        <source>Debug the current Script</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="300"/>
         <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2111"/>
+        <location filename="../Debugger/DebugUI.py" line="2114"/>
         <source>Debug Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="309"/>
+        <location filename="../Debugger/DebugUI.py" line="310"/>
         <source>Debug &amp;Project...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="314"/>
-        <source>Debug the current Project</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="316"/>
+        <source>Debug the current Project</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="318"/>
         <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="330"/>
+        <location filename="../Debugger/DebugUI.py" line="332"/>
         <source>Restart the last debugged script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="347"/>
+        <location filename="../Debugger/DebugUI.py" line="349"/>
         <source>Stop the running script.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="357"/>
+        <location filename="../Debugger/DebugUI.py" line="359"/>
         <source>Continue</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="357"/>
+        <location filename="../Debugger/DebugUI.py" line="359"/>
         <source>&amp;Continue</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="362"/>
-        <source>Continue running the program from the current line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="364"/>
+        <source>Continue running the program from the current line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="366"/>
         <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="373"/>
+        <location filename="../Debugger/DebugUI.py" line="375"/>
         <source>Continue to Cursor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="373"/>
+        <location filename="../Debugger/DebugUI.py" line="375"/>
         <source>Continue &amp;To Cursor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="378"/>
-        <source>Continue running the program from the current line to the current cursor position</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="381"/>
+        <source>Continue running the program from the current line to the current cursor position</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="384"/>
         <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="426"/>
+        <location filename="../Debugger/DebugUI.py" line="429"/>
         <source>Single Step</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="426"/>
+        <location filename="../Debugger/DebugUI.py" line="429"/>
         <source>Sin&amp;gle Step</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="431"/>
+        <location filename="../Debugger/DebugUI.py" line="434"/>
         <source>Execute a single Python statement</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="432"/>
+        <location filename="../Debugger/DebugUI.py" line="435"/>
         <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="442"/>
+        <location filename="../Debugger/DebugUI.py" line="445"/>
         <source>Step Over</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="442"/>
+        <location filename="../Debugger/DebugUI.py" line="445"/>
         <source>Step &amp;Over</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="447"/>
-        <source>Execute a single Python statement staying in the current frame</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="450"/>
+        <source>Execute a single Python statement staying in the current frame</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="453"/>
         <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="461"/>
+        <location filename="../Debugger/DebugUI.py" line="464"/>
         <source>Step Out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="461"/>
+        <location filename="../Debugger/DebugUI.py" line="464"/>
         <source>Step Ou&amp;t</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="466"/>
-        <source>Execute Python statements until leaving the current frame</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="469"/>
+        <source>Execute Python statements until leaving the current frame</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="472"/>
         <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="480"/>
+        <location filename="../Debugger/DebugUI.py" line="483"/>
         <source>Stop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="480"/>
+        <location filename="../Debugger/DebugUI.py" line="483"/>
         <source>&amp;Stop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="485"/>
+        <location filename="../Debugger/DebugUI.py" line="488"/>
         <source>Stop debugging</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="486"/>
+        <location filename="../Debugger/DebugUI.py" line="489"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="493"/>
+        <location filename="../Debugger/DebugUI.py" line="496"/>
         <source>Variables Type Filter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="493"/>
+        <location filename="../Debugger/DebugUI.py" line="496"/>
         <source>Varia&amp;bles Type Filter...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="497"/>
+        <location filename="../Debugger/DebugUI.py" line="500"/>
         <source>Configure variables type filter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="499"/>
+        <location filename="../Debugger/DebugUI.py" line="502"/>
         <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="509"/>
+        <location filename="../Debugger/DebugUI.py" line="512"/>
         <source>Exceptions Filter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="509"/>
+        <location filename="../Debugger/DebugUI.py" line="512"/>
         <source>&amp;Exceptions Filter...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="513"/>
+        <location filename="../Debugger/DebugUI.py" line="516"/>
         <source>Configure exceptions filter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="515"/>
+        <location filename="../Debugger/DebugUI.py" line="518"/>
         <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="526"/>
+        <location filename="../Debugger/DebugUI.py" line="529"/>
         <source>Ignored Exceptions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="526"/>
+        <location filename="../Debugger/DebugUI.py" line="529"/>
         <source>&amp;Ignored Exceptions...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="530"/>
+        <location filename="../Debugger/DebugUI.py" line="533"/>
         <source>Configure ignored exceptions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="532"/>
+        <location filename="../Debugger/DebugUI.py" line="535"/>
         <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="551"/>
+        <location filename="../Debugger/DebugUI.py" line="554"/>
         <source>Toggle Breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="545"/>
+        <location filename="../Debugger/DebugUI.py" line="548"/>
         <source>Shift+F11</source>
         <comment>Debug|Toggle Breakpoint</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="552"/>
+        <location filename="../Debugger/DebugUI.py" line="555"/>
         <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="566"/>
+        <location filename="../Debugger/DebugUI.py" line="569"/>
         <source>Edit Breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="560"/>
+        <location filename="../Debugger/DebugUI.py" line="563"/>
         <source>Edit Breakpoint...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="560"/>
+        <location filename="../Debugger/DebugUI.py" line="563"/>
         <source>Shift+F12</source>
         <comment>Debug|Edit Breakpoint</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="567"/>
+        <location filename="../Debugger/DebugUI.py" line="570"/>
         <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="582"/>
+        <location filename="../Debugger/DebugUI.py" line="585"/>
         <source>Next Breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="575"/>
+        <location filename="../Debugger/DebugUI.py" line="578"/>
         <source>Ctrl+Shift+PgDown</source>
         <comment>Debug|Next Breakpoint</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="583"/>
+        <location filename="../Debugger/DebugUI.py" line="586"/>
         <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="597"/>
+        <location filename="../Debugger/DebugUI.py" line="600"/>
         <source>Previous Breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="590"/>
+        <location filename="../Debugger/DebugUI.py" line="593"/>
         <source>Ctrl+Shift+PgUp</source>
         <comment>Debug|Previous Breakpoint</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="598"/>
+        <location filename="../Debugger/DebugUI.py" line="601"/>
         <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="610"/>
+        <location filename="../Debugger/DebugUI.py" line="613"/>
         <source>Clear Breakpoints</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="611"/>
+        <location filename="../Debugger/DebugUI.py" line="614"/>
         <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="637"/>
+        <location filename="../Debugger/DebugUI.py" line="640"/>
         <source>&amp;Debug</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="641"/>
+        <location filename="../Debugger/DebugUI.py" line="644"/>
         <source>&amp;Breakpoints</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="684"/>
+        <location filename="../Debugger/DebugUI.py" line="687"/>
         <source>Start</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="698"/>
+        <location filename="../Debugger/DebugUI.py" line="701"/>
         <source>Debug</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1169"/>
+        <location filename="../Debugger/DebugUI.py" line="1172"/>
         <source>The program being debugged contains an unspecified syntax error.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1188"/>
+        <location filename="../Debugger/DebugUI.py" line="1191"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1212"/>
+        <location filename="../Debugger/DebugUI.py" line="1215"/>
         <source>An unhandled exception occured. See the shell window for details.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1262"/>
+        <location filename="../Debugger/DebugUI.py" line="1265"/>
         <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1277"/>
+        <location filename="../Debugger/DebugUI.py" line="1280"/>
         <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1345"/>
+        <location filename="../Debugger/DebugUI.py" line="1348"/>
         <source>The program being debugged has terminated unexpectedly.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1452"/>
+        <location filename="../Debugger/DebugUI.py" line="1455"/>
         <source>Breakpoint Condition Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1452"/>
+        <location filename="../Debugger/DebugUI.py" line="1455"/>
         <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1491"/>
+        <location filename="../Debugger/DebugUI.py" line="1494"/>
         <source>Watch Expression Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1491"/>
+        <location filename="../Debugger/DebugUI.py" line="1494"/>
         <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1521"/>
+        <location filename="../Debugger/DebugUI.py" line="1524"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; already exists.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1526"/>
+        <location filename="../Debugger/DebugUI.py" line="1529"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1531"/>
+        <location filename="../Debugger/DebugUI.py" line="1534"/>
         <source>Watch expression already exists</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1700"/>
+        <location filename="../Debugger/DebugUI.py" line="1703"/>
         <source>Coverage of Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1687"/>
+        <location filename="../Debugger/DebugUI.py" line="1690"/>
         <source>Coverage of Script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1973"/>
+        <location filename="../Debugger/DebugUI.py" line="1976"/>
         <source>There is no main script defined for the current project. Aborting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1837"/>
+        <location filename="../Debugger/DebugUI.py" line="1840"/>
         <source>Profile of Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1824"/>
+        <location filename="../Debugger/DebugUI.py" line="1827"/>
         <source>Profile of Script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2111"/>
+        <location filename="../Debugger/DebugUI.py" line="2114"/>
         <source>There is no main script defined for the current project. No debugging possible.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1141"/>
+        <location filename="../Debugger/DebugUI.py" line="1144"/>
         <source>Program terminated</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="326"/>
+        <location filename="../Debugger/DebugUI.py" line="328"/>
         <source>Restart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="332"/>
+        <location filename="../Debugger/DebugUI.py" line="334"/>
         <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="348"/>
+        <location filename="../Debugger/DebugUI.py" line="350"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1331"/>
+        <location filename="../Debugger/DebugUI.py" line="1334"/>
         <source>&lt;p&gt;The program generate the signal &quot;{0}&quot;.&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1122"/>
+        <location filename="../Debugger/DebugUI.py" line="1125"/>
         <source>Message: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="406"/>
+        <location filename="../Debugger/DebugUI.py" line="409"/>
         <source>Move Instruction Pointer to Cursor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="406"/>
+        <location filename="../Debugger/DebugUI.py" line="409"/>
         <source>&amp;Jump To Cursor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="411"/>
-        <source>Skip the code from the current line to the current cursor position</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="414"/>
+        <source>Skip the code from the current line to the current cursor position</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="417"/>
         <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It&apos;s not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1409"/>
+        <location filename="../Debugger/DebugUI.py" line="1412"/>
         <source>No locals available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="639"/>
+        <location filename="../Debugger/DebugUI.py" line="642"/>
         <source>Sta&amp;rt</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7388,32 +7387,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="389"/>
+        <location filename="../Debugger/DebugUI.py" line="392"/>
         <source>Continue Until</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="389"/>
+        <location filename="../Debugger/DebugUI.py" line="392"/>
         <source>Continue &amp;Until</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="394"/>
-        <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="397"/>
+        <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="400"/>
         <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1127"/>
+        <location filename="../Debugger/DebugUI.py" line="1130"/>
         <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1131"/>
+        <location filename="../Debugger/DebugUI.py" line="1134"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7805,22 +7804,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="282"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="283"/>
         <source>Add allowed host</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305"/>
         <source>Enter the IP address of an allowed host</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="316"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318"/>
         <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="316"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318"/>
         <source>Edit allowed host</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8131,7 +8130,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/DebuggerPropertiesDialog.py" line="129"/>
+        <location filename="../Project/DebuggerPropertiesDialog.py" line="130"/>
         <source>All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8917,7 +8916,7 @@
 <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="316"/>
         <source>.desktop Wizard</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9242,22 +9241,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>FreeDesktop Standard .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>KDE Plasma MetaData .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>Ubuntu Unity QuickList .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="316"/>
         <source>Only one of &apos;Only Show In&apos; or  &apos;Not Show In&apos; allowed.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9353,32 +9352,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="220"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="223"/>
         <source>Download canceled: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="210"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="213"/>
         <source>Save File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="249"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="252"/>
         <source>Download directory ({0}) couldn&apos;t be created.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="439"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="442"/>
         <source>?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="452"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="455"/>
         <source>{0} of {1} - Stopped</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="193"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="196"/>
         <source>VirusTotal scan scheduled: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9388,7 +9387,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="448"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="451"/>
         <source>{0} downloaded</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9398,7 +9397,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="437"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="440"/>
         <source>{0} of {1} ({2}/sec) {3}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9411,7 +9410,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="168"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="169"/>
         <source>There are %n downloads in progress.
 Do you want to quit anyway?</source>
         <translation>
@@ -9427,67 +9426,67 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="107"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="108"/>
         <source>Open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="111"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="112"/>
         <source>Cancel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="115"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="116"/>
         <source>Open Containing Folder</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="119"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="120"/>
         <source>Go to Download Page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="122"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="123"/>
         <source>Copy Download Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="126"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="127"/>
         <source>Select All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="135"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="136"/>
         <source>Remove From List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="257"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="258"/>
         <source>Suspicuous URL detected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="257"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="258"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="588"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="589"/>
         <source>Download Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="500"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="501"/>
         <source>Downloads finished</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="500"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="501"/>
         <source>All files have been downloaded.</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="622"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="623"/>
         <source>{0}% of %n file(s) ({1}) {2}</source>
         <translation>
             <numerusform>{0}% of one file ({1}) {2}</numerusform>
@@ -9495,7 +9494,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="629"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="630"/>
         <source>{0}% - Download Manager</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9627,27 +9626,27 @@
 <context>
     <name>E5GoogleMail</name>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="159"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="160"/>
         <source>The client secrets file is not present. Has the Gmail API been enabled?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="196"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="197"/>
         <source>OAuth2 Authorization Code</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="196"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="197"/>
         <source>Enter the OAuth2 authorization code:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="240"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="241"/>
         <source>No authorized session available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="258"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="259"/>
         <source>Message #{0} sent.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9655,7 +9654,7 @@
 <context>
     <name>E5GraphicsView</name>
     <message>
-        <location filename="../E5Graphics/E5GraphicsView.py" line="57"/>
+        <location filename="../E5Graphics/E5GraphicsView.py" line="59"/>
         <source>&lt;b&gt;Graphics View&lt;/b&gt;
 &lt;p&gt;This graphics view is used to show a diagram. 
 There are various actions available to manipulate the 
@@ -9674,7 +9673,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Graphics/E5GraphicsView.py" line="415"/>
+        <location filename="../E5Graphics/E5GraphicsView.py" line="417"/>
         <source>{0}, Page {1}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10112,12 +10111,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5NetworkProxyFactory.py" line="227"/>
+        <location filename="../E5Network/E5NetworkProxyFactory.py" line="229"/>
         <source>Proxy Configuration Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5NetworkProxyFactory.py" line="227"/>
+        <location filename="../E5Network/E5NetworkProxyFactory.py" line="229"/>
         <source>Proxy usage was activated but no proxy host for protocol &apos;{0}&apos; configured.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10125,32 +10124,32 @@
 <context>
     <name>E5PathPickerBase</name>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="161"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="162"/>
         <source>Enter Path Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="158"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="159"/>
         <source>Enter Path Names separated by &apos;;&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="499"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="500"/>
         <source>Choose a file to open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="501"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="502"/>
         <source>Choose files to open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="506"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="507"/>
         <source>Choose a file to save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="508"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="509"/>
         <source>Choose a directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10216,32 +10215,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="107"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="117"/>
         <source>Process canceled.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="121"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="134"/>
         <source>Process finished successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="123"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="136"/>
         <source>Process crashed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="125"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="138"/>
         <source>Process finished with exit code {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="179"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="192"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="179"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="192"/>
         <source>&lt;p&gt;The process &lt;b&gt;{0}&lt;/b&gt; could not be started.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10287,12 +10286,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="80"/>
+        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="82"/>
         <source>(Unknown)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="82"/>
+        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="84"/>
         <source>(Unknown common name)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10380,72 +10379,72 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="300"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="305"/>
         <source>(Unknown)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="302"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="307"/>
         <source>(Unknown common name)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="150"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="152"/>
         <source>Delete Server Certificate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="150"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="152"/>
         <source>&lt;p&gt;Shall the server certificate really be deleted?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;&lt;p&gt;If the server certificate is deleted, the normal security checks will be reinstantiated and the server has to present a valid certificate.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="489"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="495"/>
         <source>Import Certificate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="399"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="405"/>
         <source>&lt;p&gt;The certificate &lt;b&gt;{0}&lt;/b&gt; already exists. Skipping.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="354"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="359"/>
         <source>Delete CA Certificate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="354"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="359"/>
         <source>&lt;p&gt;Shall the CA certificate really be deleted?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;&lt;p&gt;If the CA certificate is deleted, the browser will not trust any certificate issued by this CA.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="499"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="505"/>
         <source>Export Certificate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="440"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="446"/>
         <source>Certificate File (PEM) (*.pem);;Certificate File (DER) (*.der)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="456"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="462"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="467"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="473"/>
         <source>&lt;p&gt;The certificate could not be written to file &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="489"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="495"/>
         <source>Certificate Files (*.pem *.crt *.der *.cer *.ca);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="499"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="505"/>
         <source>&lt;p&gt;The certificate could not be read from file &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10541,7 +10540,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesInfoWidget.py" line="151"/>
+        <location filename="../E5Network/E5SslCertificatesInfoWidget.py" line="156"/>
         <source>&lt;not part of the certificate&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10549,42 +10548,42 @@
 <context>
     <name>E5SslErrorHandler</name>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="141"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="142"/>
         <source>SSL Errors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="141"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="142"/>
         <source>&lt;p&gt;SSL Errors for &lt;br /&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Do you want to ignore these errors?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="156"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="157"/>
         <source>Certificates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="156"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="157"/>
         <source>&lt;p&gt;Certificates:&lt;br/&gt;{0}&lt;br/&gt;Do you want to accept all these certificates?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="210"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="212"/>
         <source>Name: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="220"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="223"/>
         <source>&lt;br/&gt;Organization: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="230"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="234"/>
         <source>&lt;br/&gt;Issuer: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="239"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="244"/>
         <source>&lt;br/&gt;Not valid before: {0}&lt;br/&gt;Valid Until: {1}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10592,61 +10591,61 @@
 <context>
     <name>E5SslInfoWidget</name>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="55"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="56"/>
         <source>Identity</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="65"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="66"/>
         <source>Warning: this site is NOT carrying a certificate.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="73"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="74"/>
         <source>The certificate for this site is valid and has been verified by:
 {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="89"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="90"/>
         <source>Certificate Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="104"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="105"/>
         <source>Encryption</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="115"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="116"/>
         <source>Your connection to &quot;{0}&quot; is NOT encrypted.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="124"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="125"/>
         <source>Your connection to &quot;{0}&quot; is encrypted.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="143"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="144"/>
         <source>unknown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="166"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="167"/>
         <source>It uses protocol: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="173"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="174"/>
         <source>It is encrypted using {0} at {1} bits, with {2} for message authentication and {3} as key exchange mechanism.
 
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="80"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="81"/>
         <source>The certificate for this site is NOT valid.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10689,12 +10688,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5StringListEditWidget.py" line="99"/>
+        <location filename="../E5Gui/E5StringListEditWidget.py" line="100"/>
         <source>Add Entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5StringListEditWidget.py" line="99"/>
+        <location filename="../E5Gui/E5StringListEditWidget.py" line="100"/>
         <source>Enter the entry to add to the list:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10712,32 +10711,32 @@
 <context>
     <name>E5TextEditSearchWidget</name>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="81"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="83"/>
         <source>Find:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="104"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="107"/>
         <source>Match case</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="109"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="112"/>
         <source>Whole word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="119"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="122"/>
         <source>Press to find the previous occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="126"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="129"/>
         <source>Press to find the next occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="341"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="347"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10853,42 +10852,42 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="84"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="85"/>
         <source>--Separator--</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="145"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="151"/>
         <source>New Toolbar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="137"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="143"/>
         <source>Toolbar Name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="208"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="214"/>
         <source>A toolbar with the name &lt;b&gt;{0}&lt;/b&gt; already exists.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="170"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="176"/>
         <source>Remove Toolbar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="170"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="176"/>
         <source>Should the toolbar &lt;b&gt;{0}&lt;/b&gt; really be removed?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="208"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="214"/>
         <source>Rename Toolbar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="197"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="203"/>
         <source>New Toolbar Name:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10896,7 +10895,7 @@
 <context>
     <name>E5XmlRpcClient</name>
     <message>
-        <location filename="../E5Network/E5XmlRpcClient.py" line="108"/>
+        <location filename="../E5Network/E5XmlRpcClient.py" line="111"/>
         <source>SSL Error</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10992,7 +10991,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/EditBreakpointDialog.py" line="86"/>
+        <location filename="../Debugger/EditBreakpointDialog.py" line="87"/>
         <source>Add Breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11073,932 +11072,932 @@
 <context>
     <name>Editor</name>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3146"/>
+        <location filename="../QScintilla/Editor.py" line="3153"/>
         <source>Open File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="389"/>
+        <location filename="../QScintilla/Editor.py" line="391"/>
         <source>&lt;p&gt;The size of the file &lt;b&gt;{0}&lt;/b&gt; is &lt;b&gt;{1} KB&lt;/b&gt;. Do you really want to load it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="478"/>
+        <location filename="../QScintilla/Editor.py" line="480"/>
         <source>&lt;b&gt;A Source Editor Window&lt;/b&gt;&lt;p&gt;This window is used to display and edit a source file.  You can open as many of these as you like. The name of the file is displayed in the window&apos;s titlebar.&lt;/p&gt;&lt;p&gt;In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.&lt;/p&gt;&lt;p&gt;In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.&lt;/p&gt;&lt;p&gt;These actions can be reversed via the context menu.&lt;/p&gt;&lt;p&gt;Ctrl clicking on a syntax error marker shows some info about this error.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="795"/>
+        <location filename="../QScintilla/Editor.py" line="797"/>
         <source>Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="798"/>
+        <location filename="../QScintilla/Editor.py" line="800"/>
         <source>Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="801"/>
+        <location filename="../QScintilla/Editor.py" line="803"/>
         <source>Revert to last saved state</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="805"/>
+        <location filename="../QScintilla/Editor.py" line="807"/>
         <source>Cut</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="808"/>
+        <location filename="../QScintilla/Editor.py" line="810"/>
         <source>Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="811"/>
+        <location filename="../QScintilla/Editor.py" line="813"/>
         <source>Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="819"/>
+        <location filename="../QScintilla/Editor.py" line="821"/>
         <source>Indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="822"/>
+        <location filename="../QScintilla/Editor.py" line="824"/>
         <source>Unindent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="825"/>
+        <location filename="../QScintilla/Editor.py" line="827"/>
         <source>Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="828"/>
+        <location filename="../QScintilla/Editor.py" line="830"/>
         <source>Uncomment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="831"/>
+        <location filename="../QScintilla/Editor.py" line="833"/>
         <source>Stream Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="834"/>
+        <location filename="../QScintilla/Editor.py" line="836"/>
         <source>Box Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="842"/>
-        <source>Select to brace</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="844"/>
+        <source>Select to brace</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="846"/>
         <source>Select all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="845"/>
+        <location filename="../QScintilla/Editor.py" line="847"/>
         <source>Deselect all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7935"/>
+        <location filename="../QScintilla/Editor.py" line="7978"/>
         <source>Check spelling...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="853"/>
+        <location filename="../QScintilla/Editor.py" line="855"/>
         <source>Check spelling of selection...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="857"/>
+        <location filename="../QScintilla/Editor.py" line="859"/>
         <source>Remove from dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="863"/>
+        <location filename="../QScintilla/Editor.py" line="865"/>
         <source>Shorten empty lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="870"/>
+        <location filename="../QScintilla/Editor.py" line="872"/>
         <source>Use Monospaced Font</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="875"/>
+        <location filename="../QScintilla/Editor.py" line="877"/>
         <source>Autosave enabled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="879"/>
+        <location filename="../QScintilla/Editor.py" line="881"/>
         <source>Typing aids enabled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="918"/>
+        <location filename="../QScintilla/Editor.py" line="920"/>
         <source>Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="924"/>
+        <location filename="../QScintilla/Editor.py" line="926"/>
         <source>Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="927"/>
+        <location filename="../QScintilla/Editor.py" line="929"/>
         <source>Save As...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="940"/>
+        <location filename="../QScintilla/Editor.py" line="942"/>
         <source>Print Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="943"/>
+        <location filename="../QScintilla/Editor.py" line="945"/>
         <source>Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="972"/>
-        <source>Complete from Document</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="974"/>
-        <source>Complete from APIs</source>
+        <source>Complete from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="976"/>
+        <source>Complete from APIs</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="978"/>
         <source>Complete from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="894"/>
+        <location filename="../QScintilla/Editor.py" line="896"/>
         <source>Calltip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="990"/>
+        <location filename="../QScintilla/Editor.py" line="992"/>
         <source>Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1010"/>
-        <source>Show</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1012"/>
+        <source>Show</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1014"/>
         <source>Code metrics...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1013"/>
-        <source>Code coverage...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1015"/>
+        <source>Code coverage...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1017"/>
         <source>Show code coverage annotations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1018"/>
+        <location filename="../QScintilla/Editor.py" line="1020"/>
         <source>Hide code coverage annotations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1021"/>
+        <location filename="../QScintilla/Editor.py" line="1023"/>
         <source>Profile data...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1034"/>
-        <source>Diagrams</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1036"/>
-        <source>Class Diagram...</source>
+        <source>Diagrams</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1038"/>
-        <source>Package Diagram...</source>
+        <source>Class Diagram...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1040"/>
-        <source>Imports Diagram...</source>
+        <source>Package Diagram...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1042"/>
+        <source>Imports Diagram...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1044"/>
         <source>Application Diagram...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1060"/>
+        <location filename="../QScintilla/Editor.py" line="1062"/>
         <source>Languages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1193"/>
+        <location filename="../QScintilla/Editor.py" line="1195"/>
         <source>No Language</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1089"/>
+        <location filename="../QScintilla/Editor.py" line="1091"/>
         <source>Guessed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
+        <location filename="../QScintilla/Editor.py" line="1431"/>
         <source>Alternatives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1109"/>
+        <location filename="../QScintilla/Editor.py" line="1111"/>
         <source>Encodings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1150"/>
+        <location filename="../QScintilla/Editor.py" line="1152"/>
         <source>End-of-Line Type</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1154"/>
+        <location filename="../QScintilla/Editor.py" line="1156"/>
         <source>Unix</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1161"/>
+        <location filename="../QScintilla/Editor.py" line="1163"/>
         <source>Windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1168"/>
+        <location filename="../QScintilla/Editor.py" line="1170"/>
         <source>Macintosh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1218"/>
+        <location filename="../QScintilla/Editor.py" line="1220"/>
         <source>Export as</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1240"/>
-        <source>Toggle bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1242"/>
-        <source>Next bookmark</source>
+        <source>Toggle bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1244"/>
-        <source>Previous bookmark</source>
+        <source>Next bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1246"/>
+        <source>Previous bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1248"/>
         <source>Clear all bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1255"/>
-        <source>Toggle breakpoint</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1257"/>
+        <source>Toggle breakpoint</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1259"/>
         <source>Toggle temporary breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1260"/>
+        <location filename="../QScintilla/Editor.py" line="1262"/>
         <source>Edit breakpoint...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5656"/>
+        <location filename="../QScintilla/Editor.py" line="5696"/>
         <source>Enable breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1265"/>
-        <source>Next breakpoint</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1267"/>
+        <source>Next breakpoint</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1269"/>
         <source>Previous breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1272"/>
+        <location filename="../QScintilla/Editor.py" line="1274"/>
         <source>Clear all breakpoints</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1320"/>
+        <location filename="../QScintilla/Editor.py" line="1322"/>
         <source>Goto syntax error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1324"/>
+        <location filename="../QScintilla/Editor.py" line="1326"/>
         <source>Show syntax error message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1329"/>
+        <location filename="../QScintilla/Editor.py" line="1331"/>
         <source>Clear syntax error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1334"/>
+        <location filename="../QScintilla/Editor.py" line="1336"/>
         <source>Next warning</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1338"/>
+        <location filename="../QScintilla/Editor.py" line="1340"/>
         <source>Previous warning</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1342"/>
+        <location filename="../QScintilla/Editor.py" line="1344"/>
         <source>Show warning message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1346"/>
+        <location filename="../QScintilla/Editor.py" line="1348"/>
         <source>Clear warnings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1351"/>
+        <location filename="../QScintilla/Editor.py" line="1353"/>
         <source>Next uncovered line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1355"/>
+        <location filename="../QScintilla/Editor.py" line="1357"/>
         <source>Previous uncovered line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1360"/>
+        <location filename="../QScintilla/Editor.py" line="1362"/>
         <source>Next task</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1364"/>
+        <location filename="../QScintilla/Editor.py" line="1366"/>
         <source>Previous task</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1414"/>
+        <location filename="../QScintilla/Editor.py" line="1416"/>
         <source>Export source</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1406"/>
+        <location filename="../QScintilla/Editor.py" line="1408"/>
         <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1414"/>
+        <location filename="../QScintilla/Editor.py" line="1416"/>
         <source>No export format given. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1425"/>
+        <location filename="../QScintilla/Editor.py" line="1427"/>
         <source>Alternatives ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1445"/>
+        <location filename="../QScintilla/Editor.py" line="1447"/>
         <source>Pygments Lexer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1445"/>
+        <location filename="../QScintilla/Editor.py" line="1447"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1989"/>
+        <location filename="../QScintilla/Editor.py" line="1991"/>
         <source>Modification of Read Only file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1989"/>
+        <location filename="../QScintilla/Editor.py" line="1991"/>
         <source>You are attempting to change a read only file. Please save to a different file first.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2711"/>
+        <location filename="../QScintilla/Editor.py" line="2715"/>
         <source>Printing...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2728"/>
+        <location filename="../QScintilla/Editor.py" line="2735"/>
         <source>Printing completed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2730"/>
+        <location filename="../QScintilla/Editor.py" line="2737"/>
         <source>Error while printing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2733"/>
+        <location filename="../QScintilla/Editor.py" line="2740"/>
         <source>Printing aborted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3088"/>
+        <location filename="../QScintilla/Editor.py" line="3095"/>
         <source>File Modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3088"/>
+        <location filename="../QScintilla/Editor.py" line="3095"/>
         <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="../QScintilla/Editor.py" line="3146"/>
+        <location filename="../QScintilla/Editor.py" line="3153"/>
         <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/Editor.py" line="3333"/>
+        <location filename="../QScintilla/Editor.py" line="3340"/>
         <source>Save File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3270"/>
+        <location filename="../QScintilla/Editor.py" line="3277"/>
         <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/Editor.py" line="3333"/>
+        <location filename="../QScintilla/Editor.py" line="3340"/>
         <source>&lt;p&gt;The 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="4811"/>
+        <location filename="../QScintilla/Editor.py" line="4838"/>
         <source>Autocompletion</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4811"/>
+        <location filename="../QScintilla/Editor.py" line="4838"/>
         <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="5659"/>
+        <location filename="../QScintilla/Editor.py" line="5699"/>
         <source>Disable breakpoint</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6034"/>
+        <location filename="../QScintilla/Editor.py" line="6074"/>
         <source>Code Coverage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6034"/>
+        <location filename="../QScintilla/Editor.py" line="6074"/>
         <source>Please select a coverage file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6097"/>
+        <location filename="../QScintilla/Editor.py" line="6137"/>
         <source>Show Code Coverage Annotations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6090"/>
+        <location filename="../QScintilla/Editor.py" line="6130"/>
         <source>All lines have been covered.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6097"/>
+        <location filename="../QScintilla/Editor.py" line="6137"/>
         <source>There is no coverage file available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6214"/>
+        <location filename="../QScintilla/Editor.py" line="6254"/>
         <source>Profile Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6214"/>
+        <location filename="../QScintilla/Editor.py" line="6254"/>
         <source>Please select a profile file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6376"/>
+        <location filename="../QScintilla/Editor.py" line="6416"/>
         <source>Syntax Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6376"/>
+        <location filename="../QScintilla/Editor.py" line="6416"/>
         <source>No syntax error message available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Macro Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Select a macro name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6793"/>
+        <location filename="../QScintilla/Editor.py" line="6833"/>
         <source>Load macro file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6835"/>
+        <location filename="../QScintilla/Editor.py" line="6875"/>
         <source>Macro files (*.macro)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6815"/>
+        <location filename="../QScintilla/Editor.py" line="6855"/>
         <source>Error loading macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6806"/>
+        <location filename="../QScintilla/Editor.py" line="6846"/>
         <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="6815"/>
+        <location filename="../QScintilla/Editor.py" line="6855"/>
         <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="6835"/>
+        <location filename="../QScintilla/Editor.py" line="6875"/>
         <source>Save macro file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6852"/>
+        <location filename="../QScintilla/Editor.py" line="6892"/>
         <source>Save macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6852"/>
+        <location filename="../QScintilla/Editor.py" line="6892"/>
         <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="6867"/>
+        <location filename="../QScintilla/Editor.py" line="6907"/>
         <source>Error saving macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6867"/>
+        <location filename="../QScintilla/Editor.py" line="6907"/>
         <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="6880"/>
+        <location filename="../QScintilla/Editor.py" line="6920"/>
         <source>Start Macro Recording</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6880"/>
+        <location filename="../QScintilla/Editor.py" line="6920"/>
         <source>Macro recording is already active. Start new?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6906"/>
+        <location filename="../QScintilla/Editor.py" line="6946"/>
         <source>Macro Recording</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6906"/>
+        <location filename="../QScintilla/Editor.py" line="6946"/>
         <source>Enter name of the macro:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7076"/>
+        <location filename="../QScintilla/Editor.py" line="7116"/>
         <source>File changed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7267"/>
+        <location filename="../QScintilla/Editor.py" line="7310"/>
         <source>{0} (ro)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7408"/>
+        <location filename="../QScintilla/Editor.py" line="7451"/>
         <source>Drop Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7408"/>
+        <location filename="../QScintilla/Editor.py" line="7451"/>
         <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="7429"/>
+        <location filename="../QScintilla/Editor.py" line="7472"/>
         <source>Resources</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7431"/>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
         <source>Add file...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7433"/>
+        <location filename="../QScintilla/Editor.py" line="7476"/>
         <source>Add files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7435"/>
+        <location filename="../QScintilla/Editor.py" line="7478"/>
         <source>Add aliased file...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7438"/>
+        <location filename="../QScintilla/Editor.py" line="7481"/>
         <source>Add localized resource...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7442"/>
+        <location filename="../QScintilla/Editor.py" line="7485"/>
         <source>Add resource frame</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7461"/>
-        <source>Add file resource</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7477"/>
-        <source>Add file resources</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="7504"/>
+        <source>Add file resource</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7520"/>
+        <source>Add file resources</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7547"/>
         <source>Add aliased file resource</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7504"/>
+        <location filename="../QScintilla/Editor.py" line="7547"/>
         <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7570"/>
+        <location filename="../QScintilla/Editor.py" line="7613"/>
         <source>Package Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7570"/>
+        <location filename="../QScintilla/Editor.py" line="7613"/>
         <source>Include class attributes?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7592"/>
+        <location filename="../QScintilla/Editor.py" line="7635"/>
         <source>Imports Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7592"/>
+        <location filename="../QScintilla/Editor.py" line="7635"/>
         <source>Include imports from external modules?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7606"/>
+        <location filename="../QScintilla/Editor.py" line="7649"/>
         <source>Application Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7606"/>
+        <location filename="../QScintilla/Editor.py" line="7649"/>
         <source>Include module names?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7938"/>
+        <location filename="../QScintilla/Editor.py" line="7981"/>
         <source>Add to dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7940"/>
+        <location filename="../QScintilla/Editor.py" line="7983"/>
         <source>Ignore All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6653"/>
+        <location filename="../QScintilla/Editor.py" line="6693"/>
         <source>Warning: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6660"/>
+        <location filename="../QScintilla/Editor.py" line="6700"/>
         <source>Error: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7072"/>
+        <location filename="../QScintilla/Editor.py" line="7112"/>
         <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="936"/>
+        <location filename="../QScintilla/Editor.py" line="938"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1046"/>
+        <location filename="../QScintilla/Editor.py" line="1048"/>
         <source>Load Diagram...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1369"/>
+        <location filename="../QScintilla/Editor.py" line="1371"/>
         <source>Next change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1373"/>
+        <location filename="../QScintilla/Editor.py" line="1375"/>
         <source>Previous change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8356"/>
+        <location filename="../QScintilla/Editor.py" line="8399"/>
         <source>Sort Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8356"/>
+        <location filename="../QScintilla/Editor.py" line="8399"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6588"/>
+        <location filename="../QScintilla/Editor.py" line="6628"/>
         <source>Warning</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6588"/>
+        <location filename="../QScintilla/Editor.py" line="6628"/>
         <source>No warning messages available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6650"/>
+        <location filename="../QScintilla/Editor.py" line="6690"/>
         <source>Style: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="910"/>
+        <location filename="../QScintilla/Editor.py" line="912"/>
         <source>New Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="913"/>
+        <location filename="../QScintilla/Editor.py" line="915"/>
         <source>New Document View (with new split)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1000"/>
+        <location filename="../QScintilla/Editor.py" line="1002"/>
         <source>Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1131"/>
+        <location filename="../QScintilla/Editor.py" line="1133"/>
         <source>Re-Open With Encoding</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="886"/>
+        <location filename="../QScintilla/Editor.py" line="888"/>
         <source>Automatic Completion enabled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="966"/>
+        <location filename="../QScintilla/Editor.py" line="968"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4943"/>
+        <location filename="../QScintilla/Editor.py" line="4980"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4943"/>
+        <location filename="../QScintilla/Editor.py" line="4980"/>
         <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="5222"/>
+        <location filename="../QScintilla/Editor.py" line="5262"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5222"/>
+        <location filename="../QScintilla/Editor.py" line="5262"/>
         <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="8445"/>
+        <location filename="../QScintilla/Editor.py" line="8488"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8445"/>
+        <location filename="../QScintilla/Editor.py" line="8488"/>
         <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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="930"/>
+        <location filename="../QScintilla/Editor.py" line="932"/>
         <source>Save Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="969"/>
+        <location filename="../QScintilla/Editor.py" line="971"/>
         <source>Clear Completions Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="896"/>
+        <location filename="../QScintilla/Editor.py" line="898"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1377"/>
+        <location filename="../QScintilla/Editor.py" line="1379"/>
         <source>Clear changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="815"/>
+        <location filename="../QScintilla/Editor.py" line="817"/>
         <source>Execute Selection In Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8566"/>
+        <location filename="../QScintilla/Editor.py" line="8609"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8566"/>
+        <location filename="../QScintilla/Editor.py" line="8609"/>
         <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/Editor.py" line="1281"/>
+        <location filename="../QScintilla/Editor.py" line="1283"/>
         <source>Toggle all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1286"/>
+        <location filename="../QScintilla/Editor.py" line="1288"/>
         <source>Toggle all folds (including children)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1291"/>
+        <location filename="../QScintilla/Editor.py" line="1293"/>
         <source>Toggle current fold</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1297"/>
+        <location filename="../QScintilla/Editor.py" line="1299"/>
         <source>Expand (including children)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1302"/>
+        <location filename="../QScintilla/Editor.py" line="1304"/>
         <source>Collapse (including children)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1308"/>
+        <location filename="../QScintilla/Editor.py" line="1310"/>
         <source>Clear all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1189"/>
+        <location filename="../QScintilla/Editor.py" line="1191"/>
         <source>Spell Check Languages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7106"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8760"/>
+        <location filename="../QScintilla/Editor.py" line="8803"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12390,82 +12389,82 @@
 <context>
     <name>EditorButtonsWidget</name>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="174"/>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="176"/>
         <source>Bold</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="176"/>
-        <source>Italic</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="178"/>
+        <source>Italic</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="180"/>
         <source>Strike Through</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="181"/>
-        <source>Header 1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="183"/>
-        <source>Header 2</source>
+        <source>Header 1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="185"/>
-        <source>Header 3</source>
+        <source>Header 2</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="187"/>
+        <source>Header 3</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="189"/>
         <source>Header</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="192"/>
-        <source>Inline Code</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="194"/>
-        <source>Code Block</source>
+        <source>Inline Code</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="196"/>
+        <source>Code Block</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="198"/>
         <source>Quote</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="199"/>
-        <source>Add Hyperlink</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="201"/>
-        <source>Add Horizontal Line</source>
+        <source>Add Hyperlink</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="203"/>
+        <source>Add Horizontal Line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="205"/>
         <source>Add Image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="206"/>
-        <source>Add Bulleted List</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="208"/>
+        <source>Add Bulleted List</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="210"/>
         <source>Add Numbered List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="274"/>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="276"/>
         <source>Level {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -13405,12 +13404,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="243"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="244"/>
         <source>Tab and Indent Override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="243"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="244"/>
         <source>Shall the selected entries really be removed?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -13591,7 +13590,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="426"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="427"/>
         <source>Fill to end of line</source>
         <translation type="unfinished"></translation>
     </message>
@@ -13681,27 +13680,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="424"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="425"/>
         <source>Enabled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="425"/>
-        <source>Disabled</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="426"/>
+        <source>Disabled</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="427"/>
         <source>Select fill to end of line for all styles</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="591"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="592"/>
         <source>Export Highlighting Styles</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="642"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="643"/>
         <source>Import Highlighting Styles</source>
         <translation type="unfinished"></translation>
     </message>
@@ -13746,27 +13745,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="783"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="784"/>
         <source>Delete Sub-Style</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="783"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="784"/>
         <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="823"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="824"/>
         <source>{0} - Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="851"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="852"/>
         <source>Reset Sub-Styles to Default</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="851"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="852"/>
         <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>
@@ -13816,27 +13815,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="548"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="549"/>
         <source>Highlighting Styles File (*.ehj);;XML Highlighting Styles File (*.e6h)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="567"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="568"/>
         <source>&lt;p&gt;The highlighting styles file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="591"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="592"/>
         <source>&lt;p&gt;The highlighting styles 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="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="610"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="611"/>
         <source>Highlighting Styles File (*.ehj);;XML Highlighting Styles File (*.e6h *.e4h)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="642"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="643"/>
         <source>&lt;p&gt;The highlighting styles 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>
@@ -14047,47 +14046,47 @@
 <context>
     <name>EditorOutlineView</name>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="268"/>
+        <location filename="../QScintilla/EditorOutline.py" line="269"/>
         <source>Goto</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="310"/>
+        <location filename="../QScintilla/EditorOutline.py" line="311"/>
         <source>Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="314"/>
+        <location filename="../QScintilla/EditorOutline.py" line="315"/>
         <source>Copy Path to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="319"/>
+        <location filename="../QScintilla/EditorOutline.py" line="320"/>
         <source>Expand All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="323"/>
+        <location filename="../QScintilla/EditorOutline.py" line="324"/>
         <source>Collapse All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="328"/>
+        <location filename="../QScintilla/EditorOutline.py" line="329"/>
         <source>Increment Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="332"/>
+        <location filename="../QScintilla/EditorOutline.py" line="333"/>
         <source>Decrement Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="390"/>
+        <location filename="../QScintilla/EditorOutline.py" line="391"/>
         <source>Line {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="336"/>
+        <location filename="../QScintilla/EditorOutline.py" line="337"/>
         <source>Set Default Width</source>
         <translation type="unfinished"></translation>
     </message>
@@ -15465,32 +15464,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="59"/>
         <source>Word Boundary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="60"/>
-        <source>Character Boundary</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="62"/>
+        <source>Character Boundary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="65"/>
         <source>No Indicator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="64"/>
-        <source>Indicator by Text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="66"/>
-        <source>Indicator by Margin</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="68"/>
+        <source>Indicator by Text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="71"/>
+        <source>Indicator by Margin</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="74"/>
         <source>Indicator in Line Number Margin</source>
         <translation type="unfinished"></translation>
     </message>
@@ -15746,22 +15745,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="72"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="78"/>
         <source>Fixed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="74"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="80"/>
         <source>Aligned</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="76"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="82"/>
         <source>Aligned plus One</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="79"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="85"/>
         <source>Aligned plus Two</source>
         <translation type="unfinished"></translation>
     </message>
@@ -16425,37 +16424,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="133"/>
+        <location filename="../UI/EmailDialog.py" line="134"/>
         <source>Close dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="133"/>
+        <location filename="../UI/EmailDialog.py" line="134"/>
         <source>Do you really want to close the dialog?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="321"/>
+        <location filename="../UI/EmailDialog.py" line="322"/>
         <source>Mail Server Password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="321"/>
+        <location filename="../UI/EmailDialog.py" line="322"/>
         <source>Enter your mail server password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="341"/>
+        <location filename="../UI/EmailDialog.py" line="342"/>
         <source>&lt;p&gt;Authentication failed.&lt;br&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="410"/>
+        <location filename="../UI/EmailDialog.py" line="411"/>
         <source>&lt;p&gt;Message could not be sent.&lt;br&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="423"/>
+        <location filename="../UI/EmailDialog.py" line="424"/>
         <source>Attach file</source>
         <translation type="unfinished"></translation>
     </message>
@@ -16465,22 +16464,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="157"/>
+        <location filename="../UI/EmailDialog.py" line="158"/>
         <source>Gmail API Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="366"/>
+        <location filename="../UI/EmailDialog.py" line="367"/>
         <source>Send Message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="151"/>
+        <location filename="../UI/EmailDialog.py" line="152"/>
         <source>&lt;p&gt;The Google Mail Client API is not installed. Use &lt;code&gt;{0}&lt;/code&gt; to install it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="410"/>
+        <location filename="../UI/EmailDialog.py" line="411"/>
         <source>Send Message via Gmail</source>
         <translation type="unfinished"></translation>
     </message>
@@ -16964,22 +16963,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="82"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="84"/>
         <source>{0} - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="89"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="89"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="128"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="137"/>
         <source>
 {0} finished.
 </source>
@@ -17247,7 +17246,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="62"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="63"/>
         <source>&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot;&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;&lt;html&gt;&lt;head&gt;&lt;title&gt;&lt;/title&gt;&lt;/head&gt;&lt;body style=&quot;background-color:{BodyBgColor};color:{BodyColor}&quot;&gt;&lt;h1 style=&quot;background-color:{Level1HeaderBgColor};color:{Level1HeaderColor}&quot;&gt;Level 1 Header&lt;/h1&gt;&lt;h3 style=&quot;background-color:{Level2HeaderBgColor};color:{Level2HeaderColor}&quot;&gt;Level 2 Header&lt;/h3&gt;&lt;h2 style=&quot;background-color:{CFBgColor};color:{CFColor}&quot;&gt;Class and Function Header&lt;/h2&gt;Standard body text with &lt;a style=&quot;color:{LinkColor}&quot;&gt;some links&lt;/a&gt; embedded.&lt;/body&gt;&lt;/html&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17347,29 +17346,29 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="82"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="84"/>
         <source>{0} - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="89"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="89"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="129"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="138"/>
         <source>
 {0} finished.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="120"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="126"/>
         <source>
 {0} crashed.
 </source>
@@ -17452,17 +17451,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/ErrorLogDialog.py" line="44"/>
+        <location filename="../UI/ErrorLogDialog.py" line="45"/>
         <source>Delete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/ErrorLogDialog.py" line="45"/>
-        <source>Close</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/ErrorLogDialog.py" line="46"/>
+        <source>Close</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/ErrorLogDialog.py" line="47"/>
         <source>Error Log</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17978,22 +17977,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="110"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="111"/>
         <source>Allow</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="111"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="112"/>
         <source>Deny</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="133"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="134"/>
         <source>{0} wants to use an unknown feature.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="108"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="109"/>
         <source>Remember</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18041,27 +18040,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="161"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="165"/>
         <source>Host</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="162"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="166"/>
         <source>Permission</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="68"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="69"/>
         <source>Geolocation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="186"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="191"/>
         <source>Allow</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="187"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="193"/>
         <source>Deny</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18076,32 +18075,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="83"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="85"/>
         <source>Microphone</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="98"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="101"/>
         <source>Camera</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="113"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="117"/>
         <source>Microphone &amp;&amp; Camera</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="129"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="133"/>
         <source>Mouse Lock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="147"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="151"/>
         <source>Desktop Video</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="163"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="167"/>
         <source>Desktop Audio &amp;&amp; Video</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18157,17 +18156,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="86"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="87"/>
         <source>Add RSS Feed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="81"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="82"/>
         <source>The feed was added successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="86"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="87"/>
         <source>The feed was already added before.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18225,67 +18224,67 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="182"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="183"/>
         <source>Duplicate Feed URL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="182"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="183"/>
         <source>A feed with the URL {0} exists already. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="204"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="205"/>
         <source>Delete Feed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="204"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="205"/>
         <source>&lt;p&gt;Do you really want to delete the feed &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="316"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="317"/>
         <source>Error fetching feed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="346"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="347"/>
         <source>&amp;Open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="348"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="349"/>
         <source>Open in New &amp;Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="359"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="360"/>
         <source>&amp;Copy URL to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="366"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="367"/>
         <source>&amp;Show error data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="483"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="490"/>
         <source>Error loading feed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="350"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="351"/>
         <source>Open in New &amp;Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="353"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="354"/>
         <source>Open in New &amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="355"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="356"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18932,42 +18931,42 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="740"/>
+        <location filename="../UI/FindFileDialog.py" line="744"/>
         <source>Replace in Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="450"/>
+        <location filename="../UI/FindFileDialog.py" line="453"/>
         <source>Invalid search expression</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="450"/>
+        <location filename="../UI/FindFileDialog.py" line="453"/>
         <source>&lt;p&gt;The search expression is not valid.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="699"/>
+        <location filename="../UI/FindFileDialog.py" line="703"/>
         <source>&lt;p&gt;Could not read the file &lt;b&gt;{0}&lt;/b&gt;. Skipping it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="740"/>
+        <location filename="../UI/FindFileDialog.py" line="744"/>
         <source>&lt;p&gt;Could not save the file &lt;b&gt;{0}&lt;/b&gt;. Skipping it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="767"/>
+        <location filename="../UI/FindFileDialog.py" line="771"/>
         <source>Open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="768"/>
+        <location filename="../UI/FindFileDialog.py" line="772"/>
         <source>Copy Path to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="714"/>
+        <location filename="../UI/FindFileDialog.py" line="718"/>
         <source>&lt;p&gt;The current and the original hash of the file &lt;b&gt;{0}&lt;/b&gt; are different. Skipping it.&lt;/p&gt;&lt;p&gt;Hash 1: {1}&lt;/p&gt;&lt;p&gt;Hash 2: {2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18977,13 +18976,13 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="573"/>
+        <location filename="../UI/FindFileDialog.py" line="576"/>
         <source>{0} / {1}</source>
         <comment>occurrences / files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../UI/FindFileDialog.py" line="574"/>
+        <location filename="../UI/FindFileDialog.py" line="577"/>
         <source>%n occurrence(s)</source>
         <translation>
             <numerusform>%n occurrence</numerusform>
@@ -18991,7 +18990,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../UI/FindFileDialog.py" line="574"/>
+        <location filename="../UI/FindFileDialog.py" line="577"/>
         <source>%n file(s)</source>
         <translation>
             <numerusform>%n file</numerusform>
@@ -19112,7 +19111,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileNameDialog.py" line="58"/>
+        <location filename="../UI/FindFileNameDialog.py" line="59"/>
         <source>Opens the selected file</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20105,7 +20104,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitArchiveDataDialog.py" line="83"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitArchiveDataDialog.py" line="85"/>
         <source>Select Archive File</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20183,22 +20182,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="52"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="54"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="54"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="56"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="173"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="173"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20319,12 +20318,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20534,7 +20533,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBranchPushDialog.py" line="34"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBranchPushDialog.py" line="35"/>
         <source>&lt;all branches&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20845,7 +20844,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitCopyDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitCopyDialog.py" line="90"/>
         <source>Select target</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20913,12 +20912,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="115"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="115"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20981,37 +20980,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="110"/>
         <source>Process canceled.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="112"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="125"/>
         <source>Process finished successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="127"/>
         <source>Process crashed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="129"/>
         <source>Process finished with exit code {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="182"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="182"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="82"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="88"/>
         <source>Additional Output</source>
         <translation type="unfinished"></translation>
     </message>
@@ -21039,47 +21038,47 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="174"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="174"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="198"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="200"/>
         <source>There is no difference.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="219"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="225"/>
         <source>&lt;Start&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="220"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="226"/>
         <source>&lt;End&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="355"/>
         <source>Save Diff</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="314"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="322"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="331"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="339"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="355"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -21099,37 +21098,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="90"/>
         <source>Working Tree to Staging Area</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="89"/>
-        <source>Staging Area to HEAD Commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="90"/>
-        <source>Working Tree to HEAD Commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="91"/>
-        <source>Working to Staging (top) and Staging to HEAD (bottom)</source>
+        <source>Staging Area to HEAD Commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="92"/>
+        <source>Working Tree to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="93"/>
+        <source>Working to Staging (top) and Staging to HEAD (bottom)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="95"/>
         <source>Stash Contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="96"/>
         <source>Stash Contents of {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="166"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="168"/>
         <source>Difference ({0})</source>
         <translation type="unfinished"></translation>
     </message>
@@ -21308,22 +21307,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="111"/>
         <source>Author</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="112"/>
         <source>Committer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1789"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1807"/>
         <source>Branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="110"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="113"/>
         <source>Subject</source>
         <translation type="unfinished"></translation>
     </message>
@@ -21393,178 +21392,178 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="97"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="96"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="99"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="203"/>
-        <source>Added</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="204"/>
-        <source>Deleted</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="205"/>
-        <source>Modified</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="206"/>
-        <source>Copied</source>
+        <source>Added</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="207"/>
-        <source>Renamed</source>
+        <source>Deleted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="208"/>
-        <source>Type changed</source>
+        <source>Modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="209"/>
+        <source>Copied</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="210"/>
+        <source>Renamed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="211"/>
+        <source>Type changed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="212"/>
         <source>Unmerged</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="256"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="259"/>
         <source>Show Author Columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="258"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="261"/>
         <source>Press to show the author columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="266"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="269"/>
         <source>Show Committer Columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="268"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="271"/>
         <source>Press to show the committer columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="315"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="318"/>
         <source>Copy Commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="317"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="320"/>
         <source>Cherry-pick the selected commits to the current branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="322"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="325"/>
         <source>Tag</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="324"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="327"/>
         <source>Tag the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="328"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="331"/>
         <source>Create a new branch at the selected commit.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="330"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="333"/>
         <source>Branch &amp;&amp; Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="332"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="335"/>
         <source>Create a new branch at the selected commit and switch the work tree to it.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1859"/>
         <source>Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="338"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="341"/>
         <source>Switch the working directory to the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1867"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1885"/>
         <source>Show Short Log</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="344"/>
-        <source>Show a dialog with a log output for release notes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="347"/>
+        <source>Show a dialog with a log output for release notes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="350"/>
         <source>Describe</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="349"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="352"/>
         <source>Show the most recent tag reachable from a commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="634"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="639"/>
         <source>The git process did not finish within 30s.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="637"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="642"/>
         <source>Could not start the git executable.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="640"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="645"/>
         <source>Git Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="756"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="761"/>
         <source>{0} ({1}%)</source>
         <comment>action, confidence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="819"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="827"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="819"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="827"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1721"/>
         <source>Copy Changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1859"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="210"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="213"/>
         <source>Unknown</source>
         <translation type="unfinished"></translation>
     </message>
@@ -21574,17 +21573,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1867"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1885"/>
         <source>Select a branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1820"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1838"/>
         <source>Select a default branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1820"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1838"/>
         <source>Branch &amp; Switch</source>
         <translation type="unfinished"></translation>
     </message>
@@ -21604,37 +21603,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="110"/>
         <source>Commit ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
         <source>Find</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="108"/>
         <source>Filter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="146"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="149"/>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="152"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2049"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2067"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2049"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2067"/>
         <source>Find Commit</source>
         <translation type="unfinished"></translation>
     </message>
@@ -21644,7 +21643,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="111"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="114"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
@@ -21669,7 +21668,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2095"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2113"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
@@ -21679,97 +21678,97 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="131"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit ID&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2} &amp;lt;{3}&amp;gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5} &amp;lt;{6}&amp;gt;&lt;/td&gt;&lt;/tr&gt;{7}&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;{9}&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="140"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="143"/>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="146"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Children&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="152"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="155"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Message&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1262"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1280"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1274"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1292"/>
         <source>&lt;a href=&quot;sbsdiff:{0}_{1}&quot;&gt;Side-by-Side Compare&lt;/a&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2127"/>
         <source>Differences to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2124"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2142"/>
         <source>Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2150"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2168"/>
         <source>There is no difference.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2312"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2330"/>
         <source>Save Diff</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2279"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2297"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2296"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2314"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2312"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2330"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="246"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="249"/>
         <source>Show Commit ID Column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="248"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="251"/>
         <source>Press to show the commit ID column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="276"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="279"/>
         <source>Show Branches Column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="278"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="281"/>
         <source>Press to show the branches column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="286"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="289"/>
         <source>Show Tags Column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="291"/>
         <source>Press to show the Tags column</source>
         <translation type="unfinished"></translation>
     </message>
@@ -21932,12 +21931,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="87"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="88"/>
         <source>Select Repository-Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="102"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="103"/>
         <source>Select Project Directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -22110,7 +22109,7 @@
 <context>
     <name>GitPatchFilesDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="82"/>
         <source>Patch Files</source>
         <translation type="unfinished"></translation>
     </message>
@@ -22165,7 +22164,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="82"/>
         <source>Patch Files (*.diff *.patch);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -22203,12 +22202,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -24233,22 +24232,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="54"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="56"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="56"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="58"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="198"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="198"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -24440,12 +24439,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="144"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="148"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="144"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="148"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -24744,52 +24743,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="60"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="63"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="77"/>
-        <source>Show</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="80"/>
+        <source>Show</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="83"/>
         <source>Restore &amp;&amp; Keep</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="82"/>
-        <source>Restore &amp;&amp; Delete</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="85"/>
-        <source>Create Branch</source>
+        <source>Restore &amp;&amp; Delete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="88"/>
+        <source>Create Branch</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="91"/>
         <source>Delete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="93"/>
         <source>Delete All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="176"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="183"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="176"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="183"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="363"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="377"/>
         <source>%n file(s) changed</source>
         <translation>
             <numerusform>%n file changed</numerusform>
@@ -24797,7 +24796,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="365"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="379"/>
         <source>%n line(s) inserted</source>
         <translation>
             <numerusform>%n line inserted</numerusform>
@@ -24805,7 +24804,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="367"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="381"/>
         <source>%n line(s) deleted</source>
         <translation>
             <numerusform>%n line deleted</numerusform>
@@ -24813,7 +24812,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="62"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="65"/>
         <source>Press to refresh the list of stashes</source>
         <translation type="unfinished"></translation>
     </message>
@@ -24879,7 +24878,7 @@
 <context>
     <name>GitStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="379"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="386"/>
         <source>Git Status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -24900,7 +24899,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="647"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="665"/>
         <source>Commit</source>
         <translation type="unfinished"></translation>
     </message>
@@ -24920,12 +24919,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="188"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="190"/>
         <source>Commit the selected changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="191"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="193"/>
         <source>Amend the latest commit with the selected changes</source>
         <translation type="unfinished"></translation>
     </message>
@@ -24985,192 +24984,192 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="193"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="195"/>
         <source>Select all for commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="202"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="204"/>
         <source>Stage changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="206"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="208"/>
         <source>Unstage changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="233"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="235"/>
         <source>Forget missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="237"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="239"/>
         <source>Restore missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="246"/>
         <source>Edit file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="251"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253"/>
         <source>Adjust column sizes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="163"/>
-        <source>added</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="164"/>
-        <source>copied</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="165"/>
-        <source>deleted</source>
+        <source>added</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="166"/>
-        <source>modified</source>
+        <source>copied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="167"/>
-        <source>renamed</source>
+        <source>deleted</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="168"/>
+        <source>modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="169"/>
+        <source>renamed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="171"/>
         <source>not tracked</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="168"/>
-        <source>unmerged</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="162"/>
-        <source>unmodified</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
+        <source>unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="164"/>
+        <source>unmodified</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="172"/>
         <source>ignored</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="414"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="414"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="581"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="599"/>
         <source>all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="647"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="665"/>
         <source>There are no entries selected to be committed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="688"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="706"/>
         <source>Add</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="688"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="706"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="710"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="728"/>
         <source>Stage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="710"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="728"/>
         <source>There are no stageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="732"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="750"/>
         <source>Unstage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="732"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="750"/>
         <source>There are no unstageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="754"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="772"/>
         <source>Forget Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="795"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="813"/>
         <source>There are no missing entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789"/>
         <source>Revert</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789"/>
         <source>There are no uncommitted, unstaged changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="795"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="813"/>
         <source>Restore Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="824"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="842"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="824"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="842"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="876"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
         <source>Working Tree to Staging Area</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="855"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="873"/>
         <source>Staging Area to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="877"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="895"/>
         <source>Working Tree to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="879"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="897"/>
         <source>Side-by-Side Difference</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="879"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="897"/>
         <source>Select the compare method.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -25185,47 +25184,47 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="102"/>
         <source>Stage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="106"/>
         <source>Revert Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="110"/>
         <source>Stage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="112"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="114"/>
         <source>Revert Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="120"/>
         <source>Unstage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="122"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="124"/>
         <source>Unstage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1188"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1212"/>
         <source>Revert selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1190"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1214"/>
         <source>Revert hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1191"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1215"/>
         <source>Are you sure you want to revert the selected changes?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -25235,67 +25234,67 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="189"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="191"/>
         <source>Amend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="195"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="197"/>
         <source>Unselect all from commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="201"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="203"/>
         <source>Add the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="204"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="206"/>
         <source>Stages all changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="208"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210"/>
         <source>Unstages all changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="215"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="217"/>
         <source>Shows the differences of the selected entry in a separate dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="218"/>
-        <source>Differences Side-By-Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="220"/>
+        <source>Differences Side-By-Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="222"/>
         <source>Shows the differences of the selected entry side-by-side in a separate dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="228"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="230"/>
         <source>Reverts the changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="235"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="237"/>
         <source>Forgets about the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="239"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="241"/>
         <source>Restores the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="246"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="248"/>
         <source>Edit the selected conflicting file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="255"/>
         <source>Adjusts the width of all columns to their contents</source>
         <translation type="unfinished"></translation>
     </message>
@@ -25392,12 +25391,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="103"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="105"/>
         <source>Select Submodule Repository Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="129"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="131"/>
         <source>Select Submodule Directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -25781,12 +25780,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="95"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="97"/>
         <source>Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="95"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="97"/>
         <source>Name</source>
         <translation>Name</translation>
     </message>
@@ -25836,22 +25835,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="92"/>
         <source>Annotation Message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="96"/>
         <source>Git Branches List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="133"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="133"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26436,7 +26435,7 @@
 <context>
     <name>HelpDocsInstaller</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpDocsInstaller.py" line="239"/>
+        <location filename="../WebBrowser/QtHelp/HelpDocsInstaller.py" line="241"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be registered. &lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26587,22 +26586,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="205"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="211"/>
         <source>Open Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="206"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="212"/>
         <source>Open Link in New Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="207"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="213"/>
         <source>Open Link in Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="209"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="215"/>
         <source>Open Link in New Window</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26610,22 +26609,22 @@
 <context>
     <name>HelpSearchWidget</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="145"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="150"/>
         <source>Open Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="146"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="151"/>
         <source>Open Link in New Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="147"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="152"/>
         <source>Open Link in Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="149"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="154"/>
         <source>Open Link in New Window</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26633,22 +26632,22 @@
 <context>
     <name>HelpTocWidget</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="158"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="164"/>
         <source>Open Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="159"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="165"/>
         <source>Open Link in New Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="160"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="166"/>
         <source>Open Link in Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="162"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="168"/>
         <source>Open Link in New Window</source>
         <translation type="unfinished"></translation>
     </message>
@@ -27527,12 +27526,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="798"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="801"/>
         <source>&lt;p&gt;This part of the status bar displays the edit mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="806"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="810"/>
         <source>&lt;p&gt;This part of the status bar displays the read only mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -27542,109 +27541,109 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="790"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="792"/>
         <source>&lt;p&gt;This part of the status bar displays the size of the binary data.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="862"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="867"/>
         <source>ro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="862"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="867"/>
         <source>rw</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="880"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="885"/>
         <source>Overwrite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="880"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="885"/>
         <source>Insert</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="942"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="947"/>
         <source>Open binary file in new window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1061"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1066"/>
         <source>All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="963"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="968"/>
         <source>The loaded file has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="981"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="986"/>
         <source>The file &apos;{0}&apos; does not exist.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="988"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="993"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1014"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1019"/>
         <source>Open binary file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1071"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1076"/>
         <source>Save binary file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1156"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1161"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1181"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1186"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1187"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1192"/>
         <source>File saved</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1156"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1161"/>
         <source>Save to readable file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1140"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1145"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1140"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1145"/>
         <source>Text Files (*.txt)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1223"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1228"/>
         <source>Untitled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1227"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1232"/>
         <source>{0}[*] - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1227"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1232"/>
         <source>Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
@@ -27674,12 +27673,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="782"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="783"/>
         <source>&lt;p&gt;This part of the status bar displays some selection information.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="851"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="856"/>
         <source>Selection: -</source>
         <comment>no selection available</comment>
         <translation type="unfinished"></translation>
@@ -27700,18 +27699,18 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="826"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="831"/>
         <source>Address: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="845"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="850"/>
         <source>Selection: {0} - {1} ({2} Bytes)</source>
         <comment>0: start, 1: end, 2: selection length</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="899"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="904"/>
         <source>Size: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -27721,22 +27720,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1431"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1436"/>
         <source>&amp;Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1181"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1186"/>
         <source>eric Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1284"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1289"/>
         <source>About eric Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1284"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1289"/>
         <source>The eric Hex Editor is a simple editor component to edit binary files.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -28827,7 +28826,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBackoutDialog.py" line="174"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBackoutDialog.py" line="176"/>
         <source>Backed out changeset &lt;{0}&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -28855,7 +28854,7 @@
 <context>
     <name>HgBookmarkDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="46"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="47"/>
         <source>Define Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
@@ -28960,7 +28959,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="43"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="44"/>
         <source>Move Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
@@ -29022,17 +29021,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="46"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="48"/>
         <source>Mercurial Incoming Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="48"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="50"/>
         <source>Mercurial Outgoing Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="121"/>
         <source>no bookmarks found</source>
         <translation type="unfinished"></translation>
     </message>
@@ -29082,7 +29081,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="125"/>
         <source>no bookmarks defined</source>
         <translation type="unfinished"></translation>
     </message>
@@ -29097,67 +29096,67 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="247"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="258"/>
         <source>Switch to</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="251"/>
-        <source>Delete</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="254"/>
-        <source>Rename</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="258"/>
-        <source>Pull</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="262"/>
+        <source>Delete</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="265"/>
+        <source>Rename</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="269"/>
+        <source>Pull</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="273"/>
         <source>Push</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="299"/>
         <source>Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="299"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="318"/>
         <source>Delete Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="318"/>
         <source>&lt;p&gt;Shall the bookmark &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="323"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="334"/>
         <source>Rename Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="323"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="334"/>
         <source>&lt;p&gt;Enter the new name for bookmark &lt;b&gt;{0}&lt;/b&gt;:&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="267"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="278"/>
         <source>Push Current</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="272"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="283"/>
         <source>Push All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -29576,7 +29575,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="173"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="183"/>
         <source>Resolved</source>
         <translation type="unfinished"></translation>
     </message>
@@ -29586,7 +29585,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="171"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="181"/>
         <source>Unresolved</source>
         <translation type="unfinished"></translation>
     </message>
@@ -29616,17 +29615,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="51"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="54"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="53"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="56"/>
         <source>Press to refresh the list of conflicts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="175"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="185"/>
         <source>Unknown Status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -29767,52 +29766,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="101"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="101"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="120"/>
         <source>There is no difference.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="245"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="254"/>
         <source>Save Diff</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="213"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="222"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="230"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="239"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="245"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="254"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="91"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="93"/>
         <source>Patch Contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="137"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="143"/>
         <source>&lt;Start&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="138"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="144"/>
         <source>&lt;End&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -30075,7 +30074,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="218"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="228"/>
         <source>Revision</source>
         <translation type="unfinished"></translation>
     </message>
@@ -30110,7 +30109,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="95"/>
         <source>no signatures found</source>
         <translation type="unfinished"></translation>
     </message>
@@ -30598,17 +30597,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="131"/>
         <source>Revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="129"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="132"/>
         <source>Author</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="130"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="133"/>
         <source>Message</source>
         <translation type="unfinished"></translation>
     </message>
@@ -30683,27 +30682,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="208"/>
         <source>Added</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="206"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="209"/>
         <source>Deleted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="207"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="210"/>
         <source>Modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="190"/>
         <source>All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="842"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="847"/>
         <source>Mercurial Error</source>
         <translation type="unfinished"></translation>
     </message>
@@ -30718,48 +30717,48 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="222"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="225"/>
         <source>Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="117"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="120"/>
         <source>Press to refresh the list of changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="118"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="132"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="135"/>
         <source>Phase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="274"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="277"/>
         <source>Change the phase of the selected revisions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="276"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="279"/>
         <source>&lt;b&gt;Change Phase&lt;/b&gt;
 &lt;p&gt;This changes the phase of the selected revisions. The selected revisions have to have the same current phase.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="272"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="275"/>
         <source>Change Phase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1997"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2016"/>
         <source>Copy Changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2302"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2321"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -30769,42 +30768,42 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="266"/>
         <source>Copy the selected changesets to the current branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="281"/>
-        <source>Tag</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="284"/>
+        <source>Tag</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="287"/>
         <source>Tag the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2068"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2087"/>
         <source>Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="294"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="297"/>
         <source>Switch the working directory to the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="317"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="320"/>
         <source>Pull Large Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="319"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="322"/>
         <source>Pull large files for selected revisions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1135"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1146"/>
         <source>{0} (large file)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -30829,137 +30828,137 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="128"/>
         <source>Find</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="126"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="129"/>
         <source>Filter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="172"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="175"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="178"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2443"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2462"/>
         <source>Find Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2443"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2462"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="134"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="211"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="214"/>
         <source>Draft</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="212"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="215"/>
         <source>Public</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="213"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="216"/>
         <source>Secret</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2165"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2184"/>
         <source>Pull Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="315"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="318"/>
         <source>Pull changes from a remote repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="324"/>
-        <source>Push Selected Changes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="327"/>
-        <source>Push changes of the selected changeset and its ancestors to a remote repository</source>
+        <source>Push Selected Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="330"/>
-        <source>Push All Changes</source>
+        <source>Push changes of the selected changeset and its ancestors to a remote repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="333"/>
+        <source>Push All Changes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="336"/>
         <source>Push all changes to a remote repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2211"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2230"/>
         <source>Strip Changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="376"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="379"/>
         <source>Strip changesets from a repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="299"/>
-        <source>Define Bookmark...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="302"/>
+        <source>Define Bookmark...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="305"/>
         <source>Bookmark the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="304"/>
-        <source>Move Bookmark...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="307"/>
+        <source>Move Bookmark...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="310"/>
         <source>Move bookmark to the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2091"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2110"/>
         <source>Define Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2091"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2110"/>
         <source>Enter bookmark name for changeset &quot;{0}&quot;:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2134"/>
         <source>Move Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2134"/>
         <source>Select the bookmark to be moved  to changeset &quot;{0}&quot;:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2054"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2073"/>
         <source>Select bookmark to switch to (leave empty to use revision):</source>
         <translation type="unfinished"></translation>
     </message>
@@ -30974,143 +30973,143 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="175"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Latest Tag&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="156"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branch&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;{4}&lt;tr&gt;&lt;td&gt;&lt;b&gt;Message&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="163"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="166"/>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="169"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Children&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="266"/>
-        <source>Merge with Changeset</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="269"/>
+        <source>Merge with Changeset</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="272"/>
         <source>Merge the working directory with the selected changeset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="338"/>
-        <source>Create Changegroup</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="341"/>
+        <source>Create Changegroup</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="344"/>
         <source>Create a changegroup file containing the selected changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="343"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="346"/>
         <source>&lt;b&gt;Create Changegroup&lt;/b&gt;
 &lt;p&gt;This creates a changegroup file containing the selected revisions. If no revisions are selected, all changesets will be bundled. If one revision is selected, it will be interpreted as the base revision. Otherwise the lowest revision will be used as the base revision and all other revision will be bundled. If the dialog is showing outgoing changesets, all selected changesets will be bundled.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2302"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2321"/>
         <source>Apply Changegroup</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="355"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="358"/>
         <source>Apply the currently viewed changegroup file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="360"/>
-        <source>Sign Revisions</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="363"/>
+        <source>Sign Revisions</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="366"/>
         <source>Add a signature for the selected revisions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="365"/>
-        <source>Verify Signatures</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="368"/>
+        <source>Verify Signatures</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="371"/>
         <source>Verify all signatures there may be for the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="381"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="384"/>
         <source>Select All Entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="383"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="386"/>
         <source>Deselect All Entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1376"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1392"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1387"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1403"/>
         <source>&lt;a href=&quot;sbsdiff:{0}_{1}&quot;&gt;Side-by-Side Compare&lt;/a&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1523"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1539"/>
         <source>Pull Selected Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2487"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2506"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2497"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2516"/>
         <source>Differences to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2513"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2532"/>
         <source>Diff to Parent {0}{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2538"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2557"/>
         <source>There is no difference.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2680"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2699"/>
         <source>Save Diff</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2648"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2667"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2665"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2684"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2680"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2699"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -31120,7 +31119,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2486"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2505"/>
         <source>Generating differences ...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -31130,12 +31129,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="286"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="289"/>
         <source>Close Heads</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="289"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="292"/>
         <source>Close the selected heads</source>
         <translation type="unfinished"></translation>
     </message>
@@ -33168,22 +33167,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="206"/>
         <source>Remove Guards</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="206"/>
         <source>Do you really want to remove the selected guards?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="253"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="258"/>
         <source>Apply Guard Definitions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="253"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="258"/>
         <source>&lt;p&gt;The defined guards could not be applied.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -33244,7 +33243,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesGuardsSelectionDialog.py" line="44"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesGuardsSelectionDialog.py" line="46"/>
         <source>Active Guards</source>
         <translation type="unfinished"></translation>
     </message>
@@ -33257,7 +33256,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py" line="118"/>
         <source>Error: </source>
         <translation type="unfinished"></translation>
     </message>
@@ -33325,32 +33324,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="138"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="145"/>
         <source>no patches found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="43"/>
-        <source>applied</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="45"/>
-        <source>guarded</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="46"/>
+        <source>applied</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="48"/>
+        <source>guarded</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="49"/>
         <source>missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="193"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="205"/>
         <source>unknown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="44"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="47"/>
         <source>not applied</source>
         <translation type="unfinished"></translation>
     </message>
@@ -33504,12 +33503,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="67"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="68"/>
         <source>Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="69"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="70"/>
         <source>Press to refresh the queues list</source>
         <translation type="unfinished"></translation>
     </message>
@@ -34228,32 +34227,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="49"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="52"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="51"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="54"/>
         <source>Press to refresh the list of shelves</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="60"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="63"/>
         <source>Restore selected shelve</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="62"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="65"/>
         <source>Delete selected shelves</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="64"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="67"/>
         <source>Delete all shelves</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="266"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="280"/>
         <source>%n file(s) changed</source>
         <translation>
             <numerusform>%n file changed</numerusform>
@@ -34261,7 +34260,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="268"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="282"/>
         <source>%n line(s) inserted</source>
         <translation>
             <numerusform>%n line inserted</numerusform>
@@ -34269,7 +34268,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="270"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="284"/>
         <source>%n line(s) deleted</source>
         <translation>
             <numerusform>%n line deleted</numerusform>
@@ -34351,7 +34350,7 @@
 <context>
     <name>HgStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="310"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="314"/>
         <source>Mercurial Status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -34387,82 +34386,82 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="124"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="126"/>
         <source>Commit the selected changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="190"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="192"/>
         <source>Adjust column sizes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="96"/>
         <source>added</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="97"/>
-        <source>modified</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="98"/>
-        <source>removed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="99"/>
-        <source>not tracked</source>
+        <source>modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="100"/>
+        <source>removed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="101"/>
+        <source>not tracked</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="102"/>
         <source>missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="95"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="97"/>
         <source>normal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="96"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="98"/>
         <source>ignored</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="494"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="506"/>
         <source>Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="660"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="672"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="558"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="570"/>
         <source>Add</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="558"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="570"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="581"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="593"/>
         <source>Remove</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="622"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="634"/>
         <source>There are no missing entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="622"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="634"/>
         <source>Revert</source>
         <translation type="unfinished"></translation>
     </message>
@@ -34477,102 +34476,102 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="174"/>
         <source>Restore missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="416"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="428"/>
         <source>all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="640"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="652"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="494"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="506"/>
         <source>There are no entries selected to be committed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="125"/>
-        <source>Select all for commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="307"/>
-        <source>Mercurial Queue Repository Status</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="667"/>
-        <source>Side-by-Side Diff</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="667"/>
-        <source>Only one file with uncommitted changes must be selected.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="135"/>
-        <source>Add as Large Files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="140"/>
-        <source>Add as Normal Files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="168"/>
-        <source>Forget missing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="127"/>
-        <source>Unselect all from commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="134"/>
-        <source>Add the selected files</source>
+        <source>Select all for commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="311"/>
+        <source>Mercurial Queue Repository Status</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="679"/>
+        <source>Side-by-Side Diff</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="679"/>
+        <source>Only one file with uncommitted changes must be selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="137"/>
-        <source>Add the selected files as a large files using the &apos;Large Files&apos; extension</source>
+        <source>Add as Large Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="142"/>
+        <source>Add as Normal Files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="170"/>
+        <source>Forget missing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="129"/>
+        <source>Unselect all from commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="136"/>
+        <source>Add the selected files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="139"/>
+        <source>Add the selected files as a large files using the &apos;Large Files&apos; extension</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="144"/>
         <source>Add the selected files as a normal files using the &apos;Large Files&apos; extension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="150"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="152"/>
         <source>Shows the differences of the selected entry in a separate dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="153"/>
-        <source>Differences Side-By-Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="155"/>
+        <source>Differences Side-By-Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="157"/>
         <source>Shows the differences of the selected entry side-by-side in a separate dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="163"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="165"/>
         <source>Reverts the changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="172"/>
         <source>Forgets about the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
@@ -34582,37 +34581,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="174"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="176"/>
         <source>Restores the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="194"/>
         <source>Adjusts the width of all columns to their contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="179"/>
-        <source>Commit Merge</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="181"/>
-        <source>Commit all the merged changes.</source>
+        <source>Commit Merge</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="183"/>
-        <source>Abort Merge</source>
+        <source>Commit all the merged changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="185"/>
+        <source>Abort Merge</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="187"/>
         <source>Abort an uncommitted merge and lose all changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="761"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="779"/>
         <source>Merge</source>
         <translation type="unfinished"></translation>
     </message>
@@ -34767,152 +34766,152 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="234"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="236"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="238"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="240"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="242"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="244"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Message&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="248"/>
-        <source>empty repository</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="250"/>
+        <source>empty repository</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="252"/>
         <source>no revision checked out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="251"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="253"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Remarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="255"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="257"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branch&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="265"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="270"/>
-        <source>{0} modified</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="272"/>
-        <source>{0} added</source>
+        <source>{0} modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="274"/>
-        <source>{0} removed</source>
+        <source>{0} added</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="276"/>
-        <source>{0} renamed</source>
+        <source>{0} removed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="278"/>
-        <source>{0} copied</source>
+        <source>{0} renamed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="280"/>
-        <source>{0} deleted</source>
+        <source>{0} copied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="282"/>
-        <source>{0} unknown</source>
+        <source>{0} deleted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="284"/>
-        <source>{0} ignored</source>
+        <source>{0} unknown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="286"/>
+        <source>{0} ignored</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="288"/>
         <source>{0} unresolved</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="289"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="291"/>
         <source>{0} subrepos</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="292"/>
-        <source>Merge needed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="294"/>
-        <source>New Branch</source>
+        <source>Merge needed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="296"/>
-        <source>Head is closed</source>
+        <source>New Branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="298"/>
-        <source>No commit required</source>
+        <source>Head is closed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="300"/>
+        <source>No commit required</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="302"/>
         <source>New Branch Head</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="301"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="303"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Status&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="306"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="308"/>
         <source>current</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="321"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="323"/>
         <source>unknown status</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="322"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="324"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Update Status&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="327"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="329"/>
         <source>synched</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="331"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="333"/>
         <source>1 or more incoming changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="335"/>
         <source>%n outgoing changeset(s)</source>
         <translation>
             <numerusform>%n outgoing changeset</numerusform>
@@ -34920,42 +34919,42 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="342"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="344"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Remote Status&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="349"/>
         <source>empty queue</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="351"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="353"/>
         <source>{0} applied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="354"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="356"/>
         <source>{0} unapplied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="357"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="359"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Queues Status&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="371"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="373"/>
         <source>&lt;p&gt;No status information available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="230"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="232"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="308"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="310"/>
         <source>%n new changeset(s)&lt;br/&gt;Update required</source>
         <translation>
             <numerusform>one new changeset&lt;br/&gt;Update required</numerusform>
@@ -34963,7 +34962,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="312"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="314"/>
         <source>%n new changeset(s)</source>
         <translation>
             <numerusform>one new changesets</numerusform>
@@ -34971,7 +34970,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="314"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="316"/>
         <source>%n branch head(s)</source>
         <translation>
             <numerusform>one branch head</numerusform>
@@ -34979,13 +34978,13 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="316"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="318"/>
         <source>{0}&lt;br/&gt;{1}&lt;br/&gt;Merge required</source>
         <comment>0 is changesets, 1 is branch heads</comment>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="336"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="338"/>
         <source>%n incoming bookmark(s)</source>
         <translation>
             <numerusform>one incoming bookmark</numerusform>
@@ -34993,7 +34992,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="339"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="341"/>
         <source>%n outgoing bookmark(s)</source>
         <translation>
             <numerusform>one outgoing bookmark</numerusform>
@@ -35001,12 +35000,12 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="362"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="364"/>
         <source>No files to upload</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="364"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="366"/>
         <source>%n file(s) to upload</source>
         <translation>
             <numerusform>%n file to upload</numerusform>
@@ -35014,7 +35013,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="368"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Large Files&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -35064,72 +35063,72 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="90"/>
         <source>Mercurial Branches List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="91"/>
         <source>Status</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="200"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="211"/>
         <source>active</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="216"/>
         <source>yes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="42"/>
-        <source>&amp;Refresh</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="44"/>
+        <source>&amp;Refresh</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="46"/>
         <source>Press to refresh the list</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="278"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="292"/>
         <source>Switch to</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="347"/>
         <source>Close Branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="321"/>
         <source>Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="321"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="326"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="340"/>
         <source>The branch &quot;default&quot; cannot be closed. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="347"/>
         <source>&lt;p&gt;Shall the branch &lt;b&gt;{0}&lt;/b&gt; really be closed?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="380"/>
         <source>Close Branches</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="380"/>
         <source>Do you really want to close all listed branches?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -35897,7 +35896,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="122"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="123"/>
         <source>&amp;Remove</source>
         <translation type="unfinished"></translation>
     </message>
@@ -35912,32 +35911,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="105"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="106"/>
         <source>&amp;Open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="108"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="109"/>
         <source>Open in New &amp;Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="121"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="122"/>
         <source>&amp;Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="111"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="112"/>
         <source>Open in New &amp;Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="114"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="115"/>
         <source>Open in New &amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="117"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="118"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation type="unfinished"></translation>
     </message>
@@ -36003,12 +36002,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryMenu.py" line="447"/>
+        <location filename="../WebBrowser/History/HistoryMenu.py" line="448"/>
         <source>Restore All Closed Tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryMenu.py" line="450"/>
+        <location filename="../WebBrowser/History/HistoryMenu.py" line="451"/>
         <source>Clear List</source>
         <translation type="unfinished"></translation>
     </message>
@@ -36034,12 +36033,12 @@
 <context>
     <name>HistoryTreeModel</name>
     <message>
-        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="64"/>
+        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="65"/>
         <source>Earlier Today</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="67"/>
+        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="68"/>
         <source>%n item(s)</source>
         <translation>
             <numerusform>one item</numerusform>
@@ -36152,12 +36151,12 @@
 <context>
     <name>IbmWatsonEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="251"/>
+        <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="251"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
         <source>IBM Watson: No translation available.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -36172,12 +36171,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="243"/>
+        <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="231"/>
+        <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>
@@ -36186,102 +36185,102 @@
 <context>
     <name>IconEditorGrid</name>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="208"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="211"/>
         <source>Set Pixel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="209"/>
-        <source>Erase Pixel</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="210"/>
-        <source>Draw Line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="211"/>
-        <source>Draw Rectangle</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="212"/>
-        <source>Draw Filled Rectangle</source>
+        <source>Erase Pixel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="213"/>
-        <source>Draw Circle</source>
+        <source>Draw Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="214"/>
-        <source>Draw Filled Circle</source>
+        <source>Draw Rectangle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="215"/>
-        <source>Draw Ellipse</source>
+        <source>Draw Filled Rectangle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="216"/>
-        <source>Draw Filled Ellipse</source>
+        <source>Draw Circle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="217"/>
+        <source>Draw Filled Circle</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="218"/>
+        <source>Draw Ellipse</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="219"/>
+        <source>Draw Filled Ellipse</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="220"/>
         <source>Fill Region</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="846"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="853"/>
         <source>Cut Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="905"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="912"/>
         <source>Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="905"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="912"/>
         <source>&lt;p&gt;The clipboard image is larger than the current image.&lt;br/&gt;Paste as new image?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="918"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="925"/>
         <source>Paste Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="936"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="943"/>
         <source>Pasting Image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="936"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="943"/>
         <source>Invalid image data in clipboard.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="947"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="954"/>
         <source>Paste Clipboard as New Image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="976"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="983"/>
         <source>Clear Image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="996"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="1003"/>
         <source>Resize Image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="1023"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="1030"/>
         <source>Convert to Grayscale</source>
         <translation type="unfinished"></translation>
     </message>
@@ -36289,57 +36288,57 @@
 <context>
     <name>IconEditorPalette</name>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="48"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="49"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This is a 1:1 preview of the current icon.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="58"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="60"/>
         <source>&lt;b&gt;Current Color&lt;/b&gt;&lt;p&gt;This is the currently selected color used for drawing.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="66"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="69"/>
         <source>&lt;b&gt;Current Color Value&lt;/b&gt;&lt;p&gt;This is the currently selected color value used for drawing.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="73"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="76"/>
         <source>Select Color</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="74"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="77"/>
         <source>&lt;b&gt;Select Color&lt;/b&gt;&lt;p&gt;Select the current drawing color via a color selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="84"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="87"/>
         <source>&lt;b&gt;Select alpha channel value&lt;/b&gt;&lt;p&gt;Select the value for the alpha channel of the current color.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="92"/>
-        <source>Compositing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorPalette.py" line="95"/>
+        <source>Compositing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorPalette.py" line="98"/>
         <source>Replace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="97"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="100"/>
         <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Replace the existing pixel with a new color.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="103"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="106"/>
         <source>Blend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="105"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="108"/>
         <source>&lt;b&gt;Blend&lt;/b&gt;&lt;p&gt;Blend the new color over the existing pixel.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -36347,1090 +36346,1090 @@
 <context>
     <name>IconEditorWindow</name>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="125"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="126"/>
         <source>Windows Bitmap File (*.bmp)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="128"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="129"/>
         <source>Graphic Interchange Format File (*.gif)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="130"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="131"/>
         <source>Windows Icon File (*.ico)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="132"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="133"/>
         <source>JPEG File (*.jpg)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="134"/>
-        <source>Multiple-Image Network Graphics File (*.mng)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="135"/>
-        <source>Portable Bitmap File (*.pbm)</source>
+        <source>Multiple-Image Network Graphics File (*.mng)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="136"/>
-        <source>Paintbrush Bitmap File (*.pcx)</source>
+        <source>Portable Bitmap File (*.pbm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="137"/>
-        <source>Portable Graymap File (*.pgm)</source>
+        <source>Paintbrush Bitmap File (*.pcx)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="138"/>
-        <source>Portable Network Graphics File (*.png)</source>
+        <source>Portable Graymap File (*.pgm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="139"/>
-        <source>Portable Pixmap File (*.ppm)</source>
+        <source>Portable Network Graphics File (*.png)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="140"/>
-        <source>Silicon Graphics Image File (*.sgi)</source>
+        <source>Portable Pixmap File (*.ppm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="141"/>
+        <source>Silicon Graphics Image File (*.sgi)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="142"/>
         <source>Scalable Vector Graphics File (*.svg)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="144"/>
-        <source>Targa Graphic File (*.tga)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="145"/>
+        <source>Targa Graphic File (*.tga)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="146"/>
         <source>TIFF File (*.tif)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="149"/>
-        <source>X11 Bitmap File (*.xbm)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="150"/>
+        <source>X11 Bitmap File (*.xbm)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="151"/>
         <source>X11 Pixmap File (*.xpm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="161"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="162"/>
         <source>All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
         <source>New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
         <source>&amp;New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="199"/>
-        <source>Create a new icon</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="200"/>
+        <source>Create a new icon</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="201"/>
         <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;This creates a new icon.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="207"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="208"/>
         <source>New Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="207"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="208"/>
         <source>New &amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="212"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="213"/>
         <source>Open a new icon editor window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="214"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="215"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new icon editor window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
         <source>Open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
         <source>&amp;Open...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="227"/>
-        <source>Open an icon file for editing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="228"/>
+        <source>Open an icon file for editing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="229"/>
         <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new icon file for editing. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
         <source>Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
         <source>&amp;Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="242"/>
-        <source>Save the current icon</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="243"/>
+        <source>Save the current icon</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="244"/>
         <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of the icon editor window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
         <source>Save As</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
         <source>Save &amp;As...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="256"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="257"/>
         <source>Save the current icon to a new file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="258"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="259"/>
         <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current icon to a new file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
         <source>Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
         <source>&amp;Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="271"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="272"/>
         <source>Close the current icon editor window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="273"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="274"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current icon editor window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="280"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="281"/>
         <source>Close All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="280"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="281"/>
         <source>Close &amp;All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="284"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="285"/>
         <source>Close all icon editor windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="286"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="287"/>
         <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all icon editor windows except the first one.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
         <source>Quit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
         <source>&amp;Quit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="312"/>
-        <source>Quit the icon editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="313"/>
+        <source>Quit the icon editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="314"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the icon editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>&amp;Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="332"/>
-        <source>Undo the last change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="333"/>
+        <source>Undo the last change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="334"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
         <source>Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
         <source>&amp;Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="346"/>
-        <source>Redo the last change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="347"/>
+        <source>Redo the last change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="348"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Cut</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Cu&amp;t</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="361"/>
-        <source>Cut the selection</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="362"/>
+        <source>Cut the selection</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="363"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>&amp;Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="376"/>
-        <source>Copy the selection</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="377"/>
+        <source>Copy the selection</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="378"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>&amp;Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="391"/>
-        <source>Paste the clipboard image</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="392"/>
+        <source>Paste the clipboard image</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="393"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="399"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
         <source>Paste as New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="399"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
         <source>Paste as &amp;New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="403"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="404"/>
         <source>Paste the clipboard image replacing the current one</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="405"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="406"/>
         <source>&lt;b&gt;Paste as New&lt;/b&gt;&lt;p&gt;Paste the clipboard image replacing the current one.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
         <source>Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
         <source>Cl&amp;ear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="419"/>
-        <source>Clear the icon image</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="420"/>
+        <source>Clear the icon image</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="421"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Clear the icon image and set it to be completely transparent.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
         <source>Select All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
         <source>&amp;Select All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="434"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="435"/>
         <source>Select the complete icon image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="436"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="437"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Selects the complete icon image.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="444"/>
         <source>Change Size</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="444"/>
         <source>Change Si&amp;ze...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="449"/>
-        <source>Change the icon size</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="450"/>
+        <source>Change the icon size</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="451"/>
         <source>&lt;b&gt;Change Size...&lt;/b&gt;&lt;p&gt;Changes the icon size.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="457"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="458"/>
         <source>Grayscale</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="457"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="458"/>
         <source>&amp;Grayscale</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="463"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="464"/>
         <source>Change the icon to grayscale</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="465"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="466"/>
         <source>&lt;b&gt;Grayscale&lt;/b&gt;&lt;p&gt;Changes the icon to grayscale.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
         <source>Zoom in</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
         <source>Zoom &amp;in</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="500"/>
-        <source>Zoom in on the icon</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="501"/>
+        <source>Zoom in on the icon</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="502"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the icon. This makes the grid bigger.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
         <source>Zoom out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
         <source>Zoom &amp;out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="514"/>
-        <source>Zoom out on the icon</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="515"/>
+        <source>Zoom out on the icon</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="516"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the icon. This makes the grid smaller.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
         <source>Zoom reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="528"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="529"/>
         <source>Reset the zoom of the icon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="530"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="531"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the icon. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="538"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="539"/>
         <source>Show Grid</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="538"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="539"/>
         <source>Show &amp;Grid</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="544"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="545"/>
         <source>Toggle the display of the grid</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="546"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="547"/>
         <source>&lt;b&gt;Show Grid&lt;/b&gt;&lt;p&gt;Toggle the display of the grid.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="565"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
         <source>Freehand</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="565"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
         <source>&amp;Freehand</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="571"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="572"/>
         <source>&lt;b&gt;Free hand&lt;/b&gt;&lt;p&gt;Draws non linear lines.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="580"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="581"/>
         <source>Color Picker</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="580"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="581"/>
         <source>&amp;Color Picker</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="586"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="587"/>
         <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="597"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
         <source>Rectangle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="597"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
         <source>&amp;Rectangle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="603"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="604"/>
         <source>&lt;b&gt;Rectangle&lt;/b&gt;&lt;p&gt;Draw a rectangle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="612"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="613"/>
         <source>Filled Rectangle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="612"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="613"/>
         <source>F&amp;illed Rectangle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="618"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="619"/>
         <source>&lt;b&gt;Filled Rectangle&lt;/b&gt;&lt;p&gt;Draw a filled rectangle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="628"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
         <source>Circle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="634"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="635"/>
         <source>&lt;b&gt;Circle&lt;/b&gt;&lt;p&gt;Draw a circle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="643"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="644"/>
         <source>Filled Circle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="643"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="644"/>
         <source>Fille&amp;d Circle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="649"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="650"/>
         <source>&lt;b&gt;Filled Circle&lt;/b&gt;&lt;p&gt;Draw a filled circle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="659"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
         <source>Ellipse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="659"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
         <source>&amp;Ellipse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="665"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="666"/>
         <source>&lt;b&gt;Ellipse&lt;/b&gt;&lt;p&gt;Draw an ellipse.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="674"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="675"/>
         <source>Filled Ellipse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="674"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="675"/>
         <source>Fille&amp;d Elli&amp;pse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="680"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="681"/>
         <source>&lt;b&gt;Filled Ellipse&lt;/b&gt;&lt;p&gt;Draw a filled ellipse.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="690"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="691"/>
         <source>Flood Fill</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="690"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="691"/>
         <source>Fl&amp;ood Fill</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="696"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="697"/>
         <source>&lt;b&gt;Flood Fill&lt;/b&gt;&lt;p&gt;Fill adjoining pixels with the same color with the current color.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="706"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
         <source>Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="706"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
         <source>&amp;Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="712"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="713"/>
         <source>&lt;b&gt;Line&lt;/b&gt;&lt;p&gt;Draw a line.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="721"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
         <source>Eraser (Transparent)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="721"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
         <source>Eraser (&amp;Transparent)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="727"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="728"/>
         <source>&lt;b&gt;Eraser (Transparent)&lt;/b&gt;&lt;p&gt;Erase pixels by setting them to transparent.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="736"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="737"/>
         <source>Rectangular Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="753"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="754"/>
         <source>Rect&amp;angular Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="742"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="743"/>
         <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="753"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="754"/>
         <source>Circular Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="759"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="760"/>
         <source>&lt;b&gt;Circular Selection&lt;/b&gt;&lt;p&gt;Select a circular section of the icon using the mouse.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="776"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
         <source>About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="776"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
         <source>&amp;About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="780"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="781"/>
         <source>Display information about this software</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="782"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="783"/>
         <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="../IconEditor/IconEditorWindow.py" line="788"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
         <source>About Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="788"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
         <source>About &amp;Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="792"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="793"/>
         <source>Display information about the Qt toolkit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="794"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="795"/>
         <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="../IconEditor/IconEditorWindow.py" line="801"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="801"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="801"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="807"/>
-        <source>Context sensitive help</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="808"/>
+        <source>Context sensitive help</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="809"/>
         <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="../IconEditor/IconEditorWindow.py" line="825"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="826"/>
         <source>&amp;File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="842"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="843"/>
         <source>&amp;Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="858"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="859"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="866"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="867"/>
         <source>&amp;Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="885"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="886"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="895"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="896"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="909"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="910"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="922"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="923"/>
         <source>View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="927"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="928"/>
         <source>Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="945"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="946"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="959"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="960"/>
         <source>&lt;p&gt;This part of the status bar displays the icon size.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="966"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="967"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1062"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1069"/>
         <source>Open icon file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1112"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1119"/>
         <source>Save icon file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1112"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1119"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1148"/>
-        <source>The file &apos;{0}&apos; does not exist.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="1155"/>
+        <source>The file &apos;{0}&apos; does not exist.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1162"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1189"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1196"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1201"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1208"/>
         <source>Icon saved</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1216"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1223"/>
         <source>Untitled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1227"/>
         <source>{0}[*] - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1227"/>
         <source>Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1241"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1248"/>
         <source>The icon image has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="133"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="134"/>
         <source>JPEG File (*.jpeg)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="142"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="143"/>
         <source>Compressed Scalable Vector Graphics File (*.svgz)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="146"/>
-        <source>TIFF File (*.tiff)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="147"/>
-        <source>WAP Bitmap File (*.wbmp)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="293"/>
-        <source>Close Others</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="297"/>
-        <source>Close all other icon editor windows</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="299"/>
-        <source>&lt;b&gt;Close Others&lt;/b&gt;&lt;p&gt;Closes all other icon editor windows.&lt;/p&gt;</source>
+        <source>TIFF File (*.tiff)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="148"/>
+        <source>WAP Bitmap File (*.wbmp)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="294"/>
+        <source>Close Others</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="298"/>
+        <source>Close all other icon editor windows</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="300"/>
+        <source>&lt;b&gt;Close Others&lt;/b&gt;&lt;p&gt;Closes all other icon editor windows.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="149"/>
         <source>WebP Image File (*.webp)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="126"/>
-        <source>Windows Cursor File (*.cur)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="127"/>
+        <source>Windows Cursor File (*.cur)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="128"/>
         <source>DirectDraw-Surface File (*.dds)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="129"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="130"/>
         <source>Apple Icon File (*.icns)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="131"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="132"/>
         <source>JPEG2000 File (*.jp2)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1241"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1248"/>
         <source>eric Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1331"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1338"/>
         <source>About eric Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1331"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1338"/>
         <source>The eric Icon Editor is a simple editor component to perform icon drawing tasks.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -37700,22 +37699,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="175"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="176"/>
         <source>Include Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="175"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="176"/>
         <source>Select Include Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="388"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="391"/>
         <source>Undefine Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="388"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="391"/>
         <source>Enter a variable name to be undefined:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -38226,52 +38225,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="70"/>
+        <location filename="../UI/InstallInfoDialog.py" line="71"/>
         <source>Yes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="70"/>
+        <location filename="../UI/InstallInfoDialog.py" line="71"/>
         <source>No</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="74"/>
+        <location filename="../UI/InstallInfoDialog.py" line="75"/>
         <source>&apos;eric-ide&apos; was installed from PyPI using the pip command.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="80"/>
+        <location filename="../UI/InstallInfoDialog.py" line="81"/>
         <source>The information shown in this dialog was guessed at the first start of eric.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="98"/>
+        <location filename="../UI/InstallInfoDialog.py" line="99"/>
         <source>Load Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="98"/>
+        <location filename="../UI/InstallInfoDialog.py" line="99"/>
         <source>&lt;p&gt;The file containing the install information could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="150"/>
+        <location filename="../UI/InstallInfoDialog.py" line="151"/>
         <source>Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="150"/>
+        <location filename="../UI/InstallInfoDialog.py" line="151"/>
         <source>The install information was edited. Unsaved changes will be lost. Save first?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="187"/>
+        <location filename="../UI/InstallInfoDialog.py" line="188"/>
         <source>Save Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="187"/>
+        <location filename="../UI/InstallInfoDialog.py" line="188"/>
         <source>&lt;p&gt;The file containing the install information could not be written.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -38281,17 +38280,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="60"/>
+        <location filename="../UI/InstallInfoDialog.py" line="61"/>
         <source>Installed as Administrator:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="62"/>
+        <location filename="../UI/InstallInfoDialog.py" line="63"/>
         <source>Installed with sudo:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="92"/>
+        <location filename="../UI/InstallInfoDialog.py" line="93"/>
         <source>unknown</source>
         <translation type="unfinished"></translation>
     </message>
@@ -38301,7 +38300,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="86"/>
+        <location filename="../UI/InstallInfoDialog.py" line="87"/>
         <source>The installation information was provided by the user.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -38311,22 +38310,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="254"/>
+        <location filename="../UI/InstallInfoDialog.py" line="255"/>
         <source>Upgrade Instructions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="200"/>
+        <location filename="../UI/InstallInfoDialog.py" line="201"/>
         <source>Delete Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="200"/>
+        <location filename="../UI/InstallInfoDialog.py" line="201"/>
         <source>Do you really want to delete the installation information? It will be recreated at the next start.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="227"/>
+        <location filename="../UI/InstallInfoDialog.py" line="228"/>
         <source>Perform the following step(s) with Administrator privileges.
 </source>
         <translation type="unfinished"></translation>
@@ -39464,62 +39463,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="189"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="191"/>
         <source>Edit Identity</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="172"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="174"/>
         <source>The identity must contain at least one nick name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="189"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="191"/>
         <source>The identity must have a real name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="237"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="239"/>
         <source>Add Identity</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="287"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="289"/>
         <source>Identity Name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="297"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="299"/>
         <source>An identity named &lt;b&gt;{0}&lt;/b&gt; already exists. You must provide a different name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="312"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="314"/>
         <source>The identity has to have a name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="312"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="314"/>
         <source>Copy Identity</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="297"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="299"/>
         <source>Rename Identity</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="336"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="338"/>
         <source>This identity is in use. If you remove it, the network settings using it will fall back to the default identity. Should it be deleted anyway?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="341"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="343"/>
         <source>Do you really want to delete all information for this identity?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="344"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="346"/>
         <source>Delete Identity</source>
         <translation type="unfinished"></translation>
     </message>
@@ -39529,12 +39528,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="477"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="480"/>
         <source>Press to show the password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="471"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="474"/>
         <source>Press to hide the password</source>
         <translation type="unfinished"></translation>
     </message>
@@ -39635,22 +39634,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="254"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="258"/>
         <source>Yes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="256"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="260"/>
         <source>No</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="185"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="189"/>
         <source>Delete Channel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="185"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="189"/>
         <source>Do you really want to delete channel &lt;b&gt;{0}&lt;/b&gt;?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -39766,7 +39765,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="346"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="348"/>
         <source>Press to connect to the selected network</source>
         <translation type="unfinished"></translation>
     </message>
@@ -39796,57 +39795,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="434"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="436"/>
         <source>Save Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="417"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="419"/>
         <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="434"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="436"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="452"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="454"/>
         <source>Error saving Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="452"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="454"/>
         <source>&lt;p&gt;The messages contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="465"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="467"/>
         <source>Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="469"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="471"/>
         <source>Cut all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="472"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="474"/>
         <source>Copy all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="476"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="478"/>
         <source>Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="480"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="482"/>
         <source>Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="341"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="343"/>
         <source>Press to disconnect from the network</source>
         <translation type="unfinished"></translation>
     </message>
@@ -40291,253 +40290,253 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="244"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="245"/>
         <source>Disconnect from Server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="244"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="245"/>
         <source>&lt;p&gt;Do you really want to disconnect from &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;&lt;p&gt;All channels will be closed.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="186"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="187"/>
         <source>SSL Connection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="186"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="187"/>
         <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="564"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="565"/>
         <source>Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="219"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="220"/>
         <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="230"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="231"/>
         <source>Looking for server {0} (port {1})...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="253"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="254"/>
         <source>Disconnecting from server {0}...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="519"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="520"/>
         <source>Server found,connecting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="528"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="529"/>
         <source>Connected,logging in...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="564"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="565"/>
         <source>Server disconnected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="611"/>
         <source>Message Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="611"/>
         <source>Unknown message received from server:&lt;br/&gt;{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="676"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="677"/>
         <source>Notice</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="694"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="695"/>
         <source>Mode</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="701"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="702"/>
         <source>You have left channel {0}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="712"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="713"/>
         <source>You are now known as {0}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="717"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="718"/>
         <source>User {0} is now known as {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="727"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="728"/>
         <source>Server Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="763"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="764"/>
         <source>Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="778"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="779"/>
         <source>Welcome</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="780"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="781"/>
         <source>Support</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="782"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="783"/>
         <source>User</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="784"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="785"/>
         <source>MOTD</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="786"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="787"/>
         <source>Away</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="788"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="789"/>
         <source>Info ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="792"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="793"/>
         <source>Message of the day</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="794"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="795"/>
         <source>End of message of the day</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="797"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="798"/>
         <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="803"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="804"/>
         <source>Current users on {0}: {1}, max. {2}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="808"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="809"/>
         <source>Current users on the network: {0}, max. {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="812"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="813"/>
         <source>You are no longer marked as being away.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="814"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="815"/>
         <source>You have been marked as being away.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="934"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
         <source>SSL Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="876"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="877"/>
         <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="907"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
         <source>Socket Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="884"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="885"/>
         <source>The host was not found. Please check the host name and port settings.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="890"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="891"/>
         <source>The connection was refused by the peer. Please check the host name and port settings.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="901"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="902"/>
         <source>The following network error occurred:&lt;br/&gt;{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1030"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1031"/>
         <source>{0} ({1})</source>
         <comment>channel name, users count</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1071"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1072"/>
         <source>Critical</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1052"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1053"/>
         <source>No nickname acceptable to the server configured for &lt;b&gt;{0}&lt;/b&gt;. Disconnecting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1071"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1072"/>
         <source>The given nickname is already in use.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1015"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1016"/>
         <source>CTCP</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="992"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="993"/>
         <source>Received Version request from {0}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="998"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="999"/>
         <source>Received CTCP-PING request from {0}, sending answer.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1006"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1007"/>
         <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1015"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1016"/>
         <source>Received unknown CTCP-{0} request from {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="687"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="688"/>
         <source>You have set your personal modes to &lt;b&gt;[{0}]&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="691"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="692"/>
         <source>{0} has changed your personal modes to &lt;b&gt;[{1}]&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -40552,47 +40551,47 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="896"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="897"/>
         <source>The SSL handshake failed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="907"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
         <source>A network error occurred.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="920"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="921"/>
         <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="934"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
         <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="258"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="259"/>
         <source>Disconnecting from network {0}...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="263"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="264"/>
         <source>Disconnecting from server.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="643"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="644"/>
         <source>Received CTCP-PING response from {0} with latency of {1} ms.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="649"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="650"/>
         <source>Received unknown CTCP-{0} response from {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="723"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="724"/>
         <source>Received PONG from {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -42738,57 +42737,57 @@
 <context>
     <name>Listspace</name>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="257"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="258"/>
         <source>Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="264"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="265"/>
         <source>Close All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="267"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="268"/>
         <source>Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="270"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="271"/>
         <source>Save As...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="273"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="274"/>
         <source>Save All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="281"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="282"/>
         <source>Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="440"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="441"/>
         <source>Untitled {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="581"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="582"/>
         <source>{0} (ro)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="277"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="278"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="285"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="286"/>
         <source>Copy Path to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="260"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="261"/>
         <source>Close Others</source>
         <translation type="unfinished"></translation>
     </message>
@@ -43010,67 +43009,67 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="57"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="58"/>
         <source>Uninstall Selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="60"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="62"/>
         <source>Cancel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="177"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="180"/>
         <source>Error downloading dictionaries list</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="177"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="180"/>
         <source>&lt;p&gt;Could not download the dictionaries list from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="200"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="203"/>
         <source>Dictionaries URL Changed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="200"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="203"/>
         <source>The URL of the spell check dictionaries has changed. Select the &quot;Refresh&quot; button to get the new dictionaries list.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="212"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="215"/>
         <source>Error installing dictionaries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="212"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="215"/>
         <source>&lt;p&gt;None of the dictionary locations is writable by you. Please download required dictionaries manually and install them as administrator.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="263"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="266"/>
         <source>{0} ({1})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="372"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="376"/>
         <source>Error downloading dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="357"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="361"/>
         <source>&lt;p&gt;Could not download the requested dictionary file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="357"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="361"/>
         <source>Error downloading dictionary file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="372"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="376"/>
         <source>&lt;p&gt;The downloaded dictionary archive is invalid. Skipping it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -43141,22 +43140,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="50"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="51"/>
         <source>Wrong password entered.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="54"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="55"/>
         <source>New password must not be empty.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="61"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="62"/>
         <source>Repeated password is wrong.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="66"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="67"/>
         <source>Old and new password must not be the same.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -43640,7 +43639,7 @@
 <context>
     <name>MicroPythonCommandsInterface</name>
     <message>
-        <location filename="../MicroPython/MicroPythonCommandsInterface.py" line="284"/>
+        <location filename="../MicroPython/MicroPythonCommandsInterface.py" line="285"/>
         <source>Detected an error without indications.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -43972,22 +43971,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="72"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="73"/>
         <source>max. X:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="81"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="83"/>
         <source>Enter the maximum number of data points to be plotted.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="330"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="332"/>
         <source>Save Chart Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="330"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="332"/>
         <source>&lt;p&gt;The chart data could not be saved into file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -44070,7 +44069,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="69"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="77"/>
         <source>All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -44140,37 +44139,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="48"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="49"/>
         <source>Dark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="50"/>
-        <source>Blue Cerulean</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="52"/>
+        <source>Blue Cerulean</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="55"/>
         <source>Brown Sand</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="54"/>
-        <source>Blue NCS</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="56"/>
-        <source>High Contrast</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="58"/>
+        <source>Blue NCS</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="61"/>
+        <source>High Contrast</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="64"/>
         <source>Blue Icy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="60"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="67"/>
         <source>Qt</source>
         <translation type="unfinished"></translation>
     </message>
@@ -44311,17 +44310,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="562"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="566"/>
         <source>Press to connect the selected device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="276"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="278"/>
         <source>&lt;h3&gt;The QtSerialPort package is not available.&lt;br/&gt;MicroPython support is deactivated.&lt;/h3&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../MicroPython/MicroPythonWidget.py" line="318"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="320"/>
         <source>%n supported device(s) detected.</source>
         <translation>
             <numerusform>%n supported device detected.</numerusform>
@@ -44329,37 +44328,37 @@
         </translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="340"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="342"/>
         <source>No supported devices detected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="532"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="536"/>
         <source>Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="534"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="538"/>
         <source>Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="535"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="539"/>
         <source>Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="557"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="561"/>
         <source>Press to disconnect the current device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="578"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="582"/>
         <source>No device attached</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="578"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="582"/>
         <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -44368,212 +44367,212 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="605"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="609"/>
         <source>Start REPL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="605"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="609"/>
         <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1054"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1068"/>
         <source>Serial Device Connect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1054"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1068"/>
         <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1099"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1113"/>
         <source>Run Script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1082"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1096"/>
         <source>There is no editor open. Abort...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1090"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1104"/>
         <source>The current editor does not contain a script. Abort...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1099"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1113"/>
         <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1123"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1137"/>
         <source>Open Python File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1123"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1137"/>
         <source>Python3 Files (*.py);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1168"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1182"/>
         <source>Start Chart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1168"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1182"/>
         <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1197"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1211"/>
         <source>Unsaved Chart Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1197"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1211"/>
         <source>The chart contains unsaved data.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1248"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1262"/>
         <source>Start File Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1248"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1262"/>
         <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1322"/>
-        <source>Show Version</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1325"/>
-        <source>Show Implementation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1452"/>
-        <source>Synchronize Time</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1333"/>
-        <source>Show Device Time</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../MicroPython/MicroPythonWidget.py" line="1336"/>
+        <source>Show Version</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1339"/>
+        <source>Show Implementation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1466"/>
+        <source>Synchronize Time</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1347"/>
+        <source>Show Device Time</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1350"/>
         <source>Show Local Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1673"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1687"/>
         <source>Compile Python File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1693"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1707"/>
         <source>Compile Current Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1388"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1402"/>
         <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1397"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1411"/>
         <source>No version information available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1399"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1413"/>
         <source>Device Version Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1422"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1436"/>
         <source>unknown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1426"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1440"/>
         <source>Device Implementation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1426"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1440"/>
         <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1452"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1466"/>
         <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1475"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1489"/>
         <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1483"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1497"/>
         <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1500"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1514"/>
         <source>Device Date and Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1513"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1527"/>
         <source>Local Date and Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1513"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1527"/>
         <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1581"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1595"/>
         <source>Error handling device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1581"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1595"/>
         <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1621"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1635"/>
         <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1643"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1657"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1653"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1667"/>
         <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1663"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1677"/>
         <source>&apos;mpy-cross&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1686"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1700"/>
         <source>The current editor does not contain a Python file. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -44588,114 +44587,114 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1181"/>
-        <source>µPy Chart</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1264"/>
-        <source>µPy Files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1365"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1195"/>
+        <source>&#xc2;&#xb5;Py Chart</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1278"/>
+        <source>&#xc2;&#xb5;Py Files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1379"/>
         <source>Show Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1378"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1392"/>
         <source>Configure</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1339"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1353"/>
         <source>Show Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1358"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1372"/>
         <source>Download Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1556"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1570"/>
         <source>Date and Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1539"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1553"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{0}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1556"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1570"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align=&apos;center&apos;&gt;{0} {1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="410"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="412"/>
         <source>Unknown MicroPython Device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1375"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1389"/>
         <source>Ignored Serial Devices</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1304"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1318"/>
         <source>Downloads</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="323"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="325"/>
         <source>{0} - {1} ({2})</source>
         <comment>board name, description, port name</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="382"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="384"/>
         <source>&lt;p&gt;Detected these unknown serial devices&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please report them together with the board name and a short description to &lt;a href=&quot;mailto:{1}&quot;&gt; the eric bug reporting address&lt;/a&gt; if it is a MicroPython board.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="382"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="384"/>
         <source>{0} (0x{1:04x}/0x{2:04x})</source>
         <comment>description, VId, PId</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="410"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="412"/>
         <source>Would you like to add them to the list of manually configured devices?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1373"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1387"/>
         <source>Manage Unknown Devices</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1778"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1792"/>
         <source>Add Unknown Devices</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1778"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1792"/>
         <source>Select the devices to be added:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1370"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1384"/>
         <source>Flash UF2 Device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="350"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="352"/>
         <source>Manual Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../MicroPython/MicroPythonWidget.py" line="344"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="346"/>
         <source>
 %n unknown device(s) for manual selection.</source>
         <translation>
@@ -44893,674 +44892,674 @@
 <context>
     <name>MiniEditor</name>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="467"/>
+        <location filename="../QScintilla/MiniEditor.py" line="468"/>
         <source>Line: {0:5}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="471"/>
+        <location filename="../QScintilla/MiniEditor.py" line="472"/>
         <source>Pos: {0:5}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>&amp;New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="551"/>
-        <source>Open an empty editor window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="552"/>
+        <source>Open an empty editor window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="553"/>
         <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="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>Open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>&amp;Open...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="565"/>
-        <source>Open a file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="566"/>
+        <source>Open a file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="567"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>&amp;Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="579"/>
-        <source>Save the current file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="580"/>
+        <source>Save the current file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="581"/>
         <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="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Save as</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Save &amp;as...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="593"/>
+        <location filename="../QScintilla/MiniEditor.py" line="594"/>
         <source>Save the current file to a new one</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="595"/>
+        <location filename="../QScintilla/MiniEditor.py" line="596"/>
         <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="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>&amp;Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="624"/>
-        <source>Close the editor window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="625"/>
+        <source>Close the editor window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="626"/>
         <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="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>&amp;Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="638"/>
-        <source>Print the current file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="639"/>
+        <source>Print the current file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="640"/>
         <source>&lt;b&gt;Print File&lt;/b&gt;&lt;p&gt;Print the contents of the current file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="646"/>
+        <location filename="../QScintilla/MiniEditor.py" line="647"/>
         <source>Print Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="651"/>
+        <location filename="../QScintilla/MiniEditor.py" line="652"/>
         <source>Print preview of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="653"/>
+        <location filename="../QScintilla/MiniEditor.py" line="654"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the current file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>&amp;Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="671"/>
-        <source>Undo the last change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="672"/>
+        <source>Undo the last change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="673"/>
         <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="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>&amp;Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="685"/>
-        <source>Redo the last change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="686"/>
+        <source>Redo the last change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="687"/>
         <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="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Cut</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Cu&amp;t</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="700"/>
-        <source>Cut the selection</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="701"/>
+        <source>Cut the selection</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="702"/>
         <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="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>&amp;Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="716"/>
-        <source>Copy the selection</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="717"/>
+        <source>Copy the selection</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="718"/>
         <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="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>&amp;Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="732"/>
+        <location filename="../QScintilla/MiniEditor.py" line="733"/>
         <source>Paste the last cut/copied text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="734"/>
+        <location filename="../QScintilla/MiniEditor.py" line="735"/>
         <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="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Cl&amp;ear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="749"/>
-        <source>Clear all text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="750"/>
+        <source>Clear all text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="751"/>
         <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="../QScintilla/MiniEditor.py" line="2353"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2354"/>
         <source>About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2353"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2354"/>
         <source>&amp;About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2358"/>
         <source>Display information about this software</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2359"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2360"/>
         <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="2365"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2366"/>
         <source>About Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2365"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2366"/>
         <source>About &amp;Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2369"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2370"/>
         <source>Display information about the Qt toolkit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2371"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2372"/>
         <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="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2384"/>
-        <source>Context sensitive help</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2385"/>
+        <source>Context sensitive help</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
         <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="2401"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2402"/>
         <source>&amp;File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2413"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2414"/>
         <source>&amp;Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2439"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2440"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2451"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2452"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2464"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2465"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2474"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2475"/>
         <source>Find</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2488"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2489"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2509"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2510"/>
         <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="2516"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2517"/>
         <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="2523"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2524"/>
         <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="2540"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2541"/>
         <source>Ready</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2567"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2568"/>
         <source>The document has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2594"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2595"/>
         <source>Open File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2594"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2595"/>
         <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="2622"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2623"/>
         <source>File loaded</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2701"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2702"/>
         <source>Save File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2701"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2702"/>
         <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="2708"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2709"/>
         <source>File saved</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3055"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3066"/>
         <source>Untitled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2737"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2738"/>
         <source>{0}[*] - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2737"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2738"/>
         <source>Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3018"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3026"/>
         <source>Printing...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3036"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3047"/>
         <source>Printing completed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3038"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3049"/>
         <source>Error while printing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3041"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3052"/>
         <source>Printing aborted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3096"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3107"/>
         <source>Select all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3097"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3108"/>
         <source>Deselect all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3111"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3122"/>
         <source>Languages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3114"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3125"/>
         <source>No Language</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3138"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3149"/>
         <source>Guessed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3160"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3171"/>
         <source>Alternatives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3156"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3167"/>
         <source>Alternatives ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3184"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3195"/>
         <source>Pygments Lexer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3184"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3195"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save &amp;Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="608"/>
+        <location filename="../QScintilla/MiniEditor.py" line="609"/>
         <source>Save a copy of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="610"/>
+        <location filename="../QScintilla/MiniEditor.py" line="611"/>
         <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="../QScintilla/MiniEditor.py" line="3698"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3709"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3698"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3709"/>
         <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="2720"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2721"/>
         <source>[*] - {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="486"/>
+        <location filename="../QScintilla/MiniEditor.py" line="487"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2431"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2432"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2481"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2482"/>
         <source>View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2501"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2502"/>
         <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2534"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2535"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="397"/>
+        <location filename="../QScintilla/MiniEditor.py" line="398"/>
         <source>About eric Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="397"/>
+        <location filename="../QScintilla/MiniEditor.py" line="398"/>
         <source>The eric 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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2567"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2568"/>
         <source>eric Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46055,12 +46054,12 @@
 <context>
     <name>MouseUtilities</name>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="29"/>
+        <location filename="../Utilities/MouseUtilities.py" line="31"/>
         <source>Shift</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="31"/>
+        <location filename="../Utilities/MouseUtilities.py" line="33"/>
         <source>Alt</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46070,37 +46069,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="33"/>
+        <location filename="../Utilities/MouseUtilities.py" line="35"/>
         <source>Ctrl</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="35"/>
+        <location filename="../Utilities/MouseUtilities.py" line="37"/>
         <source>Meta</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="43"/>
-        <source>Left Button</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Utilities/MouseUtilities.py" line="45"/>
-        <source>Right Button</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Utilities/MouseUtilities.py" line="47"/>
-        <source>Middle Button</source>
+        <source>Left Button</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Utilities/MouseUtilities.py" line="49"/>
-        <source>Extra Button 1</source>
+        <source>Right Button</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Utilities/MouseUtilities.py" line="51"/>
+        <source>Middle Button</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Utilities/MouseUtilities.py" line="53"/>
+        <source>Extra Button 1</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Utilities/MouseUtilities.py" line="55"/>
         <source>Extra Button 2</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46586,32 +46585,32 @@
 <context>
     <name>NavigationBar</name>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="55"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="56"/>
         <source>Move one screen backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="65"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="67"/>
         <source>Move one screen forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="83"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="86"/>
         <source>Move to the initial screen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="95"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="99"/>
         <source>Exit Fullscreen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="273"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="281"/>
         <source>Clear History</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="108"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="113"/>
         <source>Main Menu</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46649,12 +46648,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/NetworkManager.py" line="336"/>
+        <location filename="../WebBrowser/Network/NetworkManager.py" line="338"/>
         <source>Authentication required</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/NetworkManager.py" line="337"/>
+        <location filename="../WebBrowser/Network/NetworkManager.py" line="339"/>
         <source>Authentication is required to access:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47279,27 +47278,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="184"/>
+        <location filename="../UI/NumbersWidget.py" line="194"/>
         <source>Auto</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="185"/>
+        <location filename="../UI/NumbersWidget.py" line="195"/>
         <source>Dec</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="186"/>
+        <location filename="../UI/NumbersWidget.py" line="196"/>
         <source>Hex</source>
         <translation>Hex</translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="187"/>
+        <location filename="../UI/NumbersWidget.py" line="197"/>
         <source>Oct</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="188"/>
+        <location filename="../UI/NumbersWidget.py" line="198"/>
         <source>Bin</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47448,17 +47447,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="136"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="143"/>
         <source>&lt;strong&gt;Description:&lt;/strong&gt; {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="141"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="148"/>
         <source>&lt;strong&gt;Provides contextual suggestions&lt;/strong&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="149"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="156"/>
         <source>Comma-separated list of keywords that may be entered in the location bar followed by search terms to search with this engine</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47466,7 +47465,7 @@
 <context>
     <name>OpenSearchManager</name>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchManager.py" line="462"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchManager.py" line="463"/>
         <source>&lt;p&gt;Do you want to add the following engine to your list of search engines?&lt;br/&gt;&lt;br/&gt;Name: {0}&lt;br/&gt;Searches on: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48075,12 +48074,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="146"/>
+        <location filename="../PipInterface/PipDialog.py" line="156"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="146"/>
+        <location filename="../PipInterface/PipDialog.py" line="156"/>
         <source>The process {0} could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48156,7 +48155,7 @@
 <context>
     <name>PipFreezeDialog</name>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="225"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="227"/>
         <source>Generate Requirements</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48241,27 +48240,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="225"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="227"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="114"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="116"/>
         <source>The requirements were changed. Do you want to overwrite these changes?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="156"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="158"/>
         <source>No output generated by &apos;pip freeze&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="193"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="195"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; already exists. Do you want to overwrite it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="205"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="207"/>
         <source>&lt;p&gt;The requirements could not be written to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48329,7 +48328,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="190"/>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="193"/>
         <source>any</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48439,27 +48438,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="229"/>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="232"/>
         <source>B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="232"/>
-        <source>KB</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PipInterface/PipPackageDetailsDialog.py" line="235"/>
-        <source>MB</source>
+        <source>KB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackageDetailsDialog.py" line="238"/>
+        <source>MB</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="241"/>
         <source>GB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="239"/>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="242"/>
         <source>{0:.1f} {1}</source>
         <comment>value, unit</comment>
         <translation type="unfinished"></translation>
@@ -48611,7 +48610,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="189"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="192"/>
         <source>Name:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48626,7 +48625,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="193"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="196"/>
         <source>Summary:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48656,77 +48655,77 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="190"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="193"/>
         <source>Version:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="191"/>
-        <source>Location:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="192"/>
-        <source>Requires:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="194"/>
-        <source>Homepage:</source>
+        <source>Location:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="195"/>
-        <source>Author:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="196"/>
-        <source>Author Email:</source>
+        <source>Requires:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="197"/>
-        <source>License:</source>
+        <source>Homepage:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="198"/>
-        <source>Metadata Version:</source>
+        <source>Author:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="199"/>
-        <source>Installer:</source>
+        <source>Author Email:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="200"/>
-        <source>Classifiers:</source>
+        <source>License:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="201"/>
-        <source>Entry Points:</source>
+        <source>Metadata Version:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="202"/>
+        <source>Installer:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="203"/>
+        <source>Classifiers:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="204"/>
+        <source>Entry Points:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="205"/>
         <source>Files:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="351"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="360"/>
         <source>Getting installed packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="366"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="375"/>
         <source>Getting outdated packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../PipInterface/PipPackagesWidget.py" line="776"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="791"/>
         <source>%n package(s) found.</source>
         <translation>
             <numerusform>%n package found.</numerusform>
@@ -48734,97 +48733,97 @@
         </translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
         <source>Search PyPI</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
         <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="960"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="975"/>
         <source>Install Pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="963"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="978"/>
         <source>Install Pip to User-Site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="966"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="981"/>
         <source>Repair Pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1083"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1098"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="973"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="988"/>
         <source>Install Local Package</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="977"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="992"/>
         <source>Install Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="980"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="995"/>
         <source>Uninstall Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="983"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="998"/>
         <source>Generate Requirements...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1001"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1016"/>
         <source>Edit User Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1004"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1019"/>
         <source>Edit Environment Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1009"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1024"/>
         <source>Configure...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1194"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1209"/>
         <source>Edit Configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1194"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1209"/>
         <source>No valid configuration path determined. Aborting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="987"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1002"/>
         <source>Show Cache Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="990"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1005"/>
         <source>Show Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="993"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1008"/>
         <source>Remove Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="996"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1011"/>
         <source>Purge Cache...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48834,17 +48833,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="759"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="774"/>
         <source>&lt;p&gt;Received an error while searching for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="778"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="793"/>
         <source>Showing first 20 packages found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="785"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="800"/>
         <source>&lt;p&gt;There were no results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49089,17 +49088,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInfoDialog.py" line="101"/>
+        <location filename="../PluginManager/PluginInfoDialog.py" line="105"/>
         <source>Yes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../PluginManager/PluginInfoDialog.py" line="78"/>
+        <source>No</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../PluginManager/PluginInfoDialog.py" line="77"/>
-        <source>No</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../PluginManager/PluginInfoDialog.py" line="76"/>
         <source>On-Demand</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49180,17 +49179,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="75"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="77"/>
         <source>User plugins directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="81"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="83"/>
         <source>Global plugins directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="145"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="147"/>
         <source>Plugin ZIP-Archives:
 {0}
 
@@ -49199,77 +49198,77 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="162"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="164"/>
         <source>Select plugin ZIP-archives</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="162"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="164"/>
         <source>Plugin archive (*.zip)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="231"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="233"/>
         <source>Installing {0} ...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="236"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="238"/>
         <source>  ok</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="243"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="245"/>
         <source>The plugins were installed successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="246"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="248"/>
         <source>Some plugins could not be installed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="274"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="276"/>
         <source>&lt;p&gt;The archive file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="315"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="317"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not a valid plugin ZIP-archive. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="294"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="296"/>
         <source>&lt;p&gt;The destination directory &lt;b&gt;{0}&lt;/b&gt; is not writeable. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="364"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="366"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; does not contain a &apos;packageName&apos; attribute. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="374"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="376"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; does not conform with the PyQt v2 API. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="389"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="391"/>
         <source>&lt;p&gt;The plugin package &lt;b&gt;{0}&lt;/b&gt; exists. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="402"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="404"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; exists. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="496"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="498"/>
         <source>Error installing plugin. Reason: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="505"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="507"/>
         <source>Unspecific exception installing plugin.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49317,22 +49316,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1292"/>
+        <location filename="../PluginManager/PluginManager.py" line="1293"/>
         <source>Error downloading file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1292"/>
+        <location filename="../PluginManager/PluginManager.py" line="1293"/>
         <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1329"/>
+        <location filename="../PluginManager/PluginManager.py" line="1330"/>
         <source>New plugin versions available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1329"/>
+        <location filename="../PluginManager/PluginManager.py" line="1330"/>
         <source>&lt;p&gt;There are new plug-ins or plug-in updates available. Use the plug-in repository dialog to get them.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49606,53 +49605,53 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="359"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="362"/>
         <source>Download Plugin Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="359"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="362"/>
         <source>The requested plugins were downloaded.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="415"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="418"/>
         <source>Read plugins repository file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="415"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="418"/>
         <source>&lt;p&gt;The plugins repository file &lt;b&gt;{0}&lt;/b&gt; could not be read. Select Update&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="423"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="426"/>
         <source>No plugin repository file available.
 Select Update.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="484"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="491"/>
         <source>Error downloading file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="484"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="491"/>
         <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="568"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="575"/>
         <source>Stable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="574"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="581"/>
         <source>Unstable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="586"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="593"/>
         <source>Unknown</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49662,87 +49661,87 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="407"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="410"/>
         <source>Plugins Repository URL Changed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="407"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="410"/>
         <source>The URL of the Plugins Repository has changed. Select the &quot;Update&quot; button to get the new repository file.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="117"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="120"/>
         <source>Hide</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="119"/>
-        <source>Hide Selected</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="122"/>
-        <source>Show All</source>
+        <source>Hide Selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="125"/>
+        <source>Show All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="128"/>
         <source>Cleanup Downloads</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="600"/>
-        <source>up-to-date</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="603"/>
-        <source>new download available</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="607"/>
+        <source>up-to-date</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="610"/>
+        <source>new download available</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="614"/>
         <source>update installable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="611"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="618"/>
         <source>updated download available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="979"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="986"/>
         <source>Cleanup of Plugin Downloads</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="979"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="986"/>
         <source>&lt;p&gt;The plugin download &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="430"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="433"/>
         <source>New: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="432"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="435"/>
         <source>Local Updates: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="434"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="437"/>
         <source>Remote Updates: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="580"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="587"/>
         <source>Obsolete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="615"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="622"/>
         <source>error determining status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49750,17 +49749,17 @@
 <context>
     <name>PluginRepositoryWindow</name>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>&lt;p&gt;Could not start the process.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>OK</source>
         <translation type="unfinished"></translation>
     </message>
@@ -50112,17 +50111,17 @@
 <context>
     <name>Preferences</name>
     <message>
-        <location filename="../Preferences/__init__.py" line="1640"/>
+        <location filename="../Preferences/__init__.py" line="1649"/>
         <source>Export Preferences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1668"/>
+        <location filename="../Preferences/__init__.py" line="1677"/>
         <source>Import Preferences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1668"/>
+        <location filename="../Preferences/__init__.py" line="1677"/>
         <source>Properties File (*.ini);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -50143,7 +50142,7 @@
 <context>
     <name>PreviewModel</name>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="432"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="434"/>
         <source>Variable Name</source>
         <translation type="unfinished"></translation>
     </message>
@@ -50151,27 +50150,27 @@
 <context>
     <name>PreviewProcessingThread</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="463"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="466"/>
         <source>&lt;p&gt;No preview available for this type of file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="632"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="635"/>
         <source>&lt;p&gt;ReStructuredText preview requires the &lt;b&gt;python-docutils&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager, &apos;pip install docutils&apos; or see &lt;a href=&quot;http://pypi.python.org/pypi/docutils&quot;&gt;this page.&lt;/a&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="572"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="575"/>
         <source>&lt;p&gt;ReStructuredText preview requires the &lt;b&gt;sphinx&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager,&apos;pip install Sphinx&apos; or see &lt;a href=&quot;http://pypi.python.org/pypi/Sphinx&quot;&gt;this page.&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Alternatively you may disable Sphinx usage on the Editor, Filehandling configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="675"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="678"/>
         <source>&lt;p&gt;Markdown preview requires the &lt;b&gt;Markdown&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager, &apos;pip install Markdown&apos; or see &lt;a href=&quot;http://pythonhosted.org/Markdown/install.html&quot;&gt;installation instructions.&lt;/a&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="647"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="650"/>
         <source>&lt;p&gt;Docutils returned an error:&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -50179,42 +50178,42 @@
 <context>
     <name>PreviewerHTML</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="75"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="78"/>
         <source>Select to enable JavaScript for HTML previews</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="74"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="77"/>
         <source>Enable JavaScript</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="81"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="84"/>
         <source>Select to enable support for Server Side Includes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="79"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="82"/>
         <source>Enable Server Side Includes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="194"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="197"/>
         <source>&lt;p&gt;No preview available for this type of file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="253"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="256"/>
         <source>Preview - {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="255"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="258"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="57"/>
+        <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 type="unfinished"></translation>
     </message>
@@ -50265,17 +50264,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="76"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="80"/>
         <source>Portrait</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="78"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="82"/>
         <source>Landscape</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="79"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="83"/>
         <source>{0}, {1}</source>
         <comment>page size, page orientation</comment>
         <translation type="unfinished"></translation>
@@ -50455,7 +50454,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="433"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="434"/>
         <source>(unknown)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -50470,12 +50469,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="436"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="437"/>
         <source>(not executable)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="479"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="481"/>
         <source>(not found)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -50530,7 +50529,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="398"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="399"/>
         <source>(module not found)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51895,32 +51894,32 @@
 <context>
     <name>ProjectBaseBrowser</name>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="128"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="132"/>
         <source>Open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="496"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="503"/>
         <source>local</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="537"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="544"/>
         <source>Select entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="537"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="544"/>
         <source>There were no matching entries found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="294"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="300"/>
         <source>Delete directories</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="294"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="300"/>
         <source>Do you really want to delete these directories from the project?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51981,7 +51980,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBrowserModel.py" line="797"/>
+        <location filename="../Project/ProjectBrowserModel.py" line="803"/>
         <source>local</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52170,7 +52169,7 @@
 <context>
     <name>ProjectFormsBrowser</name>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1009"/>
         <source>Forms</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52350,52 +52349,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="784"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="788"/>
         <source>Form Compilation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="768"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="772"/>
         <source>The compilation of the form file was successful.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="775"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="779"/>
         <source>&lt;p&gt;The compilation of the form file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="784"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="788"/>
         <source>The compilation of the form file failed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="870"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="874"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="870"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="874"/>
         <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="962"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="966"/>
         <source>Compiling forms...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>Abort</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>Determining changed forms...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1031"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1035"/>
         <source>Compiling changed forms...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52450,7 +52449,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>%v/%m Forms</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53090,7 +53089,7 @@
 <context>
     <name>ProjectResourcesBrowser</name>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="861"/>
         <source>Resources</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53200,57 +53199,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="624"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="628"/>
         <source>Resource Compilation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="610"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="614"/>
         <source>The compilation of the resource file was successful.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="617"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="621"/>
         <source>&lt;p&gt;The compilation of the resource file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="624"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="628"/>
         <source>The compilation of the resource file failed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="713"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="717"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="713"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="717"/>
         <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="779"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="783"/>
         <source>Compiling resources...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>Abort</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>Determining changed resources...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="889"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="893"/>
         <source>Compiling changed resources...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>%v/%m Resources</source>
         <translation type="unfinished"></translation>
     </message>
@@ -54310,7 +54309,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="349"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="361"/>
         <source>Coverage</source>
         <translation type="unfinished"></translation>
     </message>
@@ -54341,47 +54340,47 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="61"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="63"/>
         <source>Annotate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="63"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="65"/>
         <source>Annotate all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="64"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="66"/>
         <source>Delete annotated files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="67"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="69"/>
         <source>Erase Coverage Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>Annotating files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>Abort</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="58"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="60"/>
         <source>Open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="243"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="246"/>
         <source>Parse Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../DataViews/PyCoverageDialog.py" line="243"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="246"/>
         <source>%n file(s) could not be parsed. Coverage info for these is not available.</source>
         <translation>
             <numerusform>One file could not be parsed. Coverage info for this one is not available.</numerusform>
@@ -54389,7 +54388,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>%v/%m Files</source>
         <translation type="unfinished"></translation>
     </message>
@@ -54397,7 +54396,7 @@
 <context>
     <name>PyProfileDialog</name>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="234"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="239"/>
         <source>Profile Results</source>
         <translation type="unfinished"></translation>
     </message>
@@ -54475,57 +54474,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="337"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="354"/>
         <source>Exclude Python Library</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="89"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="92"/>
         <source>Erase Profiling Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="91"/>
-        <source>Erase Timing Info</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../DataViews/PyProfileDialog.py" line="94"/>
+        <source>Erase Timing Info</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="97"/>
         <source>Erase All Infos</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="215"/>
-        <source>function calls</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="218"/>
-        <source>primitive calls</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../DataViews/PyProfileDialog.py" line="220"/>
+        <source>function calls</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="223"/>
+        <source>primitive calls</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="225"/>
         <source>CPU seconds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="234"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="239"/>
         <source>&lt;p&gt;There is no profiling data available for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="246"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="251"/>
         <source>Loading Profiling Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="246"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="251"/>
         <source>&lt;p&gt;The profiling data could not be read from file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="333"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="350"/>
         <source>Include Python Library</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55086,132 +55085,132 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="102"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="103"/>
         <source>Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="104"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="105"/>
         <source>Copy the regular expression to the clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="188"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="190"/>
         <source>Named reference</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="182"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="184"/>
         <source>No named groups have been defined yet.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="188"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="190"/>
         <source>Select group name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="372"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="374"/>
         <source>Save regular expression</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="360"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="362"/>
         <source>RegExp Files (*.rx);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="334"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="336"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="372"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="374"/>
         <source>&lt;p&gt;The regular expression could not be saved.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="360"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="362"/>
         <source>Load regular expression</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="414"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="416"/>
         <source>Validation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="414"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="416"/>
         <source>The regular expression is valid.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="578"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="581"/>
         <source>Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="564"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="567"/>
         <source>Invalid regular expression: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="571"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="574"/>
         <source>Invalid regular expression: missing group name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="433"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="435"/>
         <source>A regular expression must be given.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="478"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="480"/>
         <source>Regexp</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="488"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="490"/>
         <source>Offset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="496"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="498"/>
         <source>Captures</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="503"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="505"/>
         <source>Text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="506"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="508"/>
         <source>Characters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="511"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="513"/>
         <source>Match</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="526"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="528"/>
         <source>Capture #{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="546"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="549"/>
         <source>No more matches</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="550"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="553"/>
         <source>No matches</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="578"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="581"/>
         <source>A regular expression and a text must be given.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55792,37 +55791,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="247"/>
+        <location filename="../UI/PythonAstViewer.py" line="249"/>
         <source>Module</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="279"/>
+        <location filename="../UI/PythonAstViewer.py" line="281"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="300"/>
+        <location filename="../UI/PythonAstViewer.py" line="302"/>
         <source>{0},{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="307"/>
+        <location filename="../UI/PythonAstViewer.py" line="309"/>
         <source>{0}  -  {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="211"/>
+        <location filename="../UI/PythonAstViewer.py" line="213"/>
         <source>No editor has been opened.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="222"/>
+        <location filename="../UI/PythonAstViewer.py" line="224"/>
         <source>The current editor does not contain any source code.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="228"/>
+        <location filename="../UI/PythonAstViewer.py" line="230"/>
         <source>The current editor does not contain Python source code.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55875,7 +55874,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="695"/>
+        <location filename="../UI/PythonDisViewer.py" line="698"/>
         <source>Code Object &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55930,72 +55929,72 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="810"/>
+        <location filename="../UI/PythonDisViewer.py" line="813"/>
         <source>Name</source>
         <translation>Name</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="812"/>
+        <location filename="../UI/PythonDisViewer.py" line="815"/>
         <source>Filename</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="814"/>
+        <location filename="../UI/PythonDisViewer.py" line="817"/>
         <source>First Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="816"/>
+        <location filename="../UI/PythonDisViewer.py" line="819"/>
         <source>Argument Count</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="818"/>
+        <location filename="../UI/PythonDisViewer.py" line="821"/>
         <source>Positional-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../UI/PythonDisViewer.py" line="827"/>
+        <source>Number of Locals</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="829"/>
+        <source>Stack Size</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="831"/>
+        <source>Flags</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="834"/>
+        <source>Constants</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="837"/>
+        <source>Names</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="840"/>
+        <source>Variable Names</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="843"/>
+        <source>Free Variables</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="846"/>
+        <source>Cell Variables</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/PythonDisViewer.py" line="824"/>
-        <source>Number of Locals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="826"/>
-        <source>Stack Size</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="828"/>
-        <source>Flags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="831"/>
-        <source>Constants</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="834"/>
-        <source>Names</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="837"/>
-        <source>Variable Names</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="840"/>
-        <source>Free Variables</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="843"/>
-        <source>Cell Variables</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="821"/>
         <source>Keyword-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
@@ -57523,197 +57522,197 @@
 <context>
     <name>QRegularExpressionWizardWidget</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="96"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="97"/>
         <source>Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="98"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="99"/>
         <source>Save the regular expression to a file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="100"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="101"/>
         <source>Load</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="102"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="103"/>
         <source>Load a regular expression from a file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="105"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="106"/>
         <source>Validate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="107"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="108"/>
         <source>Validate the regular expression</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="109"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="110"/>
         <source>Execute</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="111"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="112"/>
         <source>Execute the regular expression</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="113"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="114"/>
         <source>Next match</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="115"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="116"/>
         <source>Show the next match of the regular expression</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="128"/>
-        <source>Copy</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="130"/>
+        <source>Copy</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="132"/>
         <source>Copy the regular expression to the clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="292"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="295"/>
         <source>Named reference</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="286"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="289"/>
         <source>No named groups have been defined yet.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="292"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="295"/>
         <source>Select group name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="454"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="457"/>
         <source>Save regular expression</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="416"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="419"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="454"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="457"/>
         <source>&lt;p&gt;The regular expression could not be saved.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="442"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="445"/>
         <source>Load regular expression</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="507"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="510"/>
         <source>Validation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="507"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="510"/>
         <source>The regular expression is valid.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="708"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="712"/>
         <source>Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="582"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="585"/>
         <source>Invalid regular expression: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="538"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="541"/>
         <source>A regular expression must be given.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="602"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="605"/>
         <source>Regexp</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="613"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="616"/>
         <source>Offset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="621"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="624"/>
         <source>Captures</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="629"/>
-        <source>Text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="632"/>
+        <source>Text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="635"/>
         <source>Characters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="637"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="640"/>
         <source>Match</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="652"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="655"/>
         <source>Capture #{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="676"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="680"/>
         <source>No more matches</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="681"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="685"/>
         <source>No matches</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="708"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="712"/>
         <source>A regular expression and a text must be given.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="442"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="445"/>
         <source>RegExp Files (*.rx);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="702"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="706"/>
         <source>Communication Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="169"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="172"/>
         <source>&lt;p&gt;The PyQt5 backend reported an error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="696"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="700"/>
         <source>Invalid response received from PyQt5 backend.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="702"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="706"/>
         <source>Communication with PyQt5 backend failed.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -57751,7 +57750,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="174"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="176"/>
         <source>Add Documentation</source>
         <translation type="unfinished"></translation>
     </message>
@@ -57766,22 +57765,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="174"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="176"/>
         <source>The namespace &lt;b&gt;{0}&lt;/b&gt; is already registered.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="211"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="213"/>
         <source>Remove Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="196"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="198"/>
         <source>Do you really want to remove the selected documentation sets from the database?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="211"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="213"/>
         <source>Some documents currently opened reference the documentation you are attempting to remove. Removing the documentation will close those documents. Remove anyway?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -57836,7 +57835,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="406"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="410"/>
         <source>Remove Filters</source>
         <translation type="unfinished"></translation>
     </message>
@@ -57846,7 +57845,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="434"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="438"/>
         <source>Remove Attributes</source>
         <translation type="unfinished"></translation>
     </message>
@@ -57891,22 +57890,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="385"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="389"/>
         <source>Add Filter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="385"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="389"/>
         <source>Filter name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="406"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="410"/>
         <source>Do you really want to remove the selected filters from the database?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="434"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="438"/>
         <source>Do you really want to remove the selected attributes from the database?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -57924,27 +57923,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="139"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="142"/>
         <source>Delete Documentation Sets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="86"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="89"/>
         <source>Shall the selected documentation sets really be deleted?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="102"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="105"/>
         <source>&lt;p&gt;The documentation set &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="121"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="124"/>
         <source>Shall the selected documentation set categories really be deleted?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="139"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="142"/>
         <source>Shall all documentation sets really be deleted?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59422,87 +59421,87 @@
 <context>
     <name>SafeBrowsingAPI</name>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="391"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="400"/>
         <source>&lt;h3&gt;Malware Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to install harmful programs on your computer in order to steal or destroy your data.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="398"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="407"/>
         <source>&lt;h3&gt;Phishing Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to trick you into doing something dangerous online, such as revealing passwords or personal information, usually through a fake website.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="406"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="415"/>
         <source>&lt;h3&gt;Unwanted Software Warning&lt;/h3&gt;&lt;p&gt;The software you are about to download may negatively affect your browsing or computing experience.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="412"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="421"/>
         <source>&lt;h3&gt;Potentially Harmful Application&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to trick you into installing applications, that may negatively affect your browsing experience.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="426"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="435"/>
         <source>&lt;h3&gt;Unknown Threat Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit was found in the Safe Browsing Database but was not classified yet.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="446"/>
-        <source>Malware</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="449"/>
-        <source>Phishing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="452"/>
-        <source>Unwanted Software</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="455"/>
-        <source>Harmful Application</source>
+        <source>Malware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="458"/>
-        <source>Malicious Binary</source>
+        <source>Phishing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="461"/>
+        <source>Unwanted Software</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="464"/>
+        <source>Harmful Application</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="467"/>
+        <source>Malicious Binary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="470"/>
         <source>Unknown Threat</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="532"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="541"/>
         <source>any defined platform</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="535"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="544"/>
         <source>all defined platforms</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="538"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="547"/>
         <source>unknown platform</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="492"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="501"/>
         <source>executable program</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="495"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="504"/>
         <source>unknown type</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="419"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="428"/>
         <source>&lt;h3&gt;Malicious Binary Warning&lt;/h3&gt;&lt;p&gt;The software you are about to download may be harmful to your computer.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59510,7 +59509,7 @@
 <context>
     <name>SafeBrowsingDialog</name>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="171"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="173"/>
         <source>Safe Browsing Management</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59600,52 +59599,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="312"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="314"/>
         <source>Check URL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="171"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="173"/>
         <source>The dialog contains unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="213"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="215"/>
         <source>Update Safe Browsing Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="196"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="198"/>
         <source>Updating the Safe Browsing cache might be a lengthy operation. Please be patient!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="207"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="209"/>
         <source>&lt;p&gt;Updating the Safe Browsing cache failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="213"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="215"/>
         <source>&lt;p&gt;Updating the Safe Browsing cache failed.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="224"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="226"/>
         <source>Clear Safe Browsing Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="224"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="226"/>
         <source>Do you really want to clear the Safe Browsing cache? Re-populating it might take some time.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="304"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="306"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing Database.&lt;/p&gt;{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="312"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="314"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was not found in the Safe Browsing Database and may be considered safe.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59675,17 +59674,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="339"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="341"/>
         <source>The next automatic threat list update will be done now.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="342"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="344"/>
         <source>&lt;p&gt;The next automatic threat list update will be done at &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="346"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="348"/>
         <source>Update Time</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59705,7 +59704,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="296"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="298"/>
         <source>&lt;p&gt;The Google Safe Browsing Server reported an error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59779,22 +59778,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="173"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="174"/>
         <source>Find Prev</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="982"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="984"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="1128"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="1130"/>
         <source>Replaced {0} occurrences.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="1133"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="1135"/>
         <source>Nothing replaced because &apos;{0}&apos; was not found.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59818,17 +59817,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="181"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="183"/>
         <source>Replace and Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="191"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="193"/>
         <source>Replace Occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="201"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="203"/>
         <source>Replace All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59920,12 +59919,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SearchWidget.py" line="98"/>
+        <location filename="../WebBrowser/SearchWidget.py" line="100"/>
         <source>Expression was not found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/SearchWidget.py" line="208"/>
+        <location filename="../UI/SearchWidget.py" line="210"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -60402,7 +60401,7 @@
 <context>
     <name>SendRefererWhitelistDialog</name>
     <message>
-        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="50"/>
+        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="51"/>
         <source>Send Referer Whitelist</source>
         <translation type="unfinished"></translation>
     </message>
@@ -60442,7 +60441,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="50"/>
+        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="51"/>
         <source>Enter host name to add to the whitelist:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -60573,7 +60572,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Session/SessionManager.py" line="710"/>
+        <location filename="../WebBrowser/Session/SessionManager.py" line="712"/>
         <source>{0} (last session)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -60977,42 +60976,42 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="544"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="549"/>
         <source>Package Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="576"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="581"/>
         <source>Packages Root Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="615"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="620"/>
         <source>Add Package</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="615"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="620"/>
         <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; is not a Python package.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="671"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="676"/>
         <source>Add Scripts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="671"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="676"/>
         <source>Python Files (*.py);;All Files(*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="710"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="715"/>
         <source>Add Python Modules</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="710"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="715"/>
         <source>Python Files (*.py)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -61062,12 +61061,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="153"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="155"/>
         <source>Reading Trove Classifiers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="153"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="155"/>
         <source>&lt;p&gt;The Trove Classifiers 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>
@@ -61127,7 +61126,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="789"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="796"/>
         <source>Source Directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -61165,108 +61164,108 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="248"/>
+        <location filename="../QScintilla/Shell.py" line="249"/>
         <source>Passive &gt;&gt;&gt; </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="291"/>
+        <location filename="../QScintilla/Shell.py" line="292"/>
         <source>Start</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="296"/>
-        <source>History</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="297"/>
-        <source>Select entry</source>
+        <source>History</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Shell.py" line="298"/>
+        <source>Select entry</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="299"/>
         <source>Show</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="311"/>
+        <location filename="../QScintilla/Shell.py" line="312"/>
         <source>Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="303"/>
-        <source>Cut</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="304"/>
-        <source>Copy</source>
+        <source>Cut</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/Shell.py" line="305"/>
+        <source>Copy</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="306"/>
         <source>Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="319"/>
+        <location filename="../QScintilla/Shell.py" line="320"/>
         <source>Configure...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="773"/>
+        <location filename="../QScintilla/Shell.py" line="781"/>
         <source>Select History</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="773"/>
+        <location filename="../QScintilla/Shell.py" line="781"/>
         <source>Select the history entry to execute (most recent shown last).</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="839"/>
+        <location filename="../QScintilla/Shell.py" line="847"/>
         <source>Passive Debug Mode</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="840"/>
+        <location filename="../QScintilla/Shell.py" line="848"/>
         <source>
 Not connected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="843"/>
+        <location filename="../QScintilla/Shell.py" line="851"/>
         <source>No.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1033"/>
-        <source>StdOut: {0}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="1041"/>
+        <source>StdOut: {0}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="1049"/>
         <source>StdErr: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2178"/>
+        <location filename="../QScintilla/Shell.py" line="2199"/>
         <source>Drop Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2178"/>
+        <location filename="../QScintilla/Shell.py" line="2199"/>
         <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/Shell.py" line="309"/>
+        <location filename="../QScintilla/Shell.py" line="310"/>
         <source>Find</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="891"/>
+        <location filename="../QScintilla/Shell.py" line="899"/>
         <source>Exception &quot;{0}&quot;
 {1}
 File: {2}, Line: {3}
@@ -61274,81 +61273,81 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="926"/>
+        <location filename="../QScintilla/Shell.py" line="934"/>
         <source>Unspecified syntax error.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="901"/>
+        <location filename="../QScintilla/Shell.py" line="909"/>
         <source>Exception &quot;{0}&quot;
 {1}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="928"/>
+        <location filename="../QScintilla/Shell.py" line="936"/>
         <source>Syntax error &quot;{1}&quot; in file {0} at line {2}, character {3}.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="951"/>
+        <location filename="../QScintilla/Shell.py" line="959"/>
         <source>Signal &quot;{0}&quot; generated in file {1} at line {2}.
 Function: {3}({4})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2035"/>
+        <location filename="../QScintilla/Shell.py" line="2056"/>
         <source>Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../QScintilla/Shell.py" line="313"/>
+        <source>Restart</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="314"/>
+        <source>Restart and Clear</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="318"/>
+        <source>Active Name</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="1867"/>
+        <source>Available Virtual Environments:
+{0}
+</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="1917"/>
+        <source>Current Virtual Environment: &apos;{0}&apos;
+</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="853"/>
+        <source>{0} on {1}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="1075"/>
+        <source>&lt;{0}&gt; {1}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Shell.py" line="159"/>
-        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;restart&apos; kills the shell and starts a new one. &apos;clear&apos; clears the display of the shell window. &apos;start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;envs&apos; or &apos;environments&apos; commands. The active virtual environment can be questioned by the &apos;which&apos; command. &apos;quit&apos; or &apos;exit&apos; is used to exit the application. These commands (except environments&apos;, &apos;envs&apos; and &apos;which&apos;) are available through the window menus as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="186"/>
-        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.&lt;/p&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;restart&apos; kills the shell and starts a new one. &apos;clear&apos; clears the display of the shell window. &apos;start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;envs&apos; or &apos;environments&apos; commands. The active virtual environment can be questioned by the &apos;which&apos; command. These commands (except environments&apos; and &apos;envs&apos;) are available through the context menu as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;&lt;p&gt;In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="312"/>
-        <source>Restart</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="313"/>
-        <source>Restart and Clear</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="317"/>
-        <source>Active Name</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="1850"/>
-        <source>Available Virtual Environments:
-{0}
-</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="1896"/>
-        <source>Current Virtual Environment: &apos;{0}&apos;
-</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="845"/>
-        <source>{0} on {1}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="1067"/>
-        <source>&lt;{0}&gt; {1}</source>
+        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;%restart&apos; kills the shell and starts a new one. &apos;%clear&apos; clears the display of the shell window. &apos;%start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. &apos;%start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;%envs&apos; or &apos;%environments&apos; commands. The active virtual environment can be questioned by the &apos;%which&apos; command. &apos;%quit&apos; or &apos;%exit&apos; is used to exit the application. These commands (except &apos;%environments&apos;, &apos;%envs&apos; and &apos;%which&apos;) are available through the window menus as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="187"/>
+        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.&lt;/p&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;%restart&apos; kills the shell and starts a new one. &apos;%clear&apos; clears the display of the shell window. &apos;%start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. &apos;%start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;%envs&apos; or &apos;%environments&apos; commands. The active virtual environment can be questioned by the &apos;%which&apos; command. These commands (except &apos;%environments&apos; and &apos;%envs&apos;) are available through the context menu as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;&lt;p&gt;In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -62254,87 +62253,87 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="131"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="132"/>
         <source>Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="135"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="136"/>
         <source>General</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="139"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="140"/>
         <source>Wizards</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="145"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="146"/>
         <source>Debug</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="149"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="150"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="153"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="154"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="157"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="158"/>
         <source>Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="161"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="162"/>
         <source>View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="165"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="166"/>
         <source>Macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="169"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="170"/>
         <source>Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="174"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="175"/>
         <source>Spelling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="181"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="182"/>
         <source>Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="364"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="365"/>
         <source>Edit shortcuts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="327"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="328"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has already been allocated to the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="347"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="348"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; hides the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="364"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="365"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is hidden by the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="197"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="198"/>
         <source>eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62438,42 +62437,42 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="263"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="264"/>
         <source>Preview not available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="290"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="291"/>
         <source>Copy Image Location to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="293"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="294"/>
         <source>Copy Image Name to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="357"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="358"/>
         <source>Save Image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="346"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="347"/>
         <source>All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="357"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="358"/>
         <source>&lt;p&gt;Cannot write to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="276"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="277"/>
         <source>Loading...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="334"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="335"/>
         <source>&lt;p&gt;This preview is not available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62511,62 +62510,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="68"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="70"/>
         <source>Your connection to this site is &lt;b&gt;secure&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="73"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="75"/>
         <source>Your connection to this site is &lt;b&gt;not secure&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="88"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="90"/>
         <source>This is your &lt;b&gt;{0}.&lt;/b&gt; visit of this site.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="94"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="96"/>
         <source>You have &lt;b&gt;never&lt;/b&gt; visited this site before.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="103"/>
-        <source>first</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="105"/>
-        <source>second</source>
+        <source>first</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="107"/>
+        <source>second</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="109"/>
         <source>third</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="108"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="110"/>
         <source>This is your &lt;b&gt;{0}&lt;/b&gt; visit of this site.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="129"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="131"/>
         <source>Register as &lt;b&gt;{0}&lt;/b&gt; links handler.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="136"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="138"/>
         <source>Register</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="153"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="156"/>
         <source>More...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="62"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="64"/>
         <source>Your connection to this site &lt;b&gt;may not be secure&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62704,17 +62703,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="252"/>
+        <location filename="../Snapshot/SnapWidget.py" line="253"/>
         <source>Save Snapshot</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="231"/>
+        <location filename="../Snapshot/SnapWidget.py" line="232"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="252"/>
+        <location filename="../Snapshot/SnapWidget.py" line="253"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation type="unfinished"></translation>
@@ -62760,7 +62759,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="389"/>
+        <location filename="../Snapshot/SnapWidget.py" line="390"/>
         <source>The application contains an unsaved snapshot.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62775,7 +62774,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="355"/>
+        <location filename="../Snapshot/SnapWidget.py" line="356"/>
         <source>Preview of the snapshot image ({0} x {1})</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62815,7 +62814,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="419"/>
+        <location filename="../Snapshot/SnapWidget.py" line="420"/>
         <source>eric Snapshot</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62823,7 +62822,7 @@
 <context>
     <name>SnapshotFreehandGrabber</name>
     <message>
-        <location filename="../Snapshot/SnapshotFreehandGrabber.py" line="72"/>
+        <location filename="../Snapshot/SnapshotFreehandGrabber.py" line="76"/>
         <source>Select a region using the mouse. To take the snapshot, press the Enter key or double click. Press Esc to quit.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62831,7 +62830,7 @@
 <context>
     <name>SnapshotRegionGrabber</name>
     <message>
-        <location filename="../Snapshot/SnapshotRegionGrabber.py" line="104"/>
+        <location filename="../Snapshot/SnapshotRegionGrabber.py" line="107"/>
         <source>Select a region using the mouse. To take the snapshot, press the Enter key or double click. Press Esc to quit.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62839,7 +62838,7 @@
 <context>
     <name>SnapshotTimer</name>
     <message numerus="yes">
-        <location filename="../Snapshot/SnapshotTimer.py" line="104"/>
+        <location filename="../Snapshot/SnapshotTimer.py" line="110"/>
         <source>Snapshot will be taken in %n seconds</source>
         <translation>
             <numerusform>Snapshot will be taken in %n second</numerusform>
@@ -62961,27 +62960,27 @@
 <context>
     <name>SpeedDial</name>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="401"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="402"/>
         <source>Unable to load</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="207"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="208"/>
         <source>Saving Speed Dial data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="207"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="208"/>
         <source>&lt;p&gt;Speed Dial data could not be saved to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="220"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="221"/>
         <source>Reset Speed Dials</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="220"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="221"/>
         <source>Are you sure you want to reset the speed dials to the default pages?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63375,22 +63374,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="162"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="163"/>
         <source>Unable to open database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="162"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="163"/>
         <source>An error occurred while opening the connection.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="304"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="307"/>
         <source>Query OK.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="306"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="309"/>
         <source>Query OK, number of affected rows: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63554,62 +63553,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="52"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="53"/>
         <source>Revocation information for the certificate is not available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="55"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="56"/>
         <source>The certificate has been revoked.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="57"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="58"/>
         <source>The certificate is invalid.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="59"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="60"/>
         <source>The certificate is signed using a weak signature algorithm.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="62"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="63"/>
         <source>The host name specified in the certificate is not unique.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="65"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="66"/>
         <source>The certificate contains a weak key.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="67"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="69"/>
         <source>The certificate claimed DNS names that are in violation of name constraints.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="98"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="101"/>
         <source>No error description available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="129"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="132"/>
         <source>Remove Selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="134"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="137"/>
         <source>Remove All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="73"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="75"/>
         <source>The certificate has a validity period that is too long.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="82"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="85"/>
         <source>Certificate Transparency was required for this connection, but the server did not provide information that complied with the policy.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63649,7 +63648,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="151"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="154"/>
         <source>Environment Variables:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63659,75 +63658,75 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="165"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="168"/>
         <source>Uncheck to disable exception reporting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="168"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="171"/>
         <source>&lt;b&gt;Report exceptions&lt;/b&gt;
 &lt;p&gt;Uncheck this in order to disable exception reporting.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="172"/>
-        <source>Report exceptions</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="175"/>
+        <source>Report exceptions</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="178"/>
         <source>Alt+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="185"/>
-        <source>Select to clear the display of the interpreter window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="188"/>
-        <source>&lt;b&gt;Clear interpreter window&lt;/b&gt;&lt;p&gt;This clears the display of the interpreter window before starting the debug client.&lt;/p&gt;</source>
+        <source>Select to clear the display of the interpreter window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="191"/>
+        <source>&lt;b&gt;Clear interpreter window&lt;/b&gt;&lt;p&gt;This clears the display of the interpreter window before starting the debug client.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="194"/>
         <source>Clear interpreter window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="201"/>
-        <source>Select to start the debugger in a console window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="204"/>
+        <source>Select to start the debugger in a console window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="207"/>
         <source>&lt;b&gt;Start in console&lt;/b&gt;
 &lt;p&gt;Select to start the debugger in a console window. The console command has to be configured on the Debugger-&amp;gt;General page&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="208"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="211"/>
         <source>Start in console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="215"/>
-        <source>Select this to erase the collected coverage information</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="218"/>
+        <source>Select this to erase the collected coverage information</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="221"/>
         <source>&lt;b&gt;Erase coverage information&lt;/b&gt;
 &lt;p&gt;Select this to erase the collected coverage information before the next coverage run.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="222"/>
-        <source>Erase coverage information</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="225"/>
+        <source>Erase coverage information</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="228"/>
         <source>Alt+C</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63737,7 +63736,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="141"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="144"/>
         <source>Virtual Environment:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63938,42 +63937,42 @@
 <context>
     <name>StartDialog</name>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="108"/>
+        <location filename="../Debugger/StartDialog.py" line="109"/>
         <source>Clear Histories</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Debugger/StartDialog.py" line="281"/>
+        <source>Edit History</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="268"/>
+        <source>Command Line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="269"/>
+        <source>Working Directory</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="270"/>
+        <source>Environment</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="281"/>
+        <source>Select the history list to be edited:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Debugger/StartDialog.py" line="279"/>
-        <source>Edit History</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="266"/>
-        <source>Command Line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="267"/>
-        <source>Working Directory</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="268"/>
-        <source>Environment</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="279"/>
-        <source>Select the history list to be edited:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="277"/>
         <source>No Debug Programs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="142"/>
+        <location filename="../Debugger/StartDialog.py" line="143"/>
         <source>Enter the list of programs or program patterns not to be debugged separated by &apos;{0}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -64727,12 +64726,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2244"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2245"/>
         <source>Subversion Lock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2244"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2245"/>
         <source>Enter lock comment</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65013,32 +65012,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="91"/>
+        <location filename="../Graphics/SvgDiagram.py" line="92"/>
         <source>Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="96"/>
+        <location filename="../Graphics/SvgDiagram.py" line="97"/>
         <source>Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="101"/>
+        <location filename="../Graphics/SvgDiagram.py" line="102"/>
         <source>Print Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="131"/>
+        <location filename="../Graphics/SvgDiagram.py" line="132"/>
         <source>Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="135"/>
+        <location filename="../Graphics/SvgDiagram.py" line="136"/>
         <source>Graphics</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="362"/>
+        <location filename="../Graphics/SvgDiagram.py" line="363"/>
         <source>Diagram: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65111,12 +65110,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="102"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="102"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65191,22 +65190,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="83"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="85"/>
         <source>Files (relative to {0}):</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="152"/>
         <source>No changelists found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65438,28 +65437,28 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="169"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="169"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="75"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="77"/>
         <source>Revision {0}.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="82"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="84"/>
         <source> (binary)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="86"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="88"/>
         <source>{0} {1}{2}
 </source>
         <translation type="unfinished"></translation>
@@ -65496,7 +65495,7 @@
 <context>
     <name>SvnDiffDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="175"/>
         <source>Subversion Diff</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65556,58 +65555,58 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="189"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="189"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="207"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="209"/>
         <source>There is no difference.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="399"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="409"/>
         <source>Save Diff</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="367"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="377"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="384"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="394"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="399"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="409"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="175"/>
         <source>There is no temporary directory available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="211"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="219"/>
         <source>Processing file &apos;{0}&apos;...
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="220"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="226"/>
         <source>&lt;Start&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="221"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="227"/>
         <source>&lt;End&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65798,17 +65797,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="664"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="679"/>
         <source>Revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="661"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="676"/>
         <source>Author</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="164"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="167"/>
         <source>Message</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65938,37 +65937,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="93"/>
         <source>Added</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="91"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="94"/>
         <source>Deleted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="92"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="95"/>
         <source>Modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="519"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="535"/>
         <source>Subversion Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="309"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="317"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="309"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="317"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="93"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="96"/>
         <source>Replaced</source>
         <translation type="unfinished"></translation>
     </message>
@@ -66135,7 +66134,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="129"/>
         <source>&amp;URL:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -66177,7 +66176,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="121"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="122"/>
         <source>Pat&amp;h:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67063,17 +67062,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="154"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="154"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnPropListDialog.py" line="145"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnPropListDialog.py" line="152"/>
         <source>None</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67277,22 +67276,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="204"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="208"/>
         <source>The installed version of PySvn should be 1.4.0 or better.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="281"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="288"/>
         <source>Subversion Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="267"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="267"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67408,7 +67407,7 @@
 <context>
     <name>SvnStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="400"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="406"/>
         <source>Subversion Status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67534,207 +67533,207 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="83"/>
         <source>Commit changes to repository...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="90"/>
         <source>Add to repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="96"/>
         <source>Revert changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="102"/>
         <source>Add to Changelist</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979"/>
         <source>Remove from Changelist</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="873"/>
-        <source>Lock</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890"/>
+        <source>Lock</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="907"/>
         <source>Unlock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="111"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="113"/>
         <source>Break lock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="116"/>
         <source>Steal lock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="120"/>
         <source>Adjust column sizes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="158"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="161"/>
         <source>added</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="160"/>
-        <source>deleted</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="171"/>
-        <source>modified</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="165"/>
-        <source>unversioned</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="189"/>
-        <source>locked</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="190"/>
-        <source>other lock</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="191"/>
-        <source>stolen lock</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="192"/>
-        <source>broken lock</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="188"/>
-        <source>not locked</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="170"/>
-        <source>normal</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="163"/>
-        <source>replaced</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="172"/>
-        <source>conflict</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="185"/>
-        <source>external</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="161"/>
-        <source>ignored</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="166"/>
-        <source>missing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="167"/>
-        <source>type error</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="196"/>
-        <source>no</source>
+        <source>deleted</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="174"/>
+        <source>modified</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="168"/>
+        <source>unversioned</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="192"/>
+        <source>locked</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="193"/>
+        <source>other lock</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="194"/>
+        <source>stolen lock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="195"/>
+        <source>broken lock</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="191"/>
+        <source>not locked</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="173"/>
+        <source>normal</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="166"/>
+        <source>replaced</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="175"/>
+        <source>conflict</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="188"/>
+        <source>external</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="164"/>
+        <source>ignored</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="169"/>
+        <source>missing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="170"/>
+        <source>type error</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="199"/>
+        <source>no</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="198"/>
         <source>yes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="413"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="413"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="742"/>
         <source>Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="850"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="867"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="765"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="782"/>
         <source>Add</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="765"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="782"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="811"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="828"/>
         <source>Revert</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="873"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890"/>
         <source>There are no unlocked files available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="926"/>
-        <source>There are no locked files available/selected.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="908"/>
-        <source>Break Lock</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="926"/>
-        <source>Steal Lock</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="943"/>
+        <source>There are no locked files available/selected.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="925"/>
+        <source>Break Lock</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="943"/>
+        <source>Steal Lock</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="960"/>
         <source>There are no files available/selected not belonging to a changelist.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979"/>
         <source>There are no files available/selected belonging to a changelist.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67799,42 +67798,42 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="92"/>
         <source>Show differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="96"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="98"/>
         <source>Restore missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="637"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="654"/>
         <source>all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="829"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="846"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="742"/>
         <source>There are no entries selected to be committed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="811"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="828"/>
         <source>There are no missing entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="83"/>
-        <source>Select all for commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="85"/>
+        <source>Select all for commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="87"/>
         <source>Deselect all from commit</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67849,17 +67848,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="92"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="94"/>
         <source>Show differences side-by-side</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="857"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="874"/>
         <source>Side-by-Side Diff</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="857"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="874"/>
         <source>Only one file with uncommitted changes must be selected.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -68029,52 +68028,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="96"/>
         <source>Subversion Branches List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="127"/>
         <source>Subversion Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="107"/>
         <source>The URL of the project repository could not be retrieved from the working copy. The list operation will be aborted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="127"/>
         <source>The URL of the project repository has an invalid format. The list operation will be aborted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="155"/>
         <source>Subversion List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="142"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="144"/>
         <source>Enter the repository URL containing the tags or branches</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="155"/>
         <source>The repository URL is empty. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="172"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="172"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="160"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="162"/>
         <source>The installed version of PySvn should be 1.4.0 or better.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -70038,12 +70037,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="397"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="409"/>
         <source>No issues found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="288"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="297"/>
         <source>Error: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -70053,17 +70052,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="274"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="283"/>
         <source>Preparing files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="98"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="101"/>
         <source>Errors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="298"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="307"/>
         <source>Transferring data...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -70349,72 +70348,72 @@
 <context>
     <name>TabManagerWidget</name>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="73"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="74"/>
         <source>Tab Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="127"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="128"/>
         <source>Saved Tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="171"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="172"/>
         <source>Local File System:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="173"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="174"/>
         <source>eric Web Browser:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="175"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="176"/>
         <source> [FTP]:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="314"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="317"/>
         <source>Window {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="315"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="318"/>
         <source>Double click to switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="506"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="509"/>
         <source>Group by</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="507"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="510"/>
         <source>&amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="512"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="515"/>
         <source>&amp;Domain</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="517"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="520"/>
         <source>&amp;Host</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="528"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="531"/>
         <source>&amp;Bookmark checked tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="533"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="536"/>
         <source>&amp;Close checked tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="567"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="570"/>
         <source>Show Tab Manager</source>
         <translation type="unfinished"></translation>
     </message>
@@ -70422,77 +70421,77 @@
 <context>
     <name>TabWidget</name>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="212"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="216"/>
         <source>Show a navigation menu</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="243"/>
-        <source>Move Left</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="246"/>
-        <source>Move Right</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="249"/>
-        <source>Move First</source>
+        <source>Move Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="252"/>
+        <source>Move Right</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="255"/>
+        <source>Move First</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="258"/>
         <source>Move Last</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="256"/>
-        <source>Close</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="259"/>
-        <source>Close Others</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="262"/>
-        <source>Close All</source>
+        <source>Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="265"/>
-        <source>Save</source>
+        <source>Close Others</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="268"/>
-        <source>Save As...</source>
+        <source>Close All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="271"/>
+        <source>Save</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="274"/>
+        <source>Save As...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="277"/>
         <source>Save All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="279"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="285"/>
         <source>Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="283"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="289"/>
         <source>Copy Path to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="437"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="443"/>
         <source>{0} (ro)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="275"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="281"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation type="unfinished"></translation>
     </message>
@@ -70500,12 +70499,12 @@
 <context>
     <name>Tabview</name>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1002"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1008"/>
         <source>Untitled {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1406"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1412"/>
         <source>{0} (ro)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -71057,17 +71056,17 @@
 <context>
     <name>TemplateMultipleVariablesDialog</name>
     <message>
-        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="105"/>
+        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="106"/>
         <source>Enter Template Variables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="106"/>
-        <source>&amp;OK</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="107"/>
+        <source>&amp;OK</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="108"/>
         <source>&amp;Cancel</source>
         <translation type="unfinished"></translation>
     </message>
@@ -72051,12 +72050,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/TranslationPropertiesDialog.py" line="148"/>
+        <location filename="../Project/TranslationPropertiesDialog.py" line="149"/>
         <source>Exempt file from translation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/TranslationPropertiesDialog.py" line="161"/>
+        <location filename="../Project/TranslationPropertiesDialog.py" line="162"/>
         <source>Exempt directory from translation</source>
         <translation type="unfinished"></translation>
     </message>
@@ -73460,97 +73459,97 @@
 <context>
     <name>UMLGraphicsView</name>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="78"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="79"/>
         <source>Delete shapes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="83"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="84"/>
         <source>Increase width by {0} points</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="90"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="91"/>
         <source>Increase height by {0} points</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="97"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="98"/>
         <source>Decrease width by {0} points</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="104"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="105"/>
         <source>Decrease height by {0} points</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="111"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="112"/>
         <source>Set size</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="121"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="122"/>
         <source>Re-Layout</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="126"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="127"/>
         <source>Align Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="132"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="134"/>
         <source>Align Center Horizontal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="138"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="141"/>
         <source>Align Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="144"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="148"/>
         <source>Align Top</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="150"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="155"/>
         <source>Align Center Vertical</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="156"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="162"/>
         <source>Align Bottom</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="208"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="215"/>
         <source>Graphics</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="357"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="364"/>
         <source>Save Diagram</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="330"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="337"/>
         <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="345"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="352"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="357"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="364"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="116"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="117"/>
         <source>Re-Scan</source>
         <translation type="unfinished"></translation>
     </message>
@@ -73634,7 +73633,7 @@
 <context>
     <name>UnittestDialog</name>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="903"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="906"/>
         <source>Unittest</source>
         <translation type="unfinished"></translation>
     </message>
@@ -73755,72 +73754,72 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="96"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="98"/>
         <source>Start</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="98"/>
-        <source>Start the selected testsuite</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PyUnit/UnittestDialog.py" line="100"/>
+        <source>Start the selected testsuite</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PyUnit/UnittestDialog.py" line="102"/>
         <source>&lt;b&gt;Start Test&lt;/b&gt;&lt;p&gt;This button starts the selected testsuite.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="111"/>
-        <source>Stop</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PyUnit/UnittestDialog.py" line="113"/>
+        <source>Stop</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PyUnit/UnittestDialog.py" line="115"/>
         <source>Stop the running unittest</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="114"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="116"/>
         <source>&lt;b&gt;Stop Test&lt;/b&gt;&lt;p&gt;This button stops a running unittest.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="166"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="168"/>
         <source>^Failure: </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="167"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="169"/>
         <source>^Error: </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="304"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="306"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="699"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="702"/>
         <source>Preparing Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="985"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="988"/>
         <source>Running</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1029"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1032"/>
         <source>Failure: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1044"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1047"/>
         <source>Error: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1158"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1161"/>
         <source>Show Source</source>
         <translation type="unfinished"></translation>
     </message>
@@ -73855,32 +73854,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1059"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1062"/>
         <source>    Skipped: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1077"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1080"/>
         <source>    Expected Failure</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1094"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1097"/>
         <source>    Unexpected Success</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="103"/>
-        <source>Rerun Failed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PyUnit/UnittestDialog.py" line="105"/>
-        <source>Reruns failed tests of the selected testsuite</source>
+        <source>Rerun Failed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PyUnit/UnittestDialog.py" line="107"/>
+        <source>Reruns failed tests of the selected testsuite</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PyUnit/UnittestDialog.py" line="109"/>
         <source>&lt;b&gt;Rerun Failed&lt;/b&gt;&lt;p&gt;This button reruns all failed tests of the selected testsuite.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -73967,17 +73966,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="703"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="706"/>
         <source>Unittest with auto-discovery</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="787"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="790"/>
         <source>You must enter a start directory for auto-discovery.</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../PyUnit/UnittestDialog.py" line="1009"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1012"/>
         <source>Ran %n test(s) in {0:.3f}s</source>
         <translation>
             <numerusform>Ran %n test in {0:.3f}s</numerusform>
@@ -73990,27 +73989,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="89"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="91"/>
         <source>Discover</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="91"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="93"/>
         <source>Discover tests</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="382"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="384"/>
         <source>Discovering Tests</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="447"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="449"/>
         <source>&lt;p&gt;Unable to discover tests.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../PyUnit/UnittestDialog.py" line="619"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="622"/>
         <source>Discovered %n Test(s)</source>
         <translation>
             <numerusform>Discovered %n Test</numerusform>
@@ -74018,27 +74017,27 @@
         </translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="624"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="627"/>
         <source>&lt;p&gt;Unable to discover tests.&lt;/p&gt;&lt;p&gt;{0}&lt;br/&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="690"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="693"/>
         <source>You must select auto-discovery or enter a test suite file or a dotted test name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="712"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="715"/>
         <source>&lt;Unnamed Test&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="903"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="906"/>
         <source>&lt;p&gt;Unable to run test &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;br/&gt;{2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="93"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="95"/>
         <source>&lt;b&gt;Discover&lt;/b&gt;&lt;p&gt;This button starts a discovery of available tests.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74063,12 +74062,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="720"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="723"/>
         <source>No test case has been selected. Shall all test cases be run?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="300"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="302"/>
         <source>Python3 Files ({0});;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74186,7 +74185,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/UrlBar/UrlBar.py" line="454"/>
+        <location filename="../WebBrowser/UrlBar/UrlBar.py" line="465"/>
         <source>Unknown</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74370,1270 +74369,1270 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
+        <location filename="../UI/UserInterface.py" line="1754"/>
         <source>Project-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
+        <location filename="../UI/UserInterface.py" line="1771"/>
         <source>Multiproject-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
+        <location filename="../UI/UserInterface.py" line="1789"/>
         <source>Debug-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1118"/>
+        <location filename="../UI/UserInterface.py" line="1123"/>
         <source>Cooperation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1174"/>
+        <location filename="../UI/UserInterface.py" line="1179"/>
         <source>Symbols</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
         <source>Log-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1849"/>
+        <location filename="../UI/UserInterface.py" line="1859"/>
         <source>Task-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
+        <location filename="../UI/UserInterface.py" line="1878"/>
         <source>Template-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1183"/>
+        <location filename="../UI/UserInterface.py" line="1188"/>
         <source>Numbers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
+        <location filename="../UI/UserInterface.py" line="1824"/>
         <source>File-Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>Shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1911"/>
+        <location filename="../UI/UserInterface.py" line="1921"/>
         <source>Horizontal Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1598"/>
+        <location filename="../UI/UserInterface.py" line="1608"/>
         <source>{0} - Passive Mode</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1605"/>
+        <location filename="../UI/UserInterface.py" line="1615"/>
         <source>{0} - {1} - Passive Mode</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1609"/>
+        <location filename="../UI/UserInterface.py" line="1619"/>
         <source>{0} - {1} - {2} - Passive Mode</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
+        <location filename="../UI/UserInterface.py" line="1642"/>
         <source>Quit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
+        <location filename="../UI/UserInterface.py" line="1642"/>
         <source>&amp;Quit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
+        <location filename="../UI/UserInterface.py" line="1642"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1638"/>
+        <location filename="../UI/UserInterface.py" line="1648"/>
         <source>Quit the IDE</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1639"/>
+        <location filename="../UI/UserInterface.py" line="1649"/>
         <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1710"/>
+        <location filename="../UI/UserInterface.py" line="1720"/>
         <source>Edit Profile</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1716"/>
+        <location filename="../UI/UserInterface.py" line="1726"/>
         <source>Activate the edit view profile</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1718"/>
+        <location filename="../UI/UserInterface.py" line="1728"/>
         <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1727"/>
+        <location filename="../UI/UserInterface.py" line="1737"/>
         <source>Debug Profile</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1733"/>
+        <location filename="../UI/UserInterface.py" line="1743"/>
         <source>Activate the debug view profile</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1735"/>
+        <location filename="../UI/UserInterface.py" line="1745"/>
         <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
+        <location filename="../UI/UserInterface.py" line="1754"/>
         <source>&amp;Project-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
+        <location filename="../UI/UserInterface.py" line="1754"/>
         <source>Alt+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
+        <location filename="../UI/UserInterface.py" line="1771"/>
         <source>&amp;Multiproject-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
+        <location filename="../UI/UserInterface.py" line="1771"/>
         <source>Alt+Shift+M</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
+        <location filename="../UI/UserInterface.py" line="1789"/>
         <source>&amp;Debug-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
+        <location filename="../UI/UserInterface.py" line="1789"/>
         <source>Alt+Shift+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>&amp;Shell</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>Alt+Shift+S</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
+        <location filename="../UI/UserInterface.py" line="1824"/>
         <source>Alt+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
         <source>Alt+Shift+G</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1849"/>
+        <location filename="../UI/UserInterface.py" line="1859"/>
         <source>Alt+Shift+T</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
+        <location filename="../UI/UserInterface.py" line="1878"/>
         <source>Alt+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1911"/>
+        <location filename="../UI/UserInterface.py" line="1921"/>
         <source>&amp;Horizontal Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1915"/>
-        <source>Toggle the Horizontal Toolbox window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1917"/>
-        <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1925"/>
-        <source>Left Sidebar</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1925"/>
+        <source>Toggle the Horizontal Toolbox window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1927"/>
+        <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1935"/>
+        <source>Left Sidebar</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <source>&amp;Left Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1929"/>
+        <location filename="../UI/UserInterface.py" line="1939"/>
         <source>Toggle the left sidebar window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1930"/>
+        <location filename="../UI/UserInterface.py" line="1940"/>
         <source>&lt;b&gt;Toggle the left sidebar window&lt;/b&gt;&lt;p&gt;If the left sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1952"/>
+        <location filename="../UI/UserInterface.py" line="1962"/>
         <source>Bottom Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1952"/>
+        <location filename="../UI/UserInterface.py" line="1962"/>
         <source>&amp;Bottom Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1956"/>
+        <location filename="../UI/UserInterface.py" line="1966"/>
         <source>Toggle the bottom sidebar window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1958"/>
+        <location filename="../UI/UserInterface.py" line="1968"/>
         <source>&lt;b&gt;Toggle the bottom sidebar window&lt;/b&gt;&lt;p&gt;If the bottom sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Alt+Shift+O</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2004"/>
+        <location filename="../UI/UserInterface.py" line="2014"/>
         <source>Alt+Shift+Y</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
+        <location filename="../UI/UserInterface.py" line="2033"/>
         <source>Alt+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>Shift+F1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2122"/>
+        <location filename="../UI/UserInterface.py" line="2132"/>
         <source>Context sensitive help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2123"/>
+        <location filename="../UI/UserInterface.py" line="2133"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>Helpviewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>&amp;Helpviewer...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>F1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2140"/>
+        <location filename="../UI/UserInterface.py" line="2150"/>
         <source>Open the helpviewer window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2160"/>
+        <location filename="../UI/UserInterface.py" line="2170"/>
         <source>Show Versions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2160"/>
+        <location filename="../UI/UserInterface.py" line="2170"/>
         <source>Show &amp;Versions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2164"/>
+        <location filename="../UI/UserInterface.py" line="2174"/>
         <source>Display version information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2166"/>
-        <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2176"/>
+        <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2186"/>
         <source>Check for Updates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2173"/>
+        <location filename="../UI/UserInterface.py" line="2183"/>
         <source>Check for &amp;Updates...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2184"/>
+        <location filename="../UI/UserInterface.py" line="2194"/>
         <source>Show downloadable versions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2184"/>
+        <location filename="../UI/UserInterface.py" line="2194"/>
         <source>Show &amp;downloadable versions...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2188"/>
+        <location filename="../UI/UserInterface.py" line="2198"/>
         <source>Show the versions available for download</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3818"/>
+        <location filename="../UI/UserInterface.py" line="3828"/>
         <source>Report Bug</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2225"/>
+        <location filename="../UI/UserInterface.py" line="2235"/>
         <source>Report &amp;Bug...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2229"/>
+        <location filename="../UI/UserInterface.py" line="2239"/>
         <source>Report a bug</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2230"/>
+        <location filename="../UI/UserInterface.py" line="2240"/>
         <source>&lt;b&gt;Report Bug...&lt;/b&gt;&lt;p&gt;Opens a dialog to report a bug.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
+        <location filename="../UI/UserInterface.py" line="2247"/>
         <source>Request Feature</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
+        <location filename="../UI/UserInterface.py" line="2247"/>
         <source>Request &amp;Feature...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2241"/>
+        <location filename="../UI/UserInterface.py" line="2251"/>
         <source>Send a feature request</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2243"/>
+        <location filename="../UI/UserInterface.py" line="2253"/>
         <source>&lt;b&gt;Request Feature...&lt;/b&gt;&lt;p&gt;Opens a dialog to send a feature request.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3361"/>
+        <location filename="../UI/UserInterface.py" line="3371"/>
         <source>Unittest</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2252"/>
+        <location filename="../UI/UserInterface.py" line="2262"/>
         <source>&amp;Unittest...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2257"/>
+        <location filename="../UI/UserInterface.py" line="2267"/>
         <source>Start unittest dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2258"/>
+        <location filename="../UI/UserInterface.py" line="2268"/>
         <source>&lt;b&gt;Unittest&lt;/b&gt;&lt;p&gt;Perform unit tests. The dialog gives you the ability to select and run a unittest suite.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2266"/>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>Unittest Restart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2266"/>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>&amp;Restart Unittest...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2271"/>
+        <location filename="../UI/UserInterface.py" line="2281"/>
         <source>Restart last unittest</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2272"/>
+        <location filename="../UI/UserInterface.py" line="2282"/>
         <source>&lt;b&gt;Restart Unittest&lt;/b&gt;&lt;p&gt;Restart the unittest performed last.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2296"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Unittest Script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2296"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Unittest &amp;Script...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2301"/>
-        <source>Run unittest with current script</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2303"/>
-        <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2311"/>
-        <source>Unittest Project</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2311"/>
+        <source>Run unittest with current script</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2313"/>
+        <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2321"/>
+        <source>Unittest Project</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2321"/>
         <source>Unittest &amp;Project...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2316"/>
+        <location filename="../UI/UserInterface.py" line="2326"/>
         <source>Run unittest with current project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2318"/>
+        <location filename="../UI/UserInterface.py" line="2328"/>
         <source>&lt;b&gt;Unittest Project&lt;/b&gt;&lt;p&gt;Run unittest with current project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2379"/>
+        <location filename="../UI/UserInterface.py" line="2389"/>
         <source>UI Previewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2379"/>
+        <location filename="../UI/UserInterface.py" line="2389"/>
         <source>&amp;UI Previewer...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2384"/>
+        <location filename="../UI/UserInterface.py" line="2394"/>
         <source>Start the UI Previewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2385"/>
+        <location filename="../UI/UserInterface.py" line="2395"/>
         <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2392"/>
+        <location filename="../UI/UserInterface.py" line="2402"/>
         <source>Translations Previewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2392"/>
+        <location filename="../UI/UserInterface.py" line="2402"/>
         <source>&amp;Translations Previewer...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2397"/>
+        <location filename="../UI/UserInterface.py" line="2407"/>
         <source>Start the Translations Previewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2399"/>
+        <location filename="../UI/UserInterface.py" line="2409"/>
         <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2406"/>
+        <location filename="../UI/UserInterface.py" line="2416"/>
         <source>Compare Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2406"/>
+        <location filename="../UI/UserInterface.py" line="2416"/>
         <source>&amp;Compare Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2424"/>
+        <location filename="../UI/UserInterface.py" line="2434"/>
         <source>Compare two files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2412"/>
+        <location filename="../UI/UserInterface.py" line="2422"/>
         <source>&lt;b&gt;Compare Files&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2419"/>
+        <location filename="../UI/UserInterface.py" line="2429"/>
         <source>Compare Files side by side</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2425"/>
+        <location filename="../UI/UserInterface.py" line="2435"/>
         <source>&lt;b&gt;Compare Files side by side&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files and show the result side by side.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2433"/>
+        <location filename="../UI/UserInterface.py" line="2443"/>
         <source>SQL Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2433"/>
+        <location filename="../UI/UserInterface.py" line="2443"/>
         <source>SQL &amp;Browser...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2438"/>
+        <location filename="../UI/UserInterface.py" line="2448"/>
         <source>Browse a SQL database</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2439"/>
+        <location filename="../UI/UserInterface.py" line="2449"/>
         <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2451"/>
+        <location filename="../UI/UserInterface.py" line="2461"/>
         <source>Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2446"/>
+        <location filename="../UI/UserInterface.py" line="2456"/>
         <source>Mini &amp;Editor...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2452"/>
+        <location filename="../UI/UserInterface.py" line="2462"/>
         <source>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Open a dialog with a simplified editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2488"/>
+        <location filename="../UI/UserInterface.py" line="2498"/>
         <source>Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2488"/>
+        <location filename="../UI/UserInterface.py" line="2498"/>
         <source>&amp;Icon Editor...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2517"/>
+        <location filename="../UI/UserInterface.py" line="2527"/>
         <source>Preferences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2517"/>
+        <location filename="../UI/UserInterface.py" line="2527"/>
         <source>&amp;Preferences...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2522"/>
+        <location filename="../UI/UserInterface.py" line="2532"/>
         <source>Set the prefered configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2524"/>
+        <location filename="../UI/UserInterface.py" line="2534"/>
         <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2533"/>
+        <location filename="../UI/UserInterface.py" line="2543"/>
         <source>Export Preferences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2533"/>
+        <location filename="../UI/UserInterface.py" line="2543"/>
         <source>E&amp;xport Preferences...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2538"/>
+        <location filename="../UI/UserInterface.py" line="2548"/>
         <source>Export the current configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2540"/>
+        <location filename="../UI/UserInterface.py" line="2550"/>
         <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2547"/>
+        <location filename="../UI/UserInterface.py" line="2557"/>
         <source>Import Preferences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2547"/>
+        <location filename="../UI/UserInterface.py" line="2557"/>
         <source>I&amp;mport Preferences...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2552"/>
+        <location filename="../UI/UserInterface.py" line="2562"/>
         <source>Import a previously exported configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2554"/>
+        <location filename="../UI/UserInterface.py" line="2564"/>
         <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2561"/>
+        <location filename="../UI/UserInterface.py" line="2571"/>
         <source>Reload APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2561"/>
+        <location filename="../UI/UserInterface.py" line="2571"/>
         <source>Reload &amp;APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2565"/>
+        <location filename="../UI/UserInterface.py" line="2575"/>
         <source>Reload the API information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2567"/>
+        <location filename="../UI/UserInterface.py" line="2577"/>
         <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2579"/>
+        <location filename="../UI/UserInterface.py" line="2589"/>
         <source>Show external tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2574"/>
+        <location filename="../UI/UserInterface.py" line="2584"/>
         <source>Show external &amp;tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2590"/>
+        <location filename="../UI/UserInterface.py" line="2600"/>
         <source>View Profiles</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2590"/>
+        <location filename="../UI/UserInterface.py" line="2600"/>
         <source>&amp;View Profiles...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2595"/>
+        <location filename="../UI/UserInterface.py" line="2605"/>
         <source>Configure view profiles</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2597"/>
-        <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2607"/>
+        <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2617"/>
         <source>Toolbars</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2607"/>
+        <location filename="../UI/UserInterface.py" line="2617"/>
         <source>Tool&amp;bars...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2612"/>
-        <source>Configure toolbars</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2613"/>
-        <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2622"/>
+        <source>Configure toolbars</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2623"/>
+        <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2632"/>
         <source>Keyboard Shortcuts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2622"/>
+        <location filename="../UI/UserInterface.py" line="2632"/>
         <source>Keyboard &amp;Shortcuts...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2627"/>
-        <source>Set the keyboard shortcuts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2629"/>
-        <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6313"/>
-        <source>Export Keyboard Shortcuts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2637"/>
+        <source>Set the keyboard shortcuts</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2639"/>
+        <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6333"/>
+        <source>Export Keyboard Shortcuts</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2647"/>
         <source>&amp;Export Keyboard Shortcuts...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2642"/>
+        <location filename="../UI/UserInterface.py" line="2652"/>
         <source>Export the keyboard shortcuts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2644"/>
+        <location filename="../UI/UserInterface.py" line="2654"/>
         <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6329"/>
+        <location filename="../UI/UserInterface.py" line="6349"/>
         <source>Import Keyboard Shortcuts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2651"/>
+        <location filename="../UI/UserInterface.py" line="2661"/>
         <source>&amp;Import Keyboard Shortcuts...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2656"/>
+        <location filename="../UI/UserInterface.py" line="2666"/>
         <source>Import the keyboard shortcuts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2658"/>
+        <location filename="../UI/UserInterface.py" line="2668"/>
         <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2716"/>
-        <source>Activate current editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2716"/>
-        <source>Alt+Shift+E</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2726"/>
-        <source>Show next</source>
+        <source>Activate current editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UI/UserInterface.py" line="2726"/>
+        <source>Alt+Shift+E</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2736"/>
+        <source>Show next</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2736"/>
         <source>Ctrl+Alt+Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2735"/>
+        <location filename="../UI/UserInterface.py" line="2745"/>
         <source>Show previous</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2735"/>
+        <location filename="../UI/UserInterface.py" line="2745"/>
         <source>Shift+Ctrl+Alt+Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2744"/>
+        <location filename="../UI/UserInterface.py" line="2754"/>
         <source>Switch between tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2744"/>
+        <location filename="../UI/UserInterface.py" line="2754"/>
         <source>Ctrl+1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2753"/>
+        <location filename="../UI/UserInterface.py" line="2763"/>
         <source>Plugin Infos</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2753"/>
+        <location filename="../UI/UserInterface.py" line="2763"/>
         <source>&amp;Plugin Infos...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2757"/>
+        <location filename="../UI/UserInterface.py" line="2767"/>
         <source>Show Plugin Infos</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2758"/>
+        <location filename="../UI/UserInterface.py" line="2768"/>
         <source>&lt;b&gt;Plugin Infos...&lt;/b&gt;&lt;p&gt;This opens a dialog, that show some information about loaded plugins.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2771"/>
+        <location filename="../UI/UserInterface.py" line="2781"/>
         <source>Install Plugins</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2766"/>
+        <location filename="../UI/UserInterface.py" line="2776"/>
         <source>&amp;Install Plugins...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2772"/>
+        <location filename="../UI/UserInterface.py" line="2782"/>
         <source>&lt;b&gt;Install Plugins...&lt;/b&gt;&lt;p&gt;This opens a dialog to install or update plugins.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2784"/>
+        <location filename="../UI/UserInterface.py" line="2794"/>
         <source>Uninstall Plugin</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2779"/>
+        <location filename="../UI/UserInterface.py" line="2789"/>
         <source>&amp;Uninstall Plugin...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2785"/>
+        <location filename="../UI/UserInterface.py" line="2795"/>
         <source>&lt;b&gt;Uninstall Plugin...&lt;/b&gt;&lt;p&gt;This opens a dialog to uninstall a plugin.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2792"/>
+        <location filename="../UI/UserInterface.py" line="2802"/>
         <source>Plugin Repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2792"/>
+        <location filename="../UI/UserInterface.py" line="2802"/>
         <source>Plugin &amp;Repository...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2797"/>
+        <location filename="../UI/UserInterface.py" line="2807"/>
         <source>Show Plugins available for download</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2799"/>
+        <location filename="../UI/UserInterface.py" line="2809"/>
         <source>&lt;b&gt;Plugin Repository...&lt;/b&gt;&lt;p&gt;This opens a dialog, that shows a list of plugins available on the Internet.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2949"/>
+        <location filename="../UI/UserInterface.py" line="2959"/>
         <source>Eric API Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2953"/>
+        <location filename="../UI/UserInterface.py" line="2963"/>
         <source>Open Eric API Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3154"/>
+        <location filename="../UI/UserInterface.py" line="3164"/>
         <source>&amp;Unittest</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3098"/>
-        <source>E&amp;xtras</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="3108"/>
+        <source>E&amp;xtras</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3118"/>
         <source>Wi&amp;zards</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3171"/>
+        <location filename="../UI/UserInterface.py" line="3181"/>
         <source>Select Tool Group</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3182"/>
+        <location filename="../UI/UserInterface.py" line="3192"/>
         <source>Se&amp;ttings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3212"/>
+        <location filename="../UI/UserInterface.py" line="3222"/>
         <source>&amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3273"/>
+        <location filename="../UI/UserInterface.py" line="3283"/>
         <source>&amp;Toolbars</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3135"/>
+        <location filename="../UI/UserInterface.py" line="3145"/>
         <source>P&amp;lugins</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3144"/>
+        <location filename="../UI/UserInterface.py" line="3154"/>
         <source>Configure...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3287"/>
+        <location filename="../UI/UserInterface.py" line="3297"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3360"/>
+        <location filename="../UI/UserInterface.py" line="3370"/>
         <source>Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3362"/>
+        <location filename="../UI/UserInterface.py" line="3372"/>
         <source>Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5220"/>
+        <location filename="../UI/UserInterface.py" line="5237"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3364"/>
+        <location filename="../UI/UserInterface.py" line="3374"/>
         <source>Profiles</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3365"/>
+        <location filename="../UI/UserInterface.py" line="3375"/>
         <source>Plugins</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3530"/>
+        <location filename="../UI/UserInterface.py" line="3540"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3537"/>
+        <location filename="../UI/UserInterface.py" line="3547"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3544"/>
+        <location filename="../UI/UserInterface.py" line="3554"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3551"/>
+        <location filename="../UI/UserInterface.py" line="3561"/>
         <source>&lt;p&gt;This part of the status bar displays an indication of the current editors files writability.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3558"/>
+        <location filename="../UI/UserInterface.py" line="3568"/>
         <source>&lt;p&gt;This part of the status bar displays the line number of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3565"/>
+        <location filename="../UI/UserInterface.py" line="3575"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3636"/>
+        <location filename="../UI/UserInterface.py" line="3646"/>
         <source>External Tools/{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7279"/>
+        <location filename="../UI/UserInterface.py" line="7300"/>
         <source>&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3818"/>
+        <location filename="../UI/UserInterface.py" line="3828"/>
         <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4138"/>
+        <location filename="../UI/UserInterface.py" line="4148"/>
         <source>Restart application</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4138"/>
+        <location filename="../UI/UserInterface.py" line="4148"/>
         <source>The application needs to be restarted. Do it now?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4219"/>
+        <location filename="../UI/UserInterface.py" line="4229"/>
         <source>Configure Tool Groups ...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4223"/>
+        <location filename="../UI/UserInterface.py" line="4233"/>
         <source>Configure current Tool Group ...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4174"/>
+        <location filename="../UI/UserInterface.py" line="4184"/>
         <source>&amp;Builtin Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4191"/>
+        <location filename="../UI/UserInterface.py" line="4201"/>
         <source>&amp;Plugin Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4340"/>
+        <location filename="../UI/UserInterface.py" line="4350"/>
         <source>&amp;Show all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4342"/>
+        <location filename="../UI/UserInterface.py" line="4352"/>
         <source>&amp;Hide all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5348"/>
+        <location filename="../UI/UserInterface.py" line="5365"/>
         <source>Problem</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5348"/>
+        <location filename="../UI/UserInterface.py" line="5365"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist or is zero length.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5543"/>
+        <location filename="../UI/UserInterface.py" line="5560"/>
         <source>Process Generation Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5073"/>
+        <location filename="../UI/UserInterface.py" line="5090"/>
         <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5143"/>
+        <location filename="../UI/UserInterface.py" line="5160"/>
         <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5187"/>
+        <location filename="../UI/UserInterface.py" line="5204"/>
         <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5220"/>
+        <location filename="../UI/UserInterface.py" line="5237"/>
         <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5234"/>
+        <location filename="../UI/UserInterface.py" line="5251"/>
         <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5254"/>
+        <location filename="../UI/UserInterface.py" line="5271"/>
         <source>&lt;p&gt;Could not start the help viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5304"/>
+        <location filename="../UI/UserInterface.py" line="5321"/>
         <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5361"/>
+        <location filename="../UI/UserInterface.py" line="5378"/>
         <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5384"/>
+        <location filename="../UI/UserInterface.py" line="5401"/>
         <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5488"/>
+        <location filename="../UI/UserInterface.py" line="5505"/>
         <source>External Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5479"/>
+        <location filename="../UI/UserInterface.py" line="5496"/>
         <source>No tool entry found for external tool &apos;{0}&apos; in tool group &apos;{1}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5488"/>
+        <location filename="../UI/UserInterface.py" line="5505"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5527"/>
+        <location filename="../UI/UserInterface.py" line="5544"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5543"/>
+        <location filename="../UI/UserInterface.py" line="5560"/>
         <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5621"/>
+        <location filename="../UI/UserInterface.py" line="5638"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="5900"/>
+        <source>Documentation Missing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5900"/>
+        <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; could not be found.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="5883"/>
-        <source>Documentation Missing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5883"/>
-        <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; could not be found.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5866"/>
         <source>Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6518"/>
+        <location filename="../UI/UserInterface.py" line="6538"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1669"/>
+        <location filename="../UI/UserInterface.py" line="1679"/>
         <source>Save session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6556"/>
+        <location filename="../UI/UserInterface.py" line="6576"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6611"/>
+        <location filename="../UI/UserInterface.py" line="6631"/>
         <source>Read session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6611"/>
+        <location filename="../UI/UserInterface.py" line="6631"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6897"/>
+        <location filename="../UI/UserInterface.py" line="6917"/>
         <source>Drop Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6897"/>
+        <location filename="../UI/UserInterface.py" line="6917"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7062"/>
+        <location filename="../UI/UserInterface.py" line="7082"/>
         <source>&amp;Cancel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7071"/>
+        <location filename="../UI/UserInterface.py" line="7091"/>
         <source>Trying host {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7221"/>
+        <location filename="../UI/UserInterface.py" line="7242"/>
         <source>Update available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7240"/>
+        <location filename="../UI/UserInterface.py" line="7261"/>
         <source>Error during updates check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7240"/>
+        <location filename="../UI/UserInterface.py" line="7261"/>
         <source>Could not perform updates check.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7264"/>
+        <location filename="../UI/UserInterface.py" line="7285"/>
         <source>&lt;h3&gt;Available versions&lt;/h3&gt;&lt;table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7316"/>
+        <location filename="../UI/UserInterface.py" line="7337"/>
         <source>First time usage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2927"/>
+        <location filename="../UI/UserInterface.py" line="2937"/>
         <source>Python 3 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2931"/>
+        <location filename="../UI/UserInterface.py" line="2941"/>
         <source>Open Python 3 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7129"/>
+        <location filename="../UI/UserInterface.py" line="7150"/>
         <source>Error getting versions information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7122"/>
+        <location filename="../UI/UserInterface.py" line="7143"/>
         <source>The versions information could not be downloaded. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6086"/>
+        <location filename="../UI/UserInterface.py" line="6103"/>
         <source>Open Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6086"/>
+        <location filename="../UI/UserInterface.py" line="6103"/>
         <source>Could not start a web browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7129"/>
+        <location filename="../UI/UserInterface.py" line="7150"/>
         <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75658,448 +75657,448 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
+        <location filename="../UI/UserInterface.py" line="1701"/>
         <source>New Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
+        <location filename="../UI/UserInterface.py" line="1701"/>
         <source>New &amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
+        <location filename="../UI/UserInterface.py" line="1701"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2280"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <source>Unittest Rerun Failed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2280"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <source>Rerun Failed Tests...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2285"/>
+        <location filename="../UI/UserInterface.py" line="2295"/>
         <source>Rerun failed tests of the last run</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2287"/>
+        <location filename="../UI/UserInterface.py" line="2297"/>
         <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last unittest run.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2419"/>
+        <location filename="../UI/UserInterface.py" line="2429"/>
         <source>Compare &amp;Files side by side...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2502"/>
+        <location filename="../UI/UserInterface.py" line="2512"/>
         <source>Snapshot</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2502"/>
+        <location filename="../UI/UserInterface.py" line="2512"/>
         <source>&amp;Snapshot...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2507"/>
+        <location filename="../UI/UserInterface.py" line="2517"/>
         <source>Take snapshots of a screen region</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2509"/>
+        <location filename="../UI/UserInterface.py" line="2519"/>
         <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5456"/>
+        <location filename="../UI/UserInterface.py" line="5473"/>
         <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7335"/>
+        <location filename="../UI/UserInterface.py" line="7356"/>
         <source>Select Workspace Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1886"/>
+        <location filename="../UI/UserInterface.py" line="1896"/>
         <source>Left Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1898"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <source>Right Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
+        <location filename="../UI/UserInterface.py" line="1760"/>
         <source>Switch the input focus to the Project-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1752"/>
+        <location filename="../UI/UserInterface.py" line="1762"/>
         <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1767"/>
+        <location filename="../UI/UserInterface.py" line="1777"/>
         <source>Switch the input focus to the Multiproject-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1769"/>
+        <location filename="../UI/UserInterface.py" line="1779"/>
         <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
+        <location filename="../UI/UserInterface.py" line="1795"/>
         <source>Switch the input focus to the Debug-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1787"/>
+        <location filename="../UI/UserInterface.py" line="1797"/>
         <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1803"/>
+        <location filename="../UI/UserInterface.py" line="1813"/>
         <source>Switch the input focus to the Shell window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1805"/>
+        <location filename="../UI/UserInterface.py" line="1815"/>
         <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
+        <location filename="../UI/UserInterface.py" line="1824"/>
         <source>&amp;File-Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
+        <location filename="../UI/UserInterface.py" line="1830"/>
         <source>Switch the input focus to the File-Browser window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1822"/>
+        <location filename="../UI/UserInterface.py" line="1832"/>
         <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
         <source>Lo&amp;g-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1837"/>
+        <location filename="../UI/UserInterface.py" line="1847"/>
         <source>Switch the input focus to the Log-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
-        <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1849"/>
+        <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1859"/>
         <source>&amp;Task-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1855"/>
+        <location filename="../UI/UserInterface.py" line="1865"/>
         <source>Switch the input focus to the Task-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
+        <location filename="../UI/UserInterface.py" line="1878"/>
         <source>Templ&amp;ate-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1874"/>
+        <location filename="../UI/UserInterface.py" line="1884"/>
         <source>Switch the input focus to the Template-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1876"/>
-        <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1886"/>
+        <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1896"/>
         <source>&amp;Left Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1889"/>
+        <location filename="../UI/UserInterface.py" line="1899"/>
         <source>Toggle the Left Toolbox window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1890"/>
+        <location filename="../UI/UserInterface.py" line="1900"/>
         <source>&lt;b&gt;Toggle the Left Toolbox window&lt;/b&gt;&lt;p&gt;If the Left Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1898"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <source>&amp;Right Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1902"/>
+        <location filename="../UI/UserInterface.py" line="1912"/>
         <source>Toggle the Right Toolbox window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1903"/>
+        <location filename="../UI/UserInterface.py" line="1913"/>
         <source>&lt;b&gt;Toggle the Right Toolbox window&lt;/b&gt;&lt;p&gt;If the Right Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1948"/>
         <source>Right Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1948"/>
         <source>&amp;Right Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1942"/>
+        <location filename="../UI/UserInterface.py" line="1952"/>
         <source>Toggle the right sidebar window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1944"/>
+        <location filename="../UI/UserInterface.py" line="1954"/>
         <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Cooperation-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Co&amp;operation-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1973"/>
+        <location filename="../UI/UserInterface.py" line="1983"/>
         <source>Switch the input focus to the Cooperation-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="1985"/>
         <source>&lt;b&gt;Activate Cooperation-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Cooperation-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2004"/>
+        <location filename="../UI/UserInterface.py" line="2014"/>
         <source>Symbols-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="2014"/>
+        <source>S&amp;ymbols-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2020"/>
+        <source>Switch the input focus to the Symbols-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2022"/>
+        <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2033"/>
+        <source>Numbers-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2033"/>
+        <source>Num&amp;bers-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2039"/>
+        <source>Switch the input focus to the Numbers-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2041"/>
+        <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3231"/>
+        <source>&amp;Windows</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1867"/>
+        <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1996"/>
+        <source>IRC</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1996"/>
+        <source>&amp;IRC</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2002"/>
+        <source>Switch the input focus to the IRC window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="2004"/>
-        <source>S&amp;ymbols-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2010"/>
-        <source>Switch the input focus to the Symbols-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2012"/>
-        <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
-        <source>Numbers-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
-        <source>Num&amp;bers-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2029"/>
-        <source>Switch the input focus to the Numbers-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2031"/>
-        <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3221"/>
-        <source>&amp;Windows</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1857"/>
-        <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
-        <source>IRC</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
-        <source>&amp;IRC</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1992"/>
-        <source>Switch the input focus to the IRC window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
         <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2338"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Qt-Designer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2338"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Qt-&amp;Designer...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2343"/>
+        <location filename="../UI/UserInterface.py" line="2353"/>
         <source>Start Qt-Designer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2344"/>
+        <location filename="../UI/UserInterface.py" line="2354"/>
         <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2364"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Qt-Linguist</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2364"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Qt-&amp;Linguist...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2369"/>
+        <location filename="../UI/UserInterface.py" line="2379"/>
         <source>Start Qt-Linguist</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2370"/>
+        <location filename="../UI/UserInterface.py" line="2380"/>
         <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2858"/>
+        <location filename="../UI/UserInterface.py" line="2868"/>
         <source>Qt5 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2862"/>
+        <location filename="../UI/UserInterface.py" line="2872"/>
         <source>Open Qt5 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2666"/>
+        <location filename="../UI/UserInterface.py" line="2676"/>
         <source>Manage SSL Certificates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2666"/>
+        <location filename="../UI/UserInterface.py" line="2676"/>
         <source>Manage SSL Certificates...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2671"/>
+        <location filename="../UI/UserInterface.py" line="2681"/>
         <source>Manage the saved SSL certificates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2673"/>
+        <location filename="../UI/UserInterface.py" line="2683"/>
         <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2682"/>
+        <location filename="../UI/UserInterface.py" line="2692"/>
         <source>Edit Message Filters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2682"/>
+        <location filename="../UI/UserInterface.py" line="2692"/>
         <source>Edit Message Filters...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2687"/>
+        <location filename="../UI/UserInterface.py" line="2697"/>
         <source>Edit the message filters used to suppress unwanted messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2689"/>
+        <location filename="../UI/UserInterface.py" line="2699"/>
         <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2888"/>
+        <location filename="../UI/UserInterface.py" line="2898"/>
         <source>PyQt5 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2892"/>
+        <location filename="../UI/UserInterface.py" line="2902"/>
         <source>Open PyQt5 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2933"/>
+        <location filename="../UI/UserInterface.py" line="2943"/>
         <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7062"/>
+        <location filename="../UI/UserInterface.py" line="7082"/>
         <source>%v/%m</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2203"/>
+        <location filename="../UI/UserInterface.py" line="2213"/>
         <source>Show Error Log</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2199"/>
+        <location filename="../UI/UserInterface.py" line="2209"/>
         <source>Show Error &amp;Log...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2204"/>
+        <location filename="../UI/UserInterface.py" line="2214"/>
         <source>&lt;b&gt;Show Error Log...&lt;/b&gt;&lt;p&gt;Opens a dialog showing the most recent error log.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7066"/>
+        <location filename="../UI/UserInterface.py" line="7086"/>
         <source>Version Check</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76109,67 +76108,67 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4194"/>
+        <location filename="../UI/UserInterface.py" line="4204"/>
         <source>&amp;User Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4266"/>
+        <location filename="../UI/UserInterface.py" line="4276"/>
         <source>No User Tools Configured</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2459"/>
+        <location filename="../UI/UserInterface.py" line="2469"/>
         <source>Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2459"/>
+        <location filename="../UI/UserInterface.py" line="2469"/>
         <source>&amp;Hex Editor...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2705"/>
+        <location filename="../UI/UserInterface.py" line="2715"/>
         <source>Clear private data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2707"/>
+        <location filename="../UI/UserInterface.py" line="2717"/>
         <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1665"/>
+        <location filename="../UI/UserInterface.py" line="1675"/>
         <source>Save session...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1670"/>
+        <location filename="../UI/UserInterface.py" line="1680"/>
         <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6650"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <source>Load session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1678"/>
+        <location filename="../UI/UserInterface.py" line="1688"/>
         <source>Load session...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1683"/>
+        <location filename="../UI/UserInterface.py" line="1693"/>
         <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6703"/>
+        <location filename="../UI/UserInterface.py" line="6723"/>
         <source>Crash Session found!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6703"/>
+        <location filename="../UI/UserInterface.py" line="6723"/>
         <source>A session file of a crashed session was found. Shall this session be restored?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76184,448 +76183,448 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7209"/>
+        <location filename="../UI/UserInterface.py" line="7230"/>
         <source>Update Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7209"/>
+        <location filename="../UI/UserInterface.py" line="7230"/>
         <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2042"/>
+        <location filename="../UI/UserInterface.py" line="2052"/>
         <source>Code Documentation Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2863"/>
+        <location filename="../UI/UserInterface.py" line="2873"/>
         <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2894"/>
+        <location filename="../UI/UserInterface.py" line="2904"/>
         <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2970"/>
+        <location filename="../UI/UserInterface.py" line="2980"/>
         <source>PySide2 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2974"/>
+        <location filename="../UI/UserInterface.py" line="2984"/>
         <source>Open PySide2 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2976"/>
+        <location filename="../UI/UserInterface.py" line="2986"/>
         <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5866"/>
+        <location filename="../UI/UserInterface.py" line="5883"/>
         <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2813"/>
+        <location filename="../UI/UserInterface.py" line="2823"/>
         <source>Virtualenv Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2807"/>
+        <location filename="../UI/UserInterface.py" line="2817"/>
         <source>&amp;Virtualenv Manager...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2815"/>
+        <location filename="../UI/UserInterface.py" line="2825"/>
         <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2830"/>
+        <location filename="../UI/UserInterface.py" line="2840"/>
         <source>Virtualenv Configurator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2824"/>
+        <location filename="../UI/UserInterface.py" line="2834"/>
         <source>Virtualenv &amp;Configurator...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2832"/>
+        <location filename="../UI/UserInterface.py" line="2842"/>
         <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3228"/>
+        <location filename="../UI/UserInterface.py" line="3238"/>
         <source>Left Side</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3240"/>
+        <location filename="../UI/UserInterface.py" line="3250"/>
         <source>Bottom Side</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3247"/>
+        <location filename="../UI/UserInterface.py" line="3257"/>
         <source>Right Side</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3267"/>
+        <location filename="../UI/UserInterface.py" line="3277"/>
         <source>Plug-ins</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
+        <location filename="../UI/UserInterface.py" line="1659"/>
         <source>Restart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
+        <location filename="../UI/UserInterface.py" line="1659"/>
         <source>Ctrl+Shift+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1655"/>
+        <location filename="../UI/UserInterface.py" line="1665"/>
         <source>Restart the IDE</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1656"/>
+        <location filename="../UI/UserInterface.py" line="1666"/>
         <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6043"/>
+        <location filename="../UI/UserInterface.py" line="6060"/>
         <source>Start Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="2090"/>
+        <source>Conda</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2072"/>
+        <source>PyPI</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3586"/>
+        <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2108"/>
+        <source>MicroPython</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1996"/>
+        <source>Ctrl+Alt+Shift+I</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2052"/>
+        <source>Ctrl+Alt+Shift+D</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2058"/>
+        <source>Switch the input focus to the Code Documentation Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2061"/>
+        <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2072"/>
+        <source>Ctrl+Alt+Shift+P</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2078"/>
+        <source>Switch the input focus to the PyPI window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="2080"/>
-        <source>Conda</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2062"/>
-        <source>PyPI</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3576"/>
-        <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2098"/>
-        <source>MicroPython</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
-        <source>Ctrl+Alt+Shift+I</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2042"/>
-        <source>Ctrl+Alt+Shift+D</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2048"/>
-        <source>Switch the input focus to the Code Documentation Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2051"/>
-        <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2062"/>
-        <source>Ctrl+Alt+Shift+P</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2068"/>
-        <source>Switch the input focus to the PyPI window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2070"/>
         <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2080"/>
+        <location filename="../UI/UserInterface.py" line="2090"/>
         <source>Ctrl+Alt+Shift+C</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2086"/>
+        <location filename="../UI/UserInterface.py" line="2096"/>
         <source>Switch the input focus to the Conda window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2088"/>
-        <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2098"/>
+        <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2108"/>
         <source>Ctrl+Alt+Shift+M</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2104"/>
+        <location filename="../UI/UserInterface.py" line="2114"/>
         <source>Switch the input focus to the MicroPython window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2106"/>
+        <location filename="../UI/UserInterface.py" line="2116"/>
         <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3225"/>
+        <location filename="../UI/UserInterface.py" line="3235"/>
         <source>Central Park</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3745"/>
+        <location filename="../UI/UserInterface.py" line="3755"/>
         <source>&lt;h2&gt;Version Numbers&lt;/h2&gt;&lt;table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5082"/>
+        <location filename="../UI/UserInterface.py" line="5099"/>
         <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5152"/>
+        <location filename="../UI/UserInterface.py" line="5169"/>
         <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5196"/>
+        <location filename="../UI/UserInterface.py" line="5213"/>
         <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2211"/>
+        <location filename="../UI/UserInterface.py" line="2221"/>
         <source>Show Install Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2211"/>
+        <location filename="../UI/UserInterface.py" line="2221"/>
         <source>Show Install &amp;Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2215"/>
+        <location filename="../UI/UserInterface.py" line="2225"/>
         <source>Show Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2217"/>
+        <location filename="../UI/UserInterface.py" line="2227"/>
         <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2873"/>
+        <location filename="../UI/UserInterface.py" line="2883"/>
         <source>Qt6 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2877"/>
+        <location filename="../UI/UserInterface.py" line="2887"/>
         <source>Open Qt6 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2878"/>
+        <location filename="../UI/UserInterface.py" line="2888"/>
         <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2905"/>
+        <location filename="../UI/UserInterface.py" line="2915"/>
         <source>PyQt6 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2909"/>
+        <location filename="../UI/UserInterface.py" line="2919"/>
         <source>Open PyQt6 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2911"/>
+        <location filename="../UI/UserInterface.py" line="2921"/>
         <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2990"/>
+        <location filename="../UI/UserInterface.py" line="3000"/>
         <source>PySide6 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2994"/>
+        <location filename="../UI/UserInterface.py" line="3004"/>
         <source>Open PySide6 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2996"/>
+        <location filename="../UI/UserInterface.py" line="3006"/>
         <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5761"/>
+        <location filename="../UI/UserInterface.py" line="5778"/>
         <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1697"/>
+        <location filename="../UI/UserInterface.py" line="1707"/>
         <source>Open a new eric instance</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1699"/>
+        <location filename="../UI/UserInterface.py" line="1709"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2142"/>
+        <location filename="../UI/UserInterface.py" line="2152"/>
         <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is search in the Qt help collection.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2177"/>
+        <location filename="../UI/UserInterface.py" line="2187"/>
         <source>&lt;b&gt;Check for Updates...&lt;/b&gt;&lt;p&gt;Checks the internet for updates of eric.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2190"/>
+        <location filename="../UI/UserInterface.py" line="2200"/>
         <source>&lt;b&gt;Show downloadable versions...&lt;/b&gt;&lt;p&gt;Shows the eric versions available for download from the internet.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2464"/>
-        <source>Start the eric Hex Editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2466"/>
-        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2474"/>
+        <source>Start the eric Hex Editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2476"/>
+        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2484"/>
         <source>eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2474"/>
+        <location filename="../UI/UserInterface.py" line="2484"/>
         <source>eric &amp;Web Browser...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2479"/>
+        <location filename="../UI/UserInterface.py" line="2489"/>
         <source>Start the eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2481"/>
+        <location filename="../UI/UserInterface.py" line="2491"/>
         <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2493"/>
+        <location filename="../UI/UserInterface.py" line="2503"/>
         <source>Start the eric Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2495"/>
+        <location filename="../UI/UserInterface.py" line="2505"/>
         <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2581"/>
+        <location filename="../UI/UserInterface.py" line="2591"/>
         <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2955"/>
+        <location filename="../UI/UserInterface.py" line="2965"/>
         <source>&lt;b&gt;Eric API Documentation&lt;/b&gt;&lt;p&gt;Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5979"/>
+        <location filename="../UI/UserInterface.py" line="5996"/>
         <source>The eric web browser could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6043"/>
+        <location filename="../UI/UserInterface.py" line="6060"/>
         <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7221"/>
+        <location filename="../UI/UserInterface.py" line="7242"/>
         <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7199"/>
+        <location filename="../UI/UserInterface.py" line="7220"/>
         <source>You are using a snapshot release of eric. A more up-to-date stable release might be available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7233"/>
+        <location filename="../UI/UserInterface.py" line="7254"/>
         <source>eric is up to date</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7233"/>
+        <location filename="../UI/UserInterface.py" line="7254"/>
         <source>You are using the latest version of eric</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7316"/>
+        <location filename="../UI/UserInterface.py" line="7337"/>
         <source>eric has not been configured yet. The configuration dialog will be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6294"/>
+        <location filename="../UI/UserInterface.py" line="6314"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard Shortcuts File (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6313"/>
+        <location filename="../UI/UserInterface.py" line="6333"/>
         <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6329"/>
+        <location filename="../UI/UserInterface.py" line="6349"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6518"/>
+        <location filename="../UI/UserInterface.py" line="6538"/>
         <source>Read Tasks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6627"/>
+        <location filename="../UI/UserInterface.py" line="6647"/>
         <source>Save Session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6584"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>Read Session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6650"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76705,7 +76704,7 @@
 <context>
     <name>Utilities</name>
     <message>
-        <location filename="../Utilities/__init__.py" line="1453"/>
+        <location filename="../Utilities/__init__.py" line="1454"/>
         <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76991,32 +76990,32 @@
 <context>
     <name>VariablesViewer</name>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="958"/>
+        <location filename="../Debugger/VariablesViewer.py" line="965"/>
         <source>Global Variables</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="959"/>
-        <source>&lt;b&gt;The Global Variables Viewer Window&lt;/b&gt;&lt;p&gt;This window displays the global variables of the debugged program.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/VariablesViewer.py" line="965"/>
-        <source>Local Variables</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/VariablesViewer.py" line="966"/>
+        <source>&lt;b&gt;The Global Variables Viewer Window&lt;/b&gt;&lt;p&gt;This window displays the global variables of the debugged program.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/VariablesViewer.py" line="972"/>
+        <source>Local Variables</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/VariablesViewer.py" line="973"/>
         <source>&lt;b&gt;The Local Variables Viewer Window&lt;/b&gt;&lt;p&gt;This window displays the local variables of the debugged program.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1083"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1090"/>
         <source>Show Details...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1098"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1105"/>
         <source>Configure...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77026,27 +77025,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1096"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1103"/>
         <source>Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1085"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1092"/>
         <source>Expand</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1086"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1093"/>
         <source>Collapse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1087"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1094"/>
         <source>Collapse All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1099"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1106"/>
         <source>Variables Type Filter...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77687,7 +77686,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VCS/VersionControl.py" line="761"/>
+        <location filename="../VCS/VersionControl.py" line="764"/>
         <source>Repository status checking is switched off</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77695,3074 +77694,3074 @@
 <context>
     <name>ViewManager</name>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>&amp;New</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="592"/>
+        <location filename="../ViewManager/ViewManager.py" line="593"/>
         <source>Open an empty editor window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="595"/>
+        <location filename="../ViewManager/ViewManager.py" line="596"/>
         <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="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>Open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>&amp;Open...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="611"/>
+        <location filename="../ViewManager/ViewManager.py" line="612"/>
         <source>Open a file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="613"/>
+        <location filename="../ViewManager/ViewManager.py" line="614"/>
         <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="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>&amp;Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="632"/>
+        <location filename="../ViewManager/ViewManager.py" line="633"/>
         <source>Close the current window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="636"/>
         <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="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="644"/>
         <source>Close All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="644"/>
         <source>Clos&amp;e All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="647"/>
+        <location filename="../ViewManager/ViewManager.py" line="648"/>
         <source>Close all editor windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="650"/>
+        <location filename="../ViewManager/ViewManager.py" line="651"/>
         <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="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>&amp;Save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="669"/>
+        <location filename="../ViewManager/ViewManager.py" line="670"/>
         <source>Save the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="671"/>
+        <location filename="../ViewManager/ViewManager.py" line="672"/>
         <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="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Save as</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Save &amp;as...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="686"/>
+        <location filename="../ViewManager/ViewManager.py" line="687"/>
         <source>Save the current file to a new one</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="688"/>
+        <location filename="../ViewManager/ViewManager.py" line="689"/>
         <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="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="714"/>
         <source>Save all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="718"/>
+        <location filename="../ViewManager/ViewManager.py" line="719"/>
         <source>Save all files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="720"/>
+        <location filename="../ViewManager/ViewManager.py" line="721"/>
         <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="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>&amp;Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="737"/>
+        <location filename="../ViewManager/ViewManager.py" line="738"/>
         <source>Print the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="739"/>
+        <location filename="../ViewManager/ViewManager.py" line="740"/>
         <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="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="749"/>
         <source>Print Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="753"/>
+        <location filename="../ViewManager/ViewManager.py" line="754"/>
         <source>Print preview of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="755"/>
+        <location filename="../ViewManager/ViewManager.py" line="756"/>
         <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="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Search File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Search &amp;File...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Alt+Ctrl+F</source>
         <comment>File|Search File</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="771"/>
+        <location filename="../ViewManager/ViewManager.py" line="772"/>
         <source>Search for a file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="773"/>
+        <location filename="../ViewManager/ViewManager.py" line="774"/>
         <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="787"/>
+        <location filename="../ViewManager/ViewManager.py" line="788"/>
         <source>&amp;File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="789"/>
+        <location filename="../ViewManager/ViewManager.py" line="790"/>
         <source>Open &amp;Recent Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="792"/>
+        <location filename="../ViewManager/ViewManager.py" line="793"/>
         <source>Open &amp;Bookmarked Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="840"/>
+        <location filename="../ViewManager/ViewManager.py" line="841"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="863"/>
+        <location filename="../ViewManager/ViewManager.py" line="864"/>
         <source>Export as</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>&amp;Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="896"/>
+        <location filename="../ViewManager/ViewManager.py" line="897"/>
         <source>Undo the last change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="898"/>
+        <location filename="../ViewManager/ViewManager.py" line="899"/>
         <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="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>&amp;Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="914"/>
+        <location filename="../ViewManager/ViewManager.py" line="915"/>
         <source>Redo the last change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="916"/>
+        <location filename="../ViewManager/ViewManager.py" line="917"/>
         <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="933"/>
+        <location filename="../ViewManager/ViewManager.py" line="934"/>
         <source>Revert to last saved state</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="924"/>
+        <location filename="../ViewManager/ViewManager.py" line="925"/>
         <source>Re&amp;vert to last saved state</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="924"/>
+        <location filename="../ViewManager/ViewManager.py" line="925"/>
         <source>Ctrl+Y</source>
         <comment>Edit|Revert</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="935"/>
+        <location filename="../ViewManager/ViewManager.py" line="936"/>
         <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="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Cut</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Cu&amp;t</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="955"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Cut the selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="958"/>
         <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="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>&amp;Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="976"/>
         <source>Copy the selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="977"/>
+        <location filename="../ViewManager/ViewManager.py" line="978"/>
         <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="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>&amp;Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="995"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Paste the last cut/copied text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="998"/>
         <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="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1014"/>
+        <location filename="../ViewManager/ViewManager.py" line="1015"/>
         <source>Clear all text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1016"/>
+        <location filename="../ViewManager/ViewManager.py" line="1017"/>
         <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="1031"/>
+        <location filename="../ViewManager/ViewManager.py" line="1032"/>
         <source>Join Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1024"/>
+        <location filename="../ViewManager/ViewManager.py" line="1025"/>
         <source>Ctrl+J</source>
         <comment>Edit|Join Lines</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1033"/>
+        <location filename="../ViewManager/ViewManager.py" line="1034"/>
         <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="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>Indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>&amp;Indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>Ctrl+I</source>
         <comment>Edit|Indent</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1049"/>
+        <location filename="../ViewManager/ViewManager.py" line="1050"/>
         <source>Indent line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1051"/>
+        <location filename="../ViewManager/ViewManager.py" line="1052"/>
         <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="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>Unindent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>U&amp;nindent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>Ctrl+Shift+I</source>
         <comment>Edit|Unindent</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1068"/>
+        <location filename="../ViewManager/ViewManager.py" line="1069"/>
         <source>Unindent line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1070"/>
+        <location filename="../ViewManager/ViewManager.py" line="1071"/>
         <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="1079"/>
+        <location filename="../ViewManager/ViewManager.py" line="1080"/>
         <source>Smart indent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1085"/>
+        <location filename="../ViewManager/ViewManager.py" line="1086"/>
         <source>Smart indent Line or Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1087"/>
+        <location filename="../ViewManager/ViewManager.py" line="1088"/>
         <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="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>C&amp;omment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>Ctrl+M</source>
         <comment>Edit|Comment</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1104"/>
+        <location filename="../ViewManager/ViewManager.py" line="1105"/>
         <source>Comment Line or Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1106"/>
+        <location filename="../ViewManager/ViewManager.py" line="1107"/>
         <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="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Uncomment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Unco&amp;mment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Alt+Ctrl+M</source>
         <comment>Edit|Uncomment</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1123"/>
+        <location filename="../ViewManager/ViewManager.py" line="1124"/>
         <source>Uncomment Line or Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1125"/>
+        <location filename="../ViewManager/ViewManager.py" line="1126"/>
         <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="1156"/>
+        <location filename="../ViewManager/ViewManager.py" line="1157"/>
         <source>Stream Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1161"/>
+        <location filename="../ViewManager/ViewManager.py" line="1162"/>
         <source>Stream Comment Line or Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1164"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <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="1173"/>
+        <location filename="../ViewManager/ViewManager.py" line="1174"/>
         <source>Box Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1178"/>
+        <location filename="../ViewManager/ViewManager.py" line="1179"/>
         <source>Box Comment Line or Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1180"/>
+        <location filename="../ViewManager/ViewManager.py" line="1181"/>
         <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="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Select to brace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Select to &amp;brace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Ctrl+E</source>
         <comment>Edit|Select to brace</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1196"/>
+        <location filename="../ViewManager/ViewManager.py" line="1197"/>
         <source>Select text to the matching brace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1198"/>
+        <location filename="../ViewManager/ViewManager.py" line="1199"/>
         <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="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>Select all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>&amp;Select all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select all</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1215"/>
+        <location filename="../ViewManager/ViewManager.py" line="1216"/>
         <source>Select all text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1217"/>
+        <location filename="../ViewManager/ViewManager.py" line="1218"/>
         <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="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>Deselect all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>&amp;Deselect all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>Alt+Ctrl+A</source>
         <comment>Edit|Deselect all</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1232"/>
+        <location filename="../ViewManager/ViewManager.py" line="1233"/>
         <source>Deselect all text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1234"/>
+        <location filename="../ViewManager/ViewManager.py" line="1235"/>
         <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="1249"/>
+        <location filename="../ViewManager/ViewManager.py" line="1250"/>
         <source>Convert Line End Characters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1242"/>
+        <location filename="../ViewManager/ViewManager.py" line="1243"/>
         <source>Convert &amp;Line End Characters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1251"/>
+        <location filename="../ViewManager/ViewManager.py" line="1252"/>
         <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="1265"/>
+        <location filename="../ViewManager/ViewManager.py" line="1266"/>
         <source>Shorten empty lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1267"/>
+        <location filename="../ViewManager/ViewManager.py" line="1268"/>
         <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="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>Calltip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>&amp;Calltip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1370"/>
+        <location filename="../ViewManager/ViewManager.py" line="1371"/>
         <source>Show Calltips</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1372"/>
+        <location filename="../ViewManager/ViewManager.py" line="1373"/>
         <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="1452"/>
+        <location filename="../ViewManager/ViewManager.py" line="1453"/>
         <source>Move left one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1452"/>
+        <location filename="../ViewManager/ViewManager.py" line="1453"/>
         <source>Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1466"/>
+        <location filename="../ViewManager/ViewManager.py" line="1467"/>
         <source>Move right one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1466"/>
+        <location filename="../ViewManager/ViewManager.py" line="1467"/>
         <source>Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1481"/>
         <source>Move up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1481"/>
         <source>Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1492"/>
+        <location filename="../ViewManager/ViewManager.py" line="1493"/>
         <source>Move down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1492"/>
+        <location filename="../ViewManager/ViewManager.py" line="1493"/>
         <source>Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1504"/>
+        <location filename="../ViewManager/ViewManager.py" line="1505"/>
         <source>Move left one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1538"/>
+        <location filename="../ViewManager/ViewManager.py" line="1539"/>
         <source>Alt+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1518"/>
+        <location filename="../ViewManager/ViewManager.py" line="1519"/>
         <source>Move right one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2418"/>
+        <location filename="../ViewManager/ViewManager.py" line="2419"/>
         <source>Alt+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1532"/>
+        <location filename="../ViewManager/ViewManager.py" line="1533"/>
         <source>Move left one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1583"/>
+        <location filename="../ViewManager/ViewManager.py" line="1584"/>
         <source>Ctrl+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1547"/>
+        <location filename="../ViewManager/ViewManager.py" line="1548"/>
         <source>Move right one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2173"/>
         <source>Ctrl+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2373"/>
+        <location filename="../ViewManager/ViewManager.py" line="2374"/>
         <source>Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1586"/>
+        <location filename="../ViewManager/ViewManager.py" line="1587"/>
         <source>Alt+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2388"/>
+        <location filename="../ViewManager/ViewManager.py" line="2389"/>
         <source>End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1609"/>
+        <location filename="../ViewManager/ViewManager.py" line="1610"/>
         <source>Scroll view down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1699"/>
+        <location filename="../ViewManager/ViewManager.py" line="1700"/>
         <source>Ctrl+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1621"/>
+        <location filename="../ViewManager/ViewManager.py" line="1622"/>
         <source>Scroll view up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1683"/>
         <source>Ctrl+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1632"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Move up one paragraph</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1632"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Alt+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1641"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Move down one paragraph</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1641"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Alt+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1653"/>
+        <location filename="../ViewManager/ViewManager.py" line="1654"/>
         <source>Move up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1653"/>
+        <location filename="../ViewManager/ViewManager.py" line="1654"/>
         <source>PgUp</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1662"/>
+        <location filename="../ViewManager/ViewManager.py" line="1663"/>
         <source>Move down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1662"/>
+        <location filename="../ViewManager/ViewManager.py" line="1663"/>
         <source>PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1685"/>
+        <location filename="../ViewManager/ViewManager.py" line="1686"/>
         <source>Ctrl+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1702"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>Ctrl+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1708"/>
+        <location filename="../ViewManager/ViewManager.py" line="1709"/>
         <source>Indent one level</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1708"/>
+        <location filename="../ViewManager/ViewManager.py" line="1709"/>
         <source>Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1717"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Unindent one level</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1717"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Shift+Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1728"/>
         <source>Extend selection left one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1728"/>
         <source>Shift+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1742"/>
+        <location filename="../ViewManager/ViewManager.py" line="1743"/>
         <source>Extend selection right one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1742"/>
+        <location filename="../ViewManager/ViewManager.py" line="1743"/>
         <source>Shift+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1757"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Extend selection up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1757"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Shift+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1772"/>
+        <location filename="../ViewManager/ViewManager.py" line="1773"/>
         <source>Extend selection down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1772"/>
+        <location filename="../ViewManager/ViewManager.py" line="1773"/>
         <source>Shift+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1787"/>
+        <location filename="../ViewManager/ViewManager.py" line="1788"/>
         <source>Extend selection left one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1823"/>
+        <location filename="../ViewManager/ViewManager.py" line="1824"/>
         <source>Alt+Shift+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1802"/>
         <source>Extend selection right one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2433"/>
+        <location filename="../ViewManager/ViewManager.py" line="2434"/>
         <source>Alt+Shift+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1815"/>
+        <location filename="../ViewManager/ViewManager.py" line="1816"/>
         <source>Extend selection left one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2527"/>
+        <location filename="../ViewManager/ViewManager.py" line="2528"/>
         <source>Ctrl+Shift+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1832"/>
+        <location filename="../ViewManager/ViewManager.py" line="1833"/>
         <source>Extend selection right one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2189"/>
+        <location filename="../ViewManager/ViewManager.py" line="2190"/>
         <source>Ctrl+Shift+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1861"/>
+        <location filename="../ViewManager/ViewManager.py" line="1862"/>
         <source>Shift+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2293"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Alt+Shift+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1878"/>
+        <location filename="../ViewManager/ViewManager.py" line="1879"/>
         <source>Shift+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1884"/>
+        <location filename="../ViewManager/ViewManager.py" line="1885"/>
         <source>Extend selection up one paragraph</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1884"/>
+        <location filename="../ViewManager/ViewManager.py" line="1885"/>
         <source>Alt+Shift+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1897"/>
+        <location filename="../ViewManager/ViewManager.py" line="1898"/>
         <source>Extend selection down one paragraph</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1897"/>
+        <location filename="../ViewManager/ViewManager.py" line="1898"/>
         <source>Alt+Shift+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1910"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1910"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Shift+PgUp</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1922"/>
+        <location filename="../ViewManager/ViewManager.py" line="1923"/>
         <source>Extend selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1922"/>
+        <location filename="../ViewManager/ViewManager.py" line="1923"/>
         <source>Shift+PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1949"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Ctrl+Shift+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1966"/>
+        <location filename="../ViewManager/ViewManager.py" line="1967"/>
         <source>Ctrl+Shift+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1972"/>
+        <location filename="../ViewManager/ViewManager.py" line="1973"/>
         <source>Delete previous character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1972"/>
+        <location filename="../ViewManager/ViewManager.py" line="1973"/>
         <source>Backspace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1984"/>
+        <location filename="../ViewManager/ViewManager.py" line="1985"/>
         <source>Shift+Backspace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2003"/>
+        <location filename="../ViewManager/ViewManager.py" line="2004"/>
         <source>Delete current character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2003"/>
+        <location filename="../ViewManager/ViewManager.py" line="2004"/>
         <source>Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2017"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <source>Delete word to left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2017"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <source>Ctrl+Backspace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2028"/>
+        <location filename="../ViewManager/ViewManager.py" line="2029"/>
         <source>Delete word to right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2028"/>
+        <location filename="../ViewManager/ViewManager.py" line="2029"/>
         <source>Ctrl+Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2038"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Delete line to left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2038"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2049"/>
+        <location filename="../ViewManager/ViewManager.py" line="2050"/>
         <source>Delete line to right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2058"/>
+        <location filename="../ViewManager/ViewManager.py" line="2059"/>
         <source>Ctrl+Shift+Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Insert new line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Return</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Enter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <source>Insert new line below current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <source>Shift+Return</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <source>Shift+Enter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Delete current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Ctrl+Shift+L</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2098"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Duplicate current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2098"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Ctrl+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2109"/>
+        <location filename="../ViewManager/ViewManager.py" line="2110"/>
         <source>Swap current and previous lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2109"/>
+        <location filename="../ViewManager/ViewManager.py" line="2110"/>
         <source>Ctrl+T</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2132"/>
+        <location filename="../ViewManager/ViewManager.py" line="2133"/>
         <source>Cut current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2132"/>
+        <location filename="../ViewManager/ViewManager.py" line="2133"/>
         <source>Alt+Shift+L</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2142"/>
+        <location filename="../ViewManager/ViewManager.py" line="2143"/>
         <source>Copy current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2142"/>
+        <location filename="../ViewManager/ViewManager.py" line="2143"/>
         <source>Ctrl+Shift+T</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2153"/>
+        <location filename="../ViewManager/ViewManager.py" line="2154"/>
         <source>Toggle insert/overtype</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2153"/>
+        <location filename="../ViewManager/ViewManager.py" line="2154"/>
         <source>Ins</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2717"/>
+        <location filename="../ViewManager/ViewManager.py" line="2718"/>
         <source>Convert selection to lower case</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2717"/>
+        <location filename="../ViewManager/ViewManager.py" line="2718"/>
         <source>Alt+Shift+U</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2729"/>
+        <location filename="../ViewManager/ViewManager.py" line="2730"/>
         <source>Convert selection to upper case</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2729"/>
+        <location filename="../ViewManager/ViewManager.py" line="2730"/>
         <source>Ctrl+Shift+U</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2175"/>
+        <location filename="../ViewManager/ViewManager.py" line="2176"/>
         <source>Alt+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2195"/>
+        <location filename="../ViewManager/ViewManager.py" line="2196"/>
         <source>Formfeed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2204"/>
+        <location filename="../ViewManager/ViewManager.py" line="2205"/>
         <source>Escape</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2204"/>
+        <location filename="../ViewManager/ViewManager.py" line="2205"/>
         <source>Esc</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2213"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <source>Extend rectangular selection down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2213"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <source>Alt+Ctrl+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2229"/>
+        <location filename="../ViewManager/ViewManager.py" line="2230"/>
         <source>Extend rectangular selection up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2229"/>
+        <location filename="../ViewManager/ViewManager.py" line="2230"/>
         <source>Alt+Ctrl+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2244"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <source>Extend rectangular selection left one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2244"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <source>Alt+Ctrl+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2262"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Extend rectangular selection right one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2262"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Alt+Ctrl+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2318"/>
+        <location filename="../ViewManager/ViewManager.py" line="2319"/>
         <source>Extend rectangular selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2333"/>
+        <location filename="../ViewManager/ViewManager.py" line="2334"/>
         <source>Extend rectangular selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2351"/>
+        <location filename="../ViewManager/ViewManager.py" line="2352"/>
         <source>Duplicate current selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2351"/>
+        <location filename="../ViewManager/ViewManager.py" line="2352"/>
         <source>Ctrl+Shift+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3262"/>
+        <location filename="../ViewManager/ViewManager.py" line="3263"/>
         <source>&amp;Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2758"/>
+        <location filename="../ViewManager/ViewManager.py" line="2759"/>
         <source>&amp;Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2817"/>
+        <location filename="../ViewManager/ViewManager.py" line="2818"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3296"/>
+        <location filename="../ViewManager/ViewManager.py" line="3297"/>
         <source>Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2849"/>
+        <location filename="../ViewManager/ViewManager.py" line="2850"/>
         <source>&amp;Search...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2849"/>
+        <location filename="../ViewManager/ViewManager.py" line="2850"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2857"/>
+        <location filename="../ViewManager/ViewManager.py" line="2858"/>
         <source>Search for a text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2859"/>
+        <location filename="../ViewManager/ViewManager.py" line="2860"/>
         <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="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>Search next</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>Search &amp;next</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2878"/>
+        <location filename="../ViewManager/ViewManager.py" line="2879"/>
         <source>Search next occurrence of text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2880"/>
+        <location filename="../ViewManager/ViewManager.py" line="2881"/>
         <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="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Search previous</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Search &amp;previous</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2898"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>Search previous occurrence of text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2900"/>
+        <location filename="../ViewManager/ViewManager.py" line="2901"/>
         <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="2910"/>
+        <location filename="../ViewManager/ViewManager.py" line="2911"/>
         <source>Clear search markers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2910"/>
+        <location filename="../ViewManager/ViewManager.py" line="2911"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Clear all displayed search markers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2920"/>
+        <location filename="../ViewManager/ViewManager.py" line="2921"/>
         <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="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>Replace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>&amp;Replace...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2982"/>
+        <location filename="../ViewManager/ViewManager.py" line="2983"/>
         <source>Replace some text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2984"/>
+        <location filename="../ViewManager/ViewManager.py" line="2985"/>
         <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="3070"/>
+        <location filename="../ViewManager/ViewManager.py" line="3071"/>
         <source>Goto Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3062"/>
+        <location filename="../ViewManager/ViewManager.py" line="3063"/>
         <source>&amp;Goto Line...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3062"/>
+        <location filename="../ViewManager/ViewManager.py" line="3063"/>
         <source>Ctrl+G</source>
         <comment>Search|Goto Line</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3072"/>
+        <location filename="../ViewManager/ViewManager.py" line="3073"/>
         <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="3089"/>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
         <source>Goto Brace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3081"/>
+        <location filename="../ViewManager/ViewManager.py" line="3082"/>
         <source>Goto &amp;Brace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3081"/>
+        <location filename="../ViewManager/ViewManager.py" line="3082"/>
         <source>Ctrl+L</source>
         <comment>Search|Goto Brace</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3091"/>
+        <location filename="../ViewManager/ViewManager.py" line="3092"/>
         <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="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Search in Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Search in &amp;Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3177"/>
+        <location filename="../ViewManager/ViewManager.py" line="3178"/>
         <source>Search for a text in files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3179"/>
+        <location filename="../ViewManager/ViewManager.py" line="3180"/>
         <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="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Replace in Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Replace in F&amp;iles...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3196"/>
+        <location filename="../ViewManager/ViewManager.py" line="3197"/>
         <source>Search for a text in files and replace it</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3198"/>
+        <location filename="../ViewManager/ViewManager.py" line="3199"/>
         <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="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom in</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom &amp;in</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3344"/>
-        <source>Zoom in on the text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3346"/>
+        <source>Zoom in on the text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3348"/>
         <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="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom &amp;out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3363"/>
-        <source>Zoom out on the text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3365"/>
+        <source>Zoom out on the text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3367"/>
         <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="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>Zoom</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>&amp;Zoom</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3400"/>
-        <source>Zoom the text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3402"/>
+        <source>Zoom the text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3404"/>
         <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="3415"/>
-        <source>Toggle all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3411"/>
-        <source>&amp;Toggle all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3417"/>
+        <source>Toggle all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3413"/>
+        <source>&amp;Toggle all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3419"/>
         <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="3431"/>
-        <source>Toggle all folds (including children)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3425"/>
-        <source>Toggle all &amp;folds (including children)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3433"/>
+        <source>Toggle all folds (including children)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3427"/>
+        <source>Toggle all &amp;folds (including children)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3435"/>
         <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="3447"/>
-        <source>Toggle current fold</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3443"/>
-        <source>Toggle &amp;current fold</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3449"/>
+        <source>Toggle current fold</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3445"/>
+        <source>Toggle &amp;current fold</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3451"/>
         <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="3479"/>
-        <source>Remove all highlights</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3481"/>
+        <source>Remove all highlights</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3483"/>
         <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="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3529"/>
         <source>Split view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3529"/>
         <source>&amp;Split view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3532"/>
-        <source>Add a split to the view</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3534"/>
+        <source>Add a split to the view</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3536"/>
         <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="3542"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Arrange horizontally</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3542"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Arrange &amp;horizontally</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3548"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3550"/>
         <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="3557"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>Remove split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3557"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>&amp;Remove split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3562"/>
-        <source>Remove the current split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3564"/>
+        <source>Remove the current split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3566"/>
         <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="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>Next split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>&amp;Next split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3579"/>
-        <source>Move to the next split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3581"/>
+        <source>Move to the next split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3583"/>
         <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="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Previous split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>&amp;Previous split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3595"/>
-        <source>Move to the previous split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3597"/>
+        <source>Move to the previous split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3599"/>
         <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="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3683"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3718"/>
+        <location filename="../ViewManager/ViewManager.py" line="3720"/>
         <source>View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3754"/>
-        <source>Start Macro Recording</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3748"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3756"/>
+        <source>Start Macro Recording</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3750"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3758"/>
         <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="3768"/>
-        <source>Stop Macro Recording</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3764"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3770"/>
+        <source>Stop Macro Recording</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3766"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3772"/>
         <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="3782"/>
-        <source>Run Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3778"/>
-        <source>&amp;Run Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3784"/>
+        <source>Run Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3780"/>
+        <source>&amp;Run Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <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="3796"/>
-        <source>Delete Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3792"/>
-        <source>&amp;Delete Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Delete Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3794"/>
+        <source>&amp;Delete Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3800"/>
         <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="3810"/>
-        <source>Load Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3806"/>
-        <source>&amp;Load Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3812"/>
+        <source>Load Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3808"/>
+        <source>&amp;Load Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3814"/>
         <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="3824"/>
-        <source>Save Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3820"/>
-        <source>&amp;Save Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3826"/>
+        <source>Save Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
+        <source>&amp;Save Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3828"/>
         <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="3842"/>
+        <location filename="../ViewManager/ViewManager.py" line="3844"/>
         <source>&amp;Macros</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3868"/>
-        <source>Toggle Bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3860"/>
-        <source>&amp;Toggle Bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3860"/>
-        <source>Alt+Ctrl+T</source>
-        <comment>Bookmark|Toggle</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3870"/>
+        <source>Toggle Bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
+        <source>&amp;Toggle Bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
+        <source>Alt+Ctrl+T</source>
+        <comment>Bookmark|Toggle</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3872"/>
         <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="3887"/>
-        <source>Next Bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3879"/>
-        <source>&amp;Next Bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3879"/>
-        <source>Ctrl+PgDown</source>
-        <comment>Bookmark|Next</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3889"/>
+        <source>Next Bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3881"/>
+        <source>&amp;Next Bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3881"/>
+        <source>Ctrl+PgDown</source>
+        <comment>Bookmark|Next</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3891"/>
         <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="3905"/>
-        <source>Previous Bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3897"/>
-        <source>&amp;Previous Bookmark</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3897"/>
-        <source>Ctrl+PgUp</source>
-        <comment>Bookmark|Previous</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3907"/>
+        <source>Previous Bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3899"/>
+        <source>&amp;Previous Bookmark</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3899"/>
+        <source>Ctrl+PgUp</source>
+        <comment>Bookmark|Previous</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3909"/>
         <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="3922"/>
-        <source>Clear Bookmarks</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3915"/>
-        <source>&amp;Clear Bookmarks</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3915"/>
-        <source>Alt+Ctrl+C</source>
-        <comment>Bookmark|Clear</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3924"/>
+        <source>Clear Bookmarks</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
+        <source>&amp;Clear Bookmarks</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
+        <source>Alt+Ctrl+C</source>
+        <comment>Bookmark|Clear</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3926"/>
         <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="3938"/>
-        <source>Goto Syntax Error</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3932"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3940"/>
+        <source>Goto Syntax Error</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3934"/>
+        <source>&amp;Goto Syntax Error</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3942"/>
         <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="3953"/>
-        <source>Clear Syntax Errors</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3948"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3955"/>
+        <source>Clear Syntax Errors</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3950"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3957"/>
         <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="3970"/>
+        <location filename="../ViewManager/ViewManager.py" line="3972"/>
         <source>Next warning message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3964"/>
+        <location filename="../ViewManager/ViewManager.py" line="3966"/>
         <source>&amp;Next warning message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3989"/>
+        <location filename="../ViewManager/ViewManager.py" line="3991"/>
         <source>Previous warning message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3981"/>
+        <location filename="../ViewManager/ViewManager.py" line="3983"/>
         <source>&amp;Previous warning message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4007"/>
+        <location filename="../ViewManager/ViewManager.py" line="4009"/>
         <source>Clear Warning Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4000"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>Clear &amp;Warning Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4023"/>
-        <source>Next uncovered line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4017"/>
-        <source>&amp;Next uncovered line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4025"/>
+        <source>Next uncovered line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4019"/>
+        <source>&amp;Next uncovered line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4027"/>
         <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="4042"/>
-        <source>Previous uncovered line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4034"/>
-        <source>&amp;Previous uncovered line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4044"/>
+        <source>Previous uncovered line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
+        <source>&amp;Previous uncovered line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4046"/>
         <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="4060"/>
-        <source>Next Task</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4054"/>
-        <source>&amp;Next Task</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4062"/>
+        <source>Next Task</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4056"/>
+        <source>&amp;Next Task</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4064"/>
         <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="4077"/>
-        <source>Previous Task</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4070"/>
-        <source>&amp;Previous Task</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4079"/>
+        <source>Previous Task</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4072"/>
+        <source>&amp;Previous Task</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4081"/>
         <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="4133"/>
+        <location filename="../ViewManager/ViewManager.py" line="4135"/>
         <source>&amp;Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4179"/>
+        <location filename="../ViewManager/ViewManager.py" line="4181"/>
         <source>Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4221"/>
+        <location filename="../ViewManager/ViewManager.py" line="4223"/>
         <source>Perform spell check of current editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>Automatic spell checking</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>&amp;Automatic spell checking</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4239"/>
-        <source>(De-)Activate automatic spell checking</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4241"/>
+        <source>(De-)Activate automatic spell checking</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4243"/>
         <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="4308"/>
+        <location filename="../ViewManager/ViewManager.py" line="4310"/>
         <source>Spelling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4333"/>
         <source>Open files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4377"/>
         <source>File Modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4377"/>
         <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="4774"/>
+        <location filename="../ViewManager/ViewManager.py" line="4776"/>
         <source>Line: {0:5}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4780"/>
+        <location filename="../ViewManager/ViewManager.py" line="4782"/>
         <source>Pos: {0:5}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5219"/>
+        <location filename="../ViewManager/ViewManager.py" line="5221"/>
         <source>&amp;Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5213"/>
+        <location filename="../ViewManager/ViewManager.py" line="5215"/>
         <source>&amp;Add</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5216"/>
+        <location filename="../ViewManager/ViewManager.py" line="5218"/>
         <source>&amp;Edit...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3110"/>
+        <location filename="../ViewManager/ViewManager.py" line="3111"/>
         <source>Goto Last Edit Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3099"/>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3099"/>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <source>Ctrl+Shift+G</source>
         <comment>Search|Goto Last Edit Location</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3113"/>
+        <location filename="../ViewManager/ViewManager.py" line="3114"/>
         <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="3122"/>
+        <location filename="../ViewManager/ViewManager.py" line="3123"/>
         <source>Goto Previous Method or Class</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3122"/>
+        <location filename="../ViewManager/ViewManager.py" line="3123"/>
         <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="3132"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <source>Go to the previous method or class definition</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3136"/>
+        <location filename="../ViewManager/ViewManager.py" line="3137"/>
         <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="3146"/>
+        <location filename="../ViewManager/ViewManager.py" line="3147"/>
         <source>Goto Next Method or Class</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3146"/>
+        <location filename="../ViewManager/ViewManager.py" line="3147"/>
         <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="3156"/>
+        <location filename="../ViewManager/ViewManager.py" line="3157"/>
         <source>Go to the next method or class definition</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3158"/>
+        <location filename="../ViewManager/ViewManager.py" line="3159"/>
         <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="3605"/>
+        <location filename="../ViewManager/ViewManager.py" line="3607"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3610"/>
-        <source>Preview the current file in the web browser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3612"/>
+        <source>Preview the current file in the web browser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3614"/>
         <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="1461"/>
+        <location filename="../ViewManager/ViewManager.py" line="1462"/>
         <source>Meta+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1474"/>
+        <location filename="../ViewManager/ViewManager.py" line="1475"/>
         <source>Meta+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1486"/>
+        <location filename="../ViewManager/ViewManager.py" line="1487"/>
         <source>Meta+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1498"/>
+        <location filename="../ViewManager/ViewManager.py" line="1499"/>
         <source>Meta+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1559"/>
+        <location filename="../ViewManager/ViewManager.py" line="1560"/>
         <source>Move to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1575"/>
+        <location filename="../ViewManager/ViewManager.py" line="1576"/>
         <source>Move to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1592"/>
+        <location filename="../ViewManager/ViewManager.py" line="1593"/>
         <source>Move to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1600"/>
+        <location filename="../ViewManager/ViewManager.py" line="1601"/>
         <source>Meta+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1668"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Meta+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1674"/>
+        <location filename="../ViewManager/ViewManager.py" line="1675"/>
         <source>Move to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1692"/>
         <source>Move to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1737"/>
         <source>Meta+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1751"/>
+        <location filename="../ViewManager/ViewManager.py" line="1752"/>
         <source>Meta+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1766"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Meta+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1781"/>
+        <location filename="../ViewManager/ViewManager.py" line="1782"/>
         <source>Meta+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1849"/>
+        <location filename="../ViewManager/ViewManager.py" line="1850"/>
         <source>Extend selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1867"/>
+        <location filename="../ViewManager/ViewManager.py" line="1868"/>
         <source>Extend selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1875"/>
+        <location filename="../ViewManager/ViewManager.py" line="1876"/>
         <source>Meta+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1932"/>
+        <location filename="../ViewManager/ViewManager.py" line="1933"/>
         <source>Meta+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1939"/>
         <source>Extend selection to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1946"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Ctrl+Shift+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1955"/>
+        <location filename="../ViewManager/ViewManager.py" line="1956"/>
         <source>Extend selection to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1963"/>
+        <location filename="../ViewManager/ViewManager.py" line="1964"/>
         <source>Ctrl+Shift+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1981"/>
+        <location filename="../ViewManager/ViewManager.py" line="1982"/>
         <source>Meta+H</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1990"/>
+        <location filename="../ViewManager/ViewManager.py" line="1991"/>
         <source>Delete previous character if not at start of line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2011"/>
+        <location filename="../ViewManager/ViewManager.py" line="2012"/>
         <source>Meta+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2055"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Meta+K</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2164"/>
+        <location filename="../ViewManager/ViewManager.py" line="2165"/>
         <source>Move to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Extend selection to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2223"/>
+        <location filename="../ViewManager/ViewManager.py" line="2224"/>
         <source>Meta+Alt+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2238"/>
+        <location filename="../ViewManager/ViewManager.py" line="2239"/>
         <source>Meta+Alt+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2256"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <source>Meta+Alt+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2275"/>
         <source>Meta+Alt+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2280"/>
+        <location filename="../ViewManager/ViewManager.py" line="2281"/>
         <source>Extend rectangular selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2299"/>
+        <location filename="../ViewManager/ViewManager.py" line="2300"/>
         <source>Extend rectangular selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2309"/>
+        <location filename="../ViewManager/ViewManager.py" line="2310"/>
         <source>Meta+Alt+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2312"/>
+        <location filename="../ViewManager/ViewManager.py" line="2313"/>
         <source>Alt+Shift+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2333"/>
+        <location filename="../ViewManager/ViewManager.py" line="2334"/>
         <source>Alt+Shift+PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2345"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <source>Meta+Alt+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2365"/>
+        <location filename="../ViewManager/ViewManager.py" line="2366"/>
         <source>Scroll to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2380"/>
+        <location filename="../ViewManager/ViewManager.py" line="2381"/>
         <source>Scroll to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2395"/>
+        <location filename="../ViewManager/ViewManager.py" line="2396"/>
         <source>Scroll vertically to center current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2403"/>
+        <location filename="../ViewManager/ViewManager.py" line="2404"/>
         <source>Meta+L</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2410"/>
+        <location filename="../ViewManager/ViewManager.py" line="2411"/>
         <source>Move to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2425"/>
+        <location filename="../ViewManager/ViewManager.py" line="2426"/>
         <source>Extend selection to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2441"/>
+        <location filename="../ViewManager/ViewManager.py" line="2442"/>
         <source>Move to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2453"/>
+        <location filename="../ViewManager/ViewManager.py" line="2454"/>
         <source>Extend selection to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2465"/>
+        <location filename="../ViewManager/ViewManager.py" line="2466"/>
         <source>Move to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2473"/>
+        <location filename="../ViewManager/ViewManager.py" line="2474"/>
         <source>Meta+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2480"/>
+        <location filename="../ViewManager/ViewManager.py" line="2481"/>
         <source>Extend selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2491"/>
+        <location filename="../ViewManager/ViewManager.py" line="2492"/>
         <source>Meta+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2498"/>
+        <location filename="../ViewManager/ViewManager.py" line="2499"/>
         <source>Extend rectangular selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2508"/>
+        <location filename="../ViewManager/ViewManager.py" line="2509"/>
         <source>Meta+Alt+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2516"/>
+        <location filename="../ViewManager/ViewManager.py" line="2517"/>
         <source>Extend selection to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2535"/>
+        <location filename="../ViewManager/ViewManager.py" line="2536"/>
         <source>Move to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2549"/>
+        <location filename="../ViewManager/ViewManager.py" line="2550"/>
         <source>Extend selection to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2564"/>
+        <location filename="../ViewManager/ViewManager.py" line="2565"/>
         <source>Move to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2581"/>
+        <location filename="../ViewManager/ViewManager.py" line="2582"/>
         <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="2598"/>
+        <location filename="../ViewManager/ViewManager.py" line="2599"/>
         <source>Move to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2612"/>
+        <location filename="../ViewManager/ViewManager.py" line="2613"/>
         <source>Extend selection to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2627"/>
+        <location filename="../ViewManager/ViewManager.py" line="2628"/>
         <source>Stuttered move up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2639"/>
+        <location filename="../ViewManager/ViewManager.py" line="2640"/>
         <source>Stuttered extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2652"/>
+        <location filename="../ViewManager/ViewManager.py" line="2653"/>
         <source>Stuttered move down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2664"/>
+        <location filename="../ViewManager/ViewManager.py" line="2665"/>
         <source>Stuttered extend selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2677"/>
+        <location filename="../ViewManager/ViewManager.py" line="2678"/>
         <source>Delete right to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2685"/>
+        <location filename="../ViewManager/ViewManager.py" line="2686"/>
         <source>Alt+Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2692"/>
+        <location filename="../ViewManager/ViewManager.py" line="2693"/>
         <source>Move selected lines up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2704"/>
+        <location filename="../ViewManager/ViewManager.py" line="2705"/>
         <source>Move selected lines down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2318"/>
+        <location filename="../ViewManager/ViewManager.py" line="2319"/>
         <source>Alt+Shift+PgUp</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1134"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Toggle Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1134"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Ctrl+Shift+M</source>
         <comment>Edit|Toggle Comment</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1142"/>
+        <location filename="../ViewManager/ViewManager.py" line="1143"/>
         <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="1146"/>
+        <location filename="../ViewManager/ViewManager.py" line="1147"/>
         <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="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Zoom reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3381"/>
-        <source>Reset the zoom of the text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3383"/>
+        <source>Reset the zoom of the text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3385"/>
         <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="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="714"/>
         <source>Save a&amp;ll</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4094"/>
-        <source>Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4088"/>
-        <source>&amp;Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4096"/>
+        <source>Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4090"/>
+        <source>&amp;Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <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="4112"/>
-        <source>Previous Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4105"/>
-        <source>&amp;Previous Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4114"/>
+        <source>Previous Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4107"/>
+        <source>&amp;Previous Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4116"/>
         <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="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Check spelling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Check &amp;spelling...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4223"/>
+        <location filename="../ViewManager/ViewManager.py" line="4225"/>
         <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="4272"/>
-        <source>Edit Dictionary</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4274"/>
+        <source>Edit Dictionary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4276"/>
         <source>Project Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4277"/>
+        <location filename="../ViewManager/ViewManager.py" line="4279"/>
         <source>Project Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4282"/>
+        <location filename="../ViewManager/ViewManager.py" line="4284"/>
         <source>User Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4285"/>
+        <location filename="../ViewManager/ViewManager.py" line="4287"/>
         <source>User Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6255"/>
+        <location filename="../ViewManager/ViewManager.py" line="6257"/>
         <source>Edit Spelling Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6232"/>
+        <location filename="../ViewManager/ViewManager.py" line="6234"/>
         <source>Editing {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6214"/>
+        <location filename="../ViewManager/ViewManager.py" line="6216"/>
         <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="6243"/>
+        <location filename="../ViewManager/ViewManager.py" line="6245"/>
         <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="6255"/>
+        <location filename="../ViewManager/ViewManager.py" line="6257"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2929"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>Search current word forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2929"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2940"/>
+        <location filename="../ViewManager/ViewManager.py" line="2941"/>
         <source>Search next occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2943"/>
+        <location filename="../ViewManager/ViewManager.py" line="2944"/>
         <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="2952"/>
+        <location filename="../ViewManager/ViewManager.py" line="2953"/>
         <source>Search current word backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2952"/>
+        <location filename="../ViewManager/ViewManager.py" line="2953"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2963"/>
+        <location filename="../ViewManager/ViewManager.py" line="2964"/>
         <source>Search previous occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2966"/>
+        <location filename="../ViewManager/ViewManager.py" line="2967"/>
         <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="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <source>Search in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <source>Search in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <source>Meta+Ctrl+Alt+F</source>
         <comment>Search|Search Open Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3220"/>
+        <location filename="../ViewManager/ViewManager.py" line="3221"/>
         <source>Search for a text in open files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3222"/>
+        <location filename="../ViewManager/ViewManager.py" line="3223"/>
         <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="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <source>Replace in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <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="3242"/>
+        <location filename="../ViewManager/ViewManager.py" line="3243"/>
         <source>Search for a text in open files and replace it</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3244"/>
+        <location filename="../ViewManager/ViewManager.py" line="3245"/>
         <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="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <source>Replace in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1399"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Sort</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1399"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Ctrl+Alt+S</source>
         <comment>Edit|Sort</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1406"/>
+        <location filename="../ViewManager/ViewManager.py" line="1407"/>
         <source>Sort the lines containing the rectangular selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1409"/>
+        <location filename="../ViewManager/ViewManager.py" line="1410"/>
         <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="4801"/>
+        <location filename="../ViewManager/ViewManager.py" line="4803"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4808"/>
+        <location filename="../ViewManager/ViewManager.py" line="4810"/>
         <source>EOL Mode: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3491"/>
         <source>New Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3491"/>
         <source>New &amp;Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3494"/>
-        <source>Open a new view of the current document</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3496"/>
+        <source>Open a new view of the current document</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3498"/>
         <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="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3508"/>
         <source>New Document View (with new split)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3513"/>
+        <location filename="../ViewManager/ViewManager.py" line="3515"/>
         <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="3516"/>
+        <location filename="../ViewManager/ViewManager.py" line="3518"/>
         <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="3972"/>
+        <location filename="../ViewManager/ViewManager.py" line="3974"/>
         <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="3991"/>
+        <location filename="../ViewManager/ViewManager.py" line="3993"/>
         <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="4009"/>
+        <location filename="../ViewManager/ViewManager.py" line="4011"/>
         <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="2748"/>
+        <location filename="../ViewManager/ViewManager.py" line="2749"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1277"/>
         <source>&amp;Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1277"/>
         <source>Ctrl+Space</source>
         <comment>Edit|Complete</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1283"/>
+        <location filename="../ViewManager/ViewManager.py" line="1284"/>
         <source>Complete current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1285"/>
+        <location filename="../ViewManager/ViewManager.py" line="1286"/>
         <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="1294"/>
+        <location filename="../ViewManager/ViewManager.py" line="1295"/>
         <source>Complete from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1294"/>
+        <location filename="../ViewManager/ViewManager.py" line="1295"/>
         <source>Ctrl+Shift+Space</source>
         <comment>Edit|Complete from Document</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1304"/>
+        <location filename="../ViewManager/ViewManager.py" line="1305"/>
         <source>Complete current word from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1307"/>
+        <location filename="../ViewManager/ViewManager.py" line="1308"/>
         <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="1317"/>
+        <location filename="../ViewManager/ViewManager.py" line="1318"/>
         <source>Complete from APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1317"/>
+        <location filename="../ViewManager/ViewManager.py" line="1318"/>
         <source>Ctrl+Alt+Space</source>
         <comment>Edit|Complete from APIs</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1328"/>
         <source>Complete current word from APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1330"/>
+        <location filename="../ViewManager/ViewManager.py" line="1331"/>
         <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="1340"/>
+        <location filename="../ViewManager/ViewManager.py" line="1341"/>
         <source>Complete from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1340"/>
+        <location filename="../ViewManager/ViewManager.py" line="1341"/>
         <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="1350"/>
+        <location filename="../ViewManager/ViewManager.py" line="1351"/>
         <source>Complete current word from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1353"/>
+        <location filename="../ViewManager/ViewManager.py" line="1354"/>
         <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="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>Meta+Alt+Space</source>
         <comment>Edit|Calltip</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="697"/>
+        <location filename="../ViewManager/ViewManager.py" line="698"/>
         <source>Save Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="697"/>
+        <location filename="../ViewManager/ViewManager.py" line="698"/>
         <source>Save &amp;Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="702"/>
+        <location filename="../ViewManager/ViewManager.py" line="703"/>
         <source>Save a copy of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="704"/>
+        <location filename="../ViewManager/ViewManager.py" line="705"/>
         <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>
@@ -80773,141 +80772,141 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2995"/>
         <source>Replace and Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2995"/>
         <source>Meta+R</source>
         <comment>Search|Replace and Search</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3004"/>
+        <location filename="../ViewManager/ViewManager.py" line="3005"/>
         <source>Replace the found text and search the next occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3007"/>
+        <location filename="../ViewManager/ViewManager.py" line="3008"/>
         <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="3018"/>
+        <location filename="../ViewManager/ViewManager.py" line="3019"/>
         <source>Replace Occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3018"/>
+        <location filename="../ViewManager/ViewManager.py" line="3019"/>
         <source>Ctrl+Meta+R</source>
         <comment>Search|Replace Occurrence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3028"/>
+        <location filename="../ViewManager/ViewManager.py" line="3029"/>
         <source>Replace the found text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3030"/>
+        <location filename="../ViewManager/ViewManager.py" line="3031"/>
         <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="3040"/>
+        <location filename="../ViewManager/ViewManager.py" line="3041"/>
         <source>Replace All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3040"/>
+        <location filename="../ViewManager/ViewManager.py" line="3041"/>
         <source>Shift+Meta+R</source>
         <comment>Search|Replace All</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3050"/>
+        <location filename="../ViewManager/ViewManager.py" line="3051"/>
         <source>Replace search text occurrences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3052"/>
+        <location filename="../ViewManager/ViewManager.py" line="3053"/>
         <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="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1382"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1382"/>
         <source>Ctrl+Alt+I</source>
         <comment>Edit|Code Info</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1389"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Show Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1392"/>
         <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="3462"/>
-        <source>Clear all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3458"/>
-        <source>Clear &amp;all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3464"/>
+        <source>Clear all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3460"/>
+        <source>Clear &amp;all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3466"/>
         <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="2120"/>
+        <location filename="../ViewManager/ViewManager.py" line="2121"/>
         <source>Reverse selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2120"/>
+        <location filename="../ViewManager/ViewManager.py" line="2121"/>
         <source>Meta+Alt+R</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3622"/>
+        <location filename="../ViewManager/ViewManager.py" line="3624"/>
         <source>Python AST Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3627"/>
-        <source>Show the AST for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3629"/>
+        <source>Show the AST for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3631"/>
         <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="3639"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>Python Disassembly Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3646"/>
-        <source>Show the Disassembly for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3648"/>
+        <source>Show the Disassembly for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3650"/>
         <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>
@@ -80927,23 +80926,23 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1418"/>
+        <location filename="../ViewManager/ViewManager.py" line="1419"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1418"/>
+        <location filename="../ViewManager/ViewManager.py" line="1419"/>
         <source>Ctrl+Alt+D</source>
         <comment>Edit|Generate Docstring</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1425"/>
+        <location filename="../ViewManager/ViewManager.py" line="1426"/>
         <source>Generate a docstring for the current function/method</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1428"/>
+        <location filename="../ViewManager/ViewManager.py" line="1429"/>
         <source>&lt;b&gt;Generate Docstring&lt;/b&gt;&lt;p&gt;Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -81419,32 +81418,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="342"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="346"/>
         <source>&lt;virtualenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="360"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="364"/>
         <source>&lt;No suitable virtualenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="362"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="366"/>
         <source>virtualenv Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="396"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="400"/>
         <source>&lt;pyvenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="416"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="420"/>
         <source>&lt;No suitable pyvenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="418"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="422"/>
         <source>pyvenv Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -81584,7 +81583,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="430"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="434"/>
         <source>conda Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -81607,72 +81606,72 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="110"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="112"/>
         <source>Executing: {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="154"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="163"/>
         <source>Failed
 
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="166"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="175"/>
         <source>
 virtualenv finished.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="195"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="204"/>
         <source>No suitable virtualenv program could be started.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="259"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="268"/>
         <source>
 Writing log file &apos;{0}&apos;.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="264"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="273"/>
         <source>Output:
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="269"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="278"/>
         <source>Errors:
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="272"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="281"/>
         <source>The logfile &apos;{0}&apos; could not be written.
 Reason: {1}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="302"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="311"/>
         <source>Done.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="292"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="301"/>
         <source>
 Writing script file &apos;{0}&apos;.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="299"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="308"/>
         <source>The script file &apos;{0}&apos; could not be written.
 Reason: {1}
 </source>
@@ -81691,14 +81690,14 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="164"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="173"/>
         <source>
 pyvenv finished.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="191"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="200"/>
         <source>No suitable pyvenv program could be started.
 </source>
         <translation type="unfinished"></translation>
@@ -82157,82 +82156,82 @@
 <context>
     <name>WatchPointViewer</name>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="47"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="49"/>
         <source>Watchpoints</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="174"/>
-        <source>Add</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="141"/>
-        <source>Edit...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="143"/>
-        <source>Enable</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/WatchPointViewer.py" line="178"/>
-        <source>Enable all</source>
+        <source>Add</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="145"/>
+        <source>Edit...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Debugger/WatchPointViewer.py" line="147"/>
-        <source>Disable</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="183"/>
-        <source>Disable all</source>
+        <source>Enable</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="182"/>
+        <source>Enable all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Debugger/WatchPointViewer.py" line="151"/>
+        <source>Disable</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="187"/>
+        <source>Disable all</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="155"/>
         <source>Delete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="188"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="192"/>
         <source>Delete all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="191"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="195"/>
         <source>Configure...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="176"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="180"/>
         <source>Enable selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="181"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="185"/>
         <source>Disable selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="186"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="190"/>
         <source>Delete selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="240"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="244"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; already exists.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="245"/>
-        <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/WatchPointViewer.py" line="249"/>
+        <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="253"/>
         <source>Watch expression already exists</source>
         <translation type="unfinished"></translation>
     </message>
@@ -82669,33 +82668,33 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="42"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="43"/>
         <source>Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="43"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="45"/>
         <source>Warning</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="44"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="47"/>
         <source>Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="97"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="100"/>
         <source>[{0}] {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="102"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="105"/>
         <source> at line {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="107"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="110"/>
         <source>URL: {0}
 </source>
         <translation type="unfinished"></translation>
@@ -83260,12 +83259,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="185"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="188"/>
         <source>Suspicuous URL detected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="185"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="188"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -83509,12 +83508,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="702"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="706"/>
         <source>SSL Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="702"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="706"/>
         <source>This site does not contain SSL information.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -83580,107 +83579,107 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="135"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="136"/>
         <source>Show a navigation menu for closed tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="149"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="152"/>
         <source>Open a new web browser tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="163"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="166"/>
         <source>New Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="167"/>
-        <source>Move Left</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="170"/>
+        <source>Move Left</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="173"/>
         <source>Move Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="174"/>
-        <source>Duplicate Page</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="177"/>
-        <source>Close</source>
+        <source>Duplicate Page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="180"/>
+        <source>Close</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="183"/>
         <source>Close Others</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="211"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="214"/>
         <source>Close All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="186"/>
-        <source>Print Preview</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="189"/>
-        <source>Print</source>
+        <source>Print Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="192"/>
+        <source>Print</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="195"/>
         <source>Print as PDF</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="213"/>
-        <source>Reload All</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="216"/>
+        <source>Reload All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="219"/>
         <source>Bookmark All Tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="220"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="223"/>
         <source>Restore Closed Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="456"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="459"/>
         <source>...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="912"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="922"/>
         <source>Loading...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="921"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="931"/>
         <source>Finished loading</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="888"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="898"/>
         <source>Failed to load</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
         <source>Are you sure you want to close the window?</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
         <source>Are you sure you want to close the window?
 You have %n tab(s) open.</source>
         <translation>
@@ -83691,47 +83690,47 @@
         </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="969"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="979"/>
         <source>&amp;Quit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="982"/>
         <source>C&amp;lose Current Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1153"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1165"/>
         <source>Restore All Closed Tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1155"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1167"/>
         <source>Clear List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="250"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="253"/>
         <source>Unmute Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="254"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="257"/>
         <source>Mute Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="753"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="763"/>
         <source>Print to PDF</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="703"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="713"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="753"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="763"/>
         <source>&lt;p&gt;The PDF could not be written to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Error:&lt;/b&gt; {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -83739,7 +83738,7 @@
 <context>
     <name>WebBrowserTools</name>
     <message>
-        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="250"/>
+        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="254"/>
         <source>&lt;unknown&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -83768,7 +83767,7 @@
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserView.py" line="666"/>
-        <source>Open Link in New Tab	Ctrl+LMB</source>
+        <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -83952,7 +83951,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1791"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1816"/>
         <source>Try reloading the page or closing some tabs to make more memory available.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -83972,22 +83971,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1780"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1797"/>
         <source>Render Process terminated abnormally</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1783"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1804"/>
         <source>The render process crashed while loading this page.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1786"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1811"/>
         <source>The render process was killed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1788"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1813"/>
         <source>The render process terminated while loading this page.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -83997,37 +83996,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1914"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1939"/>
         <source>Web Archive (*.mhtml *.mht)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1915"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1940"/>
         <source>HTML File (*.html *.htm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1916"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1941"/>
         <source>HTML File with all resources (*.html *.htm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1939"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1964"/>
         <source>Save Web Page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1731"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1742"/>
         <source>Empty Page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2289"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2321"/>
         <source>Quota Request</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2289"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2321"/>
         <source>&lt;p&gt; Allow the website at &lt;b&gt;{0}&lt;/b&gt; to use &lt;b&gt;{1}&lt;/b&gt; of persistent storage?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -84151,2000 +84150,2000 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1467"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1472"/>
         <source>Index</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1480"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1485"/>
         <source>Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1743"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1748"/>
         <source>JavaScript Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>New Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>&amp;New Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>Ctrl+T</source>
         <comment>File|New Tab</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="666"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="671"/>
         <source>Open a new web browser tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="667"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="672"/>
         <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>New Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>New &amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>Ctrl+N</source>
         <comment>File|New Window</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="680"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="685"/>
         <source>Open a new web browser window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="681"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="686"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new web browser window in the current privacy mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>New Private Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="689"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="694"/>
         <source>New &amp;Private Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="689"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="694"/>
         <source>Ctrl+Shift+P</source>
         <comment>File|New Private Window</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="695"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="700"/>
         <source>Open a new private web browser window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="697"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="702"/>
         <source>&lt;b&gt;New Private Window&lt;/b&gt;&lt;p&gt;This opens a new private web browser window by starting a new web browser instance in private mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2503"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2508"/>
         <source>Open File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="705"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="710"/>
         <source>&amp;Open File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="705"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="710"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="711"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="716"/>
         <source>Open a file for display</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="712"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="717"/>
         <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new file for display. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Open File in New Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Open File in New &amp;Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Shift+Ctrl+O</source>
         <comment>File|Open in new tab</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="726"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="731"/>
         <source>Open a file for display in a new tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="733"/>
         <source>&lt;b&gt;Open File in New Tab&lt;/b&gt;&lt;p&gt;This opens a new file for display in a new tab. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="754"/>
-        <source>Save Page Screen</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="754"/>
-        <source>Save Page Screen...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="759"/>
+        <source>Save Page Screen</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="759"/>
+        <source>Save Page Screen...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="764"/>
         <source>Save the visible part of the current page as a screen shot</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="772"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="777"/>
         <source>Import Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="772"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="777"/>
         <source>&amp;Import Bookmarks...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="776"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="781"/>
         <source>Import bookmarks from other browsers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="778"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="783"/>
         <source>&lt;b&gt;Import Bookmarks&lt;/b&gt;&lt;p&gt;Import bookmarks from other browsers.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="786"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="791"/>
         <source>Export Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="786"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="791"/>
         <source>&amp;Export Bookmarks...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="790"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="795"/>
         <source>Export the bookmarks into a file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="792"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="797"/>
         <source>&lt;b&gt;Export Bookmarks&lt;/b&gt;&lt;p&gt;Export the bookmarks into a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2122"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2127"/>
         <source>Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="800"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="805"/>
         <source>&amp;Print</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="800"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="805"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="806"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="811"/>
         <source>Print the displayed help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="807"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="812"/>
         <source>&lt;b&gt;Print&lt;/b&gt;&lt;p&gt;Print the displayed help text.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="814"/>
-        <source>Print as PDF</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="819"/>
+        <source>Print as PDF</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="824"/>
         <source>Print the displayed help as PDF</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="821"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="826"/>
         <source>&lt;b&gt;Print as PDF&lt;/b&gt;&lt;p&gt;Print the displayed help text as a PDF file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="829"/>
-        <source>Print Preview</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="834"/>
+        <source>Print Preview</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="839"/>
         <source>Print preview of the displayed help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="836"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="841"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the displayed help text.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>&amp;Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="864"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="869"/>
         <source>Close the current help window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="866"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="871"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="873"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="878"/>
         <source>Close All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="873"/>
-        <source>Close &amp;All</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="877"/>
-        <source>Close all help windows</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="878"/>
+        <source>Close &amp;All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="882"/>
+        <source>Close all help windows</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="883"/>
         <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all web browser windows except the first one.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="886"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="891"/>
         <source>Quit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2854"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2859"/>
         <source>&amp;Quit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="886"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="891"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>Backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>&amp;Backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>Alt+Left</source>
         <comment>Go|Backward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="906"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="911"/>
         <source>Move one screen backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="907"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="912"/>
         <source>&lt;b&gt;Backward&lt;/b&gt;&lt;p&gt;Moves one screen backward. If none is available, this action is disabled.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>Forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>&amp;Forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>Alt+Right</source>
         <comment>Go|Forward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="921"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="926"/>
         <source>Move one screen forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="923"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="928"/>
         <source>&lt;b&gt;Forward&lt;/b&gt;&lt;p&gt;Moves one screen forward. If none is available, this action is disabled.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>&amp;Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>Ctrl+Home</source>
         <comment>Go|Home</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="939"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="944"/>
         <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>Reload</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>&amp;Reload</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>Ctrl+R</source>
         <comment>Go|Reload</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>F5</source>
         <comment>Go|Reload</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="953"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="958"/>
         <source>Reload the current screen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="955"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="960"/>
         <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Stop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>&amp;Stop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Ctrl+.</source>
         <comment>Go|Stop</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Esc</source>
         <comment>Go|Stop</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="969"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="974"/>
         <source>Stop loading</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="970"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="975"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>&amp;Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="983"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="988"/>
         <source>Copy the selected text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="984"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="989"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Cut</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Cu&amp;t</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="997"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1002"/>
         <source>Cut the selected text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="998"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1003"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>&amp;Paste</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1011"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1016"/>
         <source>Paste text from the clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1012"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1017"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>&amp;Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1025"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1030"/>
         <source>Undo the last edit action</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1026"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1031"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>&amp;Redo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1039"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1044"/>
         <source>Redo the last edit action</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1040"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1045"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>Select All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>&amp;Select All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1053"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1058"/>
         <source>Select all text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1054"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1059"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>Find...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>&amp;Find...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>Ctrl+F</source>
         <comment>Edit|Find</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1080"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1085"/>
         <source>Find text in page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1081"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1086"/>
         <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>Find next</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>Find &amp;next</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>F3</source>
         <comment>Edit|Find next</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1094"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1099"/>
         <source>Find next occurrence of text in page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1096"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1101"/>
         <source>&lt;b&gt;Find next&lt;/b&gt;&lt;p&gt;Find the next occurrence of text in the current page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Find previous</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Find &amp;previous</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Shift+F3</source>
         <comment>Edit|Find previous</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1109"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1114"/>
         <source>Find previous occurrence of text in page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1111"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1116"/>
         <source>&lt;b&gt;Find previous&lt;/b&gt;&lt;p&gt;Find the previous occurrence of text in the current page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
-        <source>Manage Bookmarks</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
-        <source>&amp;Manage Bookmarks...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
-        <source>Ctrl+Shift+B</source>
-        <comment>Help|Manage bookmarks</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
+        <source>Manage Bookmarks</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
+        <source>&amp;Manage Bookmarks...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
+        <source>Ctrl+Shift+B</source>
+        <comment>Help|Manage bookmarks</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1130"/>
         <source>Open a dialog to manage the bookmarks.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1127"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1132"/>
         <source>&lt;b&gt;Manage Bookmarks...&lt;/b&gt;&lt;p&gt;Open a dialog to manage the bookmarks.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Add Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Add &amp;Bookmark...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Ctrl+D</source>
         <comment>Help|Add bookmark</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1142"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1147"/>
         <source>Open a dialog to add a bookmark.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1144"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1149"/>
         <source>&lt;b&gt;Add Bookmark&lt;/b&gt;&lt;p&gt;Open a dialog to add the current URL as a bookmark.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1151"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1156"/>
         <source>Add Folder</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1151"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1156"/>
         <source>Add &amp;Folder...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1155"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1160"/>
         <source>Open a dialog to add a new bookmarks folder.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1157"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1162"/>
         <source>&lt;b&gt;Add Folder...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1165"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1170"/>
         <source>Bookmark All Tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1165"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1170"/>
         <source>Bookmark All Tabs...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1169"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1174"/>
         <source>Bookmark all open tabs.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1171"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1176"/>
         <source>&lt;b&gt;Bookmark All Tabs...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder for all open tabs.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1185"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1190"/>
         <source>Context sensitive help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1186"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1191"/>
         <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="../WebBrowser/WebBrowserWindow.py" line="1197"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1202"/>
         <source>About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1197"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1202"/>
         <source>&amp;About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1201"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1206"/>
         <source>Display information about this software</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1203"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1208"/>
         <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="../WebBrowser/WebBrowserWindow.py" line="1210"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1215"/>
         <source>About Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1210"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1215"/>
         <source>About &amp;Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1214"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1219"/>
         <source>Display information about the Qt toolkit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1216"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1221"/>
         <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="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom in</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom &amp;in</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1230"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1235"/>
         <source>Zoom in on the web page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1231"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1236"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the web page. This makes the web page bigger.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom &amp;out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1246"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1251"/>
         <source>Zoom out on the web page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1247"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1252"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the web page. This makes the web page smaller.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Zoom reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1261"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1266"/>
         <source>Reset the zoom of the web page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1263"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1268"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the web page. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1271"/>
-        <source>Show page source</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1271"/>
-        <source>Ctrl+U</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1276"/>
+        <source>Show page source</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1276"/>
+        <source>Ctrl+U</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1281"/>
         <source>Show the page source in an editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1278"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1283"/>
         <source>&lt;b&gt;Show page source&lt;/b&gt;&lt;p&gt;Show the page source in an editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1286"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1291"/>
         <source>Full Screen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1286"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1291"/>
         <source>&amp;Full Screen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1296"/>
-        <source>F11</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1301"/>
-        <source>Show next tab</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1301"/>
+        <source>F11</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1306"/>
+        <source>Show next tab</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1306"/>
         <source>Ctrl+Alt+Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1310"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1315"/>
         <source>Show previous tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1310"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1315"/>
         <source>Shift+Ctrl+Alt+Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1319"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1324"/>
         <source>Switch between tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1319"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1324"/>
         <source>Ctrl+1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1328"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1333"/>
         <source>Preferences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1328"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1333"/>
         <source>&amp;Preferences...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1332"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1337"/>
         <source>Set the prefered configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1334"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1339"/>
         <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1342"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1347"/>
         <source>Languages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1342"/>
-        <source>&amp;Languages...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1347"/>
+        <source>&amp;Languages...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1352"/>
         <source>Configure the accepted languages for web pages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1349"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1354"/>
         <source>&lt;b&gt;Languages&lt;/b&gt;&lt;p&gt;Configure the accepted languages for web pages.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1357"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1362"/>
         <source>Cookies</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1357"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1362"/>
         <source>C&amp;ookies...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1361"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1366"/>
         <source>Configure cookies handling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1363"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1368"/>
         <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1371"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1376"/>
         <source>Personal Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1371"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1376"/>
         <source>Personal Information...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1377"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1382"/>
         <source>Configure personal information for completing form fields</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1379"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1384"/>
         <source>&lt;b&gt;Personal Information...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the personal information used for completing form fields.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1388"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1393"/>
         <source>GreaseMonkey Scripts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1388"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1393"/>
         <source>GreaseMonkey Scripts...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1394"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1399"/>
         <source>Configure the GreaseMonkey Scripts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1396"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1401"/>
         <source>&lt;b&gt;GreaseMonkey Scripts...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available GreaseMonkey Scripts.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1405"/>
-        <source>Edit Message Filters</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1405"/>
-        <source>Edit Message Filters...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1410"/>
+        <source>Edit Message Filters</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1410"/>
+        <source>Edit Message Filters...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1415"/>
         <source>Edit the message filters used to suppress unwanted messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1412"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1417"/>
         <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1422"/>
-        <source>Edit HTML5 Feature Permissions</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1422"/>
-        <source>Edit HTML5 Feature Permissions...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1427"/>
+        <source>Edit HTML5 Feature Permissions</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1427"/>
+        <source>Edit HTML5 Feature Permissions...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1432"/>
         <source>Edit the remembered HTML5 feature permissions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1429"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1434"/>
         <source>&lt;b&gt;Edit HTML5 Feature Permissions&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the remembered HTML5 feature permissions.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1439"/>
-        <source>Sync with Table of Contents</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1444"/>
+        <source>Sync with Table of Contents</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1449"/>
         <source>Synchronizes the table of contents with current page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1446"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1451"/>
         <source>&lt;b&gt;Sync with Table of Contents&lt;/b&gt;&lt;p&gt;Synchronizes the table of contents with current page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1454"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1459"/>
         <source>Table of Contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1458"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1463"/>
         <source>Shows the table of contents window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1460"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1465"/>
         <source>&lt;b&gt;Table of Contents&lt;/b&gt;&lt;p&gt;Shows the table of contents window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1471"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1476"/>
         <source>Shows the index window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1473"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1478"/>
         <source>&lt;b&gt;Index&lt;/b&gt;&lt;p&gt;Shows the index window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1484"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1489"/>
         <source>Shows the search window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1486"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1491"/>
         <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1494"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1499"/>
         <source>Manage QtHelp Documents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1494"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1499"/>
         <source>Manage QtHelp &amp;Documents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1498"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1503"/>
         <source>Shows a dialog to manage the QtHelp documentation set</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1500"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1505"/>
         <source>&lt;b&gt;Manage QtHelp Documents&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the QtHelp documentation set.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1509"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1514"/>
         <source>Reindex Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1509"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1514"/>
         <source>&amp;Reindex Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1513"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1518"/>
         <source>Reindexes the documentation set</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1520"/>
         <source>&lt;b&gt;Reindex Documentation&lt;/b&gt;&lt;p&gt;Reindexes the documentation set.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1529"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1534"/>
         <source>Clear private data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1531"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1536"/>
         <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like browsing history, search history or the favicons database.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/>
-        <source>Clear icons database</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/>
-        <source>Clear &amp;icons database</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1545"/>
+        <source>Clear icons database</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1545"/>
+        <source>Clear &amp;icons database</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1550"/>
         <source>Clear the database of favicons</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1547"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1552"/>
         <source>&lt;b&gt;Clear icons database&lt;/b&gt;&lt;p&gt;Clears the database of favicons of previously visited URLs.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1555"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1560"/>
         <source>Manage saved Favicons</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1561"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/>
         <source>Show a dialog to manage the saved favicons</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1563"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1568"/>
         <source>&lt;b&gt;Manage saved Favicons&lt;/b&gt;&lt;p&gt;This shows a dialog to manage the saved favicons of previously visited URLs.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1576"/>
         <source>Configure Search Engines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/>
-        <source>Configure Search &amp;Engines...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1576"/>
+        <source>Configure Search &amp;Engines...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/>
         <source>Configure the available search engines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1578"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1583"/>
         <source>&lt;b&gt;Configure Search Engines...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available search engines.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1592"/>
         <source>Manage Saved Passwords</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1592"/>
         <source>Manage Saved Passwords...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1593"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/>
         <source>Manage the saved passwords</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1595"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1600"/>
         <source>&lt;b&gt;Manage Saved Passwords...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved passwords.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1602"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/>
         <source>Ad Block</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1602"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/>
         <source>&amp;Ad Block...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1608"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1613"/>
         <source>Configure AdBlock subscriptions and rules</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1610"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1615"/>
         <source>&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure AdBlock subscriptions and rules.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1618"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/>
         <source>Manage SSL Certificate Errors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1618"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/>
         <source>Manage SSL Certificate Errors...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1624"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1629"/>
         <source>Manage the accepted SSL certificate Errors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1626"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/>
         <source>&lt;b&gt;Manage SSL Certificate Errors...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the accepted SSL certificate errors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1651"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1656"/>
         <source>Downloads</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1655"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1660"/>
         <source>Shows the downloads window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1657"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1662"/>
         <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>RSS Feeds Dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>&amp;RSS Feeds Dialog...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>Ctrl+Shift+F</source>
         <comment>Help|RSS Feeds Dialog</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1671"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1676"/>
         <source>Open a dialog showing the configured RSS feeds.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1673"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1678"/>
         <source>&lt;b&gt;RSS Feeds Dialog...&lt;/b&gt;&lt;p&gt;Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>Siteinfo Dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>&amp;Siteinfo Dialog...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>Ctrl+Shift+I</source>
         <comment>Help|Siteinfo Dialog</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1688"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1693"/>
         <source>Open a dialog showing some information about the current site.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1690"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1695"/>
         <source>&lt;b&gt;Siteinfo Dialog...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the current site.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1703"/>
         <source>Manage User Agent Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1703"/>
         <source>Manage &amp;User Agent Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1702"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1707"/>
         <source>Shows a dialog to manage the User Agent settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1704"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1709"/>
         <source>&lt;b&gt;Manage User Agent Settings&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the User Agent settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1712"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1717"/>
         <source>Synchronize data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1712"/>
-        <source>&amp;Synchronize Data...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1717"/>
+        <source>&amp;Synchronize Data...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1722"/>
         <source>Shows a dialog to synchronize data via the network</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1719"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1724"/>
         <source>&lt;b&gt;Synchronize Data...&lt;/b&gt;&lt;p&gt;This shows a dialog to synchronize data via the network.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/>
         <source>Manage Saved Zoom Values</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/>
         <source>Manage Saved Zoom Values...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1734"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1739"/>
         <source>Manage the saved zoom values</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1736"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1741"/>
         <source>&lt;b&gt;Manage Saved Zoom Values...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved zoom values.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1747"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1752"/>
         <source>Toggle the JavaScript console window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1749"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1754"/>
         <source>&lt;b&gt;JavaScript Console&lt;/b&gt;&lt;p&gt;This toggles the JavaScript console window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1910"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1915"/>
         <source>&amp;File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1942"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1947"/>
         <source>&amp;Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2181"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2186"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1969"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1974"/>
         <source>Text Encoding</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1981"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1986"/>
         <source>H&amp;istory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1998"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2003"/>
         <source>&amp;Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2014"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2019"/>
         <source>&amp;Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2046"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2051"/>
         <source>Global User Agent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2212"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2217"/>
         <source>&amp;Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2087"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2092"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2236"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2241"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2261"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2266"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2274"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2279"/>
         <source>View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2284"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2289"/>
         <source>Find</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2293"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2298"/>
         <source>Filter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2303"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2308"/>
         <source>Filtered by: </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2311"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2316"/>
         <source>Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2323"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2328"/>
         <source>Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2332"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2337"/>
         <source>Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2339"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2344"/>
         <source>VirusTotal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1785"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1790"/>
         <source>Scan current site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4613"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4626"/>
         <source>IP Address Report</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4623"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4636"/>
         <source>Domain Report</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>&lt;p&gt;Could not start the process.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>OK</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2667"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2672"/>
         <source>Saved Tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3392"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3399"/>
         <source>Could not find an associated content.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3486"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3493"/>
         <source>Updating search index</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3560"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3567"/>
         <source>Looking for Documentation...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3590"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3597"/>
         <source>Unfiltered</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3607"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3614"/>
         <source>Help Engine</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4144"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4151"/>
         <source>ISO</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4155"/>
+        <source>Windows</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4153"/>
+        <source>Unicode</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4161"/>
+        <source>Other</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4157"/>
+        <source>IBM</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4591"/>
+        <source>VirusTotal Scan</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4591"/>
+        <source>&lt;p&gt;The VirusTotal scan could not be scheduled.&lt;p&gt;
+&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4617"/>
+        <source>Enter a valid IPv4 address in dotted quad notation:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4626"/>
+        <source>The given IP address is not in dotted quad notation.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4636"/>
+        <source>Enter a valid domain name:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1762"/>
+        <source>Tab Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1766"/>
+        <source>Shows the tab manager window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1768"/>
+        <source>&lt;b&gt;Tab Manager&lt;/b&gt;&lt;p&gt;Shows the tab manager window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
+        <source>Save As</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
+        <source>&amp;Save As...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
+        <source>Shift+Ctrl+S</source>
+        <comment>File|Save As</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="748"/>
+        <source>Save the current page to disk</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="750"/>
+        <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current page to disk.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1066"/>
+        <source>Unselect</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1071"/>
+        <source>Clear current selection</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1072"/>
+        <source>&lt;b&gt;Unselect&lt;/b&gt;&lt;p&gt;Clear the selection of the current browser.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1066"/>
+        <source>Alt+Ctrl+A</source>
+        <comment>Edit|Unselect</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2508"/>
+        <source>HTML Files (*.html *.htm *.mhtml *.mht);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="942"/>
+        <source>Move to the initial screen</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1298"/>
+        <source>Meta+Ctrl+F</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2223"/>
+        <source>&amp;VirusTotal</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2188"/>
+        <source>&amp;Windows</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2086"/>
+        <source>&amp;Toolbars</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2121"/>
+        <source>Save</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2140"/>
+        <source>Show All History...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4186"/>
+        <source>Menu Bar</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4191"/>
+        <source>Bookmarks</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4196"/>
+        <source>Status Bar</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4210"/>
+        <source>&amp;Show all</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4212"/>
+        <source>&amp;Hide all</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="849"/>
+        <source>Send Page Link</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="854"/>
+        <source>Send the link of the current page via email</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="856"/>
+        <source>&lt;b&gt;Send Page Link&lt;/b&gt;&lt;p&gt;Send the link of the current page via email.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1776"/>
+        <source>Session Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1776"/>
+        <source>Session Manager...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1780"/>
+        <source>Shows the session manager window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1782"/>
+        <source>&lt;b&gt;Session Manager&lt;/b&gt;&lt;p&gt;Shows the session manager window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2114"/>
+        <source>Sessions</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2850"/>
+        <source>Are you sure you want to close the web browser?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2850"/>
+        <source>Are you sure you want to close the web browser?
+You have {0} windows with {1} tabs open.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/>
+        <source>Manage Safe Browsing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/>
+        <source>Manage Safe Browsing...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1647"/>
+        <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1645"/>
+        <source>Configure Safe Browsing and manage local cache</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="767"/>
+        <source>&lt;b&gt;Save Page Screen...&lt;/b&gt;&lt;p&gt;Saves the visible part of the current page as a screen shot.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1828"/>
+        <source>Keyboard Shortcuts</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1828"/>
+        <source>Keyboard &amp;Shortcuts...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1834"/>
+        <source>Set the keyboard shortcuts</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1836"/>
+        <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5009"/>
+        <source>Export Keyboard Shortcuts</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1844"/>
+        <source>&amp;Export Keyboard Shortcuts...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1849"/>
+        <source>Export the keyboard shortcuts</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1851"/>
+        <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5025"/>
+        <source>Import Keyboard Shortcuts</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1858"/>
+        <source>&amp;Import Keyboard Shortcuts...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1863"/>
+        <source>Import the keyboard shortcuts</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1865"/>
+        <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1872"/>
+        <source>Protocol Handler Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1872"/>
+        <source>Protocol Handler Manager...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1876"/>
+        <source>Shows the protocol handler manager window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1878"/>
+        <source>&lt;b&gt;Protocol Handler Manager&lt;/b&gt;&lt;p&gt;Shows the protocol handler manager window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="4148"/>
-        <source>Windows</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4146"/>
-        <source>Unicode</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4154"/>
-        <source>Other</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4150"/>
-        <source>IBM</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4578"/>
-        <source>VirusTotal Scan</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4578"/>
-        <source>&lt;p&gt;The VirusTotal scan could not be scheduled.&lt;p&gt;
-&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4604"/>
-        <source>Enter a valid IPv4 address in dotted quad notation:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4613"/>
-        <source>The given IP address is not in dotted quad notation.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4623"/>
-        <source>Enter a valid domain name:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1757"/>
-        <source>Tab Manager</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1761"/>
-        <source>Shows the tab manager window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1763"/>
-        <source>&lt;b&gt;Tab Manager&lt;/b&gt;&lt;p&gt;Shows the tab manager window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
-        <source>Save As</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
-        <source>&amp;Save As...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
-        <source>Shift+Ctrl+S</source>
-        <comment>File|Save As</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="743"/>
-        <source>Save the current page to disk</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="745"/>
-        <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current page to disk.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1061"/>
-        <source>Unselect</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1066"/>
-        <source>Clear current selection</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1067"/>
-        <source>&lt;b&gt;Unselect&lt;/b&gt;&lt;p&gt;Clear the selection of the current browser.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1061"/>
-        <source>Alt+Ctrl+A</source>
-        <comment>Edit|Unselect</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2503"/>
-        <source>HTML Files (*.html *.htm *.mhtml *.mht);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="937"/>
-        <source>Move to the initial screen</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1293"/>
-        <source>Meta+Ctrl+F</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2218"/>
-        <source>&amp;VirusTotal</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2183"/>
-        <source>&amp;Windows</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2081"/>
-        <source>&amp;Toolbars</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2116"/>
-        <source>Save</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2135"/>
-        <source>Show All History...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4179"/>
-        <source>Menu Bar</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4184"/>
-        <source>Bookmarks</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4189"/>
-        <source>Status Bar</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4203"/>
-        <source>&amp;Show all</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4205"/>
-        <source>&amp;Hide all</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="844"/>
-        <source>Send Page Link</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="849"/>
-        <source>Send the link of the current page via email</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="851"/>
-        <source>&lt;b&gt;Send Page Link&lt;/b&gt;&lt;p&gt;Send the link of the current page via email.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1771"/>
-        <source>Session Manager</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1771"/>
-        <source>Session Manager...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1775"/>
-        <source>Shows the session manager window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1777"/>
-        <source>&lt;b&gt;Session Manager&lt;/b&gt;&lt;p&gt;Shows the session manager window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2109"/>
-        <source>Sessions</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2845"/>
-        <source>Are you sure you want to close the web browser?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2845"/>
-        <source>Are you sure you want to close the web browser?
-You have {0} windows with {1} tabs open.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1635"/>
-        <source>Manage Safe Browsing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1635"/>
-        <source>Manage Safe Browsing...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1642"/>
-        <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/>
-        <source>Configure Safe Browsing and manage local cache</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="762"/>
-        <source>&lt;b&gt;Save Page Screen...&lt;/b&gt;&lt;p&gt;Saves the visible part of the current page as a screen shot.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1823"/>
-        <source>Keyboard Shortcuts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1823"/>
-        <source>Keyboard &amp;Shortcuts...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1829"/>
-        <source>Set the keyboard shortcuts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1831"/>
-        <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4991"/>
-        <source>Export Keyboard Shortcuts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1839"/>
-        <source>&amp;Export Keyboard Shortcuts...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1844"/>
-        <source>Export the keyboard shortcuts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1846"/>
-        <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5007"/>
-        <source>Import Keyboard Shortcuts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1853"/>
-        <source>&amp;Import Keyboard Shortcuts...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1858"/>
-        <source>Import the keyboard shortcuts</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1860"/>
-        <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1867"/>
-        <source>Protocol Handler Manager</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1867"/>
-        <source>Protocol Handler Manager...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1871"/>
-        <source>Shows the protocol handler manager window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1873"/>
-        <source>&lt;b&gt;Protocol Handler Manager&lt;/b&gt;&lt;p&gt;Shows the protocol handler manager window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4141"/>
         <source>System</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4152"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4159"/>
         <source>Apple</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2189"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2194"/>
         <source>QtHelp</source>
         <translation type="unfinished"></translation>
     </message>
@@ -86154,37 +86153,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3570"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3577"/>
         <source>eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="892"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="897"/>
         <source>Quit the eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="893"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="898"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2544"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2549"/>
         <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chrome {2}.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4972"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4990"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard Shortcuts File (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5009"/>
         <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5007"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5025"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -86534,12 +86533,12 @@
 <context>
     <name>eric6</name>
     <message>
-        <location filename="../eric6.py" line="397"/>
+        <location filename="../eric6.py" line="398"/>
         <source>Starting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../eric6.py" line="402"/>
+        <location filename="../eric6.py" line="403"/>
         <source>Generating Main Window...</source>
         <translation type="unfinished"></translation>
     </message>
--- a/eric6/i18n/eric6_es.ts	Tue Mar 02 19:22:12 2021 +0100
+++ b/eric6/i18n/eric6_es.ts	Tue Mar 02 19:49:43 2021 +0100
@@ -94,22 +94,22 @@
         <translation>Acciones</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="166"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="167"/>
         <source>Learn more about writing rules...</source>
         <translation>Aprender más acerca de escribir reglas...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="159"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="160"/>
         <source>Update Subscription</source>
         <translation>Actualizar Suscripción</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="146"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="147"/>
         <source>Browse Subscriptions...</source>
         <translation>Navegar Suscripciones...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="243"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="244"/>
         <source>Remove Subscription</source>
         <translation>Eliminar Suscripción</translation>
     </message>
@@ -129,37 +129,37 @@
         <translation>Buscar...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="139"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="140"/>
         <source>Add Rule</source>
         <translation>Añadir regla</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="142"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="143"/>
         <source>Remove Rule</source>
         <translation>Eliminar Regla</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="154"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="155"/>
         <source>Disable Subscription</source>
         <translation>Deshabilitar Suscripción</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="156"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="157"/>
         <source>Enable Subscription</source>
         <translation>Habilitar Suscripción</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="162"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="163"/>
         <source>Update All Subscriptions</source>
         <translation>Actualizar Todas las Suscripciones</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="233"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="234"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt; and all subscriptions requiring it?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</source>
         <translation>&lt;p&gt;¿Desesa realmente eliminar la suscripción &lt;b&gt;{0}&lt;/b&gt; y todas las suscripciones que la necesitan?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="240"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="241"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation>&lt;p&gt;¿Desea realmente eliminar la suscripción &lt;b&gt;{0}&lt;/b&gt; ?&lt;/p&gt;</translation>
     </message>
@@ -258,17 +258,17 @@
 <context>
     <name>AdBlockManager</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="232"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="233"/>
         <source>Custom Rules</source>
         <translation>Reglas Personalizadas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="334"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="335"/>
         <source>Subscribe?</source>
         <translation>¿Suscribir?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="334"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="335"/>
         <source>&lt;p&gt;Subscribe to this AdBlock subscription?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;¿Suscribirse a esta suscripción de AdBlock?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
@@ -276,47 +276,47 @@
 <context>
     <name>AdBlockSubscription</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="291"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="294"/>
         <source>Load subscription rules</source>
         <translation>Cargar reglas de la suscripción</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="500"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="503"/>
         <source>Downloading subscription rules</source>
         <translation>Descargando reglas de la suscripción</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="410"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="413"/>
         <source>Got empty subscription rules.</source>
         <translation>El conjunto de reglas de suscripción está vacío.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="523"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="527"/>
         <source>Saving subscription rules</source>
         <translation>Guardando reglas de la suscripción</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="397"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="400"/>
         <source>&lt;p&gt;Subscription rules could not be downloaded.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Las reglas de la subscrición no han podido ser descargadas.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="291"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="294"/>
         <source>AdBlock file &apos;{0}&apos; does not start with [Adblock.</source>
         <translation>El archivo de AdBlock &apos;{0}&apos; no comienza con [Adblock.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="500"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="503"/>
         <source>&lt;p&gt;AdBlock subscription &lt;b&gt;{0}&lt;/b&gt; has a wrong checksum.&lt;br/&gt;Found: {1}&lt;br/&gt;Calculated: {2}&lt;br/&gt;Use it anyway?&lt;/p&gt;</source>
         <translation>&lt;p&gt;La suscripción de AdBlock&lt;b&gt;{0}&lt;/b&gt; tiene un checksum erróneo.&lt;br/&gt;Hallado: {1}&lt;br/&gt;Calculatado: {2}&lt;br/&gt;¿Usarlo de todos modos?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="281"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="284"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for reading.</source>
         <translation>No ha sido posible abrir el archivo de AdBlock &apos;{0}&apos; en modo lectura.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="523"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="527"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for writing.</source>
         <translation>No ha sido posible abrir el archivo de AdBlock &apos;{0}&apos; en modo escritura.</translation>
     </message>
@@ -324,27 +324,27 @@
 <context>
     <name>AdBlockTreeWidget</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="123"/>
         <source>Add Custom Rule</source>
         <translation>Añadir Regla Personalizada</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="123"/>
         <source>Write your rule here:</source>
         <translation>Escribir aquí la regla:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="164"/>
-        <source>Add Rule</source>
-        <translation>Añadir regla</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="166"/>
+        <source>Add Rule</source>
+        <translation>Añadir regla</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="168"/>
         <source>Remove Rule</source>
         <translation>Eliminar Regla</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="219"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="227"/>
         <source>{0} (recently updated)</source>
         <translation>{0} (recientemente actualizado)</translation>
     </message>
@@ -1131,7 +1131,7 @@
         <translation>&amp;Descripción:</translation>
     </message>
     <message>
-        <location filename="../MultiProject/AddProjectDialog.py" line="64"/>
+        <location filename="../MultiProject/AddProjectDialog.py" line="65"/>
         <source>Project Properties</source>
         <translation>Propiedades del Proyecto</translation>
     </message>
@@ -1601,37 +1601,37 @@
 <context>
     <name>BackgroundService</name>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="134"/>
+        <location filename="../Utilities/BackgroundService.py" line="135"/>
         <source>{0} not configured.</source>
         <translation>{0} no configurado.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="189"/>
+        <location filename="../Utilities/BackgroundService.py" line="190"/>
         <source>Restart background client?</source>
         <translation>¿Reiniciar cliente en background?</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="450"/>
+        <location filename="../Utilities/BackgroundService.py" line="451"/>
         <source>Background client disconnected.</source>
         <translation>Cliente en background desconectado.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="444"/>
+        <location filename="../Utilities/BackgroundService.py" line="445"/>
         <source>Eric&apos;s background client disconnected because of an unknown reason.</source>
         <translation>El cliente en background de Eric ha desconectado debido a una razón desconocida.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="189"/>
+        <location filename="../Utilities/BackgroundService.py" line="190"/>
         <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It&apos;s used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;&apos;Yes&apos;&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Retry&apos;&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;No&apos;&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El cliente en background para &lt;b&gt;{0}&lt;/b&gt; se ha detenido debido a una excepción. Éste es utilizado por varios plug-ins como los distintos comprobadores.&lt;/p&gt;&lt;p&gt;Seleccionar&lt;ul&gt;&lt;li&gt;&lt;b&gt;&apos;Si&apos;&lt;/b&gt; para reiniciar el cliente, abortando el último trabajo&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Reintentar&apos;&lt;/b&gt; para reiniciar el cliente y el último trabajo&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;No&apos;&lt;/b&gt; para dejar el cliente sin iniciar.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Nota: El cliente se puede reiniciar abriendo y aceptando el diálogo de preferencias o recargando/cambiando el proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="450"/>
+        <location filename="../Utilities/BackgroundService.py" line="451"/>
         <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
         <translation>El cliente en background para &lt;b&gt;{0}&lt;/b&gt; ha desconectado por razón desconocida.&lt;br&gt;¿Reiniciarlo?</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="215"/>
+        <location filename="../Utilities/BackgroundService.py" line="216"/>
         <source>An error in Eric&apos;s background client stopped the service.</source>
         <translation>Un error en el cliente en background de Eric ha detenido el servicio.</translation>
     </message>
@@ -1887,32 +1887,32 @@
         <translation>Añadir &amp;Carpeta</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="155"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="156"/>
         <source>&amp;Open</source>
         <translation>&amp;Abrir</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="157"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="158"/>
         <source>Open in New &amp;Tab</source>
         <translation>Abrir en Nueva Pes&amp;taña</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="168"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="169"/>
         <source>Edit &amp;Name</source>
         <translation>Editar &amp;Nombre</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="171"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="172"/>
         <source>Edit &amp;Address</source>
         <translation>Editar &amp;Dirección</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="173"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="174"/>
         <source>&amp;Delete</source>
         <translation>&amp;Borrar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="342"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="355"/>
         <source>New Folder</source>
         <translation>Nueva carpeta</translation>
     </message>
@@ -1922,37 +1922,37 @@
         <translation>Pulse para eliminar las entradas seleccionadas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="177"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="178"/>
         <source>&amp;Properties...</source>
         <translation>&amp;Propiedades...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="162"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="163"/>
         <source>Open in New &amp;Window</source>
         <translation>Abrir en Nueva &amp;Ventana</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="164"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="165"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation>Abrir en Nueva Ventana &amp;Privada</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="159"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="160"/>
         <source>Open in New &amp;Background Tab</source>
         <translation>Abrir en Nueva Pes&amp;taña en Segundo Plano</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="181"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="182"/>
         <source>New &amp;Folder...</source>
         <translation>Nueva C&amp;arpeta...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="334"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="347"/>
         <source>New Bookmark Folder</source>
         <translation>Nueva Carpeta de Marcadores</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="334"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="347"/>
         <source>Enter title for new bookmark folder:</source>
         <translation>Introducir título para la nueva carpeta de marcadores:</translation>
     </message>
@@ -2256,72 +2256,72 @@
 <context>
     <name>BreakPointViewer</name>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="52"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="54"/>
         <source>Breakpoints</source>
         <translation>Breakpoints</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="192"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="198"/>
         <source>Add</source>
         <translation>Añadir</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="159"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="165"/>
         <source>Edit...</source>
         <translation>Editar...</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="161"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="167"/>
         <source>Enable</source>
         <translation>Habilitar</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="196"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="202"/>
         <source>Enable all</source>
         <translation>Habilitar todo</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="164"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="170"/>
         <source>Disable</source>
         <translation>Deshabilitar</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="201"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="207"/>
         <source>Disable all</source>
         <translation>Deshabilitar todo</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="168"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="174"/>
         <source>Delete</source>
         <translation>Borrar</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="206"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="212"/>
         <source>Delete all</source>
         <translation>Borrar todo</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="171"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="177"/>
         <source>Goto</source>
         <translation>Ir a</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="194"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="200"/>
         <source>Enable selected</source>
         <translation>Habilitar selección</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="199"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="205"/>
         <source>Disable selected</source>
         <translation>Deshabilitar selección</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="204"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="210"/>
         <source>Delete selected</source>
         <translation>Borrar selección</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="209"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="215"/>
         <source>Configure...</source>
         <translation>Configurar...</translation>
     </message>
@@ -2334,62 +2334,62 @@
         <translation>Explorador de archivos</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="282"/>
+        <location filename="../UI/Browser.py" line="284"/>
         <source>Open</source>
         <translation>Abrir</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="231"/>
+        <location filename="../UI/Browser.py" line="233"/>
         <source>Run unittest...</source>
         <translation>Ejecutar test unitario...</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="340"/>
+        <location filename="../UI/Browser.py" line="342"/>
         <source>New toplevel directory...</source>
         <translation>Nuevo directorio raíz...</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="296"/>
+        <location filename="../UI/Browser.py" line="298"/>
         <source>Add as toplevel directory</source>
         <translation>Añadir como directorio raíz</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="299"/>
+        <location filename="../UI/Browser.py" line="301"/>
         <source>Remove from toplevel</source>
         <translation>Quitar de la raíz</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="307"/>
+        <location filename="../UI/Browser.py" line="309"/>
         <source>Find in this directory</source>
         <translation>Buscar en este directorio</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="642"/>
+        <location filename="../UI/Browser.py" line="644"/>
         <source>New toplevel directory</source>
         <translation>Nuevo directorio raíz</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="261"/>
+        <location filename="../UI/Browser.py" line="263"/>
         <source>Open in Icon Editor</source>
         <translation>Abrir en Editor de Iconos</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="314"/>
+        <location filename="../UI/Browser.py" line="316"/>
         <source>Copy Path to Clipboard</source>
         <translation>Copiar Ruta al Portapapeles</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="303"/>
+        <location filename="../UI/Browser.py" line="305"/>
         <source>Refresh directory</source>
         <translation>Actualizar directorio</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="326"/>
+        <location filename="../UI/Browser.py" line="328"/>
         <source>Goto</source>
         <translation>Ir a</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="433"/>
+        <location filename="../UI/Browser.py" line="435"/>
         <source>Line {0}</source>
         <translation>Línea {0}</translation>
     </message>
@@ -2399,152 +2399,152 @@
         <translation>&lt;b&gt;La Ventana de Navegación&lt;/b&gt;&lt;p&gt;Permite navegar facilmente la jerarquía de directorios y archivos del sistema, identificar los programas en Python y abrirlos utilizando la ventana de Visor de Código Fuente. La ventana muestra varias jerarquías separadas.&lt;/p&gt;&lt;p&gt;La primera jerarquía se muestra solamente si se tiene abierto un programa para depuración y la raíz es el directorio que contiene dicho programa. Usualmente los distintos archivos que forman una aplicación Python son mantenidos en el mismo directorio, por lo tanto esta jerarquía proporciona un acceso sencillo a la mayor parte de lo que resulta necesario.&lt;/p&gt;&lt;p&gt;La siguiente jerarquía se utiliza para navegar facilmente los directorios especificados en la variable de Python &lt;tt&gt;sys.path&lt;/tt&gt;.&lt;/p&gt;&lt;p&gt;Las restantes jerarquías permiten la navegación por el sistema como un todo. En un sistema UNIX habrá una jerarquía con &lt;tt&gt;/&lt;/tt&gt; en la raíz y otra con el directorio home del usuario. En un sistema Windows habrá una jerarquía por cada uno de los drives en el sistema.&lt;/p&gt;&lt;p&gt;Los programas Python (es decir aquellos archivos con extensión &lt;tt&gt;.py&lt;/tt&gt;) se identifican en las jerarquías con un icono de Python. Un click con el botón derecho del ratón muestra un menú contextual que permite abrir el archivo en la ventana Visor de Fuentes, o bien abrir el archivo para depuración o utilizarlo para ejecutar un test unitario.&lt;/p&gt;&lt;p&gt;El menú contextual de una clase, función o método permite abrir el archivo en donde se define esta clase, función o método y permite asegurar que se muestra la línea de código correcta.&lt;/p&gt;&lt;p&gt;Los archivos de Qt-Designer (es decir aquellos con extensión &lt;tt&gt;.ui&lt;/tt&gt;) son mostrados con un icono de Designer. El menú contextual de estos archivos permite iniciar Qt-Designer a partir de dicho archivo.&lt;/p&gt;&lt;p&gt;Los archivos de Qt-Linguist (es decir aquellos con extensión &lt;tt&gt;.ts&lt;/tt&gt;) son mostrados con un icono de Linguist. El menú contextual de dichos archivos permite iniciar Qt-Linguist a partir de dicho archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="553"/>
+        <location filename="../UI/Browser.py" line="555"/>
         <source>Show Mime-Type</source>
         <translation>Mostrar Mime-Type</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="526"/>
+        <location filename="../UI/Browser.py" line="528"/>
         <source>The mime type of the file could not be determined.</source>
         <translation>El mime type del archivo no se puede determinar.</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="544"/>
+        <location filename="../UI/Browser.py" line="546"/>
         <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.</source>
         <translation>El archivo tiene el mime type &lt;b&gt;{0}&lt;/b&gt;.</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="553"/>
+        <location filename="../UI/Browser.py" line="555"/>
         <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt; Shall it be added to the list of text mime types?</source>
         <translation>El archivo tiene el mime type &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt; ¿Añadirlo a la lista de mime types?</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="258"/>
+        <location filename="../UI/Browser.py" line="260"/>
         <source>Open in Hex Editor</source>
         <translation>Abrir en Editor Hexadecimal</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="310"/>
+        <location filename="../UI/Browser.py" line="312"/>
         <source>Find &amp;&amp; Replace in this directory</source>
         <translation>Buscar &amp;&amp; Reemplazar en este directorio</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="239"/>
+        <location filename="../UI/Browser.py" line="241"/>
         <source>Refresh Source File</source>
         <translation>Actualizar Archivo Fuente</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="212"/>
+        <location filename="../UI/Browser.py" line="214"/>
         <source>Show Hidden Files</source>
         <translation type="unfinished">Mostrar Archivos Ocultos</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="219"/>
-        <source>New</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/Browser.py" line="221"/>
+        <source>New</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/Browser.py" line="223"/>
         <source>Directory</source>
         <translation type="unfinished">Directorio</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="224"/>
+        <location filename="../UI/Browser.py" line="226"/>
         <source>File</source>
         <translation type="unfinished">Archivo</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="321"/>
+        <location filename="../UI/Browser.py" line="323"/>
         <source>Delete</source>
         <translation type="unfinished">Borrar</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="879"/>
+        <location filename="../UI/Browser.py" line="881"/>
         <source>New Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="861"/>
+        <location filename="../UI/Browser.py" line="863"/>
         <source>Name for new directory:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="902"/>
+        <location filename="../UI/Browser.py" line="904"/>
         <source>A file or directory named &lt;b&gt;{0}&lt;/b&gt; exists already. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="879"/>
+        <location filename="../UI/Browser.py" line="881"/>
         <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;El directorio &lt;b&gt;{0}&lt;/b&gt; no se ha podido crear.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="913"/>
+        <location filename="../UI/Browser.py" line="915"/>
         <source>New File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="894"/>
+        <location filename="../UI/Browser.py" line="896"/>
         <source>Name for new file:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="913"/>
+        <location filename="../UI/Browser.py" line="915"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="942"/>
+        <location filename="../UI/Browser.py" line="944"/>
         <source>Do you really want to move this file to the trash?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="946"/>
+        <location filename="../UI/Browser.py" line="948"/>
         <source>Do you really want to delete this file?</source>
         <translation type="unfinished">¿Desea realmente borrar este archivo?</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1043"/>
+        <location filename="../UI/Browser.py" line="1045"/>
         <source>Delete File</source>
         <translation type="unfinished">Borrar Archivo</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1043"/>
+        <location filename="../UI/Browser.py" line="1045"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;El archivo seleccionado &lt;b&gt;{0}&lt;/b&gt; no se ha podido borrar.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="979"/>
+        <location filename="../UI/Browser.py" line="981"/>
         <source>Do you really want to move this directory to the trash?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="983"/>
+        <location filename="../UI/Browser.py" line="985"/>
         <source>Do you really want to delete this directory?</source>
         <translation type="unfinished">¿Desea realmente borrar este directorio?</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1000"/>
+        <location filename="../UI/Browser.py" line="1002"/>
         <source>Delete Directory</source>
         <translation type="unfinished">Borrar Directorio</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1000"/>
+        <location filename="../UI/Browser.py" line="1002"/>
         <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;El directorio seleccionado &lt;b&gt;{0}&lt;/b&gt; no se ha podido borrar.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1023"/>
+        <location filename="../UI/Browser.py" line="1025"/>
         <source>Do you really want to move these files to the trash?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1027"/>
+        <location filename="../UI/Browser.py" line="1029"/>
         <source>Do you really want to delete these files?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1032"/>
+        <location filename="../UI/Browser.py" line="1034"/>
         <source>Delete Files</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2557,27 +2557,27 @@
         <translation>Nombre</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="759"/>
+        <location filename="../UI/BrowserModel.py" line="766"/>
         <source>Attributes</source>
         <translation>Atributos</translation>
     </message>
     <message>
+        <location filename="../UI/BrowserModel.py" line="667"/>
+        <source>Globals</source>
+        <translation>Globales</translation>
+    </message>
+    <message>
         <location filename="../UI/BrowserModel.py" line="660"/>
-        <source>Globals</source>
-        <translation>Globales</translation>
-    </message>
-    <message>
-        <location filename="../UI/BrowserModel.py" line="653"/>
         <source>Coding: {0}</source>
         <translation>Codificación: {0}</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="769"/>
+        <location filename="../UI/BrowserModel.py" line="776"/>
         <source>Class Attributes</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="666"/>
+        <location filename="../UI/BrowserModel.py" line="673"/>
         <source>Imports</source>
         <translation>Imports</translation>
     </message>
@@ -2600,7 +2600,7 @@
         <translation>Guardar</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="71"/>
+        <location filename="../Debugger/CallStackViewer.py" line="72"/>
         <source>File: {0}
 Line: {1}
 {2}{3}</source>
@@ -2609,34 +2609,34 @@
 {2}{3}</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="73"/>
+        <location filename="../Debugger/CallStackViewer.py" line="74"/>
         <source>File: {0}
 Line: {1}</source>
         <translation>Archivo: {0}
 Línea: {1}</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="202"/>
+        <location filename="../Debugger/CallStackViewer.py" line="203"/>
         <source>Save Call Stack Info</source>
         <translation>Guardar Información de Pila de Llamadas</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="188"/>
+        <location filename="../Debugger/CallStackViewer.py" line="189"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation>Archivos de Texto (*.txt);;Todos los Archivos (*)</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="202"/>
+        <location filename="../Debugger/CallStackViewer.py" line="203"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="224"/>
+        <location filename="../Debugger/CallStackViewer.py" line="225"/>
         <source>Error saving Call Stack Info</source>
         <translation>Error al guardar Información de Pila de Llamadas</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="224"/>
+        <location filename="../Debugger/CallStackViewer.py" line="225"/>
         <source>&lt;p&gt;The call stack info could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;La información de la pila de llamadas no se ha podido guardar en &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
@@ -2646,7 +2646,7 @@
         <translation>Pila de Llamadas</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="213"/>
+        <location filename="../Debugger/CallStackViewer.py" line="214"/>
         <source>Call Stack of &apos;{0}&apos;</source>
         <translation>Pila de Llamadas de &apos;{0}&apos;</translation>
     </message>
@@ -3322,32 +3322,32 @@
 <context>
     <name>CodeDocumentationViewer</name>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="208"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="211"/>
         <source>Code Info Provider:</source>
         <translation>Proveedor de Info del Código:</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="221"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="227"/>
         <source>Select the code info provider</source>
         <translation>Seleccionar el proveedor de info del código</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="223"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="229"/>
         <source>&lt;disabled&gt;</source>
         <translation>&lt;deshabilitado&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="404"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="410"/>
         <source>No documentation available</source>
         <translation>No hay documentación disponible</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="425"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="431"/>
         <source>No source code documentation provider has been registered. This function has been disabled.</source>
         <translation>No hay registrado ningún proveedor de documentación de código. Esta función se ha deshabilitado.</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="430"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="436"/>
         <source>This function has been disabled.</source>
         <translation>Esta función se ha deshabilitado.</translation>
     </message>
@@ -3454,32 +3454,32 @@
         <translation>Muestra el progreso del cálculo de métricas</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="193"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="205"/>
         <source>files</source>
         <translation>archivos</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="195"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="207"/>
         <source>lines</source>
         <translation>líneas</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="197"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="209"/>
         <source>bytes</source>
         <translation>bytes</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="199"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="211"/>
         <source>comments</source>
         <translation>comentarios</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="203"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="215"/>
         <source>empty lines</source>
         <translation>lineas vacías</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="205"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="217"/>
         <source>non-commentary lines</source>
         <translation>líneas no comentadas</translation>
     </message>
@@ -3504,17 +3504,17 @@
         <translation>%v/%m Archivos</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="201"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="213"/>
         <source>comment lines</source>
         <translation>líneas de documentación</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="52"/>
-        <source>Collapse All</source>
-        <translation>Contraer Todo</translation>
-    </message>
-    <message>
         <location filename="../DataViews/CodeMetricsDialog.py" line="54"/>
+        <source>Collapse All</source>
+        <translation>Contraer Todo</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="56"/>
         <source>Expand All</source>
         <translation>Expandir Todo</translation>
     </message>
@@ -3752,7 +3752,7 @@
         <translation>Pulsar para mostrar todos los archivos con algún problema</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="244"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="246"/>
         <source>Error: {0}</source>
         <translation>Error: {0}</translation>
     </message>
@@ -3762,7 +3762,7 @@
         <translation>Arreglar: {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1037"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1044"/>
         <source>No issues found.</source>
         <translation>No se han encontrado problemas.</translation>
     </message>
@@ -3787,12 +3787,12 @@
         <translation>Mostrar ignorados</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="963"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="968"/>
         <source>{0} (ignored)</source>
         <translation>{0} (ignorado)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="856"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="861"/>
         <source>Preparing files...</source>
         <translation>Preparando archivos...</translation>
     </message>
@@ -3802,12 +3802,12 @@
         <translation>Introducir la máxima complejidad de código permitida (McCabe: 10)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="217"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="219"/>
         <source>Errors</source>
         <translation>Errores</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="895"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="900"/>
         <source>Transferring data...</source>
         <translation>Transfiriendo datos...</translation>
     </message>
@@ -3912,7 +3912,7 @@
         <translation>&amp;Restablecer Valores por Defecto</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1040"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1047"/>
         <source>No files found (check your ignore list).</source>
         <translation>No se han encontrado archivos (comprobar lista de ignorados).</translation>
     </message>
@@ -4222,12 +4222,12 @@
         <translation>Pulsar para añadir un patrón de lista blanca para comentarios en código</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2004"/>
         <source>Commented Code Whitelist Pattern</source>
         <translation>Patrón de lista blanca para comentarios en código</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2004"/>
         <source>Enter a Commented Code Whitelist Pattern</source>
         <translation>Introducir un patrón de lista blanca para comentarios en código</translation>
     </message>
@@ -5069,7 +5069,7 @@
 <context>
     <name>CondaExecDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="96"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="102"/>
         <source>Conda Execution</source>
         <translation>Ejecución de Conda</translation>
     </message>
@@ -5098,48 +5098,48 @@
 &lt;p&gt;Muestra los errores del comando conda.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="96"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="102"/>
         <source>The conda executable could not be started. Is it configured correctly?</source>
         <translation>No se ha podido iniciar el ejecutable de conda. ¿Está configurado correctamente?</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="103"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="109"/>
         <source>Operation started.
 </source>
         <translation>Operatión iniciada.
 </translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="134"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="143"/>
         <source>Operation finished.
 </source>
         <translation>Operación finalizada.
 </translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="154"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="163"/>
         <source>Conda command &apos;{0}&apos; did not return success.</source>
         <translation>El comando conda &apos;{0}&apos; no ha retornado éxito.</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="164"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="173"/>
         <source>
 Conda Message: {0}</source>
         <translation>
 Mensaje Conda: {0}</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="203"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="212"/>
         <source>{0} (Size: {1})</source>
         <translation>{0} (Tamaño: {1})</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="208"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="217"/>
         <source>Fetching {0} ...</source>
         <translation>Recuperando {0} ...</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="212"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="221"/>
         <source> Done.
 </source>
         <translation> Terminado.
@@ -5149,7 +5149,7 @@
 <context>
     <name>CondaExportDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="209"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="211"/>
         <source>Generate Requirements</source>
         <translation>Generar Requisitos</translation>
     </message>
@@ -5229,27 +5229,27 @@
         <translation>Actualiza&amp;r</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="209"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="211"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation>Archivos de Texto (*.txt);;Todos los Archivos (*)</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="109"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="111"/>
         <source>The requirements were changed. Do you want to overwrite these changes?</source>
         <translation>Los requisitos se han cambiado. ¿Desea sobreescribir los cambios?</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="140"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="142"/>
         <source>No output generated by conda.</source>
         <translation>Sin salida generada por conda.</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="177"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="179"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; already exists. Do you want to overwrite it?</source>
         <translation>El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="189"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="191"/>
         <source>&lt;p&gt;The requirements could not be written to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;TLos requisitos no se han podido escribir en &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
@@ -5431,7 +5431,7 @@
 <context>
     <name>CondaPackageDetailsDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaPackageDetailsWidget.py" line="91"/>
+        <location filename="../CondaInterface/CondaPackageDetailsWidget.py" line="93"/>
         <source>Package Details</source>
         <translation>Detalles del Package</translation>
     </message>
@@ -5632,132 +5632,132 @@
         <translation>Menu Conda</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="123"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="125"/>
         <source>Clean</source>
         <translation>Limpiar</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="124"/>
-        <source>All</source>
-        <translation>Todo</translation>
-    </message>
-    <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="126"/>
-        <source>Cache</source>
-        <translation>Caché</translation>
+        <source>All</source>
+        <translation>Todo</translation>
     </message>
     <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="128"/>
+        <source>Cache</source>
+        <translation>Caché</translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="130"/>
         <source>Lock Files</source>
         <translation>Archivos Lock</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="131"/>
-        <source>Packages</source>
-        <translation>Packages</translation>
-    </message>
-    <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="133"/>
+        <source>Packages</source>
+        <translation>Packages</translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="135"/>
         <source>Tarballs</source>
         <translation>Tarballs</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="136"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="138"/>
         <source>About Conda...</source>
         <translation>Acerca de Conda...</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="139"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="141"/>
         <source>Update Conda</source>
         <translation>Actualizar Conda</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="575"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="581"/>
         <source>Install Packages</source>
         <translation>Instalar Packages</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="144"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="146"/>
         <source>Install Requirements</source>
         <translation>Instalar Requisitos</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="147"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="149"/>
         <source>Generate Requirements</source>
         <translation>Generar Requisitos</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="150"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="152"/>
         <source>Create Environment from Requirements</source>
         <translation>Crear Entorno a partir de Requisitos</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="617"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="623"/>
         <source>Clone Environment</source>
         <translation>Clonar Entorno</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="662"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="668"/>
         <source>Delete Environment</source>
         <translation>Borrar Entorno</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="160"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="162"/>
         <source>Edit User Configuration...</source>
         <translation>Editar Configuración de Usuario...</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="164"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="166"/>
         <source>Configure...</source>
         <translation>Configurar...</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="221"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="223"/>
         <source>Getting installed packages...</source>
         <translation>Obteniendo packages instalados...</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="234"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="236"/>
         <source>Getting outdated packages...</source>
         <translation>Obteniendo packages antiguos...</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="256"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="260"/>
         <source>{0} (Build: {1})</source>
         <translation>{0} (Build: {1})</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="397"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="403"/>
         <source>Conda Search Package Error</source>
         <translation>Error de Búsqueda de Package de Conda</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="555"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="561"/>
         <source>Package Specifications (separated by whitespace):</source>
         <translation>Especificaciones del Package (separadas por espacios en blanco):</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="575"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="581"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation>Archivos de Texto (*.txt);;Todos los Archivos (*)</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="641"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="647"/>
         <source>Create Environment</source>
         <translation>Crear Entorno</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="662"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="668"/>
         <source>&lt;p&gt;Shall the environment &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation>&lt;p&gt;¿Desea realmente borrar el entorno &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="687"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="693"/>
         <source>Edit Configuration</source>
         <translation>Editar Configuración</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="687"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="693"/>
         <source>The configuration file &quot;{0}&quot; does not exist or is not writable.</source>
         <translation>El archivo de configuración &quot;{0}&quot; no existe o no es escribible.</translation>
     </message>
@@ -5953,7 +5953,7 @@
         <translation>Gestor de vistas</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="661"/>
         <source>Configuration Page Error</source>
         <translation>Error de Configuración de Página</translation>
     </message>
@@ -5988,12 +5988,12 @@
         <translation>Propiedades</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="571"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="578"/>
         <source>Preferences</source>
         <translation>Preferencias</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="576"/>
+        <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
@@ -6015,7 +6015,7 @@
         <translation>Python3</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
+        <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>
@@ -6248,17 +6248,17 @@
         <translation>Estado</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="82"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="87"/>
         <source>Allow</source>
         <translation>Permitir</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="91"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="96"/>
         <source>Block</source>
         <translation>Bloquear</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="100"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="105"/>
         <source>Allow For Session</source>
         <translation>Permitir para la sesión</translation>
     </message>
@@ -6399,7 +6399,7 @@
         <translation>Dominio:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="175"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="176"/>
         <source>&lt;no cookie selected&gt;</source>
         <translation>&lt;no hay cookie seleccionada&gt;</translation>
     </message>
@@ -6444,37 +6444,37 @@
         <translation>Pulsar para eliminar todas las cookies</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="143"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="144"/>
         <source>Remove All Cookies</source>
         <translation>Eliminar Todas las Cookies</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="143"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="144"/>
         <source>Do you really want to remove all stored cookies?</source>
         <translation>¿Desea realmente eliminar todas las cookies almacenadas?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="177"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="178"/>
         <source>Remove Cookies</source>
         <translation>Eliminar Cookies</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="186"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="187"/>
         <source>Secure connections only</source>
         <translation>Solamente conexiones seguras</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="188"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="189"/>
         <source>All connections</source>
         <translation>Todas las conexiones</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="190"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="191"/>
         <source>Session Cookie</source>
         <translation>Cookie de Sesión</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="197"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="198"/>
         <source>Remove Cookie</source>
         <translation>Eliminar Cookie</translation>
     </message>
@@ -6761,57 +6761,57 @@
         <translation>Filtrar c&amp;on:</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="225"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="226"/>
         <source>uic error</source>
         <translation>error de uic</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="578"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="580"/>
         <source>Code Generation</source>
         <translation>Generación de Código</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="135"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="136"/>
         <source>Create Dialog Code</source>
         <translation>Generar código de Diálogo</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="135"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="136"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; exists but does not contain any classes.</source>
         <translation>El archivo &lt;b&gt;{0}&lt;/b&gt; existe pero no contiene ninguna clase.</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="216"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="217"/>
         <source>&lt;p&gt;There was an error loading the form &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Ha ocurrido un error al cargar el formulario &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="448"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="449"/>
         <source>&lt;p&gt;Could not open the code template file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido cargar el archivo con la plantilla de código &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="485"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="486"/>
         <source>&lt;p&gt;Could not open the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido abrir el archivo de codigo fuente &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="578"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="580"/>
         <source>&lt;p&gt;Could not write the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido escribir en el archivo de codigo fuente &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="225"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="226"/>
         <source>&lt;p&gt;The project specific Python interpreter &lt;b&gt;{0}&lt;/b&gt; could not be started or did not finish within 30 seconds.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido iniciar, o no ha respondido en 30 segundos,.el intérprete de Python &lt;b&gt;{0}&lt;/b&gt; específico para el proyecto&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="401"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="402"/>
         <source>&lt;p&gt;Code generation for project language &quot;{0}&quot; is not supported.&lt;/p&gt;</source>
         <translation>&lt;p&gt;La generación de código para el lenguaje de proyecto &quot;{0}&quot; no está soportada.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="437"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="438"/>
         <source>&lt;p&gt;No code template file available for project type &quot;{0}&quot;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No hay plantillas de archivo para proyectos del tipo  &quot;{0}&quot;.&lt;/p&gt;</translation>
     </message>
@@ -6854,12 +6854,12 @@
         <translation>cambiado</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="865"/>
+        <location filename="../Debugger/DebugServer.py" line="867"/>
         <source>Connection from illegal host</source>
         <translation>Conexión desde un host ilegal</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1875"/>
+        <location filename="../Debugger/DebugServer.py" line="1877"/>
         <source>
 Not connected
 </source>
@@ -6868,41 +6868,41 @@
 </translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="865"/>
+        <location filename="../Debugger/DebugServer.py" line="867"/>
         <source>&lt;p&gt;A connection was attempted by the illegal host &lt;b&gt;{0}&lt;/b&gt;. Accept this connection?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Se ha intentado una conexión desde el host ilegal &lt;b&gt;{0}&lt;/b&gt;. ¿Aceptar esta conexión?.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="2144"/>
+        <location filename="../Debugger/DebugServer.py" line="2146"/>
         <source>Passive debug connection received
 </source>
         <translation>Recibida conexión pasiva de depuración
 </translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="2158"/>
+        <location filename="../Debugger/DebugServer.py" line="2160"/>
         <source>Passive debug connection closed
 </source>
         <translation>Cerrada conexión pasiva de depuración
 </translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="351"/>
+        <location filename="../Debugger/DebugServer.py" line="353"/>
         <source>Register Debugger Interface</source>
         <translation>Registrar Interfaz de Depurador</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="351"/>
+        <location filename="../Debugger/DebugServer.py" line="353"/>
         <source>&lt;p&gt;The debugger interface &lt;b&gt;{0}&lt;/b&gt; has already been registered. Ignoring this request.&lt;/p&gt;</source>
         <translation>&lt;p&gt;La interfaz de depurador &lt;b&gt;{0}&lt;/b&gt; ya está registrada. Se ignorará esta solicitud.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1601"/>
         <source>Start Debugger</source>
         <translation>Iniciar Depurador</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1601"/>
         <source>&lt;p&gt;The debugger type &lt;b&gt;{0}&lt;/b&gt; is not supported or not configured.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Este tipo de depurador, &lt;b&gt;{0}&lt;/b&gt;, no está soportado o no está configurado.&lt;/p&gt;</translation>
     </message>
@@ -6910,7 +6910,7 @@
 <context>
     <name>DebugUI</name>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1961"/>
+        <location filename="../Debugger/DebugUI.py" line="1964"/>
         <source>Run Script</source>
         <translation>Ejecutar Script</translation>
     </message>
@@ -6930,7 +6930,7 @@
         <translation>&lt;b&gt;Ejecutar Script&lt;/b&gt;&lt;p&gt;Establece los parámetros de la línea de comandos y ejecuta el script fuera del depurador. Si tiene cambios sin guardar, deben ser guardados primero.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1973"/>
+        <location filename="../Debugger/DebugUI.py" line="1976"/>
         <source>Run Project</source>
         <translation>Ejecutar Proyecto</translation>
     </message>
@@ -6940,576 +6940,576 @@
         <translation>Ejecutar &amp;Proyecto...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="220"/>
+        <location filename="../Debugger/DebugUI.py" line="221"/>
         <source>Run the current Project</source>
         <translation>Ejecutar el proyecto Actual</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="221"/>
+        <location filename="../Debugger/DebugUI.py" line="222"/>
         <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ejecutar Proyecto&lt;/b&gt;&lt;p&gt;Establece los argumentos de la línea de comandos y ejecuta el proyecto actual fuera del depurador. Si los archivos del proyecto actual tienen archivos sin guardar, deben ser guardados primero.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="231"/>
+        <location filename="../Debugger/DebugUI.py" line="232"/>
         <source>Coverage run of Script</source>
         <translation>Ejecutar Script con definición de cobertura</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="231"/>
+        <location filename="../Debugger/DebugUI.py" line="232"/>
         <source>Coverage run of Script...</source>
         <translation>Ejecutar Script con definición de cobertura...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="236"/>
+        <location filename="../Debugger/DebugUI.py" line="237"/>
         <source>Perform a coverage run of the current Script</source>
         <translation>Llevar a cabo una ejecución con definición de cobertura del Script actual</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="238"/>
+        <location filename="../Debugger/DebugUI.py" line="239"/>
         <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ejecutar Script con definición de cobertura&lt;/b&gt;&lt;p&gt;Establece los argumentos de línea de comando y ejecuta el script bajo el control de una herramienta de análisis de cobertura. Si el archivo tiene cambios sin guardar, pueden ser guardados primero.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="247"/>
+        <location filename="../Debugger/DebugUI.py" line="248"/>
         <source>Coverage run of Project</source>
         <translation>Ejecutar el Proyecto con definición de cobertura</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="247"/>
+        <location filename="../Debugger/DebugUI.py" line="248"/>
         <source>Coverage run of Project...</source>
         <translation>Ejecutar el Proyecto con definición de cobertura...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="252"/>
+        <location filename="../Debugger/DebugUI.py" line="253"/>
         <source>Perform a coverage run of the current Project</source>
         <translation>Llevar a cabo una ejecución con definición de cobertura del Proyecto actual</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="254"/>
+        <location filename="../Debugger/DebugUI.py" line="255"/>
         <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ejecutar Proyecto con definición de cobertura&lt;/b&gt;&lt;p&gt;Establecer los argumentos de línea de comando y ejecutar el proyecto actual bajo el control de una herramienta de análisis de cobertura. Si hay archivos con cambios sin guardar, se pueden guardar primero.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="264"/>
+        <location filename="../Debugger/DebugUI.py" line="265"/>
         <source>Profile Script</source>
         <translation>Hacer Profiling del Script</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="264"/>
+        <location filename="../Debugger/DebugUI.py" line="265"/>
         <source>Profile Script...</source>
         <translation>Hacer Profiling del Script...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="268"/>
-        <source>Profile the current Script</source>
-        <translation>Hacer Profiling del Script actual</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="269"/>
+        <source>Profile the current Script</source>
+        <translation>Hacer Profiling del Script actual</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="270"/>
         <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Hacer Profiling del Script&lt;/b&gt;&lt;p&gt;Establecer los argumentos de línea de comandos y hacer profiling del script. Si el archivo tiene cambios sin guardar, se pueden guardar primero.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="277"/>
+        <location filename="../Debugger/DebugUI.py" line="278"/>
         <source>Profile Project</source>
         <translation>Hacer Profiling del Proyecto</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="277"/>
+        <location filename="../Debugger/DebugUI.py" line="278"/>
         <source>Profile Project...</source>
         <translation>Hacer Profiling del Proyecto...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="282"/>
+        <location filename="../Debugger/DebugUI.py" line="283"/>
         <source>Profile the current Project</source>
         <translation>Hacer Profiling del Proyecto actual</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="284"/>
+        <location filename="../Debugger/DebugUI.py" line="285"/>
         <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Hacer Profiling del Proyecto&lt;/b&gt;&lt;p&gt;Establecer los argumentos de línea de comandos y hacer profiling del proyecto actual. Si hay archivos que tienen cambios sin guardar, se puede guardar primero.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2094"/>
+        <location filename="../Debugger/DebugUI.py" line="2097"/>
         <source>Debug Script</source>
         <translation>Depurar Script</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="293"/>
+        <location filename="../Debugger/DebugUI.py" line="294"/>
         <source>&amp;Debug Script...</source>
         <translation>&amp;Depurar script...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="298"/>
-        <source>Debug the current Script</source>
-        <translation>Depurar el script actual</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="299"/>
+        <source>Debug the current Script</source>
+        <translation>Depurar el script actual</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="300"/>
         <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Depurar Script&lt;/b&gt;&lt;p&gt;Establecer los argumentos de línea de comandos y establecer la línea actual en la ventana actual de edición como la primera sentencia Python ejecutable. Si el archivo tiene cambios sin guardar, se puede guardar primero.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2111"/>
+        <location filename="../Debugger/DebugUI.py" line="2114"/>
         <source>Debug Project</source>
         <translation>Depurar proyecto</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="309"/>
+        <location filename="../Debugger/DebugUI.py" line="310"/>
         <source>Debug &amp;Project...</source>
         <translation>Depurar &amp;proyecto...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="314"/>
-        <source>Debug the current Project</source>
-        <translation>Depurar el proyecto actual</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="316"/>
+        <source>Debug the current Project</source>
+        <translation>Depurar el proyecto actual</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="318"/>
         <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Depurar Proyecto&lt;/b&gt;&lt;p&gt;Establecer los argumentos de línea de comandos y establecer la línea actual en la ventana actual de edición como la primera sentencia Python ejecutable. Si hay archivos que tienen cambios sin guardar, se pueden guardar primero.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="330"/>
+        <location filename="../Debugger/DebugUI.py" line="332"/>
         <source>Restart the last debugged script</source>
         <translation>Reiniciar el último script depurado</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="347"/>
+        <location filename="../Debugger/DebugUI.py" line="349"/>
         <source>Stop the running script.</source>
         <translation>Detener el script en ejecución.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="357"/>
+        <location filename="../Debugger/DebugUI.py" line="359"/>
         <source>Continue</source>
         <translation>Continuar</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="357"/>
+        <location filename="../Debugger/DebugUI.py" line="359"/>
         <source>&amp;Continue</source>
         <translation>&amp;Continuar</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="362"/>
-        <source>Continue running the program from the current line</source>
-        <translation>Continúa el programa a partir de la línea actual</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="364"/>
+        <source>Continue running the program from the current line</source>
+        <translation>Continúa el programa a partir de la línea actual</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="366"/>
         <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Continuar&lt;/b&gt;&lt;p&gt;Continúa la ejecución del programa a partir de la línea actual. El programa se detendrá al terminar o al alcanzar un breakpoint.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="373"/>
+        <location filename="../Debugger/DebugUI.py" line="375"/>
         <source>Continue to Cursor</source>
         <translation>Continuar hasta el cursor</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="373"/>
+        <location filename="../Debugger/DebugUI.py" line="375"/>
         <source>Continue &amp;To Cursor</source>
         <translation>Continuar &amp;hasta el cursor</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="378"/>
-        <source>Continue running the program from the current line to the current cursor position</source>
-        <translation>Continúa ejecutando el programa desde la línea actual hasta la posición actual del cursor</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="381"/>
+        <source>Continue running the program from the current line to the current cursor position</source>
+        <translation>Continúa ejecutando el programa desde la línea actual hasta la posición actual del cursor</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="384"/>
         <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Continuar hasta el Cursor&lt;/b&gt;&lt;p&gt;Continúa ejecutando el programa desde la línea actual hasta la posición actual del cursor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="426"/>
+        <location filename="../Debugger/DebugUI.py" line="429"/>
         <source>Single Step</source>
         <translation>Un paso</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="426"/>
+        <location filename="../Debugger/DebugUI.py" line="429"/>
         <source>Sin&amp;gle Step</source>
         <translation>Un &amp;paso</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="431"/>
+        <location filename="../Debugger/DebugUI.py" line="434"/>
         <source>Execute a single Python statement</source>
         <translation>Ejecuta una sentencia python</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="432"/>
+        <location filename="../Debugger/DebugUI.py" line="435"/>
         <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Paso Único&lt;/b&gt;&lt;p&gt;Ejecutar una única sentencia Python. Si la sentencia es un &lt;tt&gt;import&lt;/tt&gt;, un constructor de clase, o un método o llamada a función entonces el control se devuelve al depurador en la siguiente sentencia.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="442"/>
+        <location filename="../Debugger/DebugUI.py" line="445"/>
         <source>Step Over</source>
         <translation>Saltar</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="442"/>
+        <location filename="../Debugger/DebugUI.py" line="445"/>
         <source>Step &amp;Over</source>
         <translation>Salta&amp;r</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="447"/>
-        <source>Execute a single Python statement staying in the current frame</source>
-        <translation>Ejecutar una única sentencia Python sin salir del marco actual</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="450"/>
+        <source>Execute a single Python statement staying in the current frame</source>
+        <translation>Ejecutar una única sentencia Python sin salir del marco actual</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="453"/>
         <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Saltar&lt;/b&gt;&lt;p&gt;Eejcutar una única sentencia Python sin salir del marco actual. Si la sentencia es un &lt;tt&gt;import&lt;/tt&gt;, un constructor de clase, o un método o llamada a función, el control se devuelve al depurador despues de que la sentencia se haya completado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="461"/>
+        <location filename="../Debugger/DebugUI.py" line="464"/>
         <source>Step Out</source>
         <translation>Paso atras</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="461"/>
+        <location filename="../Debugger/DebugUI.py" line="464"/>
         <source>Step Ou&amp;t</source>
         <translation>Paso &amp;atras</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="466"/>
-        <source>Execute Python statements until leaving the current frame</source>
-        <translation>Ejecutar sentencia Python hasta abandonar el marco actual</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="469"/>
+        <source>Execute Python statements until leaving the current frame</source>
+        <translation>Ejecutar sentencia Python hasta abandonar el marco actual</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="472"/>
         <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Saltar fuera&lt;/b&gt;&lt;p&gt;Ejecuta sentencias Python hasta salir del marco actual. Si las sentencias están dentro de una sentencia &lt;tt&gt;import&lt;/tt&gt;, un constructor de clase, o un método o llamada a función, el control se devuelve al depurador despues de que el marco actual ha sido abandonado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="480"/>
+        <location filename="../Debugger/DebugUI.py" line="483"/>
         <source>Stop</source>
         <translation>Detener</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="480"/>
+        <location filename="../Debugger/DebugUI.py" line="483"/>
         <source>&amp;Stop</source>
         <translation>&amp;Parar</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="485"/>
+        <location filename="../Debugger/DebugUI.py" line="488"/>
         <source>Stop debugging</source>
         <translation>Detener depuración</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="486"/>
+        <location filename="../Debugger/DebugUI.py" line="489"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Detener&lt;/b&gt;&lt;p&gt;Detener la sesión de depuración en ejecución.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="493"/>
+        <location filename="../Debugger/DebugUI.py" line="496"/>
         <source>Variables Type Filter</source>
         <translation>Fitro por tipo de variable</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="493"/>
+        <location filename="../Debugger/DebugUI.py" line="496"/>
         <source>Varia&amp;bles Type Filter...</source>
         <translation>&amp;Fitro por tipo de variable...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="497"/>
+        <location filename="../Debugger/DebugUI.py" line="500"/>
         <source>Configure variables type filter</source>
         <translation>Configurar Fitro por tipo de variable</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="499"/>
+        <location filename="../Debugger/DebugUI.py" line="502"/>
         <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Fitro por tipo de variable&lt;/b&gt;&lt;p&gt;Configurar el fitro por tipo de variable. Durante una sesión de depuración, solo se muestran en las ventanas de variables locales o globales los tipos de variable que no han sido seleccionados.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="509"/>
+        <location filename="../Debugger/DebugUI.py" line="512"/>
         <source>Exceptions Filter</source>
         <translation>Filtro de excepciones</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="509"/>
+        <location filename="../Debugger/DebugUI.py" line="512"/>
         <source>&amp;Exceptions Filter...</source>
         <translation>Filtro de e&amp;xcepciones...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="513"/>
+        <location filename="../Debugger/DebugUI.py" line="516"/>
         <source>Configure exceptions filter</source>
         <translation>Configurar Filtro de excepciones</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="515"/>
+        <location filename="../Debugger/DebugUI.py" line="518"/>
         <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Filtro de excepciones&lt;/b&gt;&lt;p&gt;Configurar el filtro de excepciones. Durante una sesión de depuración solo se resaltan los tipos de excepción de la lista.&lt;/p&gt;&lt;p&gt;Por favor, note que se resaltarán todas las excepciones que no sean gestionadas, independientemente de la lista de filtros.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="551"/>
+        <location filename="../Debugger/DebugUI.py" line="554"/>
         <source>Toggle Breakpoint</source>
         <translation>Alternar Punto de Interrupción (Breakpoint)</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="552"/>
+        <location filename="../Debugger/DebugUI.py" line="555"/>
         <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Alternar Punto de Interrupción&lt;/b&gt;&lt;p&gt;Inserta o elimina un punto de interrupción en la línea actual del editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="566"/>
+        <location filename="../Debugger/DebugUI.py" line="569"/>
         <source>Edit Breakpoint</source>
         <translation>Editar Punto de Interrupción (Breakpoint)</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="560"/>
+        <location filename="../Debugger/DebugUI.py" line="563"/>
         <source>Edit Breakpoint...</source>
         <translation>Editar Punto de Interrupción (Breakpoint)...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="567"/>
+        <location filename="../Debugger/DebugUI.py" line="570"/>
         <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Editar Punto de Interrupción (Breakpoint)&lt;/b&gt;&lt;p&gt;Abre un diálogo para editar las propiedades de los breakpoints. Se aplica a la línea actual del editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="582"/>
+        <location filename="../Debugger/DebugUI.py" line="585"/>
         <source>Next Breakpoint</source>
         <translation>Siguiente Punto de Interrupción (Breakpoint)</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="575"/>
+        <location filename="../Debugger/DebugUI.py" line="578"/>
         <source>Ctrl+Shift+PgDown</source>
         <comment>Debug|Next Breakpoint</comment>
         <translation>Ctrl+Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="583"/>
+        <location filename="../Debugger/DebugUI.py" line="586"/>
         <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Siguiente Breakpoint&lt;/b&gt;&lt;p&gt;Mueve el cursor al siguiente breakpoint.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="597"/>
+        <location filename="../Debugger/DebugUI.py" line="600"/>
         <source>Previous Breakpoint</source>
         <translation>Breakpoint (Punto de interrupción) Anterior</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="590"/>
+        <location filename="../Debugger/DebugUI.py" line="593"/>
         <source>Ctrl+Shift+PgUp</source>
         <comment>Debug|Previous Breakpoint</comment>
         <translation>Ctrl+Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="598"/>
+        <location filename="../Debugger/DebugUI.py" line="601"/>
         <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Punto de Interrupción (Breakpoint) Anterior&lt;/b&gt;&lt;p&gt;Mueve el cursor al anterior punto de interrupción.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="610"/>
+        <location filename="../Debugger/DebugUI.py" line="613"/>
         <source>Clear Breakpoints</source>
         <translation>Eliminar  Puntos de Interrupción (Breakpoints)</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="611"/>
+        <location filename="../Debugger/DebugUI.py" line="614"/>
         <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Eliminar Puntos de Interrupción (Breakpoints)&lt;/b&gt;&lt;p&gt;Elimina todos los puntos de interrupción del editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="637"/>
+        <location filename="../Debugger/DebugUI.py" line="640"/>
         <source>&amp;Debug</source>
         <translation>&amp;Depurar</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="641"/>
+        <location filename="../Debugger/DebugUI.py" line="644"/>
         <source>&amp;Breakpoints</source>
         <translation>Puntos de interrupción (&amp;Breakpoints)</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="684"/>
+        <location filename="../Debugger/DebugUI.py" line="687"/>
         <source>Start</source>
         <translation>Iniciar</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="698"/>
+        <location filename="../Debugger/DebugUI.py" line="701"/>
         <source>Debug</source>
         <translation>Depurar</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1169"/>
+        <location filename="../Debugger/DebugUI.py" line="1172"/>
         <source>The program being debugged contains an unspecified syntax error.</source>
         <translation>El programa en depuración contiene un error de sintaxis no especificado.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1212"/>
+        <location filename="../Debugger/DebugUI.py" line="1215"/>
         <source>An unhandled exception occured. See the shell window for details.</source>
         <translation>Ha saltado una excepción que no ha sido manejada. Vea la ventana de shell para mas detalles.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1345"/>
+        <location filename="../Debugger/DebugUI.py" line="1348"/>
         <source>The program being debugged has terminated unexpectedly.</source>
         <translation>El programa en depuración ha terminado inesperadamente.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1452"/>
+        <location filename="../Debugger/DebugUI.py" line="1455"/>
         <source>Breakpoint Condition Error</source>
         <translation>Error en la condición del Breakpoint</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1700"/>
+        <location filename="../Debugger/DebugUI.py" line="1703"/>
         <source>Coverage of Project</source>
         <translation>Cobertura del Proyecto</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1687"/>
+        <location filename="../Debugger/DebugUI.py" line="1690"/>
         <source>Coverage of Script</source>
         <translation>Cobertura del Script</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1973"/>
+        <location filename="../Debugger/DebugUI.py" line="1976"/>
         <source>There is no main script defined for the current project. Aborting</source>
         <translation>No hay script principal definido para el proyecto actual. Abortando</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1837"/>
+        <location filename="../Debugger/DebugUI.py" line="1840"/>
         <source>Profile of Project</source>
         <translation>Profiling del proyecto</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1824"/>
+        <location filename="../Debugger/DebugUI.py" line="1827"/>
         <source>Profile of Script</source>
         <translation>Profiling del script</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2111"/>
+        <location filename="../Debugger/DebugUI.py" line="2114"/>
         <source>There is no main script defined for the current project. No debugging possible.</source>
         <translation>No hay script principal definido para el proyecto actual. La depuración no es posible.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1491"/>
+        <location filename="../Debugger/DebugUI.py" line="1494"/>
         <source>Watch Expression Error</source>
         <translation>Error en la Expresión a Examinar</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1531"/>
+        <location filename="../Debugger/DebugUI.py" line="1534"/>
         <source>Watch expression already exists</source>
         <translation>La expresión a Examinar ya existe</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="526"/>
+        <location filename="../Debugger/DebugUI.py" line="529"/>
         <source>Ignored Exceptions</source>
         <translation>Excepciones Ignoradas</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="526"/>
+        <location filename="../Debugger/DebugUI.py" line="529"/>
         <source>&amp;Ignored Exceptions...</source>
         <translation>Excepciones &amp;Ignoradas...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="530"/>
+        <location filename="../Debugger/DebugUI.py" line="533"/>
         <source>Configure ignored exceptions</source>
         <translation>Configurar excepciones ignoradas</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="532"/>
+        <location filename="../Debugger/DebugUI.py" line="535"/>
         <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Excepciones ignoradas&lt;/b&gt;&lt;p&gt;Configurar las excepciones ignoradas. Durante una sesión de depuración se resaltarán solamente los tipos de excepción que no están en la lista.&lt;/p&gt;&lt;p&gt;Por favor, note que las excepciones no gestionadas no pueden ser ignoradas..&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="545"/>
+        <location filename="../Debugger/DebugUI.py" line="548"/>
         <source>Shift+F11</source>
         <comment>Debug|Toggle Breakpoint</comment>
         <translation>Shift+F11</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="560"/>
+        <location filename="../Debugger/DebugUI.py" line="563"/>
         <source>Shift+F12</source>
         <comment>Debug|Edit Breakpoint</comment>
         <translation>Shift+F12</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1188"/>
+        <location filename="../Debugger/DebugUI.py" line="1191"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; contiene el error de sintaxis &lt;b&gt;{1}&lt;/b&gt; en la línea&lt;b&gt;{2}&lt;/b&gt;, carácter &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1262"/>
+        <location filename="../Debugger/DebugUI.py" line="1265"/>
         <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
         <translation>&lt;p&gt;El programa en depuración ha lanzado la excepción &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;br&gt;Archivo: &lt;b&gt;{2}&lt;/b&gt;, Línea: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;¿Interrumpir aquí?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1277"/>
+        <location filename="../Debugger/DebugUI.py" line="1280"/>
         <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;/p&gt;</source>
         <translation>&lt;p&gt;El programa en depuración ha lanzado la excepción &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1452"/>
+        <location filename="../Debugger/DebugUI.py" line="1455"/>
         <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
         <translation>&lt;p&gt;La condición del punto de ruptura &lt;b&gt;{0},{1}&lt;/b&gt; tiene un error de sintaxis.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1491"/>
+        <location filename="../Debugger/DebugUI.py" line="1494"/>
         <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
         <translation>&lt;p&gt;La expresión a examinar &lt;b&gt;{0}&lt;/b&gt; contiene un error de sintaxis.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1521"/>
+        <location filename="../Debugger/DebugUI.py" line="1524"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; already exists.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Una expresión a examinar &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; ya existe.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1526"/>
+        <location filename="../Debugger/DebugUI.py" line="1529"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Una expresión a examinar &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; para la variable &lt;b&gt;{1}&lt;/b&gt; ya existe.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1141"/>
+        <location filename="../Debugger/DebugUI.py" line="1144"/>
         <source>Program terminated</source>
         <translation>Programa terminado</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="326"/>
+        <location filename="../Debugger/DebugUI.py" line="328"/>
         <source>Restart</source>
         <translation>Reiniciar</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="332"/>
+        <location filename="../Debugger/DebugUI.py" line="334"/>
         <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Reiniciar&lt;/b&gt;&lt;p&gt;Establecer los argumentos de línea de comandos y la línea actual para que sea la primera sentencia del script que se depuró en último lugar. Si hay cambios sin guardar, pueden ser guardados primero.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="348"/>
+        <location filename="../Debugger/DebugUI.py" line="350"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Detener&lt;/b&gt;&lt;p&gt;Esto detiene el script que está corriendo en el backend del depurador.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1331"/>
+        <location filename="../Debugger/DebugUI.py" line="1334"/>
         <source>&lt;p&gt;The program generate the signal &quot;{0}&quot;.&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;El programa ha generado la señal &quot;{0}&quot;.&lt;br/&gt;Archivo: &lt;b&gt;{1}&lt;/b&gt;, Línea: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1122"/>
+        <location filename="../Debugger/DebugUI.py" line="1125"/>
         <source>Message: {0}</source>
         <translation>Mensaje: {0}</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="406"/>
+        <location filename="../Debugger/DebugUI.py" line="409"/>
         <source>Move Instruction Pointer to Cursor</source>
         <translation>Mover el Puntero de Instrucción hasta el Cursor</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="406"/>
+        <location filename="../Debugger/DebugUI.py" line="409"/>
         <source>&amp;Jump To Cursor</source>
         <translation>Saltar al &amp;Cursor</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="411"/>
-        <source>Skip the code from the current line to the current cursor position</source>
-        <translation>Omitir el código desde la línea actual hasta la posición actual del cursor</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="414"/>
+        <source>Skip the code from the current line to the current cursor position</source>
+        <translation>Omitir el código desde la línea actual hasta la posición actual del cursor</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="417"/>
         <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It&apos;s not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mover Puntero de Instrucción hasta el Cursor&lt;/b&gt;&lt;p&gt;Mover el puntero interno de instrucción de Python hasta la posición actual del cursor sin executar el código entre ambos puntos.&lt;/p&gt;&lt;p&gt;No es posible saltar fuera de una función o saltar a un bloque de código, por ej. un bucle. En estos casos, se imprime un error de mensaje a la ventana de log.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1409"/>
+        <location filename="../Debugger/DebugUI.py" line="1412"/>
         <source>No locals available.</source>
         <translation>No hay locals disponibles.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="639"/>
+        <location filename="../Debugger/DebugUI.py" line="642"/>
         <source>Sta&amp;rt</source>
         <translation>Inicia&amp;r</translation>
     </message>
@@ -7519,32 +7519,32 @@
         <translation>Notificación</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="389"/>
+        <location filename="../Debugger/DebugUI.py" line="392"/>
         <source>Continue Until</source>
         <translation>Continuar Hasta</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="389"/>
+        <location filename="../Debugger/DebugUI.py" line="392"/>
         <source>Continue &amp;Until</source>
         <translation>Contin&amp;uar Hasta</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="394"/>
-        <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
-        <translation>Continuar la ejecución del programa desde la línea actual hasta la posición del cursor o hasta abandonar el marco actual</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="397"/>
+        <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
+        <translation>Continuar la ejecución del programa desde la línea actual hasta la posición del cursor o hasta abandonar el marco actual</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="400"/>
         <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Continuar Hasta&lt;/b&gt;&lt;p&gt;Continuar la ejecución del programa desde la línea actual hasta la posición del cursor o hasta abandonar el marco actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1127"/>
+        <location filename="../Debugger/DebugUI.py" line="1130"/>
         <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El programa ha terminato con estado de salida {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1131"/>
+        <location filename="../Debugger/DebugUI.py" line="1134"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; ha terminado con estado de salida {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</translation>
     </message>
@@ -7882,17 +7882,17 @@
         <translation>Autoguardar scripts con cambios</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="282"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="283"/>
         <source>Add allowed host</source>
         <translation>Añadir host permitido</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305"/>
         <source>Enter the IP address of an allowed host</source>
         <translation>Introduzca la dirección IP de un host permitido</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="316"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318"/>
         <source>Edit allowed host</source>
         <translation>Editar host permitido</translation>
     </message>
@@ -7957,7 +7957,7 @@
         <translation>Detenerse siempre en las excepciones</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="316"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318"/>
         <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;La dirección introducida &lt;b&gt;{0}&lt;/b&gt; no es una dirección IP v4 o IP v6 válida. Abortando...&lt;/p&gt;</translation>
     </message>
@@ -8273,7 +8273,7 @@
         <translation>No establecer la codificación del cliente de depuración</translation>
     </message>
     <message>
-        <location filename="../Project/DebuggerPropertiesDialog.py" line="129"/>
+        <location filename="../Project/DebuggerPropertiesDialog.py" line="130"/>
         <source>All Files (*)</source>
         <translation>Todos los archivos (*)</translation>
     </message>
@@ -9064,7 +9064,7 @@
 <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="316"/>
         <source>.desktop Wizard</source>
         <translation>Asistente .desktop</translation>
     </message>
@@ -9389,22 +9389,22 @@
         <translation>Poblar desde Proyecto</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>FreeDesktop Standard .desktop</source>
         <translation>.desktop Estándar FreeDesktop</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>KDE Plasma MetaData .desktop</source>
         <translation>Metadatos .desktop KDE Plasma</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>Ubuntu Unity QuickList .desktop</source>
         <translation>.desktop Ubuntu Unity QuickList</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="316"/>
         <source>Only one of &apos;Only Show In&apos; or  &apos;Not Show In&apos; allowed.</source>
         <translation>Solamente permitido uno de &apos;Solamente Mostrar En&apos; o &apos;No Mostrar En&apos;.</translation>
     </message>
@@ -9500,32 +9500,32 @@
         <translation>Pulse para abrir el archivo descargado</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="220"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="223"/>
         <source>Download canceled: {0}</source>
         <translation>Descarga cancelada: {0}</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="210"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="213"/>
         <source>Save File</source>
         <translation>Guardar archivo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="249"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="252"/>
         <source>Download directory ({0}) couldn&apos;t be created.</source>
         <translation>El directorio de descargas ({0}) no ha podido ser creado.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="439"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="442"/>
         <source>?</source>
         <translation>?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="452"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="455"/>
         <source>{0} of {1} - Stopped</source>
         <translation>{0} de {1} - Parado</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="193"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="196"/>
         <source>VirusTotal scan scheduled: {0}</source>
         <translation>Scan de VirusTotal programado: {0}</translation>
     </message>
@@ -9535,7 +9535,7 @@
         <translation>Pulse para pausar la descarga</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="448"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="451"/>
         <source>{0} downloaded</source>
         <translation>{0} descargados</translation>
     </message>
@@ -9545,7 +9545,7 @@
         <translation>Fecha y Hora</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="437"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="440"/>
         <source>{0} of {1} ({2}/sec) {3}</source>
         <translation>{0} de {1} ({2}/seg) {3}</translation>
     </message>
@@ -9558,7 +9558,7 @@
         <translation>Pulse para limpiar la lista de descargas</translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="168"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="169"/>
         <source>There are %n downloads in progress.
 Do you want to quit anyway?</source>
         <translation>
@@ -9574,67 +9574,67 @@
         <translation>Borrar Lista</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="107"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="108"/>
         <source>Open</source>
         <translation>Abrir</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="111"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="112"/>
         <source>Cancel</source>
         <translation>Cancelar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="115"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="116"/>
         <source>Open Containing Folder</source>
         <translation>Abrir Carpeta Contenedora</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="119"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="120"/>
         <source>Go to Download Page</source>
         <translation>Ir a la Página de Descargas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="122"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="123"/>
         <source>Copy Download Link</source>
         <translation>Copiar Enlace de Descarga</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="126"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="127"/>
         <source>Select All</source>
         <translation>Seleccionar todo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="135"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="136"/>
         <source>Remove From List</source>
         <translation>Quitar de la Lista</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="257"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="258"/>
         <source>Suspicuous URL detected</source>
         <translation>Detectada URL sospechosa</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="257"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="258"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
         <translation>&lt;p&gt;La URL &lt;b&gt;{0}&lt;/b&gt; se ha encontrado en la base de datos de Navegación Segura.&lt;/p&gt;{1}</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="588"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="589"/>
         <source>Download Manager</source>
         <translation>Gestor de Descargas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="500"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="501"/>
         <source>Downloads finished</source>
         <translation>Descargas finalizadas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="500"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="501"/>
         <source>All files have been downloaded.</source>
         <translation>Todos los archivos se han descargado.</translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="622"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="623"/>
         <source>{0}% of %n file(s) ({1}) {2}</source>
         <translation>
             <numerusform>{0}% de %n archivo ({1}) {2}</numerusform>
@@ -9642,7 +9642,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="629"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="630"/>
         <source>{0}% - Download Manager</source>
         <translation>{0}% - Gestor de Descargas</translation>
     </message>
@@ -9774,27 +9774,27 @@
 <context>
     <name>E5GoogleMail</name>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="159"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="160"/>
         <source>The client secrets file is not present. Has the Gmail API been enabled?</source>
         <translation>El archivo secreto de cliente no está presente. ¿Está habilitada la API de Gmail?</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="196"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="197"/>
         <source>OAuth2 Authorization Code</source>
         <translation>Código de Autorización de OAuth2</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="196"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="197"/>
         <source>Enter the OAuth2 authorization code:</source>
         <translation>Introducir código de autorización de OAuth2:</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="240"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="241"/>
         <source>No authorized session available.</source>
         <translation>No se dispone de sesión autorizada.</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="258"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="259"/>
         <source>Message #{0} sent.</source>
         <translation>Mensaje #{0} enviado.</translation>
     </message>
@@ -9802,7 +9802,7 @@
 <context>
     <name>E5GraphicsView</name>
     <message>
-        <location filename="../E5Graphics/E5GraphicsView.py" line="57"/>
+        <location filename="../E5Graphics/E5GraphicsView.py" line="59"/>
         <source>&lt;b&gt;Graphics View&lt;/b&gt;
 &lt;p&gt;This graphics view is used to show a diagram. 
 There are various actions available to manipulate the 
@@ -9834,7 +9834,7 @@
 </translation>
     </message>
     <message>
-        <location filename="../E5Graphics/E5GraphicsView.py" line="415"/>
+        <location filename="../E5Graphics/E5GraphicsView.py" line="417"/>
         <source>{0}, Page {1}</source>
         <translation>{0}, Página {1}</translation>
     </message>
@@ -10267,7 +10267,7 @@
 <context>
     <name>E5NetworkProxyFactory</name>
     <message>
-        <location filename="../E5Network/E5NetworkProxyFactory.py" line="227"/>
+        <location filename="../E5Network/E5NetworkProxyFactory.py" line="229"/>
         <source>Proxy Configuration Error</source>
         <translation>Error de Configuración de Proxy</translation>
     </message>
@@ -10277,7 +10277,7 @@
         <translation>&lt;b&gt;Conectar al proxy &apos;{0}&apos; utilizando:&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5NetworkProxyFactory.py" line="227"/>
+        <location filename="../E5Network/E5NetworkProxyFactory.py" line="229"/>
         <source>Proxy usage was activated but no proxy host for protocol &apos;{0}&apos; configured.</source>
         <translation>Se ha activado el uso de proxy pero no se ha configurado un host proxy para el protocolo &apos;{0}&apos;.</translation>
     </message>
@@ -10285,32 +10285,32 @@
 <context>
     <name>E5PathPickerBase</name>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="161"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="162"/>
         <source>Enter Path Name</source>
         <translation>Introducir Nombre de Ruta</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="158"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="159"/>
         <source>Enter Path Names separated by &apos;;&apos;</source>
         <translation>Introducir Nombres de Ruta separados por &apos;;&apos;</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="499"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="500"/>
         <source>Choose a file to open</source>
         <translation>Elegir un archivo para abrir</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="501"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="502"/>
         <source>Choose files to open</source>
         <translation>Elegir archivos a abrir</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="506"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="507"/>
         <source>Choose a file to save</source>
         <translation>Elegir un archivo para guardar</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="508"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="509"/>
         <source>Choose a directory</source>
         <translation>Elegir un directorio</translation>
     </message>
@@ -10376,32 +10376,32 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="107"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="117"/>
         <source>Process canceled.</source>
         <translation>Proceso cancelado.</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="121"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="134"/>
         <source>Process finished successfully.</source>
         <translation>Proceso terminado con éxito.</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="123"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="136"/>
         <source>Process crashed.</source>
         <translation>El proceso ha fallado.</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="125"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="138"/>
         <source>Process finished with exit code {0}</source>
         <translation>El proceso ha terminado con código de salida {0}</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="179"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="192"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="179"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="192"/>
         <source>&lt;p&gt;The process &lt;b&gt;{0}&lt;/b&gt; could not be started.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El proceso &lt;b&gt;{0}&lt;/b&gt; no se ha podido iniciar.&lt;/p&gt;</translation>
     </message>
@@ -10447,12 +10447,12 @@
         <translation>&amp;Ver...</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="80"/>
+        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="82"/>
         <source>(Unknown)</source>
         <translation>(Desconocido)</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="82"/>
+        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="84"/>
         <source>(Unknown common name)</source>
         <translation>(Nombre común desconocido)</translation>
     </message>
@@ -10540,72 +10540,72 @@
         <translation>Ha almacenado certificados que identifican estas autoridades certificadoras:</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="300"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="305"/>
         <source>(Unknown)</source>
         <translation>(Desconocido)</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="302"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="307"/>
         <source>(Unknown common name)</source>
         <translation>(Nombre común desconocido)</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="150"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="152"/>
         <source>Delete Server Certificate</source>
         <translation>Borrar Certificado del Servidor</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="150"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="152"/>
         <source>&lt;p&gt;Shall the server certificate really be deleted?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;&lt;p&gt;If the server certificate is deleted, the normal security checks will be reinstantiated and the server has to present a valid certificate.&lt;/p&gt;</source>
         <translation>&lt;p&gt;¿Desea realmente borrar el certificado del servidor?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;&lt;p&gt;Si el certificado del servidor es eliminado, los chequeos de seguridad normales se reinstanciarán y el servidor deberá presentar un certificado válido.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="489"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="495"/>
         <source>Import Certificate</source>
         <translation>Importar Certificado</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="399"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="405"/>
         <source>&lt;p&gt;The certificate &lt;b&gt;{0}&lt;/b&gt; already exists. Skipping.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El certificado &lt;b&gt;{0}&lt;/b&gt; ya existe. Omitiendo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="354"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="359"/>
         <source>Delete CA Certificate</source>
         <translation>Borrar Certificado de la CA</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="354"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="359"/>
         <source>&lt;p&gt;Shall the CA certificate really be deleted?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;&lt;p&gt;If the CA certificate is deleted, the browser will not trust any certificate issued by this CA.&lt;/p&gt;</source>
         <translation>&lt;p&gt;¿Desea realmente borrar el certificado de la CA?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;&lt;p&gt;Si el certificado de la CA es eliminado, el navegador no considerará ningún certificado emitido por esta CA como de confianza.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="499"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="505"/>
         <source>Export Certificate</source>
         <translation>Exportar Certificado</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="440"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="446"/>
         <source>Certificate File (PEM) (*.pem);;Certificate File (DER) (*.der)</source>
         <translation>Archivo de Certificado (PEM) (*.pem);;Archivo de Certificado (DER) (*.der)</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="456"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="462"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="467"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="473"/>
         <source>&lt;p&gt;The certificate could not be written to file &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El certificado no se ha podido guardar en el archivo &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="489"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="495"/>
         <source>Certificate Files (*.pem *.crt *.der *.cer *.ca);;All Files (*)</source>
         <translation>Archivos de Certificado (*.pem *.crt *.der *.cer *.ca);;Todos los Archivos (*)</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="499"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="505"/>
         <source>&lt;p&gt;The certificate could not be read from file &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El certificado no se ha podido recuperar del archivo &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</translation>
     </message>
@@ -10701,7 +10701,7 @@
         <translation>MD5-Fingerprint:</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesInfoWidget.py" line="151"/>
+        <location filename="../E5Network/E5SslCertificatesInfoWidget.py" line="156"/>
         <source>&lt;not part of the certificate&gt;</source>
         <translation>&lt;no es parte del certificado&gt;</translation>
     </message>
@@ -10709,42 +10709,42 @@
 <context>
     <name>E5SslErrorHandler</name>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="141"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="142"/>
         <source>SSL Errors</source>
         <translation>Errores SSL</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="141"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="142"/>
         <source>&lt;p&gt;SSL Errors for &lt;br /&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Do you want to ignore these errors?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Errores de SSL para &lt;br /&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;¿Desea ignorar estos errores?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="156"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="157"/>
         <source>Certificates</source>
         <translation>Certificados</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="156"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="157"/>
         <source>&lt;p&gt;Certificates:&lt;br/&gt;{0}&lt;br/&gt;Do you want to accept all these certificates?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Certificados:&lt;br/&gt;{0}&lt;br/&gt;¿Desea aceptar todos estos certificados?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="210"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="212"/>
         <source>Name: {0}</source>
         <translation>Nombre: {0}</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="220"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="223"/>
         <source>&lt;br/&gt;Organization: {0}</source>
         <translation>&lt;br/&gt;Organización: {0}</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="230"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="234"/>
         <source>&lt;br/&gt;Issuer: {0}</source>
         <translation>&lt;br/&gt;Emisor: {0}</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="239"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="244"/>
         <source>&lt;br/&gt;Not valid before: {0}&lt;br/&gt;Valid Until: {1}</source>
         <translation>&lt;br/&gt;No válido antes de: {0}&lt;br/&gt;Válido Hasta: {1}</translation>
     </message>
@@ -10752,56 +10752,56 @@
 <context>
     <name>E5SslInfoWidget</name>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="55"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="56"/>
         <source>Identity</source>
         <translation>Identidad</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="65"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="66"/>
         <source>Warning: this site is NOT carrying a certificate.</source>
         <translation>Advertencia:este sitio NO tiene ningún certificado.</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="73"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="74"/>
         <source>The certificate for this site is valid and has been verified by:
 {0}</source>
         <translation>El certificado para este sitio es válido y ha sido verificado por:
 {0}</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="89"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="90"/>
         <source>Certificate Information</source>
         <translation>Información del Certificado</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="104"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="105"/>
         <source>Encryption</source>
         <translation>Encriptación</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="115"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="116"/>
         <source>Your connection to &quot;{0}&quot; is NOT encrypted.
 </source>
         <translation>La conexión a &quot;{0}&quot; NO está encriptada.
 </translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="124"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="125"/>
         <source>Your connection to &quot;{0}&quot; is encrypted.</source>
         <translation>La conexión a &quot;{0}&quot; está encriptada.</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="143"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="144"/>
         <source>unknown</source>
         <translation>desconocido</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="166"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="167"/>
         <source>It uses protocol: {0}</source>
         <translation>Usa el protocolo: {0}</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="173"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="174"/>
         <source>It is encrypted using {0} at {1} bits, with {2} for message authentication and {3} as key exchange mechanism.
 
 </source>
@@ -10810,7 +10810,7 @@
 </translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="80"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="81"/>
         <source>The certificate for this site is NOT valid.</source>
         <translation>El certificado para este sitio NO es válido.</translation>
     </message>
@@ -10853,12 +10853,12 @@
         <translation>&amp;Eliminar Todas</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5StringListEditWidget.py" line="99"/>
+        <location filename="../E5Gui/E5StringListEditWidget.py" line="100"/>
         <source>Add Entry</source>
         <translation>Añadir entrada</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5StringListEditWidget.py" line="99"/>
+        <location filename="../E5Gui/E5StringListEditWidget.py" line="100"/>
         <source>Enter the entry to add to the list:</source>
         <translation>Introducir la entrada a añadir a la lista:</translation>
     </message>
@@ -10876,32 +10876,32 @@
 <context>
     <name>E5TextEditSearchWidget</name>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="81"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="83"/>
         <source>Find:</source>
         <translation>Buscar:</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="104"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="107"/>
         <source>Match case</source>
         <translation>Coincidir mayúsculas/minúsculas</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="109"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="112"/>
         <source>Whole word</source>
         <translation>Palabra completa</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="119"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="122"/>
         <source>Press to find the previous occurrence</source>
         <translation>Pulsar para encontrar la ocurrencia anterior</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="126"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="129"/>
         <source>Press to find the next occurrence</source>
         <translation>Pulsar para encontrar la ocurrencia siguiente</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="341"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="347"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation>&apos;{0}&apos; no se ha encontrado.</translation>
     </message>
@@ -11017,42 +11017,42 @@
         <translation>Pulse para mover la acción seleccionada hacia abajo.</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="84"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="85"/>
         <source>--Separator--</source>
         <translation>--Separador--</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="145"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="151"/>
         <source>New Toolbar</source>
         <translation>Nueva Barra de Herramientas</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="137"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="143"/>
         <source>Toolbar Name:</source>
         <translation>Nombre de la Barra de Herramientas:</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="208"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="214"/>
         <source>A toolbar with the name &lt;b&gt;{0}&lt;/b&gt; already exists.</source>
         <translation>Una barra de herramientas con el nombre &lt;b&gt;{0}&lt;/b&gt; ya existe.</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="170"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="176"/>
         <source>Remove Toolbar</source>
         <translation>Eliminar Barra de Herramientas</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="170"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="176"/>
         <source>Should the toolbar &lt;b&gt;{0}&lt;/b&gt; really be removed?</source>
         <translation>¿Debe ser la barra de herramientas &lt;b&gt;{0}&lt;/b&gt; realmente eliminada?</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="208"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="214"/>
         <source>Rename Toolbar</source>
         <translation>Renombrar Barra de Herramientas</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="197"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="203"/>
         <source>New Toolbar Name:</source>
         <translation>Nombre de la Nueva Barra de Herramientas:</translation>
     </message>
@@ -11060,7 +11060,7 @@
 <context>
     <name>E5XmlRpcClient</name>
     <message>
-        <location filename="../E5Network/E5XmlRpcClient.py" line="108"/>
+        <location filename="../E5Network/E5XmlRpcClient.py" line="111"/>
         <source>SSL Error</source>
         <translation>Error de SSL</translation>
     </message>
@@ -11156,7 +11156,7 @@
         <translation>Conteo de ignoración:</translation>
     </message>
     <message>
-        <location filename="../Debugger/EditBreakpointDialog.py" line="86"/>
+        <location filename="../Debugger/EditBreakpointDialog.py" line="87"/>
         <source>Add Breakpoint</source>
         <translation>Añadir Punto de Interrupción</translation>
     </message>
@@ -11237,932 +11237,932 @@
 <context>
     <name>Editor</name>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3146"/>
+        <location filename="../QScintilla/Editor.py" line="3153"/>
         <source>Open File</source>
         <translation>Abrir archivo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="795"/>
+        <location filename="../QScintilla/Editor.py" line="797"/>
         <source>Undo</source>
         <translation>Deshacer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="798"/>
+        <location filename="../QScintilla/Editor.py" line="800"/>
         <source>Redo</source>
         <translation>Rehacer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="801"/>
+        <location filename="../QScintilla/Editor.py" line="803"/>
         <source>Revert to last saved state</source>
         <translation>Volver al último estado guardado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="805"/>
+        <location filename="../QScintilla/Editor.py" line="807"/>
         <source>Cut</source>
         <translation>Cortar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="808"/>
+        <location filename="../QScintilla/Editor.py" line="810"/>
         <source>Copy</source>
         <translation>Copiar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="811"/>
+        <location filename="../QScintilla/Editor.py" line="813"/>
         <source>Paste</source>
         <translation>Pegar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="819"/>
+        <location filename="../QScintilla/Editor.py" line="821"/>
         <source>Indent</source>
         <translation>Indentar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="822"/>
+        <location filename="../QScintilla/Editor.py" line="824"/>
         <source>Unindent</source>
         <translation>Desindentar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="825"/>
+        <location filename="../QScintilla/Editor.py" line="827"/>
         <source>Comment</source>
         <translation>Pasar a comentario</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="828"/>
+        <location filename="../QScintilla/Editor.py" line="830"/>
         <source>Uncomment</source>
         <translation>Sacar de comentario</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="831"/>
+        <location filename="../QScintilla/Editor.py" line="833"/>
         <source>Stream Comment</source>
         <translation>Bloque de comentario</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="834"/>
+        <location filename="../QScintilla/Editor.py" line="836"/>
         <source>Box Comment</source>
         <translation>Caja de comentario</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="842"/>
-        <source>Select to brace</source>
-        <translation>Seleccionar hasta la llave ( &apos;{&apos; o &apos;}&apos; )</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="844"/>
+        <source>Select to brace</source>
+        <translation>Seleccionar hasta la llave ( &apos;{&apos; o &apos;}&apos; )</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="846"/>
         <source>Select all</source>
         <translation>Seleccionar todo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="845"/>
+        <location filename="../QScintilla/Editor.py" line="847"/>
         <source>Deselect all</source>
         <translation>Deseleccionar todo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="863"/>
+        <location filename="../QScintilla/Editor.py" line="865"/>
         <source>Shorten empty lines</source>
         <translation>Acortar las líneas vacías</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="870"/>
+        <location filename="../QScintilla/Editor.py" line="872"/>
         <source>Use Monospaced Font</source>
         <translation>Usar fuente monoespaciada</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="875"/>
+        <location filename="../QScintilla/Editor.py" line="877"/>
         <source>Autosave enabled</source>
         <translation>Autoguardar habilitado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="918"/>
+        <location filename="../QScintilla/Editor.py" line="920"/>
         <source>Close</source>
         <translation>Cerrar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="924"/>
+        <location filename="../QScintilla/Editor.py" line="926"/>
         <source>Save</source>
         <translation>Guardar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="927"/>
+        <location filename="../QScintilla/Editor.py" line="929"/>
         <source>Save As...</source>
         <translation>Guardar como...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="943"/>
+        <location filename="../QScintilla/Editor.py" line="945"/>
         <source>Print</source>
         <translation>Imprimir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="972"/>
-        <source>Complete from Document</source>
-        <translation>Completar desde documento</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="974"/>
-        <source>Complete from APIs</source>
-        <translation>Completar desde APIs</translation>
+        <source>Complete from Document</source>
+        <translation>Completar desde documento</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="976"/>
+        <source>Complete from APIs</source>
+        <translation>Completar desde APIs</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="978"/>
         <source>Complete from Document and APIs</source>
         <translation>Completar desde Documento y APIs</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="990"/>
+        <location filename="../QScintilla/Editor.py" line="992"/>
         <source>Check</source>
         <translation>Verificar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1010"/>
-        <source>Show</source>
-        <translation>Mostrar</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1012"/>
+        <source>Show</source>
+        <translation>Mostrar</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1014"/>
         <source>Code metrics...</source>
         <translation>Métricas de código...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1013"/>
-        <source>Code coverage...</source>
-        <translation>Cobertura de código...</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1015"/>
+        <source>Code coverage...</source>
+        <translation>Cobertura de código...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1017"/>
         <source>Show code coverage annotations</source>
         <translation>Mostrar anotaciones de cobertura de codigo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1018"/>
+        <location filename="../QScintilla/Editor.py" line="1020"/>
         <source>Hide code coverage annotations</source>
         <translation>Ocultar anotaciones de cobertura de codigo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1021"/>
+        <location filename="../QScintilla/Editor.py" line="1023"/>
         <source>Profile data...</source>
         <translation>Datos de profiling...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1034"/>
-        <source>Diagrams</source>
-        <translation>Diagramas</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1036"/>
-        <source>Class Diagram...</source>
-        <translation>Diagrama de clases...</translation>
+        <source>Diagrams</source>
+        <translation>Diagramas</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1038"/>
-        <source>Package Diagram...</source>
-        <translation>Diagrama de paquetes...</translation>
+        <source>Class Diagram...</source>
+        <translation>Diagrama de clases...</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1040"/>
-        <source>Imports Diagram...</source>
-        <translation>Diagrama de imports...</translation>
+        <source>Package Diagram...</source>
+        <translation>Diagrama de paquetes...</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1042"/>
+        <source>Imports Diagram...</source>
+        <translation>Diagrama de imports...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1044"/>
         <source>Application Diagram...</source>
         <translation>Diagrama de aplicación...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1060"/>
+        <location filename="../QScintilla/Editor.py" line="1062"/>
         <source>Languages</source>
         <translation>Lenguajes</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1193"/>
+        <location filename="../QScintilla/Editor.py" line="1195"/>
         <source>No Language</source>
         <translation>Ningún Lenguaje</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1218"/>
+        <location filename="../QScintilla/Editor.py" line="1220"/>
         <source>Export as</source>
         <translation>Exportar como</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1240"/>
-        <source>Toggle bookmark</source>
-        <translation>Alternar marcador</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1242"/>
-        <source>Next bookmark</source>
-        <translation>Nuevo marcador</translation>
+        <source>Toggle bookmark</source>
+        <translation>Alternar marcador</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1244"/>
-        <source>Previous bookmark</source>
-        <translation>Marcador anterior</translation>
+        <source>Next bookmark</source>
+        <translation>Nuevo marcador</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1246"/>
+        <source>Previous bookmark</source>
+        <translation>Marcador anterior</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1248"/>
         <source>Clear all bookmarks</source>
         <translation>Borrar todos los marcadores</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1320"/>
+        <location filename="../QScintilla/Editor.py" line="1322"/>
         <source>Goto syntax error</source>
         <translation>Ir al error de sintaxis</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1324"/>
+        <location filename="../QScintilla/Editor.py" line="1326"/>
         <source>Show syntax error message</source>
         <translation>Ver el mensaje de error de sintaxis</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1329"/>
+        <location filename="../QScintilla/Editor.py" line="1331"/>
         <source>Clear syntax error</source>
         <translation>Borrar error de sintaxis</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1255"/>
-        <source>Toggle breakpoint</source>
-        <translation>Alternar punto de interrupción</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1257"/>
+        <source>Toggle breakpoint</source>
+        <translation>Alternar punto de interrupción</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1259"/>
         <source>Toggle temporary breakpoint</source>
         <translation>Alternar punto de interrupción temporal</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1260"/>
+        <location filename="../QScintilla/Editor.py" line="1262"/>
         <source>Edit breakpoint...</source>
         <translation>Editar punto de interrupción...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5656"/>
+        <location filename="../QScintilla/Editor.py" line="5696"/>
         <source>Enable breakpoint</source>
         <translation>Activar punto de interrupción</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1265"/>
-        <source>Next breakpoint</source>
-        <translation>Siguiente punto de interrupción</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1267"/>
+        <source>Next breakpoint</source>
+        <translation>Siguiente punto de interrupción</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1269"/>
         <source>Previous breakpoint</source>
         <translation>Punto de interrupción anterior</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1272"/>
+        <location filename="../QScintilla/Editor.py" line="1274"/>
         <source>Clear all breakpoints</source>
         <translation>Borrar todos los puntos de interrupción</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1351"/>
+        <location filename="../QScintilla/Editor.py" line="1353"/>
         <source>Next uncovered line</source>
         <translation>Siguiente línea sin cobertura</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1355"/>
+        <location filename="../QScintilla/Editor.py" line="1357"/>
         <source>Previous uncovered line</source>
         <translation>Anterior línea sin cobertura</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1360"/>
+        <location filename="../QScintilla/Editor.py" line="1362"/>
         <source>Next task</source>
         <translation>Nueva tarea</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1364"/>
+        <location filename="../QScintilla/Editor.py" line="1366"/>
         <source>Previous task</source>
         <translation>Tarea anterior</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1414"/>
+        <location filename="../QScintilla/Editor.py" line="1416"/>
         <source>Export source</source>
         <translation>Exportar fuente</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1414"/>
+        <location filename="../QScintilla/Editor.py" line="1416"/>
         <source>No export format given. Aborting...</source>
         <translation>No se ha proporcionado un formato de exportación. Abortando...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1989"/>
+        <location filename="../QScintilla/Editor.py" line="1991"/>
         <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="1989"/>
+        <location filename="../QScintilla/Editor.py" line="1991"/>
         <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="2711"/>
+        <location filename="../QScintilla/Editor.py" line="2715"/>
         <source>Printing...</source>
         <translation>Imprimiendo...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2728"/>
+        <location filename="../QScintilla/Editor.py" line="2735"/>
         <source>Printing completed</source>
         <translation>Impresión completa</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2730"/>
+        <location filename="../QScintilla/Editor.py" line="2737"/>
         <source>Error while printing</source>
         <translation>Error al imprimir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2733"/>
+        <location filename="../QScintilla/Editor.py" line="2740"/>
         <source>Printing aborted</source>
         <translation>Impresión cancelada</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3088"/>
+        <location filename="../QScintilla/Editor.py" line="3095"/>
         <source>File Modified</source>
         <translation>Archivo modificado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3333"/>
+        <location filename="../QScintilla/Editor.py" line="3340"/>
         <source>Save File</source>
         <translation>Guardar archivo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4811"/>
+        <location filename="../QScintilla/Editor.py" line="4838"/>
         <source>Autocompletion</source>
         <translation>Autocompletar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4811"/>
+        <location filename="../QScintilla/Editor.py" line="4838"/>
         <source>Autocompletion is not available because there is no autocompletion source set.</source>
         <translation>Autocompletar no está disponible porque no hay origen de datos para autocompletar.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5659"/>
+        <location filename="../QScintilla/Editor.py" line="5699"/>
         <source>Disable breakpoint</source>
         <translation>Deshabilitar punto de interrupción</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6034"/>
+        <location filename="../QScintilla/Editor.py" line="6074"/>
         <source>Code Coverage</source>
         <translation>Cobertura de codigo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6034"/>
+        <location filename="../QScintilla/Editor.py" line="6074"/>
         <source>Please select a coverage file</source>
         <translation>Por favor seleccione un archivo de cobertura</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6097"/>
+        <location filename="../QScintilla/Editor.py" line="6137"/>
         <source>Show Code Coverage Annotations</source>
         <translation>Mostrar Anotaciones de Cobertura de Código</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6090"/>
+        <location filename="../QScintilla/Editor.py" line="6130"/>
         <source>All lines have been covered.</source>
         <translation>Todas las líneas han sido cubiertas.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6097"/>
+        <location filename="../QScintilla/Editor.py" line="6137"/>
         <source>There is no coverage file available.</source>
         <translation>No hay archivo de cobertura disponible.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6214"/>
+        <location filename="../QScintilla/Editor.py" line="6254"/>
         <source>Profile Data</source>
         <translation>Datos de profiling</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6214"/>
+        <location filename="../QScintilla/Editor.py" line="6254"/>
         <source>Please select a profile file</source>
         <translation>Por favor seleccione un archivo de profiling</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6376"/>
+        <location filename="../QScintilla/Editor.py" line="6416"/>
         <source>Syntax Error</source>
         <translation>Error de sintaxis</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6376"/>
+        <location filename="../QScintilla/Editor.py" line="6416"/>
         <source>No syntax error message available.</source>
         <translation>No hay mensajes de error de sintaxis disponibles.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Macro Name</source>
         <translation>Nombre de macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Select a macro name:</source>
         <translation>Seleccione un nombre de macro:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6793"/>
+        <location filename="../QScintilla/Editor.py" line="6833"/>
         <source>Load macro file</source>
         <translation>Cargar archivo de macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6835"/>
+        <location filename="../QScintilla/Editor.py" line="6875"/>
         <source>Macro files (*.macro)</source>
         <translation>Archivos de Macro  (*.macro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6815"/>
+        <location filename="../QScintilla/Editor.py" line="6855"/>
         <source>Error loading macro</source>
         <translation>Error al cargar macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6835"/>
+        <location filename="../QScintilla/Editor.py" line="6875"/>
         <source>Save macro file</source>
         <translation>Guardar archivo de macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6852"/>
+        <location filename="../QScintilla/Editor.py" line="6892"/>
         <source>Save macro</source>
         <translation>Guardar macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6867"/>
+        <location filename="../QScintilla/Editor.py" line="6907"/>
         <source>Error saving macro</source>
         <translation>Error al guardar macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6880"/>
+        <location filename="../QScintilla/Editor.py" line="6920"/>
         <source>Start Macro Recording</source>
         <translation>Comenzar grabación de macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6880"/>
+        <location filename="../QScintilla/Editor.py" line="6920"/>
         <source>Macro recording is already active. Start new?</source>
         <translation>Grabación de macro ya está activada. ¿Comenzar una nueva?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6906"/>
+        <location filename="../QScintilla/Editor.py" line="6946"/>
         <source>Macro Recording</source>
         <translation>Grabando macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6906"/>
+        <location filename="../QScintilla/Editor.py" line="6946"/>
         <source>Enter name of the macro:</source>
         <translation>Introduzca el nombre de la macro:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7076"/>
+        <location filename="../QScintilla/Editor.py" line="7116"/>
         <source>File changed</source>
         <translation>Archivo modificado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7408"/>
+        <location filename="../QScintilla/Editor.py" line="7451"/>
         <source>Drop Error</source>
         <translation>Error al soltar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7429"/>
+        <location filename="../QScintilla/Editor.py" line="7472"/>
         <source>Resources</source>
         <translation>Recursos</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7431"/>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
         <source>Add file...</source>
         <translation>Añadir archivo...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7433"/>
+        <location filename="../QScintilla/Editor.py" line="7476"/>
         <source>Add files...</source>
         <translation>Añadir archivos...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7435"/>
+        <location filename="../QScintilla/Editor.py" line="7478"/>
         <source>Add aliased file...</source>
         <translation>Añadir archivo con un alias...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7438"/>
+        <location filename="../QScintilla/Editor.py" line="7481"/>
         <source>Add localized resource...</source>
         <translation>Añadir recursos localizados...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7442"/>
+        <location filename="../QScintilla/Editor.py" line="7485"/>
         <source>Add resource frame</source>
         <translation>Añadir ventana de recursos</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7461"/>
-        <source>Add file resource</source>
-        <translation>Añadir archivo de recursos</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7477"/>
-        <source>Add file resources</source>
-        <translation>Añadir archivo de recursos</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="7504"/>
+        <source>Add file resource</source>
+        <translation>Añadir archivo de recursos</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7520"/>
+        <source>Add file resources</source>
+        <translation>Añadir archivo de recursos</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7547"/>
         <source>Add aliased file resource</source>
         <translation>Añadir archivo de recursos con un alias</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7570"/>
+        <location filename="../QScintilla/Editor.py" line="7613"/>
         <source>Package Diagram</source>
         <translation>Digrama de paquetes</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7570"/>
+        <location filename="../QScintilla/Editor.py" line="7613"/>
         <source>Include class attributes?</source>
         <translation>¿Incluir atributos de clase?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7592"/>
+        <location filename="../QScintilla/Editor.py" line="7635"/>
         <source>Imports Diagram</source>
         <translation>Diagrama de imports</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7592"/>
+        <location filename="../QScintilla/Editor.py" line="7635"/>
         <source>Include imports from external modules?</source>
         <translation>¿Incluir los imports de módulos externos?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7606"/>
+        <location filename="../QScintilla/Editor.py" line="7649"/>
         <source>Application Diagram</source>
         <translation>Diagrama de aplicación</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7606"/>
+        <location filename="../QScintilla/Editor.py" line="7649"/>
         <source>Include module names?</source>
         <translation>¿Incluir nombres de módulos?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="894"/>
-        <source>Calltip</source>
-        <translation>Consejo de llamada</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="940"/>
-        <source>Print Preview</source>
-        <translation>Presentación preliminar</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="478"/>
-        <source>&lt;b&gt;A Source Editor Window&lt;/b&gt;&lt;p&gt;This window is used to display and edit a source file.  You can open as many of these as you like. The name of the file is displayed in the window&apos;s titlebar.&lt;/p&gt;&lt;p&gt;In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.&lt;/p&gt;&lt;p&gt;In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.&lt;/p&gt;&lt;p&gt;These actions can be reversed via the context menu.&lt;/p&gt;&lt;p&gt;Ctrl clicking on a syntax error marker shows some info about this error.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Una Ventana de Edición de Códigos Fuente&lt;/b&gt;&lt;p&gt;Esta ventana se utiliza para mostrar y editar un archivo de código fuente.  Puede abrir tantas como desee. El nombre del archivo se muestra en la barra de título de la ventana.&lt;/p&gt;&lt;p&gt;Para insertar puntos de interrupción basta con hacer un click en el espacio entre los números de línea y los marcadores de plegado.  Pueden editarse con el menú de contexto de los márgenes.&lt;/p&gt;&lt;p&gt;Para insertar marcadores solo hay que hacer Shift-click en el espacio entre los números de línea y los marcadores de plegado.&lt;/p&gt;&lt;p&gt;Estas acciones se pueden revertir utilizando el menú de contexto.&lt;/p&gt;&lt;p&gt;Haciendo Ctrl-click en un marcador de error sintáctico se muestra información sobre el dicho error.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="879"/>
-        <source>Typing aids enabled</source>
-        <translation>Ayudas al tecleo habilitadas</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1150"/>
-        <source>End-of-Line Type</source>
-        <translation>Tipo de fin-de-línea</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1154"/>
-        <source>Unix</source>
-        <translation>Unix</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1161"/>
-        <source>Windows</source>
-        <translation>Windows</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1168"/>
-        <source>Macintosh</source>
-        <translation>Macintosh</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1109"/>
-        <source>Encodings</source>
-        <translation>Codificaciones</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1089"/>
-        <source>Guessed</source>
-        <translation>Suposición</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
-        <source>Alternatives</source>
-        <translation>Alternativas</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1445"/>
-        <source>Pygments Lexer</source>
-        <translation>Analizador Léxico de Pygments</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1445"/>
-        <source>Select the Pygments lexer to apply.</source>
-        <translation>Seleccionar el Analizador Léxico de Pygments.</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7935"/>
-        <source>Check spelling...</source>
-        <translation>Corrección ortográfica...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="853"/>
-        <source>Check spelling of selection...</source>
-        <translation>Corrección ortográfica de la selección...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7938"/>
-        <source>Add to dictionary</source>
-        <translation>Añadir al diccionario</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7940"/>
-        <source>Ignore All</source>
-        <translation>Ignorar Todo</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="857"/>
-        <source>Remove from dictionary</source>
-        <translation>Eliminar del diccionario</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="389"/>
-        <source>&lt;p&gt;The size of the file &lt;b&gt;{0}&lt;/b&gt; is &lt;b&gt;{1} KB&lt;/b&gt;. Do you really want to load it?&lt;/p&gt;</source>
-        <translation>&lt;p&gt;El tamaño del archivo &lt;b&gt;{0}&lt;/b&gt; es &lt;b&gt;{1} KB&lt;/b&gt;. ¿Desea cargarlo de todos modos?&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1406"/>
-        <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
-        <translation>&lt;p&gt;No hay un exportador disponible para el formato de exportación &lt;b&gt;{0}&lt;/b&gt;. Abortando...&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1425"/>
-        <source>Alternatives ({0})</source>
-        <translation>Alternativas ({0})</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="3088"/>
-        <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="3146"/>
-        <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="3270"/>
-        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
-        <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; no puede ser guardado.&lt;br&gt;Causa: {1}&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6806"/>
-        <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
-        <translation>&lt;p&gt;El archivo de macro &lt;b&gt;{0}&lt;/b&gt; no se puede leer.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6815"/>
-        <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
-        <translation>&lt;p&gt;El archivo de macro &lt;b&gt;{0}&lt;/b&gt; está dañado&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6867"/>
-        <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
-        <translation>&lt;p&gt;El archivo de macro  &lt;b&gt;{0}&lt;/b&gt; no se puede escribir.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7267"/>
-        <source>{0} (ro)</source>
-        <translation>{0} (ro)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7408"/>
-        <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
-        <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; no es un archivo.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7504"/>
-        <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
-        <translation>Alias para el archivo &lt;b&gt;{0}&lt;/b&gt;:</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1334"/>
-        <source>Next warning</source>
-        <translation>Siguiente advertencia</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1338"/>
-        <source>Previous warning</source>
-        <translation>Anterior advertencia</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1342"/>
-        <source>Show warning message</source>
-        <translation>Mostrar mensaje de advertencia</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1346"/>
-        <source>Clear warnings</source>
-        <translation>Limpiar advertencias</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="3333"/>
-        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-        <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6852"/>
-        <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
-        <translation>&lt;p&gt;El archivo de macro &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6653"/>
-        <source>Warning: {0}</source>
-        <translation>Advertencia: {0}</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6660"/>
-        <source>Error: {0}</source>
-        <translation>Error: {0}</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7072"/>
-        <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
-        <translation>&lt;br&gt;&lt;b&gt;Advertencia:&lt;/b&gt; Perderá los cambios si lo reabre.</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="936"/>
-        <source>Open &apos;rejection&apos; file</source>
-        <translation>Abrir archivo &apos;de rechazo&apos;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1046"/>
-        <source>Load Diagram...</source>
-        <translation>Cargar Diagrama...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1369"/>
-        <source>Next change</source>
-        <translation>Siguiente cambio</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1373"/>
-        <source>Previous change</source>
-        <translation>Cambio anterior</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8356"/>
-        <source>Sort Lines</source>
-        <translation>Ordenar Líneas</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8356"/>
-        <source>The selection contains illegal data for a numerical sort.</source>
-        <translation>La selección contiene datos ilegales para una ordenación numérica.</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6588"/>
-        <source>Warning</source>
-        <translation>Advertencia</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6588"/>
-        <source>No warning messages available.</source>
-        <translation>No hay mensajes de advertencia disponibles.</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6650"/>
-        <source>Style: {0}</source>
-        <translation>Estilo: {0}</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="910"/>
-        <source>New Document View</source>
-        <translation>Nueva Vista de Documento</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="913"/>
-        <source>New Document View (with new split)</source>
-        <translation>Nueva Vista de Documento (con nueva división)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1000"/>
-        <source>Tools</source>
-        <translation>Herramientas</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1131"/>
-        <source>Re-Open With Encoding</source>
-        <translation>Reabrir Con Codificación</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="886"/>
-        <source>Automatic Completion enabled</source>
-        <translation>Autocompletar habilitado</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="966"/>
-        <source>Complete</source>
-        <translation>Completo</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="4943"/>
-        <source>Auto-Completion Provider</source>
-        <translation>Proveedor de Autocompletado</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="4943"/>
-        <source>The completion list provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
-        <translation>El proveedor de lista de completado&apos;{0}&apos; ya está registrado. Se ignora la solicitud duplicada.</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="5222"/>
-        <source>Call-Tips Provider</source>
-        <translation>Proveedor de Call-Tips</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="5222"/>
-        <source>The call-tips provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
-        <translation>El proveedor de call-tips&apos;{0}&apos; ya está registrado. Se ignora la solicitud duplicada.</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8445"/>
-        <source>Register Mouse Click Handler</source>
-        <translation>Registrar Manejador de Clicks de Ratón</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8445"/>
-        <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
-        <translation>Un manejador de clicks de ratón para &quot;{0}&quot; ya está registrado por &quot;{1}&quot;. Abortando solicitud por &quot;{2}&quot;...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="930"/>
-        <source>Save Copy...</source>
-        <translation>Guardar Copia...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="969"/>
-        <source>Clear Completions Cache</source>
-        <translation>Limpiar Caché de Completado</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="896"/>
+        <source>Calltip</source>
+        <translation>Consejo de llamada</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="942"/>
+        <source>Print Preview</source>
+        <translation>Presentación preliminar</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="480"/>
+        <source>&lt;b&gt;A Source Editor Window&lt;/b&gt;&lt;p&gt;This window is used to display and edit a source file.  You can open as many of these as you like. The name of the file is displayed in the window&apos;s titlebar.&lt;/p&gt;&lt;p&gt;In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.&lt;/p&gt;&lt;p&gt;In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.&lt;/p&gt;&lt;p&gt;These actions can be reversed via the context menu.&lt;/p&gt;&lt;p&gt;Ctrl clicking on a syntax error marker shows some info about this error.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Una Ventana de Edición de Códigos Fuente&lt;/b&gt;&lt;p&gt;Esta ventana se utiliza para mostrar y editar un archivo de código fuente.  Puede abrir tantas como desee. El nombre del archivo se muestra en la barra de título de la ventana.&lt;/p&gt;&lt;p&gt;Para insertar puntos de interrupción basta con hacer un click en el espacio entre los números de línea y los marcadores de plegado.  Pueden editarse con el menú de contexto de los márgenes.&lt;/p&gt;&lt;p&gt;Para insertar marcadores solo hay que hacer Shift-click en el espacio entre los números de línea y los marcadores de plegado.&lt;/p&gt;&lt;p&gt;Estas acciones se pueden revertir utilizando el menú de contexto.&lt;/p&gt;&lt;p&gt;Haciendo Ctrl-click en un marcador de error sintáctico se muestra información sobre el dicho error.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="881"/>
+        <source>Typing aids enabled</source>
+        <translation>Ayudas al tecleo habilitadas</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1152"/>
+        <source>End-of-Line Type</source>
+        <translation>Tipo de fin-de-línea</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1156"/>
+        <source>Unix</source>
+        <translation>Unix</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1163"/>
+        <source>Windows</source>
+        <translation>Windows</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1170"/>
+        <source>Macintosh</source>
+        <translation>Macintosh</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1111"/>
+        <source>Encodings</source>
+        <translation>Codificaciones</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1091"/>
+        <source>Guessed</source>
+        <translation>Suposición</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1431"/>
+        <source>Alternatives</source>
+        <translation>Alternativas</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1447"/>
+        <source>Pygments Lexer</source>
+        <translation>Analizador Léxico de Pygments</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1447"/>
+        <source>Select the Pygments lexer to apply.</source>
+        <translation>Seleccionar el Analizador Léxico de Pygments.</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7978"/>
+        <source>Check spelling...</source>
+        <translation>Corrección ortográfica...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="855"/>
+        <source>Check spelling of selection...</source>
+        <translation>Corrección ortográfica de la selección...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7981"/>
+        <source>Add to dictionary</source>
+        <translation>Añadir al diccionario</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7983"/>
+        <source>Ignore All</source>
+        <translation>Ignorar Todo</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="859"/>
+        <source>Remove from dictionary</source>
+        <translation>Eliminar del diccionario</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="391"/>
+        <source>&lt;p&gt;The size of the file &lt;b&gt;{0}&lt;/b&gt; is &lt;b&gt;{1} KB&lt;/b&gt;. Do you really want to load it?&lt;/p&gt;</source>
+        <translation>&lt;p&gt;El tamaño del archivo &lt;b&gt;{0}&lt;/b&gt; es &lt;b&gt;{1} KB&lt;/b&gt;. ¿Desea cargarlo de todos modos?&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1408"/>
+        <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
+        <translation>&lt;p&gt;No hay un exportador disponible para el formato de exportación &lt;b&gt;{0}&lt;/b&gt;. Abortando...&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1427"/>
+        <source>Alternatives ({0})</source>
+        <translation>Alternativas ({0})</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="3095"/>
+        <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="3153"/>
+        <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="3277"/>
+        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
+        <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; no puede ser guardado.&lt;br&gt;Causa: {1}&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6846"/>
+        <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;El archivo de macro &lt;b&gt;{0}&lt;/b&gt; no se puede leer.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6855"/>
+        <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; is corrupt.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;El archivo de macro &lt;b&gt;{0}&lt;/b&gt; está dañado&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6907"/>
+        <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;El archivo de macro  &lt;b&gt;{0}&lt;/b&gt; no se puede escribir.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7310"/>
+        <source>{0} (ro)</source>
+        <translation>{0} (ro)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7451"/>
+        <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; no es un archivo.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7547"/>
+        <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
+        <translation>Alias para el archivo &lt;b&gt;{0}&lt;/b&gt;:</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1336"/>
+        <source>Next warning</source>
+        <translation>Siguiente advertencia</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1340"/>
+        <source>Previous warning</source>
+        <translation>Anterior advertencia</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1344"/>
+        <source>Show warning message</source>
+        <translation>Mostrar mensaje de advertencia</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1348"/>
+        <source>Clear warnings</source>
+        <translation>Limpiar advertencias</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="3340"/>
+        <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+        <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6892"/>
+        <source>&lt;p&gt;The macro file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
+        <translation>&lt;p&gt;El archivo de macro &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6693"/>
+        <source>Warning: {0}</source>
+        <translation>Advertencia: {0}</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6700"/>
+        <source>Error: {0}</source>
+        <translation>Error: {0}</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7112"/>
+        <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
+        <translation>&lt;br&gt;&lt;b&gt;Advertencia:&lt;/b&gt; Perderá los cambios si lo reabre.</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="938"/>
+        <source>Open &apos;rejection&apos; file</source>
+        <translation>Abrir archivo &apos;de rechazo&apos;</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1048"/>
+        <source>Load Diagram...</source>
+        <translation>Cargar Diagrama...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1371"/>
+        <source>Next change</source>
+        <translation>Siguiente cambio</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1375"/>
+        <source>Previous change</source>
+        <translation>Cambio anterior</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="8399"/>
+        <source>Sort Lines</source>
+        <translation>Ordenar Líneas</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="8399"/>
+        <source>The selection contains illegal data for a numerical sort.</source>
+        <translation>La selección contiene datos ilegales para una ordenación numérica.</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6628"/>
+        <source>Warning</source>
+        <translation>Advertencia</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6628"/>
+        <source>No warning messages available.</source>
+        <translation>No hay mensajes de advertencia disponibles.</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6690"/>
+        <source>Style: {0}</source>
+        <translation>Estilo: {0}</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="912"/>
+        <source>New Document View</source>
+        <translation>Nueva Vista de Documento</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="915"/>
+        <source>New Document View (with new split)</source>
+        <translation>Nueva Vista de Documento (con nueva división)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1002"/>
+        <source>Tools</source>
+        <translation>Herramientas</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1133"/>
+        <source>Re-Open With Encoding</source>
+        <translation>Reabrir Con Codificación</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="888"/>
+        <source>Automatic Completion enabled</source>
+        <translation>Autocompletar habilitado</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="968"/>
+        <source>Complete</source>
+        <translation>Completo</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="4980"/>
+        <source>Auto-Completion Provider</source>
+        <translation>Proveedor de Autocompletado</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="4980"/>
+        <source>The completion list provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
+        <translation>El proveedor de lista de completado&apos;{0}&apos; ya está registrado. Se ignora la solicitud duplicada.</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="5262"/>
+        <source>Call-Tips Provider</source>
+        <translation>Proveedor de Call-Tips</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="5262"/>
+        <source>The call-tips provider &apos;{0}&apos; was already registered. Ignoring duplicate request.</source>
+        <translation>El proveedor de call-tips&apos;{0}&apos; ya está registrado. Se ignora la solicitud duplicada.</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="8488"/>
+        <source>Register Mouse Click Handler</source>
+        <translation>Registrar Manejador de Clicks de Ratón</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="8488"/>
+        <source>A mouse click handler for &quot;{0}&quot; was already registered by &quot;{1}&quot;. Aborting request by &quot;{2}&quot;...</source>
+        <translation>Un manejador de clicks de ratón para &quot;{0}&quot; ya está registrado por &quot;{1}&quot;. Abortando solicitud por &quot;{2}&quot;...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="932"/>
+        <source>Save Copy...</source>
+        <translation>Guardar Copia...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="971"/>
+        <source>Clear Completions Cache</source>
+        <translation>Limpiar Caché de Completado</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="898"/>
         <source>Code Info</source>
         <translation>Info del Código</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1377"/>
+        <location filename="../QScintilla/Editor.py" line="1379"/>
         <source>Clear changes</source>
         <translation>Limpiar cambios</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="815"/>
+        <location filename="../QScintilla/Editor.py" line="817"/>
         <source>Execute Selection In Console</source>
         <translation>Ejecutar Selección en Consola</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8566"/>
+        <location filename="../QScintilla/Editor.py" line="8609"/>
         <source>EditorConfig Properties</source>
         <translation>Propiedades de EditorConfig</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8566"/>
+        <location filename="../QScintilla/Editor.py" line="8609"/>
         <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/Editor.py" line="1281"/>
+        <location filename="../QScintilla/Editor.py" line="1283"/>
         <source>Toggle all folds</source>
         <translation>Recoger/Desplegar los anidamientos</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1286"/>
+        <location filename="../QScintilla/Editor.py" line="1288"/>
         <source>Toggle all folds (including children)</source>
         <translation>Recoger/Desplegar todos los anidamientos (inc. hijos)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1291"/>
+        <location filename="../QScintilla/Editor.py" line="1293"/>
         <source>Toggle current fold</source>
         <translation>Recoger/Desplegar el anidamiento actual</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1297"/>
+        <location filename="../QScintilla/Editor.py" line="1299"/>
         <source>Expand (including children)</source>
         <translation>Expandir (incluídos hijos)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1302"/>
+        <location filename="../QScintilla/Editor.py" line="1304"/>
         <source>Collapse (including children)</source>
         <translation>Contraer (incluídos hijos)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1308"/>
+        <location filename="../QScintilla/Editor.py" line="1310"/>
         <source>Clear all folds</source>
         <translation>Limpiar todos los anidamientos</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1189"/>
+        <location filename="../QScintilla/Editor.py" line="1191"/>
         <source>Spell Check Languages</source>
         <translation>Corrección Ortográfica Idiomas</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7106"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ha cambiado mientras estaba abierto en eric. ¿Desea volver a cargarlo?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8760"/>
+        <location filename="../QScintilla/Editor.py" line="8803"/>
         <source>Generate Docstring</source>
         <translation>Generar Docstring</translation>
     </message>
@@ -12554,82 +12554,82 @@
 <context>
     <name>EditorButtonsWidget</name>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="174"/>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="176"/>
         <source>Bold</source>
         <translation>Negrita</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="176"/>
-        <source>Italic</source>
-        <translation>Cursiva</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="178"/>
+        <source>Italic</source>
+        <translation>Cursiva</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="180"/>
         <source>Strike Through</source>
         <translation>Tachado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="181"/>
-        <source>Header 1</source>
-        <translation>Encabezamiento 1</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="183"/>
-        <source>Header 2</source>
-        <translation>Encabezamiento 2</translation>
+        <source>Header 1</source>
+        <translation>Encabezamiento 1</translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="185"/>
-        <source>Header 3</source>
-        <translation>Encabezamiento 3</translation>
+        <source>Header 2</source>
+        <translation>Encabezamiento 2</translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="187"/>
+        <source>Header 3</source>
+        <translation>Encabezamiento 3</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="189"/>
         <source>Header</source>
         <translation>Encabezamiento</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="192"/>
-        <source>Inline Code</source>
-        <translation>Código Inline</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="194"/>
-        <source>Code Block</source>
-        <translation>Bloque de Código</translation>
+        <source>Inline Code</source>
+        <translation>Código Inline</translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="196"/>
+        <source>Code Block</source>
+        <translation>Bloque de Código</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="198"/>
         <source>Quote</source>
         <translation>Cita</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="199"/>
-        <source>Add Hyperlink</source>
-        <translation>Añadir Hiperenlace</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="201"/>
-        <source>Add Horizontal Line</source>
-        <translation>Añadir Línea Horizontal</translation>
+        <source>Add Hyperlink</source>
+        <translation>Añadir Hiperenlace</translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="203"/>
+        <source>Add Horizontal Line</source>
+        <translation>Añadir Línea Horizontal</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="205"/>
         <source>Add Image</source>
         <translation>Añadir Imagen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="206"/>
-        <source>Add Bulleted List</source>
-        <translation>Añadir Lista con Puntos</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="208"/>
+        <source>Add Bulleted List</source>
+        <translation>Añadir Lista con Puntos</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="210"/>
         <source>Add Numbered List</source>
         <translation>Añadir Lista con Números</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="274"/>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="276"/>
         <source>Level {0}</source>
         <translation>Nivel {0}</translation>
     </message>
@@ -13571,12 +13571,12 @@
         <translation>Pulsar para editar la sobreescritura específica de lenguaje seleccionada</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="243"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="244"/>
         <source>Tab and Indent Override</source>
         <translation>Sobreescritura de Tabulación e Indentación</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="243"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="244"/>
         <source>Shall the selected entries really be removed?</source>
         <translation>¿Desea eliminar las entradas seleccionadas?</translation>
     </message>
@@ -13747,7 +13747,7 @@
         <translation>Selecciona llenar hasta el fin de la línea.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="426"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="427"/>
         <source>Fill to end of line</source>
         <translation>Llenar hasta el final de la línea</translation>
     </message>
@@ -13787,17 +13787,17 @@
         <translation>Todo llena hasta el final de la línea</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="424"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="425"/>
         <source>Enabled</source>
         <translation>Habilitado</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="425"/>
-        <source>Disabled</source>
-        <translation>Deshabilitado</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="426"/>
+        <source>Disabled</source>
+        <translation>Deshabilitado</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="427"/>
         <source>Select fill to end of line for all styles</source>
         <translation>Selecciona llenar hasta el final de línea para todos los estilos</translation>
     </message>
@@ -13857,12 +13857,12 @@
         <translation>Exportar todos los estilos</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="591"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="592"/>
         <source>Export Highlighting Styles</source>
         <translation>Exportar Estilos de Resaltado</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="642"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="643"/>
         <source>Import Highlighting Styles</source>
         <translation>Importar Estilos de Resaltado</translation>
     </message>
@@ -13942,27 +13942,27 @@
         <translation type="obsolete">Archivo de estilos de resaltado (*.e6h *.e4h)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="783"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="784"/>
         <source>Delete Sub-Style</source>
         <translation>Borrar Subestilo</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="783"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="784"/>
         <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="823"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="824"/>
         <source>{0} - Copy</source>
         <translation>{0} Copiar</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="851"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="852"/>
         <source>Reset Sub-Styles to Default</source>
         <translation>Restablecer Subestilos por Defecto</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="851"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="852"/>
         <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>
@@ -14012,27 +14012,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="548"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="549"/>
         <source>Highlighting Styles File (*.ehj);;XML Highlighting Styles File (*.e6h)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="567"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="568"/>
         <source>&lt;p&gt;The highlighting styles file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="591"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="592"/>
         <source>&lt;p&gt;The highlighting styles 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="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="610"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="611"/>
         <source>Highlighting Styles File (*.ehj);;XML Highlighting Styles File (*.e6h *.e4h)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="642"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="643"/>
         <source>&lt;p&gt;The highlighting styles 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>
@@ -14243,47 +14243,47 @@
 <context>
     <name>EditorOutlineView</name>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="268"/>
+        <location filename="../QScintilla/EditorOutline.py" line="269"/>
         <source>Goto</source>
         <translation>Ir a</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="310"/>
+        <location filename="../QScintilla/EditorOutline.py" line="311"/>
         <source>Refresh</source>
         <translation>Actualizar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="314"/>
+        <location filename="../QScintilla/EditorOutline.py" line="315"/>
         <source>Copy Path to Clipboard</source>
         <translation>Copiar Ruta al Portapapeles</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="319"/>
+        <location filename="../QScintilla/EditorOutline.py" line="320"/>
         <source>Expand All</source>
         <translation>Expandir Todo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="323"/>
+        <location filename="../QScintilla/EditorOutline.py" line="324"/>
         <source>Collapse All</source>
         <translation>Contraer Todo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="328"/>
+        <location filename="../QScintilla/EditorOutline.py" line="329"/>
         <source>Increment Width</source>
         <translation>Ancho de Incremento</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="332"/>
+        <location filename="../QScintilla/EditorOutline.py" line="333"/>
         <source>Decrement Width</source>
         <translation>Ancho de Decremento</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="390"/>
+        <location filename="../QScintilla/EditorOutline.py" line="391"/>
         <source>Line {0}</source>
         <translation>Línea {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="336"/>
+        <location filename="../QScintilla/EditorOutline.py" line="337"/>
         <source>Set Default Width</source>
         <translation>Establecer Ancho por Defecto</translation>
     </message>
@@ -15672,32 +15672,32 @@
         <translation>Seleccionar como se señalan las líneas con ajuste de línea</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="59"/>
         <source>Word Boundary</source>
         <translation>Límite de Palabra</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="60"/>
-        <source>Character Boundary</source>
-        <translation>Límite de Carácter</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="62"/>
+        <source>Character Boundary</source>
+        <translation>Límite de Carácter</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="65"/>
         <source>No Indicator</source>
         <translation>Sin Indicador</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="64"/>
-        <source>Indicator by Text</source>
-        <translation>Indicador por Texto</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="66"/>
-        <source>Indicator by Margin</source>
-        <translation>Indicador por Margen</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="68"/>
+        <source>Indicator by Text</source>
+        <translation>Indicador por Texto</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="71"/>
+        <source>Indicator by Margin</source>
+        <translation>Indicador por Margen</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="74"/>
         <source>Indicator in Line Number Margin</source>
         <translation>Indicador en el Margen de Número de Línea</translation>
     </message>
@@ -15954,22 +15954,22 @@
         <translation> caracteres</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="72"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="78"/>
         <source>Fixed</source>
         <translation>Fijado</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="74"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="80"/>
         <source>Aligned</source>
         <translation>Alineado</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="76"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="82"/>
         <source>Aligned plus One</source>
         <translation>Alineado más uno</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="79"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="85"/>
         <source>Aligned plus Two</source>
         <translation>Alineado más dos</translation>
     </message>
@@ -16608,27 +16608,27 @@
         <translation>Enviar</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="133"/>
+        <location filename="../UI/EmailDialog.py" line="134"/>
         <source>Close dialog</source>
         <translation>Cerrar diálogo</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="133"/>
+        <location filename="../UI/EmailDialog.py" line="134"/>
         <source>Do you really want to close the dialog?</source>
         <translation>¿Realmente desea cerrar el diálogo?</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="321"/>
+        <location filename="../UI/EmailDialog.py" line="322"/>
         <source>Mail Server Password</source>
         <translation>Contraseña para el servidor de correo</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="321"/>
+        <location filename="../UI/EmailDialog.py" line="322"/>
         <source>Enter your mail server password</source>
         <translation>Introduzca su contraseña para el servidor de correo</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="423"/>
+        <location filename="../UI/EmailDialog.py" line="424"/>
         <source>Attach file</source>
         <translation>Insertar archivo</translation>
     </message>
@@ -16658,12 +16658,12 @@
         <translation>Enviar solicitud de característica</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="341"/>
+        <location filename="../UI/EmailDialog.py" line="342"/>
         <source>&lt;p&gt;Authentication failed.&lt;br&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;La autenticación ha fallado.&lt;br/&gt; Razón: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="410"/>
+        <location filename="../UI/EmailDialog.py" line="411"/>
         <source>&lt;p&gt;Message could not be sent.&lt;br&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El mensaje no ha podido ser enviado.&lt;br/&gt;Razón: {0}&lt;/p&gt;</translation>
     </message>
@@ -16673,22 +16673,22 @@
         <translation>Ayuda de API de Google Mail</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="157"/>
+        <location filename="../UI/EmailDialog.py" line="158"/>
         <source>Gmail API Help</source>
         <translation>Ayuda de API de Gmail</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="366"/>
+        <location filename="../UI/EmailDialog.py" line="367"/>
         <source>Send Message</source>
         <translation>Enviar Mensaje</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="151"/>
+        <location filename="../UI/EmailDialog.py" line="152"/>
         <source>&lt;p&gt;The Google Mail Client API is not installed. Use &lt;code&gt;{0}&lt;/code&gt; to install it.&lt;/p&gt;</source>
         <translation>&lt;p&gt;La API de Cliente de Google Mail no está instalada. Usar &lt;code&gt;{0}&lt;/code&gt; para instalarla.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="410"/>
+        <location filename="../UI/EmailDialog.py" line="411"/>
         <source>Send Message via Gmail</source>
         <translation>Enviar Mensaje vía Gmail</translation>
     </message>
@@ -17163,7 +17163,7 @@
 &lt;p&gt;Muestra los errores del comando generador de Ericapi.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="89"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
@@ -17178,17 +17178,17 @@
         <translation>Errores</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="82"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="84"/>
         <source>{0} - {1}</source>
         <translation>{0} - {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="89"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>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/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="128"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="137"/>
         <source>
 {0} finished.
 </source>
@@ -17463,7 +17463,7 @@
         <translation>Generar colección de archivos de QtHelp</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="62"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="63"/>
         <source>&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot;&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;&lt;html&gt;&lt;head&gt;&lt;title&gt;&lt;/title&gt;&lt;/head&gt;&lt;body style=&quot;background-color:{BodyBgColor};color:{BodyColor}&quot;&gt;&lt;h1 style=&quot;background-color:{Level1HeaderBgColor};color:{Level1HeaderColor}&quot;&gt;Level 1 Header&lt;/h1&gt;&lt;h3 style=&quot;background-color:{Level2HeaderBgColor};color:{Level2HeaderColor}&quot;&gt;Level 2 Header&lt;/h3&gt;&lt;h2 style=&quot;background-color:{CFBgColor};color:{CFColor}&quot;&gt;Class and Function Header&lt;/h2&gt;Standard body text with &lt;a style=&quot;color:{LinkColor}&quot;&gt;some links&lt;/a&gt; embedded.&lt;/body&gt;&lt;/html&gt;</source>
         <translation>&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot;&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;&lt;html&gt;&lt;head&gt;&lt;title&gt;&lt;/title&gt;&lt;/head&gt;&lt;body style=&quot;background-color:{BodyBgColor};color:{BodyColor}&quot;&gt;&lt;h1 style=&quot;background-color:{Level1HeaderBgColor};color:{Level1HeaderColor}&quot;&gt;Encabezado de Nivel 1&lt;/h1&gt;&lt;h3 style=&quot;background-color:{Level2HeaderBgColor};color:{Level2HeaderColor}&quot;&gt;Encabezado de Nivel 2&lt;/h3&gt;&lt;h2 style=&quot;background-color:{CFBgColor};color:{CFColor}&quot;&gt;Clase y Encabezado de Función&lt;/h2&gt;Texto estándar del cuerpo con &lt;a style=&quot;color:{LinkColor}&quot;&gt;algunos enlaces&lt;/a&gt; embebidos.&lt;/body&gt;&lt;/html&gt;</translation>
     </message>
@@ -17550,7 +17550,7 @@
 &lt;p&gt;Muestra los errores del comando de generación de Ericdoc.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="89"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
@@ -17565,17 +17565,17 @@
         <translation>Errores</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="82"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="84"/>
         <source>{0} - {1}</source>
         <translation>{0} - {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="89"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>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/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="129"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="138"/>
         <source>
 {0} finished.
 </source>
@@ -17584,7 +17584,7 @@
 </translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="120"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="126"/>
         <source>
 {0} crashed.
 </source>
@@ -17669,17 +17669,17 @@
         <translation>Ignorar pero Conservar</translation>
     </message>
     <message>
-        <location filename="../UI/ErrorLogDialog.py" line="44"/>
+        <location filename="../UI/ErrorLogDialog.py" line="45"/>
         <source>Delete</source>
         <translation>Borrar</translation>
     </message>
     <message>
-        <location filename="../UI/ErrorLogDialog.py" line="45"/>
-        <source>Close</source>
-        <translation>Cerrar</translation>
-    </message>
-    <message>
         <location filename="../UI/ErrorLogDialog.py" line="46"/>
+        <source>Close</source>
+        <translation>Cerrar</translation>
+    </message>
+    <message>
+        <location filename="../UI/ErrorLogDialog.py" line="47"/>
         <source>Error Log</source>
         <translation>Registro de Error</translation>
     </message>
@@ -18195,22 +18195,22 @@
         <translation>{0} desea utilizar la posición.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="110"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="111"/>
         <source>Allow</source>
         <translation>Permitir</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="111"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="112"/>
         <source>Deny</source>
         <translation>Denegar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="133"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="134"/>
         <source>{0} wants to use an unknown feature.</source>
         <translation>{0} desea utilizar una característica desconocida.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="108"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="109"/>
         <source>Remember</source>
         <translation>Recordar</translation>
     </message>
@@ -18258,27 +18258,27 @@
         <translation>Notificaciones</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="161"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="165"/>
         <source>Host</source>
         <translation>Host</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="162"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="166"/>
         <source>Permission</source>
         <translation>Permiso</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="68"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="69"/>
         <source>Geolocation</source>
         <translation>Geolocalización</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="186"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="191"/>
         <source>Allow</source>
         <translation>Permitir</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="187"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="193"/>
         <source>Deny</source>
         <translation>Denegar</translation>
     </message>
@@ -18293,32 +18293,32 @@
         <translation>Eliminar &amp;Todas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="83"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="85"/>
         <source>Microphone</source>
         <translation>Micrófono</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="98"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="101"/>
         <source>Camera</source>
         <translation>Cámara</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="113"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="117"/>
         <source>Microphone &amp;&amp; Camera</source>
         <translation>Micrófono &amp;&amp; Cámara</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="129"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="133"/>
         <source>Mouse Lock</source>
         <translation>Bloquear Ratón</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="147"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="151"/>
         <source>Desktop Video</source>
         <translation>Vídeo del Escritorio</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="163"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="167"/>
         <source>Desktop Audio &amp;&amp; Video</source>
         <translation>Audio &amp;&amp; Vídeo del Escritorio</translation>
     </message>
@@ -18374,17 +18374,17 @@
         <translation>Añadir</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="86"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="87"/>
         <source>Add RSS Feed</source>
         <translation>Añadir RSS Feed</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="81"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="82"/>
         <source>The feed was added successfully.</source>
         <translation>El feed ha sido añadido.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="86"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="87"/>
         <source>The feed was already added before.</source>
         <translation>El feed ya se había añadido con anterioridad.</translation>
     </message>
@@ -18442,67 +18442,67 @@
         <translation>&amp;Borrar Feed</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="182"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="183"/>
         <source>Duplicate Feed URL</source>
         <translation>Duplicar URL del Feed</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="182"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="183"/>
         <source>A feed with the URL {0} exists already. Aborting...</source>
         <translation>Un feed con la URL {0} ya existe. Abortando...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="204"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="205"/>
         <source>Delete Feed</source>
         <translation>Borrar Feed</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="204"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="205"/>
         <source>&lt;p&gt;Do you really want to delete the feed &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation>&lt;p&gt;¿Desea realmente borrar el feed &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="316"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="317"/>
         <source>Error fetching feed</source>
         <translation>Error al enlazar el feed</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="346"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="347"/>
         <source>&amp;Open</source>
         <translation>&amp;Abrir</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="348"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="349"/>
         <source>Open in New &amp;Tab</source>
         <translation>Abrir en Nueva Pes&amp;taña</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="359"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="360"/>
         <source>&amp;Copy URL to Clipboard</source>
         <translation>&amp;Copiar URL al Portapapeles</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="366"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="367"/>
         <source>&amp;Show error data</source>
         <translation>Mostrar dato&amp;s de error</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="483"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="490"/>
         <source>Error loading feed</source>
         <translation>Error cargando feed</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="350"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="351"/>
         <source>Open in New &amp;Background Tab</source>
         <translation>Abrir en Nueva Pes&amp;taña en Segundo Plano</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="353"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="354"/>
         <source>Open in New &amp;Window</source>
         <translation>Abrir en Nueva &amp;Ventana</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="355"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="356"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation>Abrir en Nueva Ventana &amp;Privada</translation>
     </message>
@@ -19139,7 +19139,7 @@
         <translation>Reemplazar</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="740"/>
+        <location filename="../UI/FindFileDialog.py" line="744"/>
         <source>Replace in Files</source>
         <translation>Reemplazar en Archivos</translation>
     </message>
@@ -19154,37 +19154,37 @@
         <translation>Abrir primera ocurrencia</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="767"/>
+        <location filename="../UI/FindFileDialog.py" line="771"/>
         <source>Open</source>
         <translation>Abrir</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="768"/>
+        <location filename="../UI/FindFileDialog.py" line="772"/>
         <source>Copy Path to Clipboard</source>
         <translation>Copiar Ruta al Portapapeles</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="450"/>
+        <location filename="../UI/FindFileDialog.py" line="453"/>
         <source>Invalid search expression</source>
         <translation>Expresión de búsqueda no válida</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="450"/>
+        <location filename="../UI/FindFileDialog.py" line="453"/>
         <source>&lt;p&gt;The search expression is not valid.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;La expresión de búsqueda no es válida.&lt;/p&gt;&lt;p&gt;Error:{0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="699"/>
+        <location filename="../UI/FindFileDialog.py" line="703"/>
         <source>&lt;p&gt;Could not read the file &lt;b&gt;{0}&lt;/b&gt;. Skipping it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se pudo leer el archivo &lt;b&gt;{0}&lt;/b&gt;. Omitiéndolo.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="740"/>
+        <location filename="../UI/FindFileDialog.py" line="744"/>
         <source>&lt;p&gt;Could not save the file &lt;b&gt;{0}&lt;/b&gt;. Skipping it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se pudo guardar el archivo &lt;b&gt;{0}&lt;/b&gt;. Omitiéndolo.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="714"/>
+        <location filename="../UI/FindFileDialog.py" line="718"/>
         <source>&lt;p&gt;The current and the original hash of the file &lt;b&gt;{0}&lt;/b&gt; are different. Skipping it.&lt;/p&gt;&lt;p&gt;Hash 1: {1}&lt;/p&gt;&lt;p&gt;Hash 2: {2}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Los hash actual y original del archivos &lt;b&gt;{0}&lt;/b&gt; son distintos. Abandonando.&lt;/p&gt;&lt;p&gt;Hash 1: {1}&lt;/p&gt;&lt;p&gt;Hash 2: {2}&lt;/p&gt;</translation>
     </message>
@@ -19194,13 +19194,13 @@
         <translation>%v/%m Archivos</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="573"/>
+        <location filename="../UI/FindFileDialog.py" line="576"/>
         <source>{0} / {1}</source>
         <comment>occurrences / files</comment>
         <translation>{0} / {1}</translation>
     </message>
     <message numerus="yes">
-        <location filename="../UI/FindFileDialog.py" line="574"/>
+        <location filename="../UI/FindFileDialog.py" line="577"/>
         <source>%n occurrence(s)</source>
         <translation>
             <numerusform>%n ocurrencia</numerusform>
@@ -19208,7 +19208,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../UI/FindFileDialog.py" line="574"/>
+        <location filename="../UI/FindFileDialog.py" line="577"/>
         <source>%n file(s)</source>
         <translation>
             <numerusform>%n archivo</numerusform>
@@ -19329,7 +19329,7 @@
         <translation>Presione para detener la búsqueda</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileNameDialog.py" line="58"/>
+        <location filename="../UI/FindFileNameDialog.py" line="59"/>
         <source>Opens the selected file</source>
         <translation>Abre el archivo seleccionado</translation>
     </message>
@@ -20568,7 +20568,7 @@
         <translation>Introducir un prefijo para añadir al principio de cada archivo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitArchiveDataDialog.py" line="83"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitArchiveDataDialog.py" line="85"/>
         <source>Select Archive File</source>
         <translation>Seleccionar Fichero de Archivo</translation>
     </message>
@@ -20646,22 +20646,22 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="52"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="54"/>
         <source>&amp;Refresh</source>
         <translation>Actualiza&amp;r</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="54"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="56"/>
         <source>Press to refresh the list of commits</source>
         <translation>Pulsar para actualizar la lista de commits</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="173"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="173"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>El proceso {0} no se ha podido ejecutar. Verifique que está en la ruta de búsqueda (search path).</translation>
     </message>
@@ -20782,12 +20782,12 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>El proceso {0} no se ha podido ejecutar. Verifique que está en la ruta de búsqueda (search path).</translation>
     </message>
@@ -21001,7 +21001,7 @@
         <translation>Seleccionar el repositorio remoto</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBranchPushDialog.py" line="34"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBranchPushDialog.py" line="35"/>
         <source>&lt;all branches&gt;</source>
         <translation>&lt;todas las branches&gt;</translation>
     </message>
@@ -21320,7 +21320,7 @@
         <translation>Git Move</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitCopyDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitCopyDialog.py" line="90"/>
         <source>Select target</source>
         <translation>Seleccionar destino</translation>
     </message>
@@ -21388,12 +21388,12 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="115"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="115"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>El proceso {0} no se ha podido ejecutar. Verifique que está en la ruta de búsqueda (search path).</translation>
     </message>
@@ -21456,37 +21456,37 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="110"/>
         <source>Process canceled.</source>
         <translation>Proceso cancelado.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="112"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="125"/>
         <source>Process finished successfully.</source>
         <translation>Proceso terminado con éxito.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="127"/>
         <source>Process crashed.</source>
         <translation>El proceso ha fallado.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="129"/>
         <source>Process finished with exit code {0}</source>
         <translation>El proceso ha terminado con código de salida {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="182"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="182"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>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/vcsGit/GitDialog.py" line="82"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="88"/>
         <source>Additional Output</source>
         <translation>Output Adicional</translation>
     </message>
@@ -21514,47 +21514,47 @@
         <translation>Errores</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="174"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="174"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>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/vcsGit/GitDiffDialog.py" line="198"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="200"/>
         <source>There is no difference.</source>
         <translation>No hay ninguna diferencia.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="219"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="225"/>
         <source>&lt;Start&gt;</source>
         <translation>&lt;Inicio&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="220"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="226"/>
         <source>&lt;End&gt;</source>
         <translation>&lt;Fin&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="355"/>
         <source>Save Diff</source>
         <translation>Guardar Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="314"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="322"/>
         <source>Patch Files (*.diff)</source>
         <translation>Archivos de Parche (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="331"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="339"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de parche &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="355"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de parche &lt;b&gt;{0}&lt;/b&gt; no puede ser guardado.&lt;br /&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
@@ -21574,37 +21574,37 @@
         <translation>Pulsar para actualizar la pantalla</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="90"/>
         <source>Working Tree to Staging Area</source>
         <translation>Árbol de Trabajo a Área de Preparación (Staging Area)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="89"/>
-        <source>Staging Area to HEAD Commit</source>
-        <translation>Área de Preparación (Staging Area) a HEAD Commit</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="90"/>
-        <source>Working Tree to HEAD Commit</source>
-        <translation>Árbol de Trabajo a HEAD Commit</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="91"/>
-        <source>Working to Staging (top) and Staging to HEAD (bottom)</source>
-        <translation>Directorio de trabajo a Staging (área de preparación) y Staging a HEAD (fondo)</translation>
+        <source>Staging Area to HEAD Commit</source>
+        <translation>Área de Preparación (Staging Area) a HEAD Commit</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="92"/>
+        <source>Working Tree to HEAD Commit</source>
+        <translation>Árbol de Trabajo a HEAD Commit</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="93"/>
+        <source>Working to Staging (top) and Staging to HEAD (bottom)</source>
+        <translation>Directorio de trabajo a Staging (área de preparación) y Staging a HEAD (fondo)</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="95"/>
         <source>Stash Contents</source>
         <translation>Contenido de área de guardado rápido de cambios (stash)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="96"/>
         <source>Stash Contents of {0}</source>
         <translation>Contenido de área de guardado rápido de cambios (stash) de {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="166"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="168"/>
         <source>Difference ({0})</source>
         <translation>Diferencia ({0})</translation>
     </message>
@@ -21783,22 +21783,22 @@
         <translation>Seleccione el campo de filtrado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="111"/>
         <source>Author</source>
         <translation>Autor</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="112"/>
         <source>Committer</source>
         <translation>Autor de commit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1789"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1807"/>
         <source>Branch</source>
         <translation>Branch</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="110"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="113"/>
         <source>Subject</source>
         <translation>Asunto</translation>
     </message>
@@ -21868,178 +21868,178 @@
         <translation>Seleccionar acción del menú</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="97"/>
         <source>&amp;Refresh</source>
         <translation>Actualiza&amp;r</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="96"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="99"/>
         <source>Press to refresh the list of commits</source>
         <translation>Pulsar para actualizar la lista de commits</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="203"/>
-        <source>Added</source>
-        <translation>Añadido</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="204"/>
-        <source>Deleted</source>
-        <translation>Borrado</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="205"/>
-        <source>Modified</source>
-        <translation>Modificado</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="206"/>
-        <source>Copied</source>
-        <translation>Copiado</translation>
+        <source>Added</source>
+        <translation>Añadido</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="207"/>
-        <source>Renamed</source>
-        <translation>Renombrado</translation>
+        <source>Deleted</source>
+        <translation>Borrado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="208"/>
-        <source>Type changed</source>
-        <translation>Tipo cambiado</translation>
+        <source>Modified</source>
+        <translation>Modificado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="209"/>
-        <source>Unmerged</source>
-        <translation>Merge Deshecho</translation>
+        <source>Copied</source>
+        <translation>Copiado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="210"/>
+        <source>Renamed</source>
+        <translation>Renombrado</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="211"/>
+        <source>Type changed</source>
+        <translation>Tipo cambiado</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="212"/>
+        <source>Unmerged</source>
+        <translation>Merge Deshecho</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="213"/>
         <source>Unknown</source>
         <translation>Desconocido</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="256"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="259"/>
         <source>Show Author Columns</source>
         <translation>Mostrar Columnas de Autor</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="258"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="261"/>
         <source>Press to show the author columns</source>
         <translation>Pulsar para mostrar las columnas de autor</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="266"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="269"/>
         <source>Show Committer Columns</source>
         <translation>Mostrar Columnas de Autor del Commit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="268"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="271"/>
         <source>Press to show the committer columns</source>
         <translation>Pulsar para mostrar las columnas de autor del commit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="315"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="318"/>
         <source>Copy Commits</source>
         <translation>Copiar Commits</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="317"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="320"/>
         <source>Cherry-pick the selected commits to the current branch</source>
         <translation>Hacer cherry-pick de los commits seleccionados a la branch actual</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="322"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="325"/>
         <source>Tag</source>
         <translation>Tag</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="324"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="327"/>
         <source>Tag the selected commit</source>
         <translation>Hacer Tag del commit seleccionado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="328"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="331"/>
         <source>Create a new branch at the selected commit.</source>
         <translation>Crear una nueva branch desde el commit seleccionado.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="330"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="333"/>
         <source>Branch &amp;&amp; Switch</source>
         <translation>Branch &amp;&amp; Switch</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="332"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="335"/>
         <source>Create a new branch at the selected commit and switch the work tree to it.</source>
         <translation>Crear una nueva branch desde el commit seleccionado y cambiar el árbol de trabajo a ella.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1859"/>
         <source>Switch</source>
         <translation>Hacer switch</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="338"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="341"/>
         <source>Switch the working directory to the selected commit</source>
         <translation>Cambiar el directorio de trabajo al commit seleccionado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1867"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1885"/>
         <source>Show Short Log</source>
         <translation>Mostrar Shortlog</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="344"/>
-        <source>Show a dialog with a log output for release notes</source>
-        <translation>Mostrar un diálogo con una salida de log para release notes</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="347"/>
+        <source>Show a dialog with a log output for release notes</source>
+        <translation>Mostrar un diálogo con una salida de log para release notes</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="350"/>
         <source>Describe</source>
         <translation>Describir</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="349"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="352"/>
         <source>Show the most recent tag reachable from a commit</source>
         <translation>Mostrar la tag más reciente alcanzable desde un commit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="634"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="639"/>
         <source>The git process did not finish within 30s.</source>
         <translation>El proceso git no terminó en un plazo de 30s.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="637"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="642"/>
         <source>Could not start the git executable.</source>
         <translation>No se ha podido iniciar el ejecutable de git.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="640"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="645"/>
         <source>Git Error</source>
         <translation>Error de Git</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="756"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="761"/>
         <source>{0} ({1}%)</source>
         <comment>action, confidence</comment>
         <translation>{0} ({1}%)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="819"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="827"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="819"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="827"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>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/vcsGit/GitLogBrowserDialog.py" line="1703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1721"/>
         <source>Copy Changesets</source>
         <translation>Copiar Changesets</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1859"/>
         <source>The project should be reread. Do this now?</source>
         <translation>El proyecto debería ser cargado de nuevo. ¿Desea hacerlo ahora?</translation>
     </message>
@@ -22049,17 +22049,17 @@
         <translation>Branches</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1867"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1885"/>
         <source>Select a branch</source>
         <translation>Seleccionar una branch</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1820"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1838"/>
         <source>Select a default branch</source>
         <translation>Seleccionar la branch por defecto</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1820"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1838"/>
         <source>Branch &amp; Switch</source>
         <translation>Branch &amp; Switch</translation>
     </message>
@@ -22079,37 +22079,37 @@
         <translation>Pulsar para buscar la siguiente ocurrencia</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="110"/>
         <source>Commit ID</source>
         <translation>Commit ID</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
         <source>Find</source>
         <translation>Buscar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="108"/>
         <source>Filter</source>
         <translation>Filtrar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="146"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="149"/>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="152"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2049"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2067"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation>No se ha encontrado &apos;{0}&apos;.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2049"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2067"/>
         <source>Find Commit</source>
         <translation>Buscar Commit</translation>
     </message>
@@ -22119,7 +22119,7 @@
         <translation>Introducir la expresión regular para filtrar o para buscar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="111"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="114"/>
         <source>File</source>
         <translation>Archivo</translation>
     </message>
@@ -22144,7 +22144,7 @@
         <translation>Eliminaciones</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2095"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2113"/>
         <source>Differences</source>
         <translation>Diferencias</translation>
     </message>
@@ -22154,97 +22154,97 @@
         <translation>&lt;a href=&quot;save:me&quot;&gt;Guardar&lt;/a&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="131"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit ID&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2} &amp;lt;{3}&amp;gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5} &amp;lt;{6}&amp;gt;&lt;/td&gt;&lt;/tr&gt;{7}&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;{9}&lt;/table&gt;</source>
         <translation>&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;ID de Commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Fecha&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Autor&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2} &amp;lt;{3}&amp;gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Fecha de Commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5} &amp;lt;{6}&amp;gt;&lt;/td&gt;&lt;/tr&gt;{7}&lt;tr&gt;&lt;td&gt;&lt;b&gt;Asunto&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;{9}&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="140"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Padres&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="143"/>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Padres&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="146"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Children&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;Hijos&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="152"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="155"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Message&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;Mensaje&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1262"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1280"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation>Diferencias lado a lado con Parent {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1274"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1292"/>
         <source>&lt;a href=&quot;sbsdiff:{0}_{1}&quot;&gt;Side-by-Side Compare&lt;/a&gt;</source>
         <translation>&lt;a href=&quot;sbsdiff:{0}_{1}&quot;&gt;Comparación lado a lado&lt;/a&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2127"/>
         <source>Differences to Parent {0}</source>
         <translation>Diferencias con Parent {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2124"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2142"/>
         <source>Diff to Parent {0}</source>
         <translation>Diff con Parent {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2150"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2168"/>
         <source>There is no difference.</source>
         <translation>No hay ninguna diferencia.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2312"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2330"/>
         <source>Save Diff</source>
         <translation>Guardar Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2279"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2297"/>
         <source>Patch Files (*.diff)</source>
         <translation>Archivos de Parche (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2296"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2314"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de parche &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2312"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2330"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de parche &lt;b&gt;{0}&lt;/b&gt; no puede ser guardado.&lt;br /&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="246"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="249"/>
         <source>Show Commit ID Column</source>
         <translation>Mostrar columna de Commit ID</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="248"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="251"/>
         <source>Press to show the commit ID column</source>
         <translation>Pulsar para mostrar la columna de ID de commit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="276"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="279"/>
         <source>Show Branches Column</source>
         <translation>Mostrar Columna de Branches</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="278"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="281"/>
         <source>Press to show the branches column</source>
         <translation>Pulsar para mostrar la columna de branches</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="286"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="289"/>
         <source>Show Tags Column</source>
         <translation>Mostrar Columna de Tags</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="291"/>
         <source>Press to show the Tags column</source>
         <translation>Pulsar para mostrar la columna de autor</translation>
     </message>
@@ -22418,12 +22418,12 @@
 y se ubicará en este directorio.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="87"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="88"/>
         <source>Select Repository-Directory</source>
         <translation>Seleccionar Repositorio-Directorio</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="102"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="103"/>
         <source>Select Project Directory</source>
         <translation>Seleccionar Directorio del Proyecto</translation>
     </message>
@@ -22591,7 +22591,7 @@
 <context>
     <name>GitPatchFilesDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="82"/>
         <source>Patch Files</source>
         <translation>Archivos de Parche</translation>
     </message>
@@ -22646,7 +22646,7 @@
         <translation>No confiar en el conteo de líneas</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="82"/>
         <source>Patch Files (*.diff *.patch);;All Files (*)</source>
         <translation>Archivos de Parche (*.diff *.patch);;Todos los Archivos (*)</translation>
     </message>
@@ -22684,12 +22684,12 @@
         <translation>Resumen de Información:</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>El proceso {0} no se ha podido ejecutar. Verifique que está en la ruta de búsqueda (search path).</translation>
     </message>
@@ -24714,22 +24714,22 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="54"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="56"/>
         <source>&amp;Refresh</source>
         <translation>Actualiza&amp;r</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="56"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="58"/>
         <source>Press to refresh the list of commits</source>
         <translation>Pulsar para actualizar la lista de commits</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="198"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="198"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>El proceso {0} no se ha podido ejecutar. Verifique que está en la ruta de búsqueda (search path).</translation>
     </message>
@@ -24922,12 +24922,12 @@
         <translation>Pulsar para actualizar la vista de repositorios</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="144"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="148"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="144"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="148"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>El proceso {0} no se ha podido ejecutar. Verifique que está en la ruta de búsqueda (search path).</translation>
     </message>
@@ -25226,52 +25226,52 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="60"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="63"/>
         <source>&amp;Refresh</source>
         <translation>Actualiza&amp;r</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="77"/>
-        <source>Show</source>
-        <translation>Mostrar</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="80"/>
+        <source>Show</source>
+        <translation>Mostrar</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="83"/>
         <source>Restore &amp;&amp; Keep</source>
         <translation>Restaurar &amp;&amp; Conservar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="82"/>
-        <source>Restore &amp;&amp; Delete</source>
-        <translation>Restaurar &amp;&amp; Borrar</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="85"/>
-        <source>Create Branch</source>
-        <translation>Crear Branch</translation>
+        <source>Restore &amp;&amp; Delete</source>
+        <translation>Restaurar &amp;&amp; Borrar</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="88"/>
+        <source>Create Branch</source>
+        <translation>Crear Branch</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="91"/>
         <source>Delete</source>
         <translation>Borrar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="93"/>
         <source>Delete All</source>
         <translation>Borrar todas</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="176"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="183"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="176"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="183"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>El proceso {0} no se ha podido ejecutar. Verifique que está en la ruta de búsqueda (search path).</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="363"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="377"/>
         <source>%n file(s) changed</source>
         <translation>
             <numerusform>%n archivo cambiado</numerusform>
@@ -25279,7 +25279,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="365"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="379"/>
         <source>%n line(s) inserted</source>
         <translation>
             <numerusform>%n línea insertada</numerusform>
@@ -25287,7 +25287,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="367"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="381"/>
         <source>%n line(s) deleted</source>
         <translation>
             <numerusform>%n línea borrada</numerusform>
@@ -25295,7 +25295,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="62"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="65"/>
         <source>Press to refresh the list of stashes</source>
         <translation>Pulsar para actualizar la lista de stashes</translation>
     </message>
@@ -25361,7 +25361,7 @@
 <context>
     <name>GitStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="379"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="386"/>
         <source>Git Status</source>
         <translation>Git Status</translation>
     </message>
@@ -25383,7 +25383,7 @@
         <translation>Seleccionar el status de las entradas a mostrar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="647"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="665"/>
         <source>Commit</source>
         <translation>Commit</translation>
     </message>
@@ -25403,12 +25403,12 @@
         <translation>Ruta</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="188"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="190"/>
         <source>Commit the selected changes</source>
         <translation>Hacer commit de los cambios seleccionados</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="191"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="193"/>
         <source>Amend the latest commit with the selected changes</source>
         <translation>Enmendar (amend) el último commit con los cambios seleccionados</translation>
     </message>
@@ -25468,192 +25468,192 @@
         <translation>Pulsar para actualizar el status visualizado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="193"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="195"/>
         <source>Select all for commit</source>
         <translation>Seleccionar todo para hacer commit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="202"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="204"/>
         <source>Stage changes</source>
         <translation>Llevar cambios al área de preparación (stage)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="206"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="208"/>
         <source>Unstage changes</source>
         <translation>Sacar cambios del área de preparación (unstage)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="233"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="235"/>
         <source>Forget missing</source>
         <translation>Olvidar elementos perdidos</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="237"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="239"/>
         <source>Restore missing</source>
         <translation>Restore sobre elementos perdidos</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="246"/>
         <source>Edit file</source>
         <translation>Editar archivo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="251"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253"/>
         <source>Adjust column sizes</source>
         <translation>Adjustar tamaño de columnas</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="163"/>
-        <source>added</source>
-        <translation>añadido</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="164"/>
-        <source>copied</source>
-        <translation>copiado</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="165"/>
-        <source>deleted</source>
-        <translation>borrado</translation>
+        <source>added</source>
+        <translation>añadido</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="166"/>
-        <source>modified</source>
-        <translation>modificado</translation>
+        <source>copied</source>
+        <translation>copiado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="167"/>
-        <source>renamed</source>
-        <translation>renombrado</translation>
+        <source>deleted</source>
+        <translation>borrado</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="168"/>
+        <source>modified</source>
+        <translation>modificado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="169"/>
+        <source>renamed</source>
+        <translation>renombrado</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="171"/>
         <source>not tracked</source>
         <translation>sin seguimiento</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="168"/>
-        <source>unmerged</source>
-        <translation>sin merge</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="162"/>
-        <source>unmodified</source>
-        <translation>sin modificar</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
+        <source>unmerged</source>
+        <translation>sin merge</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="164"/>
+        <source>unmodified</source>
+        <translation>sin modificar</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="172"/>
         <source>ignored</source>
         <translation>ignorado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="414"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="414"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>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/vcsGit/GitStatusDialog.py" line="581"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="599"/>
         <source>all</source>
         <translation>todo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="647"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="665"/>
         <source>There are no entries selected to be committed.</source>
         <translation>No hay entradas seleccionadas sobre las que aplicar commit.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="688"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="706"/>
         <source>Add</source>
         <translation>Añadir</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="688"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="706"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation>No hay entradas sin versionar disponibles/seleccionadas.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="710"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="728"/>
         <source>Stage</source>
         <translation>Área de Preparación (Stage)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="710"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="728"/>
         <source>There are no stageable entries available/selected.</source>
         <translation>No hay entradas que se puedan llevar al área de preparación (stage) disponibles/seleccionadas.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="732"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="750"/>
         <source>Unstage</source>
         <translation>Unstage (sacar del área de preparación)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="732"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="750"/>
         <source>There are no unstageable entries available/selected.</source>
         <translation>No hay entradas que se puedan sacar del área de preparación (unstage) disponibles/seleccionadas.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="754"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="772"/>
         <source>Forget Missing</source>
         <translation>Olvidar elementos perdidos</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="795"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="813"/>
         <source>There are no missing entries available/selected.</source>
         <translation>No hay entradas perdidas disponibles/seleccionadas.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789"/>
         <source>Revert</source>
         <translation>Revertir</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789"/>
         <source>There are no uncommitted, unstaged changes available/selected.</source>
         <translation>No hay cambios sin commit, fuera del área de preparación, disponibles/seleccionados.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="795"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="813"/>
         <source>Restore Missing</source>
         <translation>Restore sobre elementos perdidos</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="824"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="842"/>
         <source>Differences</source>
         <translation>Diferencias</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="824"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="842"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation>No hay cambios pendientes de commit disponibles/seleccionados.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="876"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
         <source>Working Tree to Staging Area</source>
         <translation>Árbol de Trabajo a Área de Preparación (Staging Area)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="855"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="873"/>
         <source>Staging Area to HEAD Commit</source>
         <translation>Área de Preparación (Staging Area) a HEAD Commit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="877"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="895"/>
         <source>Working Tree to HEAD Commit</source>
         <translation>Árbol de Trabajo a HEAD Commit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="879"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="897"/>
         <source>Side-by-Side Difference</source>
         <translation>Diferencias Lado a Lado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="879"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="897"/>
         <source>Select the compare method.</source>
         <translation>Seleccioanr el método compare.</translation>
     </message>
@@ -25668,47 +25668,47 @@
         <translation>Diferencia Staging (área de trabajo) con HEAD</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="102"/>
         <source>Stage Selected Lines</source>
         <translation>Llevar las Líneas Seleccionadas a Stage (área de preparación)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="106"/>
         <source>Revert Selected Lines</source>
         <translation>Revertir Líneas Seleccionadas</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="110"/>
         <source>Stage Hunk</source>
         <translation>Llevar Fragmento (Hunk) a Stage (área de preparación)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="112"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="114"/>
         <source>Revert Hunk</source>
         <translation>Revertir Fragmento (Hunk)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="120"/>
         <source>Unstage Selected Lines</source>
         <translation>Sacar las Líneas Seleccionadas de Stage (área de preparación)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="122"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="124"/>
         <source>Unstage Hunk</source>
         <translation>Sacar Fragmento (Hunk) de Stage (área de preparación)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1188"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1212"/>
         <source>Revert selected lines</source>
         <translation>Revertir Líneas Seleccionadas</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1190"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1214"/>
         <source>Revert hunk</source>
         <translation>Revertir Fragmento (Hunk)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1191"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1215"/>
         <source>Are you sure you want to revert the selected changes?</source>
         <translation>¿Realmente desea revertir los cambios seleccionados?</translation>
     </message>
@@ -25718,67 +25718,67 @@
         <translation>Seleccionar acción del menú</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="189"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="191"/>
         <source>Amend</source>
         <translation>Enmendar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="195"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="197"/>
         <source>Unselect all from commit</source>
         <translation>Eliminar selección de todo del commit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="201"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="203"/>
         <source>Add the selected files</source>
         <translation>Añadir archivos seleccionados</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="204"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="206"/>
         <source>Stages all changes of the selected files</source>
         <translation>Todos los cambios al area de preparación (stage) para los archivos seleccionados</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="208"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210"/>
         <source>Unstages all changes of the selected files</source>
         <translation>Todos los cambios fuera del area de preparación (stage) para los archivos seleccionados</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="215"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="217"/>
         <source>Shows the differences of the selected entry in a separate dialog</source>
         <translation>Muestra las diferencias de la entrada seleccionada en un diálogo separado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="218"/>
-        <source>Differences Side-By-Side</source>
-        <translation>Diferencias Lado a Lado</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="220"/>
+        <source>Differences Side-By-Side</source>
+        <translation>Diferencias Lado a Lado</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="222"/>
         <source>Shows the differences of the selected entry side-by-side in a separate dialog</source>
         <translation>Muestra las diferencias de la entrada seleccionada lado a lado en un diálogo separado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="228"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="230"/>
         <source>Reverts the changes of the selected files</source>
         <translation>Revertir cambios de archivos seleccionados</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="235"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="237"/>
         <source>Forgets about the selected missing files</source>
         <translation>Olvidar los archivos perdidos seleccionados</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="239"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="241"/>
         <source>Restores the selected missing files</source>
         <translation>Restaurar los archivos perdidos seleccionados</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="246"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="248"/>
         <source>Edit the selected conflicting file</source>
         <translation>Editar el archivo con conflictos seleccionado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="255"/>
         <source>Adjusts the width of all columns to their contents</source>
         <translation>Ajustar el ancho de todas las columnas a su contenido</translation>
     </message>
@@ -25875,12 +25875,12 @@
         <translation>&amp;Forzar Operación</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="103"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="105"/>
         <source>Select Submodule Repository Directory</source>
         <translation>Seleccionar Directorio de Repositorio del Submódulo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="129"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="131"/>
         <source>Select Submodule Directory</source>
         <translation>Seleccionar Directorio del Submódulo</translation>
     </message>
@@ -26267,12 +26267,12 @@
 &lt;p&gt;Muestra una lista de los tags o branches del proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="95"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="97"/>
         <source>Commit</source>
         <translation>Commit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="95"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="97"/>
         <source>Name</source>
         <translation>Nombre</translation>
     </message>
@@ -26322,22 +26322,22 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="92"/>
         <source>Annotation Message</source>
         <translation>Mensaje de Anotación</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="96"/>
         <source>Git Branches List</source>
         <translation>Listado de Git Branches</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="133"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="133"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>El proceso {0} no se ha podido ejecutar. Verifique que está en la ruta de búsqueda (search path).</translation>
     </message>
@@ -26927,7 +26927,7 @@
 <context>
     <name>HelpDocsInstaller</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpDocsInstaller.py" line="239"/>
+        <location filename="../WebBrowser/QtHelp/HelpDocsInstaller.py" line="241"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be registered. &lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; no ha podido ser registrado.&lt;br /&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
@@ -27078,22 +27078,22 @@
         <translation>&amp;Buscar:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="205"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="211"/>
         <source>Open Link</source>
         <translation>Abrir Enlace</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="206"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="212"/>
         <source>Open Link in New Tab</source>
         <translation>Abrir Enlace en Nueva Pestaña</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="207"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="213"/>
         <source>Open Link in Background Tab</source>
         <translation>Abrir Enlace en Pestaña en Segundo Plano</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="209"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="215"/>
         <source>Open Link in New Window</source>
         <translation>Abrir Enlace en Nueva Ventana</translation>
     </message>
@@ -27101,22 +27101,22 @@
 <context>
     <name>HelpSearchWidget</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="145"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="150"/>
         <source>Open Link</source>
         <translation>Abrir Enlace</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="146"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="151"/>
         <source>Open Link in New Tab</source>
         <translation>Abrir Enlace en Nueva Pestaña</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="147"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="152"/>
         <source>Open Link in Background Tab</source>
         <translation>Abrir Enlace en Pestaña en Segundo Plano</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="149"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="154"/>
         <source>Open Link in New Window</source>
         <translation>Abrir Enlace en Nueva Ventana</translation>
     </message>
@@ -27124,22 +27124,22 @@
 <context>
     <name>HelpTocWidget</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="158"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="164"/>
         <source>Open Link</source>
         <translation>Abrir Enlace</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="159"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="165"/>
         <source>Open Link in New Tab</source>
         <translation>Abrir Enlace en Nueva Pestaña</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="160"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="166"/>
         <source>Open Link in Background Tab</source>
         <translation>Abrir Enlace en Pestaña en Segundo Plano</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="162"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="168"/>
         <source>Open Link in New Window</source>
         <translation>Abrir Enlace en Nueva Ventana</translation>
     </message>
@@ -28028,12 +28028,12 @@
         <translation>Ayuda</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="798"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="801"/>
         <source>&lt;p&gt;This part of the status bar displays the edit mode.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Esta zona de la barra de estado muestra el modo de edición.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="806"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="810"/>
         <source>&lt;p&gt;This part of the status bar displays the read only mode.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Esta zona de la barra de estado muestra el modo de solo lectura.&lt;/p&gt;</translation>
     </message>
@@ -28043,111 +28043,111 @@
         <translation>&lt;p&gt;Esta zona de la barra de estado muestra la dirección del cursor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="790"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="792"/>
         <source>&lt;p&gt;This part of the status bar displays the size of the binary data.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Esta zona de la barra de estado muestra el tamaño de los datos binarios.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="862"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="867"/>
         <source>ro</source>
         <translation>ro</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="862"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="867"/>
         <source>rw</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="880"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="885"/>
         <source>Overwrite</source>
         <translation>Sobreescribir</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="880"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="885"/>
         <source>Insert</source>
         <translation>Insertar</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="942"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="947"/>
         <source>Open binary file in new window</source>
         <translation>Abrir archivo binario en ventana nueva</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1061"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1066"/>
         <source>All Files (*)</source>
         <translation>Todos los archivos (*)</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="963"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="968"/>
         <source>The loaded file has unsaved changes.</source>
         <translation>El archivo cargado tiene cambios sin guardar.</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="981"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="986"/>
         <source>The file &apos;{0}&apos; does not exist.</source>
         <translation>El archivo {0} no existe.</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="988"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="993"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation>No se puede leer el archivo {0}:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1014"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1019"/>
         <source>Open binary file</source>
         <translation>Abrir archivo binario</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1071"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1076"/>
         <source>Save binary file</source>
         <translation>Guardar archivo binario</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1156"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1161"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1181"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1186"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation>No se puede guardar el archivo {0}:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1187"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1192"/>
         <source>File saved</source>
         <translation>Archivo guardado</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1156"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1161"/>
         <source>Save to readable file</source>
         <translation>Guardar como archivo legible</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1140"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1145"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation>Archivos de Texto (*.txt);;Todos los Archivos (*)</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1140"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1145"/>
         <source>Text Files (*.txt)</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1223"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1228"/>
         <source>Untitled</source>
         <translation>Sin título</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1227"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1232"/>
         <source>{0}[*] - {1}</source>
         <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1227"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1232"/>
         <source>Hex Editor</source>
         <translation>Editor Hexadecimal</translation>
     </message>
@@ -28167,12 +28167,12 @@
         <translation>&lt;b&gt;Reemplazar&lt;/b&gt;&lt;p&gt;Buscar datos y reemplazarlos. Se muestra un diálogo para introducir los datos de búsqueda y los datos de reemplazamiento en varios formatos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="782"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="783"/>
         <source>&lt;p&gt;This part of the status bar displays some selection information.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Esta zona de la barra de estado muestra información de la selección.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="851"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="856"/>
         <source>Selection: -</source>
         <comment>no selection available</comment>
         <translation>Selección: -</translation>
@@ -28193,18 +28193,18 @@
         <translation>&lt;b&gt;Ir a Desplazamiento&lt;/b&gt;&lt;p&gt;Ir a una dirección específica. Se muestra un diálogo para introducir los datos de movimiento.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="826"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="831"/>
         <source>Address: {0}</source>
         <translation>Dirección: {0}</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="845"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="850"/>
         <source>Selection: {0} - {1} ({2} Bytes)</source>
         <comment>0: start, 1: end, 2: selection length</comment>
         <translation>Selección: {0} - {1} ({2} Bytes)</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="899"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="904"/>
         <source>Size: {0}</source>
         <translation>Tamaño: {0}</translation>
     </message>
@@ -28214,22 +28214,22 @@
         <translation>Abrir Proyectos &amp;Recientes</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1431"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1436"/>
         <source>&amp;Clear</source>
         <translation>&amp;Limpiar</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1181"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1186"/>
         <source>eric Hex Editor</source>
         <translation>Editor Hexadecimal de eric</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1284"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1289"/>
         <source>About eric Hex Editor</source>
         <translation>Acerca del Editor Hexadecimal de eric</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1284"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1289"/>
         <source>The eric Hex Editor is a simple editor component to edit binary files.</source>
         <translation>El Editor Hexadecimal de eric es un componente editor simple para editar archivos binarios.</translation>
     </message>
@@ -29320,7 +29320,7 @@
         <translation>Hacer merge con padre actual</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBackoutDialog.py" line="174"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBackoutDialog.py" line="176"/>
         <source>Backed out changeset &lt;{0}&gt;.</source>
         <translation>Se ha hecho un respaldo del changeset &lt;{0}&gt;.</translation>
     </message>
@@ -29348,7 +29348,7 @@
 <context>
     <name>HgBookmarkDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="46"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="47"/>
         <source>Define Bookmark</source>
         <translation>Definir Marcador</translation>
     </message>
@@ -29453,7 +29453,7 @@
         <translation>Seleccionar revisión tip del repositorio</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="43"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="44"/>
         <source>Move Bookmark</source>
         <translation>Mover Marcador</translation>
     </message>
@@ -29516,17 +29516,17 @@
         <translation>Errores</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="46"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="48"/>
         <source>Mercurial Incoming Bookmarks</source>
         <translation>Marcadores de Mercurial Entrantes</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="48"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="50"/>
         <source>Mercurial Outgoing Bookmarks</source>
         <translation>Marcadores de Mercurial Salientes</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="121"/>
         <source>no bookmarks found</source>
         <translation>no se han encontrado marcadores</translation>
     </message>
@@ -29578,7 +29578,7 @@
         <translation>Errores</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="125"/>
         <source>no bookmarks defined</source>
         <translation>no se han definido marcadores</translation>
     </message>
@@ -29593,67 +29593,67 @@
         <translation>Pulsar para actualizar la visualización de marcadores</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="247"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="258"/>
         <source>Switch to</source>
         <translation>Cambiar a</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="251"/>
-        <source>Delete</source>
-        <translation>Borrar</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="254"/>
-        <source>Rename</source>
-        <translation>Renombrar</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="258"/>
-        <source>Pull</source>
-        <translation>Hacer Pull</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="262"/>
+        <source>Delete</source>
+        <translation>Borrar</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="265"/>
+        <source>Rename</source>
+        <translation>Renombrar</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="269"/>
+        <source>Pull</source>
+        <translation>Hacer Pull</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="273"/>
         <source>Push</source>
         <translation>Hacer Push</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="299"/>
         <source>Switch</source>
         <translation>Hacer switch</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="299"/>
         <source>The project should be reread. Do this now?</source>
         <translation>El proyecto debería ser cargado de nuevo. ¿Desea hacerlo ahora?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="318"/>
         <source>Delete Bookmark</source>
         <translation>Borrar Marcador</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="318"/>
         <source>&lt;p&gt;Shall the bookmark &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation>&lt;p&gt;¿Desea realmente borrar el marcador &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="323"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="334"/>
         <source>Rename Bookmark</source>
         <translation>Renombrar Marcador</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="323"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="334"/>
         <source>&lt;p&gt;Enter the new name for bookmark &lt;b&gt;{0}&lt;/b&gt;:&lt;/p&gt;</source>
         <translation>&lt;p&gt;Introducir el nuevo nombre para el marcador &lt;b&gt;{0}&lt;/b&gt;:&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="267"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="278"/>
         <source>Push Current</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="272"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="283"/>
         <source>Push All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -30077,7 +30077,7 @@
         <translation>Pulsar para marcar las entradas seleccionadas como &apos;resolved&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="173"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="183"/>
         <source>Resolved</source>
         <translation>Resolved</translation>
     </message>
@@ -30087,7 +30087,7 @@
         <translation>Pulsar para marcar las entradas seleccionadas como &apos;unresolved&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="171"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="181"/>
         <source>Unresolved</source>
         <translation>Unresolved</translation>
     </message>
@@ -30117,17 +30117,17 @@
         <translation>Errores</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="51"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="54"/>
         <source>&amp;Refresh</source>
         <translation>Actualiza&amp;r</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="53"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="56"/>
         <source>Press to refresh the list of conflicts</source>
         <translation>Pulsar para actualizar la lista de conflictos</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="175"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="185"/>
         <source>Unknown Status</source>
         <translation>Estado Desconocido</translation>
     </message>
@@ -30270,52 +30270,52 @@
         <translation>Errores</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="101"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="101"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>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/HgDiffDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="120"/>
         <source>There is no difference.</source>
         <translation>No hay ninguna diferencia.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="245"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="254"/>
         <source>Save Diff</source>
         <translation>Guardar Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="213"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="222"/>
         <source>Patch Files (*.diff)</source>
         <translation>Archivos de Parche (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="245"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="254"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de parche &lt;b&gt;{0}&lt;/b&gt; no puede ser guardado.&lt;br /&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="230"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="239"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de parche &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="91"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="93"/>
         <source>Patch Contents</source>
         <translation>Contenido del Patch</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="137"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="143"/>
         <source>&lt;Start&gt;</source>
         <translation>&lt;Inicio&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="138"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="144"/>
         <source>&lt;End&gt;</source>
         <translation>&lt;Fin&gt;</translation>
     </message>
@@ -30592,7 +30592,7 @@
         <translation>Seleccionar la categoría sobre la que filtrar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="218"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="228"/>
         <source>Revision</source>
         <translation>Revisión</translation>
     </message>
@@ -30627,7 +30627,7 @@
         <translation>&lt;b&gt;Errores de Mercurial log&lt;/b&gt;&lt;p&gt;Muestra los posibles mensajes de error.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="95"/>
         <source>no signatures found</source>
         <translation>no se han encontrado firmas</translation>
     </message>
@@ -31105,17 +31105,17 @@
         <translation>Seleccione el campo de filtrado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="131"/>
         <source>Revision</source>
         <translation>Revisión</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="129"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="132"/>
         <source>Author</source>
         <translation>Autor</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="130"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="133"/>
         <source>Message</source>
         <translation>Mensaje</translation>
     </message>
@@ -31175,17 +31175,17 @@
         <translation>&lt;b&gt;Errores de Mercurial log&lt;/b&gt;&lt;p&gt;Muestra los posibles mensajes de error del comando hg log.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="208"/>
         <source>Added</source>
         <translation>Añadido</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="206"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="209"/>
         <source>Deleted</source>
         <translation>Borrado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="207"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="210"/>
         <source>Modified</source>
         <translation>Modificado</translation>
     </message>
@@ -31200,7 +31200,7 @@
         <translation>Tags</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="842"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="847"/>
         <source>Mercurial Error</source>
         <translation>Error de Mercurial</translation>
     </message>
@@ -31220,7 +31220,7 @@
         <translation>Seleccione la branch para filtrar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="190"/>
         <source>All</source>
         <translation>Todo</translation>
     </message>
@@ -31235,49 +31235,49 @@
         <translation>Mercurial Log (Saliente)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="222"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="225"/>
         <source>Bookmarks</source>
         <translation>Marcadores</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="117"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="120"/>
         <source>Press to refresh the list of changesets</source>
         <translation>Pulsar para actualizar la lista de changesets</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="118"/>
         <source>&amp;Refresh</source>
         <translation>Actualiza&amp;r</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="132"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="135"/>
         <source>Phase</source>
         <translation>Fase</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="274"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="277"/>
         <source>Change the phase of the selected revisions</source>
         <translation>Cambiar la fase de las revisiones seleccionadas</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="276"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="279"/>
         <source>&lt;b&gt;Change Phase&lt;/b&gt;
 &lt;p&gt;This changes the phase of the selected revisions. The selected revisions have to have the same current phase.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cambiar Fase&lt;/b&gt;
 &lt;p&gt;Cambia la fase de las revisiones seleccionadas. Las revisiones seleccionadas deben tener la misma fase actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="272"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="275"/>
         <source>Change Phase</source>
         <translation>Cambiar Fase</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1997"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2016"/>
         <source>Copy Changesets</source>
         <translation>Copiar Changesets</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2302"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2321"/>
         <source>The project should be reread. Do this now?</source>
         <translation>El proyecto debería ser cargado de nuevo. ¿Desea hacerlo ahora?</translation>
     </message>
@@ -31287,42 +31287,42 @@
         <translation>Seleccionar acción del menú</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="266"/>
         <source>Copy the selected changesets to the current branch</source>
         <translation>Pulsar para copiar los changesets seleccionados a la branch actual</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="281"/>
-        <source>Tag</source>
-        <translation>Aplicar Tag</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="284"/>
+        <source>Tag</source>
+        <translation>Aplicar Tag</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="287"/>
         <source>Tag the selected revision</source>
         <translation>Aplicar Tag a la revisión seleccionada</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2068"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2087"/>
         <source>Switch</source>
         <translation>Hacer switch</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="294"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="297"/>
         <source>Switch the working directory to the selected revision</source>
         <translation>Hacer switch del directorio de trabajo a la revisión seleccionada</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="317"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="320"/>
         <source>Pull Large Files</source>
         <translation>Hacer pull de archivos grandes</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="319"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="322"/>
         <source>Pull large files for selected revisions</source>
         <translation>Hacer pull de archivos grandes para revisiones seleccionadas</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1135"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1146"/>
         <source>{0} (large file)</source>
         <translation>{0} (archivo grande)</translation>
     </message>
@@ -31347,137 +31347,137 @@
         <translation>Pulsar para encontrar la ocurrencia siguiente</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="128"/>
         <source>Find</source>
         <translation>Buscar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="126"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="129"/>
         <source>Filter</source>
         <translation>Filtro</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="172"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Etiquetas&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="175"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="178"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Marcadores&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2443"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2462"/>
         <source>Find Commit</source>
         <translation>Buscar Commit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2443"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2462"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation>&apos;{0}&apos; no se ha encontrado.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="134"/>
         <source>File</source>
         <translation>Archivo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="211"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="214"/>
         <source>Draft</source>
         <translation>Borrador</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="212"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="215"/>
         <source>Public</source>
         <translation>Público</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="213"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="216"/>
         <source>Secret</source>
         <translation>Secreto</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2165"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2184"/>
         <source>Pull Changes</source>
         <translation>Hacer Pull de Cambios</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="315"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="318"/>
         <source>Pull changes from a remote repository</source>
         <translation>Hacer pull de cambios desde un repositorio remoto</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="324"/>
-        <source>Push Selected Changes</source>
-        <translation>Hacer Pull de Cambios Seleccionados</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="327"/>
-        <source>Push changes of the selected changeset and its ancestors to a remote repository</source>
-        <translation>Hacer push de cambios del changeset seleccionado y sus ancestores a un repositorio remoto</translation>
+        <source>Push Selected Changes</source>
+        <translation>Hacer Pull de Cambios Seleccionados</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="330"/>
-        <source>Push All Changes</source>
-        <translation>Hacer Push de Todos los Cambios</translation>
+        <source>Push changes of the selected changeset and its ancestors to a remote repository</source>
+        <translation>Hacer push de cambios del changeset seleccionado y sus ancestores a un repositorio remoto</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="333"/>
+        <source>Push All Changes</source>
+        <translation>Hacer Push de Todos los Cambios</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="336"/>
         <source>Push all changes to a remote repository</source>
         <translation>Hacer push de todos los cambios a un repositorio remoto</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2211"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2230"/>
         <source>Strip Changesets</source>
         <translation>Hacer strip de Changesets</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="376"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="379"/>
         <source>Strip changesets from a repository</source>
         <translation>Hacer strip de changesets desde un repositorio remoto</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="299"/>
-        <source>Define Bookmark...</source>
-        <translation>Definir marcador...</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="302"/>
+        <source>Define Bookmark...</source>
+        <translation>Definir marcador...</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="305"/>
         <source>Bookmark the selected revision</source>
         <translation>Establecer marcador para la revisión seleccionada</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="304"/>
-        <source>Move Bookmark...</source>
-        <translation>Mover Marcador...</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="307"/>
+        <source>Move Bookmark...</source>
+        <translation>Mover Marcador...</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="310"/>
         <source>Move bookmark to the selected revision</source>
         <translation>Mover marcador a la revisión seleccionada</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2091"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2110"/>
         <source>Define Bookmark</source>
         <translation>Definir Marcador</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2091"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2110"/>
         <source>Enter bookmark name for changeset &quot;{0}&quot;:</source>
         <translation>Introducir nombre de marcador para el changeset &quot;{0}&quot;:</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2134"/>
         <source>Move Bookmark</source>
         <translation>Mover Marcador</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2134"/>
         <source>Select the bookmark to be moved  to changeset &quot;{0}&quot;:</source>
         <translation>Seleccionar el marcador a mover al changeset &quot;{0}&quot;:</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2054"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2073"/>
         <source>Select bookmark to switch to (leave empty to use revision):</source>
         <translation>Seleccionar marcador al que cambiar (dejar vacío para usar revisión):</translation>
     </message>
@@ -31492,144 +31492,144 @@
         <translation>Pulsar para mover hacia abajo en el listado de log</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="175"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Latest Tag&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;Último Tag&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="156"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branch&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;{4}&lt;tr&gt;&lt;td&gt;&lt;b&gt;Message&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation>&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Revisión&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Fecha&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Autor&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branch&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;{4}&lt;tr&gt;&lt;td&gt;&lt;b&gt;Mensaje&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="163"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Padres&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="166"/>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Padres&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="169"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Children&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;Hijos&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="266"/>
-        <source>Merge with Changeset</source>
-        <translation>Hacer merge con Chageset</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="269"/>
+        <source>Merge with Changeset</source>
+        <translation>Hacer merge con Chageset</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="272"/>
         <source>Merge the working directory with the selected changeset</source>
         <translation>Hacer merge del directorio de trabajo con el changeset seleccionado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="338"/>
-        <source>Create Changegroup</source>
-        <translation>Crear Changegroup</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="341"/>
+        <source>Create Changegroup</source>
+        <translation>Crear Changegroup</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="344"/>
         <source>Create a changegroup file containing the selected changesets</source>
         <translation>Crear un archivo de changegroup conteniendo los changesets seleccionados</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="343"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="346"/>
         <source>&lt;b&gt;Create Changegroup&lt;/b&gt;
 &lt;p&gt;This creates a changegroup file containing the selected revisions. If no revisions are selected, all changesets will be bundled. If one revision is selected, it will be interpreted as the base revision. Otherwise the lowest revision will be used as the base revision and all other revision will be bundled. If the dialog is showing outgoing changesets, all selected changesets will be bundled.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Crear Changegroup&lt;/b&gt;
 &lt;p&gt;Esto crea un archivo de changegroup que contiene las revisiones seleccionadas. Si no se han seleccionado revisiones, se incluirán todos los changesets. Si se ha seleccionado una revisión, se tomará como revisión base. En cualquier otro lugar, la revisión más baja se usará como revisión base y todas las otras revisiones se incluirán en el archivo. Si el diálogo muestra changesets salientes, todos los changesets seleccionados se incluirán en el archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2302"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2321"/>
         <source>Apply Changegroup</source>
         <translation>Aplicar Changegroup</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="355"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="358"/>
         <source>Apply the currently viewed changegroup file</source>
         <translation>Aplicar el archivo de changegroup mostrado actualmente</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="360"/>
-        <source>Sign Revisions</source>
-        <translation>Firmar Revisiones</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="363"/>
+        <source>Sign Revisions</source>
+        <translation>Firmar Revisiones</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="366"/>
         <source>Add a signature for the selected revisions</source>
         <translation>Añadir una firma para las revisiones seleccionadas</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="365"/>
-        <source>Verify Signatures</source>
-        <translation>Verificar Firmas</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="368"/>
+        <source>Verify Signatures</source>
+        <translation>Verificar Firmas</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="371"/>
         <source>Verify all signatures there may be for the selected revision</source>
         <translation>Verificar todas las firmas que puede haber para la revisión seleccionada</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="381"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="384"/>
         <source>Select All Entries</source>
         <translation>Seleccionar Todas las Entradas</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="383"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="386"/>
         <source>Deselect All Entries</source>
         <translation>Quitar Selección de Todas las Entradas</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1376"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1392"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation>Mostrar Diff lado a lado con el Parent {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1387"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1403"/>
         <source>&lt;a href=&quot;sbsdiff:{0}_{1}&quot;&gt;Side-by-Side Compare&lt;/a&gt;</source>
         <translation>&lt;a href=&quot;sbsdiff:{0}_{1}&quot;&gt;Comparar lado a lado&lt;/a&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1523"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1539"/>
         <source>Pull Selected Changes</source>
         <translation>Hacer Pull de Cambios Seleccionados</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2487"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2506"/>
         <source>Differences</source>
         <translation>Diferencias</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2497"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2516"/>
         <source>Differences to Parent {0}</source>
         <translation>Diferencias con el Parent {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2513"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2532"/>
         <source>Diff to Parent {0}{1}</source>
         <translation>Diff con el Parent {0}{1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2538"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2557"/>
         <source>There is no difference.</source>
         <translation>No hay ninguna diferencia.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2680"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2699"/>
         <source>Save Diff</source>
         <translation>Guardar Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2648"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2667"/>
         <source>Patch Files (*.diff)</source>
         <translation>Archivos de Parche (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2665"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2684"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de parche &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2680"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2699"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de parche &lt;b&gt;{0}&lt;/b&gt; no puede ser guardado.&lt;br /&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
@@ -31639,7 +31639,7 @@
         <translation>&lt;a href=&quot;save:me&quot;&gt;Guardar&lt;/a&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2486"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2505"/>
         <source>Generating differences ...</source>
         <translation>Generando diferencias ...</translation>
     </message>
@@ -31649,12 +31649,12 @@
         <translation>Registro completo de Mercurial</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="286"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="289"/>
         <source>Close Heads</source>
         <translation>Cerrar Heads</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="289"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="292"/>
         <source>Close the selected heads</source>
         <translation>Cerrar las heads seleccionadas</translation>
     </message>
@@ -33693,22 +33693,22 @@
         <translation>La lista de guards ha cambiado. ¿Deben aplicarse los cambios?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="206"/>
         <source>Remove Guards</source>
         <translation>Eliminar Guards</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="206"/>
         <source>Do you really want to remove the selected guards?</source>
         <translation>¿Desea realmente eliminar los guards seleccionados?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="253"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="258"/>
         <source>Apply Guard Definitions</source>
         <translation>Aplicar Definiciones de Guards</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="253"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="258"/>
         <source>&lt;p&gt;The defined guards could not be applied.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Los guards definidos no se han podido aplicar.&lt;/p&gt;&lt;p&gt;Causa: {0}&lt;/p&gt;</translation>
     </message>
@@ -33769,7 +33769,7 @@
         <translation>Seleccionar Guards</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesGuardsSelectionDialog.py" line="44"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesGuardsSelectionDialog.py" line="46"/>
         <source>Active Guards</source>
         <translation>Activar Guards</translation>
     </message>
@@ -33782,7 +33782,7 @@
         <translation>Mensaje de Commit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py" line="118"/>
         <source>Error: </source>
         <translation>Error: </translation>
     </message>
@@ -33852,32 +33852,32 @@
         <translation>Errores</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="138"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="145"/>
         <source>no patches found</source>
         <translation>no se han encontrado patches</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="43"/>
-        <source>applied</source>
-        <translation>aplicado</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="45"/>
-        <source>guarded</source>
-        <translation>con guard</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="46"/>
+        <source>applied</source>
+        <translation>aplicado</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="48"/>
+        <source>guarded</source>
+        <translation>con guard</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="49"/>
         <source>missing</source>
         <translation>perdido</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="193"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="205"/>
         <source>unknown</source>
         <translation>desconocido</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="44"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="47"/>
         <source>not applied</source>
         <translation>sin aplicar</translation>
     </message>
@@ -34031,12 +34031,12 @@
         <translation>Muestra una lista de colas disponibles (cola activa en negrita)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="67"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="68"/>
         <source>Refresh</source>
         <translation>Actualizar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="69"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="70"/>
         <source>Press to refresh the queues list</source>
         <translation>Pulsar para actualizar el listado de colas</translation>
     </message>
@@ -34755,32 +34755,32 @@
         <translation>Errores</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="49"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="52"/>
         <source>&amp;Refresh</source>
         <translation>Actualiza&amp;r</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="51"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="54"/>
         <source>Press to refresh the list of shelves</source>
         <translation>Pulsar para actualizar la lista de shelves</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="60"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="63"/>
         <source>Restore selected shelve</source>
         <translation>Restaurar shelve seleccionado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="62"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="65"/>
         <source>Delete selected shelves</source>
         <translation>Borrar shelves seleccionados</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="64"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="67"/>
         <source>Delete all shelves</source>
         <translation>Borrar todos los shelves</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="266"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="280"/>
         <source>%n file(s) changed</source>
         <translation>
             <numerusform>%n archivo cambiado</numerusform>
@@ -34788,7 +34788,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="268"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="282"/>
         <source>%n line(s) inserted</source>
         <translation>
             <numerusform>%n línea insertada</numerusform>
@@ -34796,7 +34796,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="270"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="284"/>
         <source>%n line(s) deleted</source>
         <translation>
             <numerusform>%n línea borrada</numerusform>
@@ -34878,7 +34878,7 @@
 <context>
     <name>HgStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="310"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="314"/>
         <source>Mercurial Status</source>
         <translation>Mercurial Status</translation>
     </message>
@@ -34915,82 +34915,82 @@
         <translation>Presione para actualizar el estado visualizado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="124"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="126"/>
         <source>Commit the selected changes</source>
         <translation>Aplicar commit a los cambios seleccionados</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="190"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="192"/>
         <source>Adjust column sizes</source>
         <translation>Adjustar tamaño de columnas</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="94"/>
-        <source>added</source>
-        <translation>añadido</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="97"/>
-        <source>modified</source>
-        <translation>modificado</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="98"/>
-        <source>removed</source>
-        <translation>eliminado</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="99"/>
-        <source>not tracked</source>
-        <translation>sin seguimiento</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="95"/>
-        <source>normal</source>
-        <translation>normal</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="96"/>
-        <source>ignored</source>
-        <translation>ignorado</translation>
+        <source>added</source>
+        <translation>añadido</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="99"/>
+        <source>modified</source>
+        <translation>modificado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="100"/>
+        <source>removed</source>
+        <translation>eliminado</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="101"/>
+        <source>not tracked</source>
+        <translation>sin seguimiento</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="97"/>
+        <source>normal</source>
+        <translation>normal</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="98"/>
+        <source>ignored</source>
+        <translation>ignorado</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="102"/>
         <source>missing</source>
         <translation>perdido</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="494"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="506"/>
         <source>Commit</source>
         <translation>Commit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="660"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="672"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation>No hay cambios pendientes de commit disponibles/seleccionados.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="558"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="570"/>
         <source>Add</source>
         <translation>Añadir</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="558"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="570"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation>No hay entradas sin versionar disponibles/seleccionadas.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="622"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="634"/>
         <source>Revert</source>
         <translation>Revertir</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="581"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="593"/>
         <source>Remove</source>
         <translation>Eliminar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="622"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="634"/>
         <source>There are no missing entries available/selected.</source>
         <translation>No hay entradas perdidas disponibles/seleccionadas.</translation>
     </message>
@@ -35005,102 +35005,102 @@
         <translation>Seleccionar el status de las entradas a mostrar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="174"/>
         <source>Restore missing</source>
         <translation>Restore sobre elementos perdidos</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="416"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="428"/>
         <source>all</source>
         <translation>todo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="640"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="652"/>
         <source>Differences</source>
         <translation>Diferencias</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="494"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="506"/>
         <source>There are no entries selected to be committed.</source>
         <translation>No hay entradas seleccionadas sobre las que aplicar commit.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="125"/>
-        <source>Select all for commit</source>
-        <translation>Seleccionar todo para hacer commit</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="307"/>
-        <source>Mercurial Queue Repository Status</source>
-        <translation>Estado de Cola Repositorio Mercurial</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="667"/>
-        <source>Side-by-Side Diff</source>
-        <translation>Lado a Lado Diff</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="667"/>
-        <source>Only one file with uncommitted changes must be selected.</source>
-        <translation>Se debe seleccionar solamente un archivo con cambios sin commit.</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="135"/>
-        <source>Add as Large Files</source>
-        <translation>Añadir como Archivo Grande</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="140"/>
-        <source>Add as Normal Files</source>
-        <translation>Añadir como Archivo Normal</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="168"/>
-        <source>Forget missing</source>
-        <translation>Olvidar elementos perdidos</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="127"/>
-        <source>Unselect all from commit</source>
-        <translation>Quitar selección de todo del commit</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="134"/>
-        <source>Add the selected files</source>
-        <translation>Añadir los archivos seleccionados</translation>
+        <source>Select all for commit</source>
+        <translation>Seleccionar todo para hacer commit</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="311"/>
+        <source>Mercurial Queue Repository Status</source>
+        <translation>Estado de Cola Repositorio Mercurial</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="679"/>
+        <source>Side-by-Side Diff</source>
+        <translation>Lado a Lado Diff</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="679"/>
+        <source>Only one file with uncommitted changes must be selected.</source>
+        <translation>Se debe seleccionar solamente un archivo con cambios sin commit.</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="137"/>
-        <source>Add the selected files as a large files using the &apos;Large Files&apos; extension</source>
-        <translation>Añadir los archivos seleccionados como archivos grandes utilizando la extensión &apos;Archivos Grandes&apos;</translation>
+        <source>Add as Large Files</source>
+        <translation>Añadir como Archivo Grande</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="142"/>
+        <source>Add as Normal Files</source>
+        <translation>Añadir como Archivo Normal</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="170"/>
+        <source>Forget missing</source>
+        <translation>Olvidar elementos perdidos</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="129"/>
+        <source>Unselect all from commit</source>
+        <translation>Quitar selección de todo del commit</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="136"/>
+        <source>Add the selected files</source>
+        <translation>Añadir los archivos seleccionados</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="139"/>
+        <source>Add the selected files as a large files using the &apos;Large Files&apos; extension</source>
+        <translation>Añadir los archivos seleccionados como archivos grandes utilizando la extensión &apos;Archivos Grandes&apos;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="144"/>
         <source>Add the selected files as a normal files using the &apos;Large Files&apos; extension</source>
         <translation>Añadir los archivos seleccionados como archivos normales utilizando la extensión &apos;Archivos Grandes&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="150"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="152"/>
         <source>Shows the differences of the selected entry in a separate dialog</source>
         <translation>Muestra las diferencias de la entrada seleccionada en un diálogo aparte</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="153"/>
-        <source>Differences Side-By-Side</source>
-        <translation>Diferencias Lado A Lado</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="155"/>
+        <source>Differences Side-By-Side</source>
+        <translation>Diferencias Lado A Lado</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="157"/>
         <source>Shows the differences of the selected entry side-by-side in a separate dialog</source>
         <translation>Muestra las diferencias de la entrada seleccionada lado a lado en un diálogo aparte</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="163"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="165"/>
         <source>Reverts the changes of the selected files</source>
         <translation>Revierte los cambios en los archivos seleccionados</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="172"/>
         <source>Forgets about the selected missing files</source>
         <translation>Olvida los archivos perdidos seleccionados</translation>
     </message>
@@ -35110,37 +35110,37 @@
         <translation>Seleccionar acción del menú</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="174"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="176"/>
         <source>Restores the selected missing files</source>
         <translation>Restaura los archivos perdidos seleccionados</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="194"/>
         <source>Adjusts the width of all columns to their contents</source>
         <translation>Ajusta el ancho de todas las columnas a sus contenidos</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="179"/>
-        <source>Commit Merge</source>
-        <translation>Commit Merge</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="181"/>
-        <source>Commit all the merged changes.</source>
-        <translation>Hacer commit de todos los cambios con merge.</translation>
+        <source>Commit Merge</source>
+        <translation>Commit Merge</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="183"/>
-        <source>Abort Merge</source>
-        <translation>Abortar Merge</translation>
+        <source>Commit all the merged changes.</source>
+        <translation>Hacer commit de todos los cambios con merge.</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="185"/>
+        <source>Abort Merge</source>
+        <translation>Abortar Merge</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="187"/>
         <source>Abort an uncommitted merge and lose all changes</source>
         <translation>Abortar un merge sin commit y perder todos los cambios</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="761"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="779"/>
         <source>Merge</source>
         <translation>Hacer merge</translation>
     </message>
@@ -35295,152 +35295,152 @@
         <translation>Pulsar para actualizar la visualización del sumario</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="234"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="236"/>
         <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>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="238"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="240"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Etiquetas&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="242"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="244"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Message&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;Mensaje de Commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="248"/>
-        <source>empty repository</source>
-        <translation>repositorio vacío</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="250"/>
+        <source>empty repository</source>
+        <translation>repositorio vacío</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="252"/>
         <source>no revision checked out</source>
         <translation>revisión sin check-out</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="251"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="253"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Remarks&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;Observaciones&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="255"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="257"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branch&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;Branch&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="265"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Marcadores&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="270"/>
-        <source>{0} modified</source>
-        <translation>{0} modificado</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="272"/>
-        <source>{0} added</source>
-        <translation>{0} añadido</translation>
+        <source>{0} modified</source>
+        <translation>{0} modificado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="274"/>
-        <source>{0} removed</source>
-        <translation>{0} eliminado</translation>
+        <source>{0} added</source>
+        <translation>{0} añadido</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="276"/>
-        <source>{0} renamed</source>
-        <translation>{0} renombrado</translation>
+        <source>{0} removed</source>
+        <translation>{0} eliminado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="278"/>
-        <source>{0} copied</source>
-        <translation>{0} copiado</translation>
+        <source>{0} renamed</source>
+        <translation>{0} renombrado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="280"/>
-        <source>{0} deleted</source>
-        <translation>{0} borrado</translation>
+        <source>{0} copied</source>
+        <translation>{0} copiado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="282"/>
-        <source>{0} unknown</source>
-        <translation>{0} desconocido</translation>
+        <source>{0} deleted</source>
+        <translation>{0} borrado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="284"/>
-        <source>{0} ignored</source>
-        <translation>{0} ignorado</translation>
+        <source>{0} unknown</source>
+        <translation>{0} desconocido</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="286"/>
+        <source>{0} ignored</source>
+        <translation>{0} ignorado</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="288"/>
         <source>{0} unresolved</source>
         <translation>{0} sin resolver</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="289"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="291"/>
         <source>{0} subrepos</source>
         <translation>{0} subrepos</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="292"/>
-        <source>Merge needed</source>
-        <translation>Es necesario un merge</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="294"/>
-        <source>New Branch</source>
-        <translation>Nueva Branch</translation>
+        <source>Merge needed</source>
+        <translation>Es necesario un merge</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="296"/>
-        <source>Head is closed</source>
-        <translation>Head está cerrada</translation>
+        <source>New Branch</source>
+        <translation>Nueva Branch</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="298"/>
-        <source>No commit required</source>
-        <translation>No es necesario hacer commit</translation>
+        <source>Head is closed</source>
+        <translation>Head está cerrada</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="300"/>
+        <source>No commit required</source>
+        <translation>No es necesario hacer commit</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="302"/>
         <source>New Branch Head</source>
         <translation>Nueva Branch Head</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="301"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="303"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Status&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;Estado del Commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="306"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="308"/>
         <source>current</source>
         <translation>actual</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="321"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="323"/>
         <source>unknown status</source>
         <translation>estado desconocido</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="322"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="324"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Update Status&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;Estado del Update&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="327"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="329"/>
         <source>synched</source>
         <translation>sincronizado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="331"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="333"/>
         <source>1 or more incoming changesets</source>
         <translation>1 o más changesets entrando</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="335"/>
         <source>%n outgoing changeset(s)</source>
         <translation>
             <numerusform>%n changeset saliendo</numerusform>
@@ -35448,42 +35448,42 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="342"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="344"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Remote Status&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;Estado Remoto&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="349"/>
         <source>empty queue</source>
         <translation>cola vacía</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="351"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="353"/>
         <source>{0} applied</source>
         <translation>{0} aplicado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="354"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="356"/>
         <source>{0} unapplied</source>
         <translation>{0} sin aplicar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="357"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="359"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Queues Status&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;Estado de las Colas&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="371"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="373"/>
         <source>&lt;p&gt;No status information available.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No hay información de estado disponible.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="230"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="232"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Padre #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="308"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="310"/>
         <source>%n new changeset(s)&lt;br/&gt;Update required</source>
         <translation>
             <numerusform>%n nuevo changeset&lt;br/&gt;Necesario un Update</numerusform>
@@ -35491,7 +35491,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="312"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="314"/>
         <source>%n new changeset(s)</source>
         <translation>
             <numerusform>%n nuevo changeset</numerusform>
@@ -35499,7 +35499,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="314"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="316"/>
         <source>%n branch head(s)</source>
         <translation>
             <numerusform>%n branch head</numerusform>
@@ -35507,13 +35507,13 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="316"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="318"/>
         <source>{0}&lt;br/&gt;{1}&lt;br/&gt;Merge required</source>
         <comment>0 is changesets, 1 is branch heads</comment>
         <translation>{0}&lt;br/&gt;{1}&lt;br/&gt;Necesario un Merge</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="336"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="338"/>
         <source>%n incoming bookmark(s)</source>
         <translation>
             <numerusform>%n marcador entrante</numerusform>
@@ -35521,7 +35521,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="339"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="341"/>
         <source>%n outgoing bookmark(s)</source>
         <translation>
             <numerusform>%n marcador saliente</numerusform>
@@ -35529,12 +35529,12 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="362"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="364"/>
         <source>No files to upload</source>
         <translation>Sin archivos para subir</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="364"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="366"/>
         <source>%n file(s) to upload</source>
         <translation>
             <numerusform>%n archivo para subir</numerusform>
@@ -35542,7 +35542,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="368"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Large Files&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;Archivos Grandes&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
@@ -35594,72 +35594,72 @@
         <translation>Errores</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="90"/>
         <source>Mercurial Branches List</source>
         <translation>Lista de Branches de Subversion</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="91"/>
         <source>Status</source>
         <translation>Estado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="200"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="211"/>
         <source>active</source>
         <translation>activo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="216"/>
         <source>yes</source>
         <translation>si</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="42"/>
-        <source>&amp;Refresh</source>
-        <translation>Actualiza&amp;r</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="44"/>
+        <source>&amp;Refresh</source>
+        <translation>Actualiza&amp;r</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="46"/>
         <source>Press to refresh the list</source>
         <translation>Pulsar para actualizar la lista</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="278"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="292"/>
         <source>Switch to</source>
         <translation>Cambiar a</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="347"/>
         <source>Close Branch</source>
         <translation>Cerrar Branch</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="321"/>
         <source>Switch</source>
         <translation>Hacer switch</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="321"/>
         <source>The project should be reread. Do this now?</source>
         <translation>El proyecto debería ser cargado de nuevo. ¿Desea hacerlo ahora?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="326"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="340"/>
         <source>The branch &quot;default&quot; cannot be closed. Aborting...</source>
         <translation>No se puede cerrar la branch &quot;default&quot;. Abortando...</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="347"/>
         <source>&lt;p&gt;Shall the branch &lt;b&gt;{0}&lt;/b&gt; really be closed?&lt;/p&gt;</source>
         <translation>&lt;p&gt;¿Desea realmente cerrar la branch &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="380"/>
         <source>Close Branches</source>
         <translation>Cerrar branches</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="380"/>
         <source>Do you really want to close all listed branches?</source>
         <translation>¿Desea realmente cerrar todas las branches en la lista?</translation>
     </message>
@@ -36430,7 +36430,7 @@
         <translation>Pulse para eliminar las entradas seleccionadas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="122"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="123"/>
         <source>&amp;Remove</source>
         <translation>&amp;Eliminar</translation>
     </message>
@@ -36445,32 +36445,32 @@
         <translation>Eliminar &amp;Todas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="105"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="106"/>
         <source>&amp;Open</source>
         <translation>&amp;Abrir</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="108"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="109"/>
         <source>Open in New &amp;Tab</source>
         <translation>Abrir en Nueva Pes&amp;taña</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="121"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="122"/>
         <source>&amp;Copy</source>
         <translation>&amp;Copiar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="111"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="112"/>
         <source>Open in New &amp;Background Tab</source>
         <translation>Abrir en Nueva Pes&amp;taña en Segundo Plano</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="114"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="115"/>
         <source>Open in New &amp;Window</source>
         <translation>Abrir en Nueva &amp;Ventana</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="117"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="118"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation>Abrir en Nueva Ventana &amp;Privada</translation>
     </message>
@@ -36536,12 +36536,12 @@
         <translation>Pestañas Cerradas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryMenu.py" line="447"/>
+        <location filename="../WebBrowser/History/HistoryMenu.py" line="448"/>
         <source>Restore All Closed Tabs</source>
         <translation>Restaurar Todas las Pestañas Cerradas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryMenu.py" line="450"/>
+        <location filename="../WebBrowser/History/HistoryMenu.py" line="451"/>
         <source>Clear List</source>
         <translation>Borrar Lista</translation>
     </message>
@@ -36567,12 +36567,12 @@
 <context>
     <name>HistoryTreeModel</name>
     <message>
-        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="64"/>
+        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="65"/>
         <source>Earlier Today</source>
         <translation>Hoy Más Temprano</translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="67"/>
+        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="68"/>
         <source>%n item(s)</source>
         <translation>
             <numerusform>%n elemento</numerusform>
@@ -36685,12 +36685,12 @@
 <context>
     <name>IbmWatsonEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="251"/>
+        <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="251"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
         <source>IBM Watson: No translation available.</source>
         <translation>IBM Watson: No hay una traducción disponible.</translation>
     </message>
@@ -36705,12 +36705,12 @@
         <translation>IBM Watson: Se requiere una URL Language Translator válida.</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="243"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="244"/>
         <source>IBM Watson: Invalid response received</source>
         <translation>IBM Watson: Recibida respuesta no válida</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="231"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="232"/>
         <source>IBM Watson: The server sent an error indication.
  Error: {0}</source>
         <translation>IBM Watson: El servidor ha enviado una indicación de error.
@@ -36720,102 +36720,102 @@
 <context>
     <name>IconEditorGrid</name>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="208"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="211"/>
         <source>Set Pixel</source>
         <translation>Establecer Pixel</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="209"/>
-        <source>Erase Pixel</source>
-        <translation>Borrar Pixel</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="210"/>
-        <source>Draw Line</source>
-        <translation>Dibujar Línea</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="211"/>
-        <source>Draw Rectangle</source>
-        <translation>Dibujar Rectángulo</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="212"/>
-        <source>Draw Filled Rectangle</source>
-        <translation>Dibujar Rectángulo Lleno</translation>
+        <source>Erase Pixel</source>
+        <translation>Borrar Pixel</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="213"/>
-        <source>Draw Circle</source>
-        <translation>Dibujar Círculo</translation>
+        <source>Draw Line</source>
+        <translation>Dibujar Línea</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="214"/>
-        <source>Draw Filled Circle</source>
-        <translation>Dibujar Círculo Lleno</translation>
+        <source>Draw Rectangle</source>
+        <translation>Dibujar Rectángulo</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="215"/>
-        <source>Draw Ellipse</source>
-        <translation>Dibujar Elipse</translation>
+        <source>Draw Filled Rectangle</source>
+        <translation>Dibujar Rectángulo Lleno</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="216"/>
-        <source>Draw Filled Ellipse</source>
-        <translation>Dibujar Elipse Llena</translation>
+        <source>Draw Circle</source>
+        <translation>Dibujar Círculo</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="217"/>
+        <source>Draw Filled Circle</source>
+        <translation>Dibujar Círculo Lleno</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="218"/>
+        <source>Draw Ellipse</source>
+        <translation>Dibujar Elipse</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="219"/>
+        <source>Draw Filled Ellipse</source>
+        <translation>Dibujar Elipse Llena</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="220"/>
         <source>Fill Region</source>
         <translation>Rellenar Region</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="846"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="853"/>
         <source>Cut Selection</source>
         <translation>Cortar Selección</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="905"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="912"/>
         <source>Paste</source>
         <translation>Pegar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="905"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="912"/>
         <source>&lt;p&gt;The clipboard image is larger than the current image.&lt;br/&gt;Paste as new image?&lt;/p&gt;</source>
         <translation>&lt;p&gt;La imagen del portapapeles es mayor que la imagen actual.&lt;br/&gt;¿Pegar como nueva imagen?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="918"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="925"/>
         <source>Paste Clipboard</source>
         <translation>Pegar Contenido del Portapapeles</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="936"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="943"/>
         <source>Pasting Image</source>
         <translation>Pegando Imagen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="936"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="943"/>
         <source>Invalid image data in clipboard.</source>
         <translation>Datos de Imagen en el portapapeles no válidos.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="947"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="954"/>
         <source>Paste Clipboard as New Image</source>
         <translation>Pegar Contenido del Portapapeles como Nueva Imagen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="976"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="983"/>
         <source>Clear Image</source>
         <translation>Limpiar Imagen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="996"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="1003"/>
         <source>Resize Image</source>
         <translation>Cambiar Tamaño de Imagen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="1023"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="1030"/>
         <source>Convert to Grayscale</source>
         <translation>Convertir a Escala de Grises</translation>
     </message>
@@ -36823,57 +36823,57 @@
 <context>
     <name>IconEditorPalette</name>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="48"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="49"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This is a 1:1 preview of the current icon.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Presentación Preliminar&lt;/b&gt;&lt;p&gt;Esto es una vista previa a escala 1:1 del icono actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="58"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="60"/>
         <source>&lt;b&gt;Current Color&lt;/b&gt;&lt;p&gt;This is the currently selected color used for drawing.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Color Actual&lt;/b&gt;&lt;p&gt;Este es el color seleccionado actualmente para dibujar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="66"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="69"/>
         <source>&lt;b&gt;Current Color Value&lt;/b&gt;&lt;p&gt;This is the currently selected color value used for drawing.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Valor del Color Actual&lt;/b&gt;&lt;p&gt;Este es el valor del color seleccionado actualmente para dibujar&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="73"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="76"/>
         <source>Select Color</source>
         <translation>Seleccionar Color</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="74"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="77"/>
         <source>&lt;b&gt;Select Color&lt;/b&gt;&lt;p&gt;Select the current drawing color via a color selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Seleccionar Color&lt;/b&gt;&lt;p&gt;Seleccionar el color actual de dibujado a través de un diálogo de selección de color.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="84"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="87"/>
         <source>&lt;b&gt;Select alpha channel value&lt;/b&gt;&lt;p&gt;Select the value for the alpha channel of the current color.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Seleccionar valor del canal alfa&lt;/b&gt;&lt;p&gt;Seleccionar el valor para el canal alfa para el color actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="92"/>
-        <source>Compositing</source>
-        <translation>Composición</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorPalette.py" line="95"/>
+        <source>Compositing</source>
+        <translation>Composición</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorPalette.py" line="98"/>
         <source>Replace</source>
         <translation>Reemplazar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="97"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="100"/>
         <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Replace the existing pixel with a new color.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Reemplazar&lt;/b&gt;&lt;p&gt;Reemplazar el pixel existente con un nuevo color.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="103"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="106"/>
         <source>Blend</source>
         <translation>Mezclar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="105"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="108"/>
         <source>&lt;b&gt;Blend&lt;/b&gt;&lt;p&gt;Blend the new color over the existing pixel.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mezclar&lt;/b&gt;&lt;p&gt;Mezclar el nuevo color con el pixel existente.&lt;/p&gt;</translation>
     </message>
@@ -36881,1092 +36881,1092 @@
 <context>
     <name>IconEditorWindow</name>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="125"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="126"/>
         <source>Windows Bitmap File (*.bmp)</source>
         <translation>Archivo de Bitmap de Windows (*.bmp)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="128"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="129"/>
         <source>Graphic Interchange Format File (*.gif)</source>
         <translation>Archivo de Formato Gráfico de Intercambio (*.gif)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="130"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="131"/>
         <source>Windows Icon File (*.ico)</source>
         <translation>Archivo de Icono de Windows (*.ico)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="132"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="133"/>
         <source>JPEG File (*.jpg)</source>
         <translation>Archivo JPEG (*.jpg)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="135"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="136"/>
         <source>Portable Bitmap File (*.pbm)</source>
         <translation>Archivo de Bitmap Portable (*.pbm)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="137"/>
-        <source>Portable Graymap File (*.pgm)</source>
-        <translation>Archivo de Portable Graymap (*.pgm)</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="138"/>
-        <source>Portable Network Graphics File (*.png)</source>
-        <translation>Archivo Portable Network Graphics (*.png)</translation>
+        <source>Portable Graymap File (*.pgm)</source>
+        <translation>Archivo de Portable Graymap (*.pgm)</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="139"/>
+        <source>Portable Network Graphics File (*.png)</source>
+        <translation>Archivo Portable Network Graphics (*.png)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="140"/>
         <source>Portable Pixmap File (*.ppm)</source>
         <translation>Archivo de Portable Pixmap (*.ppm)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="141"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="142"/>
         <source>Scalable Vector Graphics File (*.svg)</source>
         <translation>Archivo de Scalable Vector Graphics (*.svg)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="145"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="146"/>
         <source>TIFF File (*.tif)</source>
         <translation>Archivo TIFF (*.tif)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="149"/>
-        <source>X11 Bitmap File (*.xbm)</source>
-        <translation>Archivo de X11 Bitmap (*.xbm)</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="150"/>
+        <source>X11 Bitmap File (*.xbm)</source>
+        <translation>Archivo de X11 Bitmap (*.xbm)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="151"/>
         <source>X11 Pixmap File (*.xpm)</source>
         <translation>Archivo de X11 Pixmap (*.xpm)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="161"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="162"/>
         <source>All Files (*)</source>
         <translation>Todos los Archivos</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
         <source>New</source>
         <translation>Nuevo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
         <source>&amp;New</source>
         <translation>&amp;Nuevo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="199"/>
-        <source>Create a new icon</source>
-        <translation>Crear nuevo icono</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="200"/>
+        <source>Create a new icon</source>
+        <translation>Crear nuevo icono</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="201"/>
         <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;This creates a new icon.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nuevo&lt;/b&gt;&lt;p&gt;Crea un icono nuevo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="207"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="208"/>
         <source>New Window</source>
         <translation>Nueva Ventana</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="207"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="208"/>
         <source>New &amp;Window</source>
         <translation>Nueva &amp;Ventana</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="212"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="213"/>
         <source>Open a new icon editor window</source>
         <translation>Abrir una nueva ventana de editor de iconos</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="214"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="215"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new icon editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nueva Ventana&lt;/b&gt;&lt;p&gt;Abre una nueva ventana de editor de iconos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
         <source>Open</source>
         <translation>Abrir</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
         <source>&amp;Open...</source>
         <translation>&amp;Abrir...</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="227"/>
-        <source>Open an icon file for editing</source>
-        <translation>Abre un archivo de icono para editar</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="228"/>
+        <source>Open an icon file for editing</source>
+        <translation>Abre un archivo de icono para editar</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="229"/>
         <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new icon file for editing. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Abrir Archivo&lt;/b&gt;&lt;p&gt;Abre un nuevo archivo de icono para editar. Muestra un diálogo de selección de archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
         <source>Save</source>
         <translation>Guardar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
         <source>&amp;Save</source>
         <translation>&amp;Guardar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation>Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="242"/>
-        <source>Save the current icon</source>
-        <translation>Guarda el icono actual</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="243"/>
+        <source>Save the current icon</source>
+        <translation>Guarda el icono actual</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="244"/>
         <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of the icon 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 de iconos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
         <source>Save As</source>
         <translation>Guardar como</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
         <source>Save &amp;As...</source>
         <translation>Guardar Co&amp;mo...</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="256"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="257"/>
         <source>Save the current icon to a new file</source>
         <translation>Guarda el icono actual a un nuevo archivo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="258"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="259"/>
         <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current icon to a new file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Guardar como&lt;/b&gt;&lt;p&gt;Guarda el icono actual en un nuevo archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
         <source>Close</source>
         <translation>Cerrar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
         <source>&amp;Close</source>
         <translation>&amp;Cerrar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="271"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="272"/>
         <source>Close the current icon editor window</source>
         <translation>Cierra la ventana actual de edición de iconos</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="273"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="274"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current icon editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cerrar&lt;/b&gt;&lt;p&gt;Cierra la ventana actual de edición de iconos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="280"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="281"/>
         <source>Close All</source>
         <translation>Cerrar todo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="280"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="281"/>
         <source>Close &amp;All</source>
         <translation>Cerrar &amp;Todo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="284"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="285"/>
         <source>Close all icon editor windows</source>
         <translation>Cerrar todas las ventanas de edición de iconos</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="286"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="287"/>
         <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all icon editor windows except the first one.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cerrar Todo&lt;/b&gt;&lt;p&gt;Cierra todas las ventanas de edición de iconos excepto la primera.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
         <source>Quit</source>
         <translation>Salir</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
         <source>&amp;Quit</source>
         <translation>&amp;Salir</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="312"/>
-        <source>Quit the icon editor</source>
-        <translation>Salir del editor de iconos</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="313"/>
+        <source>Quit the icon editor</source>
+        <translation>Salir del editor de iconos</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="314"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the icon editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Salir&lt;/b&gt;&lt;p&gt;Salir del editor de iconos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>Undo</source>
         <translation>Deshacer</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>&amp;Undo</source>
         <translation>&amp;Deshacer</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="332"/>
-        <source>Undo the last change</source>
-        <translation>Revierte el último cambio</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="333"/>
+        <source>Undo the last change</source>
+        <translation>Revierte el último cambio</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="334"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done.&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="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
         <source>Redo</source>
         <translation>Rehacer</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
         <source>&amp;Redo</source>
         <translation>&amp;Rehacer</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="346"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="347"/>
         <source>Redo the last change</source>
         <translation>Rehacer el último cambio</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="347"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="348"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done.&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="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Cut</source>
         <translation>Cortar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Cu&amp;t</source>
         <translation>Cor&amp;tar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="361"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="362"/>
         <source>Cut the selection</source>
         <translation>Cortar la selección</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="362"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="363"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cortar&lt;/b&gt;&lt;p&gt;Cortar la imagen seleccionada y la envía al portapapeles.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>Copy</source>
         <translation>Copiar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>&amp;Copy</source>
         <translation>&amp;Copiar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="376"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="377"/>
         <source>Copy the selection</source>
         <translation>Copia la selección</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="377"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="378"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Copiar&lt;/b&gt;&lt;p&gt;Copiar la imagen seleccionada al portapapeles.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>Paste</source>
         <translation>Pegar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>&amp;Paste</source>
         <translation>&amp;Pegar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="391"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="392"/>
         <source>Paste the clipboard image</source>
         <translation>PEgar la imagen en el portapapeles</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="392"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="393"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Pegar&lt;/b&gt;&lt;p&gt;Pegar la imagen del portapapeles.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="399"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
         <source>Paste as New</source>
         <translation>Pegar como Nuevo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="399"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
         <source>Paste as &amp;New</source>
         <translation>Pegar como &amp;Nuevo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="403"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="404"/>
         <source>Paste the clipboard image replacing the current one</source>
         <translation>Pega la imagen del portapapeles reemplazando la imagen actual</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="405"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="406"/>
         <source>&lt;b&gt;Paste as New&lt;/b&gt;&lt;p&gt;Paste the clipboard image replacing the current one.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Pegar como Nuevo&lt;/b&gt;&lt;p&gt;Pega la imagen del portapapeles reemplazando la imagen actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
         <source>Clear</source>
         <translation>Limpiar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
         <source>Cl&amp;ear</source>
         <translation>&amp;Limpiar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="419"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="420"/>
         <source>Clear the icon image</source>
         <translation>Limpiar la imagen de icono</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="420"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="421"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Clear the icon image and set it to be completely transparent.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Limpiar&lt;/b&gt;&lt;p&gt;Limpia la imagen del icono y la establece como completamente transparente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
         <source>Select All</source>
         <translation>Seleccionar todo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
         <source>&amp;Select All</source>
         <translation>Seleccionar &amp;todo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation>Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="434"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="435"/>
         <source>Select the complete icon image</source>
         <translation>Seleccionar imagen de icono completa</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="436"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="437"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Selects the complete icon image.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Seleccionar Todo&lt;/b&gt;&lt;p&gt;Selecciona la imagen de icono completa.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="444"/>
         <source>Change Size</source>
         <translation>Cambiar Tamaño</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="444"/>
         <source>Change Si&amp;ze...</source>
         <translation>Cambiar &amp;Tamaño...</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="449"/>
-        <source>Change the icon size</source>
-        <translation>Cambiar tamaño del icono</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="450"/>
+        <source>Change the icon size</source>
+        <translation>Cambiar tamaño del icono</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="451"/>
         <source>&lt;b&gt;Change Size...&lt;/b&gt;&lt;p&gt;Changes the icon size.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cambiar Tamaño...&lt;/b&gt;&lt;p&gt;Cambia el tamaño del icono.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="457"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="458"/>
         <source>Grayscale</source>
         <translation>Escala de grises</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="457"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="458"/>
         <source>&amp;Grayscale</source>
         <translation>Escala de &amp;grises</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="463"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="464"/>
         <source>Change the icon to grayscale</source>
         <translation>Cambia el icono a escala de grises</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="465"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="466"/>
         <source>&lt;b&gt;Grayscale&lt;/b&gt;&lt;p&gt;Changes the icon to grayscale.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Escala de Grises&lt;/b&gt;&lt;p&gt;Cambia el icono a escala de grises.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
         <source>Zoom in</source>
         <translation>Aumentar zoom</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
         <source>Zoom &amp;in</source>
         <translation>A&amp;umentar Zoom</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="500"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="501"/>
         <source>Zoom in on the icon</source>
         <translation>Aumentar zoom en el icono</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="501"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="502"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the icon. This makes the grid bigger.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aumentar Zoom&lt;/b&gt;&lt;p&gt;Aumenta el zoom sobre el icono. Esto provoca que el grid sea mayor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
         <source>Zoom out</source>
         <translation>Disminuir Zoom</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
         <source>Zoom &amp;out</source>
         <translation>Dismi&amp;nuir Zoom</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="514"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="515"/>
         <source>Zoom out on the icon</source>
         <translation>Disminuir zoom en el icono</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="515"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="516"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the icon. This makes the grid smaller.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Disminuir Zoom&lt;/b&gt;&lt;p&gt;Disminuir el zoom en el icono. Esto provoca que el grid sea menor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
         <source>Zoom reset</source>
         <translation>Restablecer zoom</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
         <source>Zoom &amp;reset</source>
         <translation>&amp;Restablecer zoom</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="538"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="539"/>
         <source>Show Grid</source>
         <translation>Mostrar Grid</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="538"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="539"/>
         <source>Show &amp;Grid</source>
         <translation>Mostrar &amp;Grid</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="544"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="545"/>
         <source>Toggle the display of the grid</source>
         <translation>Conmutar la visualización del grid</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="546"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="547"/>
         <source>&lt;b&gt;Show Grid&lt;/b&gt;&lt;p&gt;Toggle the display of the grid.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mostrar Grid&lt;/b&gt;&lt;p&gt;Conmuta la visualización del grid.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="565"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
         <source>Freehand</source>
         <translation>Freehand</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="565"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
         <source>&amp;Freehand</source>
         <translation>&amp;Freehand</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="571"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="572"/>
         <source>&lt;b&gt;Free hand&lt;/b&gt;&lt;p&gt;Draws non linear lines.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Free hand&lt;/b&gt;&lt;p&gt;Dibuja formas no lineares.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="580"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="581"/>
         <source>Color Picker</source>
         <translation>Selector de Color</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="580"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="581"/>
         <source>&amp;Color Picker</source>
         <translation>Selector de &amp;Color</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="586"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="587"/>
         <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Selector de Color&lt;/b&gt;&lt;p&gt;El color del pixel sobre el que se hace click pasa a ser el color actual de dibujo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="597"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
         <source>Rectangle</source>
         <translation>Rectángulo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="597"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
         <source>&amp;Rectangle</source>
         <translation>&amp;Rectángulo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="603"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="604"/>
         <source>&lt;b&gt;Rectangle&lt;/b&gt;&lt;p&gt;Draw a rectangle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rectángulo&lt;/b&gt;&lt;p&gt;Dibujar un rectángulo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="612"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="613"/>
         <source>Filled Rectangle</source>
         <translation>Rectángulo Lleno</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="612"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="613"/>
         <source>F&amp;illed Rectangle</source>
         <translation>Rectángulo &amp;Lleno</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="618"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="619"/>
         <source>&lt;b&gt;Filled Rectangle&lt;/b&gt;&lt;p&gt;Draw a filled rectangle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rectángulo Lleno&lt;/b&gt;&lt;p&gt;Dibujar un rectángulo lleno.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="628"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
         <source>Circle</source>
         <translation>Círculo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="634"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="635"/>
         <source>&lt;b&gt;Circle&lt;/b&gt;&lt;p&gt;Draw a circle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Círculo&lt;/b&gt;&lt;p&gt;Dibujar un círculo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="643"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="644"/>
         <source>Filled Circle</source>
         <translation>Círculo Lleno</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="643"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="644"/>
         <source>Fille&amp;d Circle</source>
         <translation>Cí&amp;rculo Lleno</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="649"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="650"/>
         <source>&lt;b&gt;Filled Circle&lt;/b&gt;&lt;p&gt;Draw a filled circle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Círculo Lleno&lt;/b&gt;&lt;p&gt;Dibujar un círculo lleno.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="659"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
         <source>Ellipse</source>
         <translation>Elipse</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="659"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
         <source>&amp;Ellipse</source>
         <translation>&amp;Elipse</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="665"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="666"/>
         <source>&lt;b&gt;Ellipse&lt;/b&gt;&lt;p&gt;Draw an ellipse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Elipse&lt;/b&gt;&lt;p&gt;Dibujar una elipse.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="674"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="675"/>
         <source>Filled Ellipse</source>
         <translation>Elipse Llena</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="674"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="675"/>
         <source>Fille&amp;d Elli&amp;pse</source>
         <translation>Eli&amp;pse Llena</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="680"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="681"/>
         <source>&lt;b&gt;Filled Ellipse&lt;/b&gt;&lt;p&gt;Draw a filled ellipse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Elipse Llena&lt;/b&gt;&lt;p&gt;Dibujar una elipse llena.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="690"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="691"/>
         <source>Flood Fill</source>
         <translation>Flood Fill</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="690"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="691"/>
         <source>Fl&amp;ood Fill</source>
         <translation>Fl&amp;ood Fill</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="696"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="697"/>
         <source>&lt;b&gt;Flood Fill&lt;/b&gt;&lt;p&gt;Fill adjoining pixels with the same color with the current color.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Flood Fill&lt;/b&gt;&lt;p&gt;Llenar píxeles adjuntos del mismo color con el color actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="706"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
         <source>Line</source>
         <translation>Línea</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="706"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
         <source>&amp;Line</source>
         <translation>&amp;Línea</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="712"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="713"/>
         <source>&lt;b&gt;Line&lt;/b&gt;&lt;p&gt;Draw a line.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Línea&lt;/b&gt;&lt;p&gt;Dibujar una línea.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="721"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
         <source>Eraser (Transparent)</source>
         <translation>Goma de Borrar (Transparente)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="721"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
         <source>Eraser (&amp;Transparent)</source>
         <translation>Goma de Borrar (&amp;Transparente)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="727"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="728"/>
         <source>&lt;b&gt;Eraser (Transparent)&lt;/b&gt;&lt;p&gt;Erase pixels by setting them to transparent.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Goma de Borrar (Transparente)&lt;/b&gt;&lt;p&gt;Borra píxeles estableciéndolos como transparentes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="736"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="737"/>
         <source>Rectangular Selection</source>
         <translation>Selección Rectangular</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="753"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="754"/>
         <source>Rect&amp;angular Selection</source>
         <translation>Selección Rect&amp;angular</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="742"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="743"/>
         <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Selección Rectangular&lt;/b&gt;&lt;p&gt;Seleccionar una sección rectangular del icono utilizando el ratón.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="753"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="754"/>
         <source>Circular Selection</source>
         <translation>Selección Circular</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="759"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="760"/>
         <source>&lt;b&gt;Circular Selection&lt;/b&gt;&lt;p&gt;Select a circular section of the icon using the mouse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Selección Circular&lt;/b&gt;&lt;p&gt;Seleccionar una sección circular del icono utilizando el ratón.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="776"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
         <source>About</source>
         <translation>Acerca de</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="776"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
         <source>&amp;About</source>
         <translation>&amp;Acerca de</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="780"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="781"/>
         <source>Display information about this software</source>
         <translation>Muestra información acerca de este software</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="782"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="783"/>
         <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="../IconEditor/IconEditorWindow.py" line="788"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
         <source>About Qt</source>
         <translation>Acerca de Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="788"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
         <source>About &amp;Qt</source>
         <translation>Acerca de &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="792"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="793"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Muestra información sobre las herramientas Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="794"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="795"/>
         <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="../IconEditor/IconEditorWindow.py" line="801"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
         <source>What&apos;s This?</source>
         <translation>¿Qué es esto?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="801"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
         <source>&amp;What&apos;s This?</source>
         <translation>¿&amp;Qué es esto?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="801"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="807"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="808"/>
         <source>Context sensitive help</source>
         <translation>Ayuda sensible al contexto</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="808"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="809"/>
         <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="../IconEditor/IconEditorWindow.py" line="825"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="826"/>
         <source>&amp;File</source>
         <translation>&amp;Archivo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="842"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="843"/>
         <source>&amp;Edit</source>
         <translation>&amp;Editar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="858"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="859"/>
         <source>&amp;View</source>
         <translation>&amp;Ver</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="866"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="867"/>
         <source>&amp;Tools</source>
         <translation>&amp;Herramientas</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="885"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="886"/>
         <source>&amp;Help</source>
         <translation>A&amp;yuda</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="895"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="896"/>
         <source>File</source>
         <translation>Archivo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="909"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="910"/>
         <source>Edit</source>
         <translation>Editar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="922"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="923"/>
         <source>View</source>
         <translation>Ver</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="927"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="928"/>
         <source>Tools</source>
         <translation>Herramientas</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="945"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="946"/>
         <source>Help</source>
         <translation>Ayuda</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="959"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="960"/>
         <source>&lt;p&gt;This part of the status bar displays the icon size.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Esta zona de la barra de estado muestra el tamaño del icono.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="966"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="967"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Esta zona de la barra de estado muestra la posición del cursor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1062"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1069"/>
         <source>Open icon file</source>
         <translation>Abrir archivo de icono</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1112"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1119"/>
         <source>Save icon file</source>
         <translation>Guardar archivo de icono</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1201"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1208"/>
         <source>Icon saved</source>
         <translation>Icono guardado</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1216"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1223"/>
         <source>Untitled</source>
         <translation>Sin título</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1227"/>
         <source>Icon Editor</source>
         <translation>Editor de Iconos</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="134"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="135"/>
         <source>Multiple-Image Network Graphics File (*.mng)</source>
         <translation>Archivo de Multiple-Image Network Graphics (*.mng)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="528"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="529"/>
         <source>Reset the zoom of the icon</source>
         <translation>Restablecer el zoom aplicado al icono</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="530"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="531"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the icon. 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 icono. Establece el factor de zoom a 100%.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="136"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="137"/>
         <source>Paintbrush Bitmap File (*.pcx)</source>
         <translation>Archivo de Bitmap de Pincel (*.pcx)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="140"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="141"/>
         <source>Silicon Graphics Image File (*.sgi)</source>
         <translation>Archivo de Silicon Graphics Image (*.sgi)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="144"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="145"/>
         <source>Targa Graphic File (*.tga)</source>
         <translation>Archivo de Targa Graphic (*.tga)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1148"/>
-        <source>The file &apos;{0}&apos; does not exist.</source>
-        <translation>El archivo {0} no existe.</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="1155"/>
+        <source>The file &apos;{0}&apos; does not exist.</source>
+        <translation>El archivo {0} no existe.</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1162"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation>No se puede leer el archivo {0}:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1189"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1196"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation>No se puede guardar el archivo {0}:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1227"/>
         <source>{0}[*] - {1}</source>
         <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1112"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1119"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1241"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1248"/>
         <source>The icon image has unsaved changes.</source>
         <translation>La imagen de icono tiene cambios sin guardar.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="133"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="134"/>
         <source>JPEG File (*.jpeg)</source>
         <translation>Archivo JPEG (*.jpeg)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="142"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="143"/>
         <source>Compressed Scalable Vector Graphics File (*.svgz)</source>
         <translation>Archivo de Scalable Vector Graphics (*.svgz)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="146"/>
-        <source>TIFF File (*.tiff)</source>
-        <translation>Archivo TIFF (*.tiff)</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="147"/>
-        <source>WAP Bitmap File (*.wbmp)</source>
-        <translation>Archivo de Bitmap WAP(*.wbmp)</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="293"/>
-        <source>Close Others</source>
-        <translation>Cerrar Otras</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="297"/>
-        <source>Close all other icon editor windows</source>
-        <translation>Cerrar todas las otras ventanas con editor de iconos</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="299"/>
-        <source>&lt;b&gt;Close Others&lt;/b&gt;&lt;p&gt;Closes all other icon editor windows.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Cerrar Otras&lt;/b&gt;&lt;p&gt;Cerrar todas las otras ventanas con editor de iconos.&lt;/p&gt;</translation>
+        <source>TIFF File (*.tiff)</source>
+        <translation>Archivo TIFF (*.tiff)</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="148"/>
+        <source>WAP Bitmap File (*.wbmp)</source>
+        <translation>Archivo de Bitmap WAP(*.wbmp)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="294"/>
+        <source>Close Others</source>
+        <translation>Cerrar Otras</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="298"/>
+        <source>Close all other icon editor windows</source>
+        <translation>Cerrar todas las otras ventanas con editor de iconos</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="300"/>
+        <source>&lt;b&gt;Close Others&lt;/b&gt;&lt;p&gt;Closes all other icon editor windows.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Cerrar Otras&lt;/b&gt;&lt;p&gt;Cerrar todas las otras ventanas con editor de iconos.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="149"/>
         <source>WebP Image File (*.webp)</source>
         <translation>Archivo de Imagen WebP (*.webp)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="126"/>
-        <source>Windows Cursor File (*.cur)</source>
-        <translation>Archivo de Cursor de Windows (*.cur)</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="127"/>
+        <source>Windows Cursor File (*.cur)</source>
+        <translation>Archivo de Cursor de Windows (*.cur)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="128"/>
         <source>DirectDraw-Surface File (*.dds)</source>
         <translation>Archivo de DirectDraw Surface(*.dds)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="129"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="130"/>
         <source>Apple Icon File (*.icns)</source>
         <translation>Archivo de Icono de Apple (*.icns)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="131"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="132"/>
         <source>JPEG2000 File (*.jp2)</source>
         <translation>Archivo JPEG2000 (*.jp2)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1241"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1248"/>
         <source>eric Icon Editor</source>
         <translation>Editor de Iconos de eric</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1331"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1338"/>
         <source>About eric Icon Editor</source>
         <translation>Acerca del Editor de Iconos de eric</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1331"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1338"/>
         <source>The eric Icon Editor is a simple editor component to perform icon drawing tasks.</source>
         <translation>El Editor de Iconos de eric es un componente de edición de iconos para llevar a cabo tareas de dibujado de iconos.</translation>
     </message>
@@ -38236,22 +38236,22 @@
         <translation>Eliminar Definición Nombres</translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="175"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="176"/>
         <source>Include Directory</source>
         <translation>Incluir Directorio</translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="175"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="176"/>
         <source>Select Include Directory</source>
         <translation>Seleccionar Directorio Include</translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="388"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="391"/>
         <source>Undefine Name</source>
         <translation>Eliminar Definición Nombre</translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="388"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="391"/>
         <source>Enter a variable name to be undefined:</source>
         <translation>Introducir un nombre de variable a eliminar definición:</translation>
     </message>
@@ -38762,52 +38762,52 @@
         <translation>Observaciones:</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="70"/>
+        <location filename="../UI/InstallInfoDialog.py" line="71"/>
         <source>Yes</source>
         <translation>Si</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="70"/>
+        <location filename="../UI/InstallInfoDialog.py" line="71"/>
         <source>No</source>
         <translation>No</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="74"/>
+        <location filename="../UI/InstallInfoDialog.py" line="75"/>
         <source>&apos;eric-ide&apos; was installed from PyPI using the pip command.</source>
         <translation>&apos;eric-ide&apos; se ha instalado desde PyPI utilizando el comando pip.</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="80"/>
+        <location filename="../UI/InstallInfoDialog.py" line="81"/>
         <source>The information shown in this dialog was guessed at the first start of eric.</source>
         <translation>La información mostrada en este diálogo es deducida con el primer inicio de eric.</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="98"/>
+        <location filename="../UI/InstallInfoDialog.py" line="99"/>
         <source>Load Install Information</source>
         <translation>Cargar Información de Instalación</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="98"/>
+        <location filename="../UI/InstallInfoDialog.py" line="99"/>
         <source>&lt;p&gt;The file containing the install information could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido leer el archivo que contiene la información de instalación.&lt;/p&gt;&lt;p&gt;Razón: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="150"/>
+        <location filename="../UI/InstallInfoDialog.py" line="151"/>
         <source>Install Information</source>
         <translation>Información de Instalación</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="150"/>
+        <location filename="../UI/InstallInfoDialog.py" line="151"/>
         <source>The install information was edited. Unsaved changes will be lost. Save first?</source>
         <translation>Se ha editado la información de instalación. Los cambios que no se guarden se perderán. ¿Guardar primero?</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="187"/>
+        <location filename="../UI/InstallInfoDialog.py" line="188"/>
         <source>Save Install Information</source>
         <translation>Guardar información de instalación</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="187"/>
+        <location filename="../UI/InstallInfoDialog.py" line="188"/>
         <source>&lt;p&gt;The file containing the install information could not be written.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido escribir el archivo que contiene la información de instalación.&lt;/p&gt;&lt;p&gt;Razón: {0}&lt;/p&gt;</translation>
     </message>
@@ -38817,17 +38817,17 @@
         <translation>Fecha de Instalación:</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="60"/>
+        <location filename="../UI/InstallInfoDialog.py" line="61"/>
         <source>Installed as Administrator:</source>
         <translation>Instalado como Administrador:</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="62"/>
+        <location filename="../UI/InstallInfoDialog.py" line="63"/>
         <source>Installed with sudo:</source>
         <translation>Instalado con sudo:</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="92"/>
+        <location filename="../UI/InstallInfoDialog.py" line="93"/>
         <source>unknown</source>
         <translation>desconocido</translation>
     </message>
@@ -38837,7 +38837,7 @@
         <translation>Instalado Desde:</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="86"/>
+        <location filename="../UI/InstallInfoDialog.py" line="87"/>
         <source>The installation information was provided by the user.</source>
         <translation>La información de instalación ha sido proporcionada por el usuario.</translation>
     </message>
@@ -38847,22 +38847,22 @@
         <translation>Borrar Info</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="254"/>
+        <location filename="../UI/InstallInfoDialog.py" line="255"/>
         <source>Upgrade Instructions</source>
         <translation>Instrucciones de Actualización de Versión</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="200"/>
+        <location filename="../UI/InstallInfoDialog.py" line="201"/>
         <source>Delete Installation Information</source>
         <translation>Borrar Información de Instalación</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="200"/>
+        <location filename="../UI/InstallInfoDialog.py" line="201"/>
         <source>Do you really want to delete the installation information? It will be recreated at the next start.</source>
         <translation>¿Desea realmente borrar la información de instalación? Se recreará durante el siguiente inicio.</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="227"/>
+        <location filename="../UI/InstallInfoDialog.py" line="228"/>
         <source>Perform the following step(s) with Administrator privileges.
 </source>
         <translation>Llevar a cabo el(los) siguiente(s) paso(s) con privilegios de Administración.
@@ -40011,62 +40011,62 @@
         <translation>Introducir el mensaje para enviar al abandonar un canal</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="189"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="191"/>
         <source>Edit Identity</source>
         <translation>Editar Identidad</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="172"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="174"/>
         <source>The identity must contain at least one nick name.</source>
         <translation>La identidad debe contener al menos un sobrenombre.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="189"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="191"/>
         <source>The identity must have a real name.</source>
         <translation>La identidad debe tener un nombre real.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="237"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="239"/>
         <source>Add Identity</source>
         <translation>Añadir Identidad</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="287"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="289"/>
         <source>Identity Name:</source>
         <translation>Nombre de Identidad:</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="297"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="299"/>
         <source>An identity named &lt;b&gt;{0}&lt;/b&gt; already exists. You must provide a different name.</source>
         <translation>Una identidad nombrada &lt;b&gt;{0}&lt;/b&gt; ya existe. Debe proporcionarse un nombre distinto.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="312"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="314"/>
         <source>The identity has to have a name.</source>
         <translation>La identidad tiene que tener un nombre.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="312"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="314"/>
         <source>Copy Identity</source>
         <translation>Copiar Identidad</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="297"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="299"/>
         <source>Rename Identity</source>
         <translation>Renombrar Identidad</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="336"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="338"/>
         <source>This identity is in use. If you remove it, the network settings using it will fall back to the default identity. Should it be deleted anyway?</source>
         <translation>Esta identidad está en uso. Si es eliminada, los ajustes de red que la están utilizando recurrirán a la identidad por defecto. ¿Borrarla de todos modos?</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="341"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="343"/>
         <source>Do you really want to delete all information for this identity?</source>
         <translation>¿Realmente quiere borrar estas toda la información para esta identidad?</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="344"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="346"/>
         <source>Delete Identity</source>
         <translation>Borrar Identidad</translation>
     </message>
@@ -40076,12 +40076,12 @@
         <translation>Seleccionar para marcar la posición actual en el chat cuando se envíe un comando AWAY.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="477"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="480"/>
         <source>Press to show the password</source>
         <translation>Pulsar para mostrar la contraseña</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="471"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="474"/>
         <source>Press to hide the password</source>
         <translation>Pulsar para ocultar la contraseña</translation>
     </message>
@@ -40182,22 +40182,22 @@
         <translation>Muestra el nombre del servidor</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="254"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="258"/>
         <source>Yes</source>
         <translation>Si</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="256"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="260"/>
         <source>No</source>
         <translation>No</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="185"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="189"/>
         <source>Delete Channel</source>
         <translation>Borrar Canal</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="185"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="189"/>
         <source>Do you really want to delete channel &lt;b&gt;{0}&lt;/b&gt;?</source>
         <translation>¿Desea realmente borrar el canal &lt;b&gt;{0}&lt;/b&gt;?</translation>
     </message>
@@ -40313,7 +40313,7 @@
         <translation>Seleccionar una red para conectarse</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="346"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="348"/>
         <source>Press to connect to the selected network</source>
         <translation>Pulsar para conectar a la red seleccionada</translation>
     </message>
@@ -40343,57 +40343,57 @@
         <translation>Pulsar para unirse al canal</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="434"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="436"/>
         <source>Save Messages</source>
         <translation>Guardar Mensajes</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="417"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="419"/>
         <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source>
         <translation>Archivos HTML (*.{0});;Archivos de Texto (*.txt);;Todos los Archivos (*)</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="434"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="436"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="452"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="454"/>
         <source>Error saving Messages</source>
         <translation>Error al guardar Mensajes</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="452"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="454"/>
         <source>&lt;p&gt;The messages contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Los contenidos de mensajes no se han podido guardar en &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="465"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="467"/>
         <source>Copy</source>
         <translation>Copiar</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="469"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="471"/>
         <source>Cut all</source>
         <translation>Cortar todo</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="472"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="474"/>
         <source>Copy all</source>
         <translation>Copiar todo</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="476"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="478"/>
         <source>Clear</source>
         <translation>Limpiar</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="480"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="482"/>
         <source>Save</source>
         <translation>Guardar</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="341"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="343"/>
         <source>Press to disconnect from the network</source>
         <translation>Pulsar para desconectar de la red</translation>
     </message>
@@ -40838,253 +40838,253 @@
         <translation>Pulsar para abandonar el canal actual</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="244"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="245"/>
         <source>Disconnect from Server</source>
         <translation>Desconectar del Servidor</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="244"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="245"/>
         <source>&lt;p&gt;Do you really want to disconnect from &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;&lt;p&gt;All channels will be closed.&lt;/p&gt;</source>
         <translation>&lt;p&gt;¿Desea realmente desconectar de &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;&lt;p&gt;Se cerrarán todos los canales.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="186"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="187"/>
         <source>SSL Connection</source>
         <translation>Conexión SSL</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="186"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="187"/>
         <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source>
         <translation>Se ha solicitado una conexión encriptada pero SSL no está disponible. Por favor, cambie la configuración del servidor.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="564"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="565"/>
         <source>Info</source>
         <translation>Info</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="219"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="220"/>
         <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source>
         <translation>Buscando el servidor {0} (puerto {1}) utilizando una conexión encriptada a través de SSL...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="230"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="231"/>
         <source>Looking for server {0} (port {1})...</source>
         <translation>Buscando servidor {0} (puerto {1})...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="253"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="254"/>
         <source>Disconnecting from server {0}...</source>
         <translation>Desconectando del servidor {0}...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="519"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="520"/>
         <source>Server found,connecting...</source>
         <translation>Servidor encontrado, conectando...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="528"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="529"/>
         <source>Connected,logging in...</source>
         <translation>Conectado, validándose...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="564"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="565"/>
         <source>Server disconnected.</source>
         <translation>Servidor desconectado.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="611"/>
         <source>Message Error</source>
         <translation>Error de Mensaje</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="611"/>
         <source>Unknown message received from server:&lt;br/&gt;{0}</source>
         <translation>Mensaje desconocido recibido del servidor: &lt;/br&gt;{0}</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="676"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="677"/>
         <source>Notice</source>
         <translation>Aviso</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="694"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="695"/>
         <source>Mode</source>
         <translation>Modo</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="701"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="702"/>
         <source>You have left channel {0}.</source>
         <translation>Ha dejado el canal {0}.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="712"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="713"/>
         <source>You are now known as {0}.</source>
         <translation>Usted es conocido como {0}.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="717"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="718"/>
         <source>User {0} is now known as {1}.</source>
         <translation>Usuario {0} es conocido ahora como {1}.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="727"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="728"/>
         <source>Server Error</source>
         <translation>Error de Servidor</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="763"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="764"/>
         <source>Error</source>
         <translation>Error</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="778"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="779"/>
         <source>Welcome</source>
         <translation>Bienvenido</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="780"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="781"/>
         <source>Support</source>
         <translation>Soporte</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="782"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="783"/>
         <source>User</source>
         <translation>Usuario</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="784"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="785"/>
         <source>MOTD</source>
         <translation>MOTD</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="786"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="787"/>
         <source>Away</source>
         <translation>Ausente</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="788"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="789"/>
         <source>Info ({0})</source>
         <translation>Info ({0})</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="792"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="793"/>
         <source>Message of the day</source>
         <translation>Mensaje del día</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="794"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="795"/>
         <source>End of message of the day</source>
         <translation>Fin de mensaje del día</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="797"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="798"/>
         <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
         <translation>Servidor {0} (Versión {1}), Modos de Usuario: {2}, Modos de Canal: {3}</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="803"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="804"/>
         <source>Current users on {0}: {1}, max. {2}</source>
         <translation>Usuarios actuales en {0}: {1}, máx. {2}</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="808"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="809"/>
         <source>Current users on the network: {0}, max. {1}</source>
         <translation>Usuarios actuales en la red: {0}, máx. {1}</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="812"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="813"/>
         <source>You are no longer marked as being away.</source>
         <translation>Usted ya no está marcado como ausente.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="814"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="815"/>
         <source>You have been marked as being away.</source>
         <translation>Usted ha sido marcado como ausente.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="934"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
         <source>SSL Error</source>
         <translation>Error de SSL</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="876"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="877"/>
         <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
         <translation>Conexión al servidor {0} (puerto {1}) perdida mientras se esperaba respuesta de usuario a un error SSL.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="907"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
         <source>Socket Error</source>
         <translation>Error de Socket</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="884"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="885"/>
         <source>The host was not found. Please check the host name and port settings.</source>
         <translation>El host no ha sido encontrado. Por favor, compruebe los ajustes de nombre de host y puerto.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="890"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="891"/>
         <source>The connection was refused by the peer. Please check the host name and port settings.</source>
         <translation>La conexión ha sido rechazada por el otro extremo. Por favor, compruebe los ajustes de nombre de host y puerto.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="901"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="902"/>
         <source>The following network error occurred:&lt;br/&gt;{0}</source>
         <translation>Ha ocurrido el siguiente error de red: &lt;br/&gt;{0}</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1030"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1031"/>
         <source>{0} ({1})</source>
         <comment>channel name, users count</comment>
         <translation>{0} ({1})</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1071"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1072"/>
         <source>Critical</source>
         <translation>Crítico</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1052"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1053"/>
         <source>No nickname acceptable to the server configured for &lt;b&gt;{0}&lt;/b&gt;. Disconnecting...</source>
         <translation>No hay un sobrenombre que el servidor acepte configurado para &lt;b&gt;{0}&lt;/b&gt;. Desconectando...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1071"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1072"/>
         <source>The given nickname is already in use.</source>
         <translation>El sobrenombre proporcionado ya está en uso.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1015"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1016"/>
         <source>CTCP</source>
         <translation>CTCP</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="992"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="993"/>
         <source>Received Version request from {0}.</source>
         <translation>Se ha recibido una solicitud de Versión de {0}.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="998"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="999"/>
         <source>Received CTCP-PING request from {0}, sending answer.</source>
         <translation>Recibida solicitud CTCP-PING desde {0}, enviando respuesta.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1006"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1007"/>
         <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
         <translation>Recibida solicitud CTCP-CLIENTINFO desde {0}, enviando respuesta.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1015"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1016"/>
         <source>Received unknown CTCP-{0} request from {1}.</source>
         <translation>Recibida solicitud CTCP desconocida desde {1}.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="687"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="688"/>
         <source>You have set your personal modes to &lt;b&gt;[{0}]&lt;/b&gt;.</source>
         <translation>Usted ha establecido sus modos personales a &lt;b&gt;[{0}]&lt;/b&gt;.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="691"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="692"/>
         <source>{0} has changed your personal modes to &lt;b&gt;[{1}]&lt;/b&gt;.</source>
         <translation>{0} ha cambiado los modos personales de usted a &lt;b&gt;[{1}]&lt;/b&gt;.</translation>
     </message>
@@ -41099,47 +41099,47 @@
         <translation>Red</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="896"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="897"/>
         <source>The SSL handshake failed.</source>
         <translation>Ha fallado el SSL handshake.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="907"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
         <source>A network error occurred.</source>
         <translation>Ha ocurrido un error de red.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="920"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="921"/>
         <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source>
         <translation>No se ha podido conectar a {0} (puerto {1}) utilizando una conexión encriptada sobre SSL. O bien el servidor no soporta SSL (¿se ha utilizado el puerto correcto?) o bien usted ha rechazado el certificado.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="934"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
         <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source>
         <translation>El certificado SSL para el servidor {0} (puerto {1}) ha fallado la comprobación de autenticidad. Los errores SSL han sido aceptados por usted.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="258"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="259"/>
         <source>Disconnecting from network {0}...</source>
         <translation>Desconectando de la red {0}...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="263"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="264"/>
         <source>Disconnecting from server.</source>
         <translation>Desconectando del servidor.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="643"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="644"/>
         <source>Received CTCP-PING response from {0} with latency of {1} ms.</source>
         <translation>Recibida respuesta CTCP-PING desde {0} con una latencia de {1} ms.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="649"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="650"/>
         <source>Received unknown CTCP-{0} response from {1}.</source>
         <translation>Recibida respuesta CTCP-{0} desconocida desde {1}.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="723"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="724"/>
         <source>Received PONG from {0}</source>
         <translation>Recibido PONG desde {0}</translation>
     </message>
@@ -43295,57 +43295,57 @@
 <context>
     <name>Listspace</name>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="257"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="258"/>
         <source>Close</source>
         <translation>Cerrar</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="264"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="265"/>
         <source>Close All</source>
         <translation>Cerrar todo</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="267"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="268"/>
         <source>Save</source>
         <translation>Guardar</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="270"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="271"/>
         <source>Save As...</source>
         <translation>Guardar como...</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="273"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="274"/>
         <source>Save All</source>
         <translation>Guardar todo</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="281"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="282"/>
         <source>Print</source>
         <translation>Imprimir</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="440"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="441"/>
         <source>Untitled {0}</source>
         <translation>Sin título {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="581"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="582"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="277"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="278"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation>Abrir archivo &apos;de rechazo&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="285"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="286"/>
         <source>Copy Path to Clipboard</source>
         <translation>Copiar Ruta al Portapapeles</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="260"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="261"/>
         <source>Close Others</source>
         <translation>Cerrar Otras</translation>
     </message>
@@ -43567,67 +43567,67 @@
         <translation>Instalar Seleccionados</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="57"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="58"/>
         <source>Uninstall Selected</source>
         <translation>Desinstalar Seleccionados</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="60"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="62"/>
         <source>Cancel</source>
         <translation>Cancelar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="177"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="180"/>
         <source>Error downloading dictionaries list</source>
         <translation>Error descargando la lista de diccionarios</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="177"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="180"/>
         <source>&lt;p&gt;Could not download the dictionaries list from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido descargar la lista de diccionarios desde {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="200"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="203"/>
         <source>Dictionaries URL Changed</source>
         <translation>URL de Diccionarios Cambiada</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="200"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="203"/>
         <source>The URL of the spell check dictionaries has changed. Select the &quot;Refresh&quot; button to get the new dictionaries list.</source>
         <translation>La URL de los diccionarios de corrección ortográfica ha cambiado. Seleccionar el botón de &quot;Actualizar&quot; para obtener la nueva lista de diccionarios.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="212"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="215"/>
         <source>Error installing dictionaries</source>
         <translation>Error instalando los diccionarios</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="212"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="215"/>
         <source>&lt;p&gt;None of the dictionary locations is writable by you. Please download required dictionaries manually and install them as administrator.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Ninguna de las ubicaciones para diccionarios tiene permisos de escritura. Por favor, descargue manualmente los diccionarios requeridos e instálelos como administrador.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="263"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="266"/>
         <source>{0} ({1})</source>
         <translation>{0} ({1})</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="372"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="376"/>
         <source>Error downloading dictionary</source>
         <translation>Error descargando diccionario</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="357"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="361"/>
         <source>&lt;p&gt;Could not download the requested dictionary file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido descargar el archivo de diccionario requerido de {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="357"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="361"/>
         <source>Error downloading dictionary file</source>
         <translation>Error descargando archivo de diccionario</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="372"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="376"/>
         <source>&lt;p&gt;The downloaded dictionary archive is invalid. Skipping it.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de diccionario que se ha descargado no es válido. Cancelando.&lt;/p&gt;</translation>
     </message>
@@ -43698,22 +43698,22 @@
         <translation>(sin definir todavía)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="50"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="51"/>
         <source>Wrong password entered.</source>
         <translation>Se ha introducido una contraseña equivocada.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="54"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="55"/>
         <source>New password must not be empty.</source>
         <translation>La nueva contraseña no puede estar vacía.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="61"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="62"/>
         <source>Repeated password is wrong.</source>
         <translation>La contraseña repetida es errónea.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="66"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="67"/>
         <source>Old and new password must not be the same.</source>
         <translation>Las contraseñas antigua y nueva no pueden ser la misma.</translation>
     </message>
@@ -44199,7 +44199,7 @@
 <context>
     <name>MicroPythonCommandsInterface</name>
     <message>
-        <location filename="../MicroPython/MicroPythonCommandsInterface.py" line="284"/>
+        <location filename="../MicroPython/MicroPythonCommandsInterface.py" line="285"/>
         <source>Detected an error without indications.</source>
         <translation>Detectado un error sin indicaciones.</translation>
     </message>
@@ -44531,22 +44531,22 @@
         <translation>Pulsar para guardar datos en bruto</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="72"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="73"/>
         <source>max. X:</source>
         <translation>max. X:</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="81"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="83"/>
         <source>Enter the maximum number of data points to be plotted.</source>
         <translation>Introducir el número máximo de puntos de datos a plotear.</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="330"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="332"/>
         <source>Save Chart Data</source>
         <translation>Guardar Datos de Gráfica</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="330"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="332"/>
         <source>&lt;p&gt;The chart data could not be saved into file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Los datos de gráfica no se han podido guardar en el archivo &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
@@ -44629,7 +44629,7 @@
         <translation>Introducir la ruta del ejecutable del compilador multiplataforma</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="69"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="77"/>
         <source>All Files (*)</source>
         <translation>Todos los archivos (*)</translation>
     </message>
@@ -44704,37 +44704,37 @@
         <translation>Claro</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="48"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="49"/>
         <source>Dark</source>
         <translation>Oscuro</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="50"/>
-        <source>Blue Cerulean</source>
-        <translation>Azul Cerúleo</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="52"/>
+        <source>Blue Cerulean</source>
+        <translation>Azul Cerúleo</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="55"/>
         <source>Brown Sand</source>
         <translation>Marrón Arena</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="54"/>
-        <source>Blue NCS</source>
-        <translation>Azul NCS</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="56"/>
-        <source>High Contrast</source>
-        <translation>Contraste Alto</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="58"/>
+        <source>Blue NCS</source>
+        <translation>Azul NCS</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="61"/>
+        <source>High Contrast</source>
+        <translation>Contraste Alto</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="64"/>
         <source>Blue Icy</source>
         <translation>Azul hielo</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="60"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="67"/>
         <source>Qt</source>
         <translation>Qt</translation>
     </message>
@@ -44875,17 +44875,17 @@
         <translation>Pulsar para abrir una ventana de gráfica para mostrar datos recibidos desde el dispositivo seleccionado</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="562"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="566"/>
         <source>Press to connect the selected device</source>
         <translation>Pulsar para conectar el dispositivo seleccionado</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="276"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="278"/>
         <source>&lt;h3&gt;The QtSerialPort package is not available.&lt;br/&gt;MicroPython support is deactivated.&lt;/h3&gt;</source>
         <translation>&lt;h3&gt;El package QtSerialPort no está disponible.&lt;br/&gt;Soporte para MicroPython desactivado.&lt;/h3&gt;</translation>
     </message>
     <message numerus="yes">
-        <location filename="../MicroPython/MicroPythonWidget.py" line="318"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="320"/>
         <source>%n supported device(s) detected.</source>
         <translation>
             <numerusform>%n dispositivo soportado detectado.</numerusform>
@@ -44898,37 +44898,37 @@
         <translation type="obsolete">{0} en {1}</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="340"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="342"/>
         <source>No supported devices detected.</source>
         <translation>No se han detectado dispositivos soportados.</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="532"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="536"/>
         <source>Clear</source>
         <translation>Limpiar</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="534"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="538"/>
         <source>Copy</source>
         <translation>Copiar</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="535"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="539"/>
         <source>Paste</source>
         <translation>Pegar</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="557"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="561"/>
         <source>Press to disconnect the current device</source>
         <translation>Pulsar para desconectar el dispositivo seleccionado</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="578"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="582"/>
         <source>No device attached</source>
         <translation>No hay dispositivo conectado</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="578"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="582"/>
         <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -44941,212 +44941,212 @@
 Finalmente, pulsar el botón de reset del dispositivo y esperar unos pocos segundos antes de intentar de nuevo.</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="605"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="609"/>
         <source>Start REPL</source>
         <translation>Iniciar REPL</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="605"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="609"/>
         <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El REPL no se puede iniciar.&lt;/p&gt;&lt;p&gt;Razón: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1054"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1068"/>
         <source>Serial Device Connect</source>
         <translation>Conexión de Dispositivo en Serie</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1054"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1068"/>
         <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se puede conectar el dispositovo en el puerto de serie &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1099"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1113"/>
         <source>Run Script</source>
         <translation>Ejecutar Script</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1082"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1096"/>
         <source>There is no editor open. Abort...</source>
         <translation>No hay editor abierto. Abortando...</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1090"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1104"/>
         <source>The current editor does not contain a script. Abort...</source>
         <translation>El editor actual no contiene un script. Abortando...</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1099"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1113"/>
         <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se puede ejecutar el script.&lt;/p&gt;&lt;p&gt;Razón: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1123"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1137"/>
         <source>Open Python File</source>
         <translation>Abrir Archivo de Python</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1123"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1137"/>
         <source>Python3 Files (*.py);;All Files (*)</source>
         <translation>Archivos de Python3 (*.py);;Todos los Archivos (*)</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1168"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1182"/>
         <source>Start Chart</source>
         <translation>Iniciar Gráfica</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1168"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1182"/>
         <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se puede iniciar la gráfica.&lt;/p&gt;&lt;p&gt;Razón: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1197"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1211"/>
         <source>Unsaved Chart Data</source>
         <translation>Datos de Gráfica sin Guardar</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1197"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1211"/>
         <source>The chart contains unsaved data.</source>
         <translation>La gráfica contiene datos sin guardar.</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1248"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1262"/>
         <source>Start File Manager</source>
         <translation>Comenzar Gestor de Archivos</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1248"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1262"/>
         <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El Gestor de Archivos no se puede iniciar.&lt;/p&gt;&lt;p&gt;Razón: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1322"/>
-        <source>Show Version</source>
-        <translation>Mostrar Versión</translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1325"/>
-        <source>Show Implementation</source>
-        <translation>Mostrar Implementación</translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1452"/>
-        <source>Synchronize Time</source>
-        <translation>Sincronizar Hora</translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1333"/>
-        <source>Show Device Time</source>
-        <translation>Mostrar Hora del Dispositivo</translation>
-    </message>
-    <message>
         <location filename="../MicroPython/MicroPythonWidget.py" line="1336"/>
+        <source>Show Version</source>
+        <translation>Mostrar Versión</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1339"/>
+        <source>Show Implementation</source>
+        <translation>Mostrar Implementación</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1466"/>
+        <source>Synchronize Time</source>
+        <translation>Sincronizar Hora</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1347"/>
+        <source>Show Device Time</source>
+        <translation>Mostrar Hora del Dispositivo</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1350"/>
         <source>Show Local Time</source>
         <translation>Mostrar Hora Local</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1673"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1687"/>
         <source>Compile Python File</source>
         <translation>Compilar Archivo de Python</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1693"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1707"/>
         <source>Compile Current Editor</source>
         <translation>Compilar Editor Actual</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1388"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1402"/>
         <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
         <translation>&lt;h3&gt;Información de Versión de Dispositivo&lt;/h3&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1397"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1411"/>
         <source>No version information available.</source>
         <translation>No hay información de versión disponible.</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1399"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1413"/>
         <source>Device Version Information</source>
         <translation>Información de Versión de Dispositivo</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1422"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1436"/>
         <source>unknown</source>
         <translation>desconocido</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1426"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1440"/>
         <source>Device Implementation Information</source>
         <translation>Información de Implementación de Dispositivo</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1426"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1440"/>
         <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;h3&gt;Información de Implementación de Dispositivo &lt;/h3&gt;&lt;p&gt;Este dispositivo contiene &lt;b&gt;{0} {1}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1452"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1466"/>
         <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
         <translation>&lt;p&gt;La hora del dispositivo conectado está sincronizada con la hora local.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1475"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1489"/>
         <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation>&lt;h3&gt;Fecha y Hora del Dispositivo&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Fecha&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Hora&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1483"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1497"/>
         <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;h3&gt;Fecha y Hora del Dispositivo&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1500"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1514"/>
         <source>Device Date and Time</source>
         <translation>Fecha y Hora del Dispositivo</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1513"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1527"/>
         <source>Local Date and Time</source>
         <translation>Fecha y Hora Local</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1513"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1527"/>
         <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation>&lt;h3&gt;Fecha y Hora del Local&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Fecha&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Hora&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1581"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1595"/>
         <source>Error handling device</source>
         <translation>Error de gestión del dispositivo</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1581"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1595"/>
         <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Ha ocurrido un error al comunicar con el dispositivo conectado.&lt;/p&gt;&lt;p&gt;Método: {0}&lt;/p&gt;&lt;p&gt;Mensaje: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1621"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1635"/>
         <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
         <translation>El compilador multiplataforma de MicroPython &lt;b&gt;mpy-cross&lt;/b&gt; no se encuentra. Asegúrese de que está en la ruta de búsqueda o configurarlo en la página de configuración de MicroPython.</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1643"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1657"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation>Archivos Python (*.py);;Todos los Archivos (*)</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1653"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1667"/>
         <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
         <translation>El archivo de Python &lt;b&gt;{0}&lt;/b&gt; no existe. Abortando...</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1663"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1677"/>
         <source>&apos;mpy-cross&apos; Output</source>
         <translation>Salida de &apos;mpy-cross&apos;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1686"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1700"/>
         <source>The current editor does not contain a Python file. Aborting...</source>
         <translation>El editor actual no contiene un archivo de Python. Abortando...</translation>
     </message>
@@ -45161,52 +45161,52 @@
         <translation>Pulsar para abrir un gestor de archivos en el dispositivo seleccionado</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1181"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1195"/>
         <source>&#xc2;&#xb5;Py Chart</source>
         <translation>Gráfica µPy</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1264"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1278"/>
         <source>&#xc2;&#xb5;Py Files</source>
         <translation>Archivos µPy</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1365"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1379"/>
         <source>Show Documentation</source>
         <translation>Mostrar Documentación</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1378"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1392"/>
         <source>Configure</source>
         <translation>Configurar</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1339"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1353"/>
         <source>Show Time</source>
         <translation>Mostrar Tiempo</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1358"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1372"/>
         <source>Download Firmware</source>
         <translation>Descargar Firmware</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1556"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1570"/>
         <source>Date and Time</source>
         <translation>Fecha y Hora</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1539"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1553"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{0}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Fecha y Hora Local&lt;/th&gt;&lt;th&gt;Fecha y Hora del Dispositivo&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Fecha&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{0}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Hora&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1556"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1570"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align=&apos;center&apos;&gt;{0} {1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Fecha y Hora Local&lt;/th&gt;&lt;th&gt;Fecha y Hora del Dispositivo&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align=&apos;center&apos;&gt;{0} {1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="410"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="412"/>
         <source>Unknown MicroPython Device</source>
         <translation>Dispositivo MicroPython Desconocido</translation>
     </message>
@@ -45221,64 +45221,64 @@
         <translation type="obsolete">{0} ({1:04x}/{2:04x})</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1375"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1389"/>
         <source>Ignored Serial Devices</source>
         <translation>Dispositivos de Serie Ignorados</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1304"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1318"/>
         <source>Downloads</source>
         <translation type="unfinished">Descargas</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="323"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="325"/>
         <source>{0} - {1} ({2})</source>
         <comment>board name, description, port name</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="382"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="384"/>
         <source>&lt;p&gt;Detected these unknown serial devices&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please report them together with the board name and a short description to &lt;a href=&quot;mailto:{1}&quot;&gt; the eric bug reporting address&lt;/a&gt; if it is a MicroPython board.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="382"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="384"/>
         <source>{0} (0x{1:04x}/0x{2:04x})</source>
         <comment>description, VId, PId</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="410"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="412"/>
         <source>Would you like to add them to the list of manually configured devices?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1373"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1387"/>
         <source>Manage Unknown Devices</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1778"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1792"/>
         <source>Add Unknown Devices</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1778"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1792"/>
         <source>Select the devices to be added:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1370"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1384"/>
         <source>Flash UF2 Device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="350"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="352"/>
         <source>Manual Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../MicroPython/MicroPythonWidget.py" line="344"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="346"/>
         <source>
 %n unknown device(s) for manual selection.</source>
         <translation type="unfinished">
@@ -45513,674 +45513,674 @@
 <context>
     <name>MiniEditor</name>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>New</source>
         <translation>Nuevo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>&amp;New</source>
         <translation>&amp;Nuevo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="551"/>
-        <source>Open an empty editor window</source>
-        <translation>Abre una ventana vacia en el editor</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="552"/>
+        <source>Open an empty editor window</source>
+        <translation>Abre una ventana vacia en el editor</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="553"/>
         <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="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>Open</source>
         <translation>Abrir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>&amp;Open...</source>
         <translation>&amp;Abrir...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="565"/>
+        <location filename="../QScintilla/MiniEditor.py" line="566"/>
         <source>Open a file</source>
         <translation>Abrir un archivo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="566"/>
+        <location filename="../QScintilla/MiniEditor.py" line="567"/>
         <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="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>Save</source>
         <translation>Guardar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>&amp;Save</source>
         <translation>&amp;Guardar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation>Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="579"/>
-        <source>Save the current file</source>
-        <translation>Guarda el archivo actual</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="580"/>
+        <source>Save the current file</source>
+        <translation>Guarda el archivo actual</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="581"/>
         <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="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Save as</source>
         <translation>Guardar como</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Save &amp;as...</source>
         <translation>Guardar co&amp;mo...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="593"/>
+        <location filename="../QScintilla/MiniEditor.py" line="594"/>
         <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="595"/>
+        <location filename="../QScintilla/MiniEditor.py" line="596"/>
         <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="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>Close</source>
         <translation>Cerrar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>&amp;Close</source>
         <translation>&amp;Cerrar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="624"/>
+        <location filename="../QScintilla/MiniEditor.py" line="625"/>
         <source>Close the editor window</source>
         <translation>Cierra la ventanas del editor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="625"/>
+        <location filename="../QScintilla/MiniEditor.py" line="626"/>
         <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="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Undo</source>
         <translation>Deshacer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>&amp;Undo</source>
         <translation>&amp;Deshacer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="671"/>
+        <location filename="../QScintilla/MiniEditor.py" line="672"/>
         <source>Undo the last change</source>
         <translation>Revierte el último cambio</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="672"/>
+        <location filename="../QScintilla/MiniEditor.py" line="673"/>
         <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="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>Redo</source>
         <translation>Rehacer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>&amp;Redo</source>
         <translation>&amp;Rehacer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="685"/>
+        <location filename="../QScintilla/MiniEditor.py" line="686"/>
         <source>Redo the last change</source>
         <translation>Rehace el último cambio</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="686"/>
+        <location filename="../QScintilla/MiniEditor.py" line="687"/>
         <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="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Cut</source>
         <translation>Cortar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Cu&amp;t</source>
         <translation>Cor&amp;tar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="700"/>
-        <source>Cut the selection</source>
-        <translation>Corta la selección</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="701"/>
+        <source>Cut the selection</source>
+        <translation>Corta la selección</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="702"/>
         <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="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Copy</source>
         <translation>Copiar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>&amp;Copy</source>
         <translation>&amp;Copiar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="716"/>
-        <source>Copy the selection</source>
-        <translation>Copia lo seleccionado</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="717"/>
+        <source>Copy the selection</source>
+        <translation>Copia lo seleccionado</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="718"/>
         <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="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Paste</source>
         <translation>Pegar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>&amp;Paste</source>
         <translation>&amp;Pegar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="732"/>
+        <location filename="../QScintilla/MiniEditor.py" line="733"/>
         <source>Paste the last cut/copied text</source>
         <translation>Pega el último texto copiado/cortado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="734"/>
+        <location filename="../QScintilla/MiniEditor.py" line="735"/>
         <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="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Clear</source>
         <translation>Borrar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Cl&amp;ear</source>
         <translation>&amp;Borrar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="749"/>
-        <source>Clear all text</source>
-        <translation>Borra todo el texto</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="750"/>
+        <source>Clear all text</source>
+        <translation>Borra todo el texto</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="751"/>
         <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="2353"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2354"/>
         <source>About</source>
         <translation>Acerca de</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2353"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2354"/>
         <source>&amp;About</source>
         <translation>&amp;Acerca de</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2358"/>
         <source>Display information about this software</source>
         <translation>Muestra información acerca de este software</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2359"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2360"/>
         <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="2365"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2366"/>
         <source>About Qt</source>
         <translation>Acerca de Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2365"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2366"/>
         <source>About &amp;Qt</source>
         <translation>Acerca de &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2369"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2370"/>
         <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="2371"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2372"/>
         <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="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>What&apos;s This?</source>
         <translation>¿Qué es esto?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>&amp;What&apos;s This?</source>
         <translation>¿&amp;Qué es esto?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2384"/>
-        <source>Context sensitive help</source>
-        <translation>Ayuda sensible al contexto</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2385"/>
+        <source>Context sensitive help</source>
+        <translation>Ayuda sensible al contexto</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
         <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="2401"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2402"/>
         <source>&amp;File</source>
         <translation>&amp;Archivo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2413"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2414"/>
         <source>&amp;Edit</source>
         <translation>&amp;Editar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2439"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2440"/>
         <source>&amp;Help</source>
         <translation>A&amp;yuda</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2451"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2452"/>
         <source>File</source>
         <translation>Archivo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2464"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2465"/>
         <source>Edit</source>
         <translation>Editar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2474"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2475"/>
         <source>Find</source>
         <translation>Buscar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2488"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2489"/>
         <source>Help</source>
         <translation>Ayuda</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2509"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2510"/>
         <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="2516"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2517"/>
         <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="2523"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2524"/>
         <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="2540"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2541"/>
         <source>Ready</source>
         <translation>Listo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2622"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2623"/>
         <source>File loaded</source>
         <translation>Archivo cargado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2708"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2709"/>
         <source>File saved</source>
         <translation>Archivo guardado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3055"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3066"/>
         <source>Untitled</source>
         <translation>Sin título</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2737"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2738"/>
         <source>Mini Editor</source>
         <translation>Mini Editor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3096"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3107"/>
         <source>Select all</source>
         <translation>Seleccionar todo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3097"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3108"/>
         <source>Deselect all</source>
         <translation>Deseleccionar todo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3111"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3122"/>
         <source>Languages</source>
         <translation>Lenguajes</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3114"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3125"/>
         <source>No Language</source>
         <translation>Ningún Lenguaje</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2594"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2595"/>
         <source>Open File</source>
         <translation>Abrir archivo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>Print</source>
         <translation>Imprimir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>&amp;Print</source>
         <translation>Im&amp;primir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation>Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="638"/>
-        <source>Print the current file</source>
-        <translation>Imprime el archivo actual</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3018"/>
-        <source>Printing...</source>
-        <translation>Imprimiendo...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3036"/>
-        <source>Printing completed</source>
-        <translation>Impresión completa</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3038"/>
-        <source>Error while printing</source>
-        <translation>Error mientras se imprimía</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3041"/>
-        <source>Printing aborted</source>
-        <translation>Impresión cancelada</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="639"/>
+        <source>Print the current file</source>
+        <translation>Imprime el archivo actual</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3026"/>
+        <source>Printing...</source>
+        <translation>Imprimiendo...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3047"/>
+        <source>Printing completed</source>
+        <translation>Impresión completa</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3049"/>
+        <source>Error while printing</source>
+        <translation>Error mientras se imprimía</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3052"/>
+        <source>Printing aborted</source>
+        <translation>Impresión cancelada</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="640"/>
         <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="646"/>
+        <location filename="../QScintilla/MiniEditor.py" line="647"/>
         <source>Print Preview</source>
         <translation>Presentación preliminar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="651"/>
+        <location filename="../QScintilla/MiniEditor.py" line="652"/>
         <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="653"/>
+        <location filename="../QScintilla/MiniEditor.py" line="654"/>
         <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="3138"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3149"/>
         <source>Guessed</source>
         <translation>Suposición</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3160"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3171"/>
         <source>Alternatives</source>
         <translation>Alternativas</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3184"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3195"/>
         <source>Pygments Lexer</source>
         <translation>Analizador Léxico de Pygments</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3184"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3195"/>
         <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="467"/>
+        <location filename="../QScintilla/MiniEditor.py" line="468"/>
         <source>Line: {0:5}</source>
         <translation>Línea: {0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="471"/>
+        <location filename="../QScintilla/MiniEditor.py" line="472"/>
         <source>Pos: {0:5}</source>
         <translation>Pos: {0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2594"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2595"/>
         <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="2701"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2702"/>
         <source>Save File</source>
         <translation>Guardar archivo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2701"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2702"/>
         <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="2737"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2738"/>
         <source>{0}[*] - {1}</source>
         <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3156"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3167"/>
         <source>Alternatives ({0})</source>
         <translation>Alternativas ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2567"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2568"/>
         <source>The document has unsaved changes.</source>
         <translation>El documento tiene cambios sin guardar.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save Copy</source>
         <translation>Guardar Copia</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save &amp;Copy...</source>
         <translation>Guardar &amp;Copia...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="608"/>
+        <location filename="../QScintilla/MiniEditor.py" line="609"/>
         <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="610"/>
+        <location filename="../QScintilla/MiniEditor.py" line="611"/>
         <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="3698"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3709"/>
         <source>EditorConfig Properties</source>
         <translation>Propiedades de EditorConfig</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3698"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3709"/>
         <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="2720"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2721"/>
         <source>[*] - {0}</source>
         <translation>[*] - {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="486"/>
+        <location filename="../QScintilla/MiniEditor.py" line="487"/>
         <source>Language: {0}</source>
         <translation>Lenguaje: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2431"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2432"/>
         <source>&amp;View</source>
         <translation>&amp;Ver</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2481"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2482"/>
         <source>View</source>
         <translation>Ver</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2501"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2502"/>
         <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Esta zona de la barra de estado muestra el lenguaje del editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2534"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2535"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Esta zona de la barra de estado permite hacer zoom sobre el editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="397"/>
+        <location filename="../QScintilla/MiniEditor.py" line="398"/>
         <source>About eric Mini Editor</source>
         <translation>Acerca del Mini Editor de eric</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="397"/>
+        <location filename="../QScintilla/MiniEditor.py" line="398"/>
         <source>The eric 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 eric 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="2567"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2568"/>
         <source>eric Mini Editor</source>
         <translation>Mini Editor de eric</translation>
     </message>
@@ -46681,12 +46681,12 @@
 <context>
     <name>MouseUtilities</name>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="29"/>
+        <location filename="../Utilities/MouseUtilities.py" line="31"/>
         <source>Shift</source>
         <translation>Shift</translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="31"/>
+        <location filename="../Utilities/MouseUtilities.py" line="33"/>
         <source>Alt</source>
         <translation>Alt</translation>
     </message>
@@ -46696,37 +46696,37 @@
         <translation>Cmd</translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="33"/>
+        <location filename="../Utilities/MouseUtilities.py" line="35"/>
         <source>Ctrl</source>
         <translation>Ctrl</translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="35"/>
+        <location filename="../Utilities/MouseUtilities.py" line="37"/>
         <source>Meta</source>
         <translation>Meta</translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="43"/>
-        <source>Left Button</source>
-        <translation>Botón Izquierdo</translation>
-    </message>
-    <message>
-        <location filename="../Utilities/MouseUtilities.py" line="45"/>
-        <source>Right Button</source>
-        <translation>Botón Derecho</translation>
-    </message>
-    <message>
         <location filename="../Utilities/MouseUtilities.py" line="47"/>
-        <source>Middle Button</source>
-        <translation>Botón Central</translation>
+        <source>Left Button</source>
+        <translation>Botón Izquierdo</translation>
     </message>
     <message>
         <location filename="../Utilities/MouseUtilities.py" line="49"/>
-        <source>Extra Button 1</source>
-        <translation>Botón Extra 1</translation>
+        <source>Right Button</source>
+        <translation>Botón Derecho</translation>
     </message>
     <message>
         <location filename="../Utilities/MouseUtilities.py" line="51"/>
+        <source>Middle Button</source>
+        <translation>Botón Central</translation>
+    </message>
+    <message>
+        <location filename="../Utilities/MouseUtilities.py" line="53"/>
+        <source>Extra Button 1</source>
+        <translation>Botón Extra 1</translation>
+    </message>
+    <message>
+        <location filename="../Utilities/MouseUtilities.py" line="55"/>
         <source>Extra Button 2</source>
         <translation>Botón Extra 2</translation>
     </message>
@@ -47257,32 +47257,32 @@
 <context>
     <name>NavigationBar</name>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="55"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="56"/>
         <source>Move one screen backward</source>
         <translation>Ir una pantalla hacia atrás</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="65"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="67"/>
         <source>Move one screen forward</source>
         <translation>Ir una pantalla hacia adelante</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="83"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="86"/>
         <source>Move to the initial screen</source>
         <translation>Mover a la pantalla inicial</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="95"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="99"/>
         <source>Exit Fullscreen</source>
         <translation>Salir de Pantalla Completa</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="273"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="281"/>
         <source>Clear History</source>
         <translation>Borrar Historial</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="108"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="113"/>
         <source>Main Menu</source>
         <translation>Menú Principal</translation>
     </message>
@@ -47320,12 +47320,12 @@
         <translation>&lt;b&gt;Introducir nombre de usuario y contraseña para &apos;{0}&apos;&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/NetworkManager.py" line="336"/>
+        <location filename="../WebBrowser/Network/NetworkManager.py" line="338"/>
         <source>Authentication required</source>
         <translation>Autenticación necesaria</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/NetworkManager.py" line="337"/>
+        <location filename="../WebBrowser/Network/NetworkManager.py" line="339"/>
         <source>Authentication is required to access:</source>
         <translation>Es necesaria autenticación para acceder:</translation>
     </message>
@@ -47950,27 +47950,27 @@
         <translation>Invertir orden del byte</translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="184"/>
+        <location filename="../UI/NumbersWidget.py" line="194"/>
         <source>Auto</source>
         <translation>Auto</translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="185"/>
+        <location filename="../UI/NumbersWidget.py" line="195"/>
         <source>Dec</source>
         <translation>Dec</translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="186"/>
+        <location filename="../UI/NumbersWidget.py" line="196"/>
         <source>Hex</source>
         <translation>Hex</translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="187"/>
+        <location filename="../UI/NumbersWidget.py" line="197"/>
         <source>Oct</source>
         <translation>Oct</translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="188"/>
+        <location filename="../UI/NumbersWidget.py" line="198"/>
         <source>Bin</source>
         <translation>Bin</translation>
     </message>
@@ -48109,7 +48109,7 @@
 <context>
     <name>OpenSearchEngineModel</name>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="141"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="148"/>
         <source>&lt;strong&gt;Provides contextual suggestions&lt;/strong&gt;</source>
         <translation>&lt;strong&gt;Proporciona sugerencias contextuales&lt;/strong&gt;</translation>
     </message>
@@ -48124,12 +48124,12 @@
         <translation>Palabras clave</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="149"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="156"/>
         <source>Comma-separated list of keywords that may be entered in the location bar followed by search terms to search with this engine</source>
         <translation>Lista de palabras clave separadas por comas que pueden ser introducidas en la barra de direcciones seguidas por términos de búsqueda para buscar con este motor</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="136"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="143"/>
         <source>&lt;strong&gt;Description:&lt;/strong&gt; {0}</source>
         <translation>&lt;strong&gt;Descripción:&lt;/strong&gt; {0}</translation>
     </message>
@@ -48137,7 +48137,7 @@
 <context>
     <name>OpenSearchManager</name>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchManager.py" line="462"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchManager.py" line="463"/>
         <source>&lt;p&gt;Do you want to add the following engine to your list of search engines?&lt;br/&gt;&lt;br/&gt;Name: {0}&lt;br/&gt;Searches on: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;¿Desea añadir el siguiente motor a la lista de motores de búsqueda?&lt;br/&gt;&lt;br/&gt;Nombre: {0}&lt;br/&gt;Busca en: {1}&lt;/p&gt;</translation>
     </message>
@@ -48749,12 +48749,12 @@
         <translation>Errores</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="146"/>
+        <location filename="../PipInterface/PipDialog.py" line="156"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="146"/>
+        <location filename="../PipInterface/PipDialog.py" line="156"/>
         <source>The process {0} could not be started.</source>
         <translation>El proceso {0} no se ha podido iniciar.</translation>
     </message>
@@ -48830,7 +48830,7 @@
 <context>
     <name>PipFreezeDialog</name>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="225"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="227"/>
         <source>Generate Requirements</source>
         <translation>Generar Requisitos</translation>
     </message>
@@ -48915,27 +48915,27 @@
         <translation>Actualiza&amp;r</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="225"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="227"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation>Archivos de Texto (*.txt);;Todos los Archivos (*)</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="114"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="116"/>
         <source>The requirements were changed. Do you want to overwrite these changes?</source>
         <translation>Los requisitos se han cambiado. ¿Desea sobreescribir los cambios?</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="156"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="158"/>
         <source>No output generated by &apos;pip freeze&apos;.</source>
         <translation>&apos;pip freeze&apos; no ha generado output.</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="193"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="195"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; already exists. Do you want to overwrite it?</source>
         <translation>El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="205"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="207"/>
         <source>&lt;p&gt;The requirements could not be written to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;TLos requisitos no se han podido escribir en &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
@@ -49023,7 +49023,7 @@
         <translation>Clasificadores:</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="190"/>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="193"/>
         <source>any</source>
         <translation>cualquiera</translation>
     </message>
@@ -49138,27 +49138,27 @@
         <translation>Archivo</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="229"/>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="232"/>
         <source>B</source>
         <translation>B</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="232"/>
-        <source>KB</source>
-        <translation>KB</translation>
-    </message>
-    <message>
         <location filename="../PipInterface/PipPackageDetailsDialog.py" line="235"/>
-        <source>MB</source>
-        <translation>MB</translation>
+        <source>KB</source>
+        <translation>KB</translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackageDetailsDialog.py" line="238"/>
+        <source>MB</source>
+        <translation>MB</translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="241"/>
         <source>GB</source>
         <translation>GB</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="239"/>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="242"/>
         <source>{0:.1f} {1}</source>
         <comment>value, unit</comment>
         <translation>{0:.1f} {1}</translation>
@@ -49310,7 +49310,7 @@
         <translation>Conmutar para mostrar u ocultar la ventana de búsqueda</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="189"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="192"/>
         <source>Name:</source>
         <translation>Nombre:</translation>
     </message>
@@ -49330,7 +49330,7 @@
         <translation type="obsolete">Seleccionar la operación de búsqueda de término combinada</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="193"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="196"/>
         <source>Summary:</source>
         <translation>Resumen:</translation>
     </message>
@@ -49370,77 +49370,77 @@
         <translation>Menu pip</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="190"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="193"/>
         <source>Version:</source>
         <translation>Versión:</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="191"/>
-        <source>Location:</source>
-        <translation>Ubicación:</translation>
-    </message>
-    <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="192"/>
-        <source>Requires:</source>
-        <translation>Requiere:</translation>
-    </message>
-    <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="194"/>
-        <source>Homepage:</source>
-        <translation>Página Home:</translation>
+        <source>Location:</source>
+        <translation>Ubicación:</translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="195"/>
-        <source>Author:</source>
-        <translation>Autor:</translation>
-    </message>
-    <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="196"/>
-        <source>Author Email:</source>
-        <translation>Correo electrónico del Autor:</translation>
+        <source>Requires:</source>
+        <translation>Requiere:</translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="197"/>
-        <source>License:</source>
-        <translation>Licencia:</translation>
+        <source>Homepage:</source>
+        <translation>Página Home:</translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="198"/>
-        <source>Metadata Version:</source>
-        <translation>Versión de Metadatos:</translation>
+        <source>Author:</source>
+        <translation>Autor:</translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="199"/>
-        <source>Installer:</source>
-        <translation>Instalador:</translation>
+        <source>Author Email:</source>
+        <translation>Correo electrónico del Autor:</translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="200"/>
-        <source>Classifiers:</source>
-        <translation>Clasificadores:</translation>
+        <source>License:</source>
+        <translation>Licencia:</translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="201"/>
-        <source>Entry Points:</source>
-        <translation>Puntos de Entrada:</translation>
+        <source>Metadata Version:</source>
+        <translation>Versión de Metadatos:</translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="202"/>
+        <source>Installer:</source>
+        <translation>Instalador:</translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="203"/>
+        <source>Classifiers:</source>
+        <translation>Clasificadores:</translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="204"/>
+        <source>Entry Points:</source>
+        <translation>Puntos de Entrada:</translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="205"/>
         <source>Files:</source>
         <translation>Archivos:</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="351"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="360"/>
         <source>Getting installed packages...</source>
         <translation>Obteniendo packages instalados...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="366"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="375"/>
         <source>Getting outdated packages...</source>
         <translation>Obteniendo packages antiguos...</translation>
     </message>
     <message numerus="yes">
-        <location filename="../PipInterface/PipPackagesWidget.py" line="776"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="791"/>
         <source>%n package(s) found.</source>
         <translation>
             <numerusform>%n package encontrado.</numerusform>
@@ -49448,7 +49448,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
         <source>Search PyPI</source>
         <translation>Buscar PyPI</translation>
     </message>
@@ -49478,92 +49478,92 @@
         <translation type="obsolete">Seleccionar versión del package:</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
         <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No hay info de detalles de package disponible para &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="960"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="975"/>
         <source>Install Pip</source>
         <translation>Instalar Pip</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="963"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="978"/>
         <source>Install Pip to User-Site</source>
         <translation>Instalar Pip en el Sitio de Usuario</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="966"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="981"/>
         <source>Repair Pip</source>
         <translation>Reparar Pip</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1083"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1098"/>
         <source>Install Packages</source>
         <translation>Instalar Packages</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="973"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="988"/>
         <source>Install Local Package</source>
         <translation>Instalar Package Local</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="977"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="992"/>
         <source>Install Requirements</source>
         <translation>Instalar Requisitos</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="980"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="995"/>
         <source>Uninstall Requirements</source>
         <translation>Desinstalar Requisitos</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="983"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="998"/>
         <source>Generate Requirements...</source>
         <translation>Generar Requisitos...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1001"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1016"/>
         <source>Edit User Configuration...</source>
         <translation>Editar Configuración de Usuario...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1004"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1019"/>
         <source>Edit Environment Configuration...</source>
         <translation>Editar Configuración de Entorno...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1009"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1024"/>
         <source>Configure...</source>
         <translation>Configurar...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1194"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1209"/>
         <source>Edit Configuration</source>
         <translation>Editar Configuración</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1194"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1209"/>
         <source>No valid configuration path determined. Aborting</source>
         <translation>No hay una ruta válida de configuración determinada. Abortando</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="987"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1002"/>
         <source>Show Cache Info...</source>
         <translation>Mostrar info de Cache...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="990"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1005"/>
         <source>Show Cached Files...</source>
         <translation>Mostrar Archivos en Cache...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="993"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1008"/>
         <source>Remove Cached Files...</source>
         <translation>Eliminar Archivos en Cache...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="996"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1011"/>
         <source>Purge Cache...</source>
         <translation>Purgar Cache...</translation>
     </message>
@@ -49573,17 +49573,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="759"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="774"/>
         <source>&lt;p&gt;Received an error while searching for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="778"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="793"/>
         <source>Showing first 20 packages found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="785"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="800"/>
         <source>&lt;p&gt;There were no results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49823,12 +49823,12 @@
         <translation>Desactivar</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInfoDialog.py" line="101"/>
+        <location filename="../PluginManager/PluginInfoDialog.py" line="105"/>
         <source>Yes</source>
         <translation>Si</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInfoDialog.py" line="77"/>
+        <location filename="../PluginManager/PluginInfoDialog.py" line="78"/>
         <source>No</source>
         <translation>No</translation>
     </message>
@@ -49838,7 +49838,7 @@
         <translation>Versión</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInfoDialog.py" line="76"/>
+        <location filename="../PluginManager/PluginInfoDialog.py" line="77"/>
         <source>On-Demand</source>
         <translation>A la Demanda</translation>
     </message>
@@ -49914,42 +49914,42 @@
         <translation>Siguiente &gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="75"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="77"/>
         <source>User plugins directory</source>
         <translation>Directorio de plugins del usuario</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="81"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="83"/>
         <source>Global plugins directory</source>
         <translation>Directorio de plugins global</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="162"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="164"/>
         <source>Select plugin ZIP-archives</source>
         <translation>Seleccionar archivos ZIP de plugin</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="162"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="164"/>
         <source>Plugin archive (*.zip)</source>
         <translation>Archivo de plugin (*.zip)</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="236"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="238"/>
         <source>  ok</source>
         <translation>  Aceptar</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="243"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="245"/>
         <source>The plugins were installed successfully.</source>
         <translation>Los plugins se instalaron satisfactoriamente.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="246"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="248"/>
         <source>Some plugins could not be installed.</source>
         <translation>Algunos plugins no se han podido instalar.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="505"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="507"/>
         <source>Unspecific exception installing plugin.</source>
         <translation>Excepción no especificada durante la instalación del plugin.</translation>
     </message>
@@ -49959,7 +49959,7 @@
         <translation>Instalar</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="145"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="147"/>
         <source>Plugin ZIP-Archives:
 {0}
 
@@ -49971,47 +49971,47 @@
 {1} ({2})</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="231"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="233"/>
         <source>Installing {0} ...</source>
         <translation>Instalando {0}...</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="274"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="276"/>
         <source>&lt;p&gt;The archive file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; no existe. Abortando...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="315"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="317"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not a valid plugin ZIP-archive. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; no es un ZIP de plugin válido. Abortando...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="294"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="296"/>
         <source>&lt;p&gt;The destination directory &lt;b&gt;{0}&lt;/b&gt; is not writeable. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;El directorio de destino &lt;b&gt;{0}&lt;/b&gt; no es escribible. Abortando...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="364"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="366"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; does not contain a &apos;packageName&apos; attribute. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;El módulo de plugin &lt;b&gt;{0}&lt;/b&gt; no contiene un atributo &apos;packageName&apos;. Abortando...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="374"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="376"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; does not conform with the PyQt v2 API. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;El módulo de plugin &lt;b&gt;{0}&lt;/b&gt; no está conforme a PyQt v2 API. Abortando...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="389"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="391"/>
         <source>&lt;p&gt;The plugin package &lt;b&gt;{0}&lt;/b&gt; exists. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;El paquete de plugin &lt;b&gt;{0}&lt;/b&gt; ya existe. Abortando...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="402"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="404"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; exists. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;El módulo de plugin &lt;b&gt;{0}&lt;/b&gt; ya existe. Abortando...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="496"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="498"/>
         <source>Error installing plugin. Reason: {0}</source>
         <translation>Error al instalar el plugin. Razón: {0}</translation>
     </message>
@@ -50059,22 +50059,22 @@
         <translation>&lt;p&gt;El directorio de descaga del plugin &lt;b&gt;{0}&lt;/b&gt; no ha podido ser creado. Por favor, configúrelo a través del diálogo de configuración.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1292"/>
+        <location filename="../PluginManager/PluginManager.py" line="1293"/>
         <source>Error downloading file</source>
         <translation>Error al descargar el fichero</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1292"/>
+        <location filename="../PluginManager/PluginManager.py" line="1293"/>
         <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se pudo descargar el archivo solicitado desde {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1329"/>
+        <location filename="../PluginManager/PluginManager.py" line="1330"/>
         <source>New plugin versions available</source>
         <translation>Existen nuevas versiones de plugins</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1329"/>
+        <location filename="../PluginManager/PluginManager.py" line="1330"/>
         <source>&lt;p&gt;There are new plug-ins or plug-in updates available. Use the plug-in repository dialog to get them.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Existen nuevos plug-ins o existen bien actualizaciones para plug-in. Utilice el repositorio de plug-ins para su obtención.&lt;/p&gt;</translation>
     </message>
@@ -50348,54 +50348,54 @@
         <translation>Cerrar &amp;&amp; Instalar</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="359"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="362"/>
         <source>Download Plugin Files</source>
         <translation>Archivos de descarga del Plugin</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="359"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="362"/>
         <source>The requested plugins were downloaded.</source>
         <translation>Los plugins solicitados han sido descargados.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="415"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="418"/>
         <source>Read plugins repository file</source>
         <translation>Leer archivo de repositorio de plugins</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="423"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="426"/>
         <source>No plugin repository file available.
 Select Update.</source>
         <translation>No hay disponible ningún archivo de repositorio de plugins.
 Seleccione Actualizar.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="484"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="491"/>
         <source>Error downloading file</source>
         <translation>Error al descargar el fichero</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="568"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="575"/>
         <source>Stable</source>
         <translation>Estable</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="574"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="581"/>
         <source>Unstable</source>
         <translation>Inestable</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="586"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="593"/>
         <source>Unknown</source>
         <translation>Desconocido</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="415"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="418"/>
         <source>&lt;p&gt;The plugins repository file &lt;b&gt;{0}&lt;/b&gt; could not be read. Select Update&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de repositorio de plugins &lt;b&gt;{0}&lt;/b&gt; no se ha podido leer. Seleccione Actualizar&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="484"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="491"/>
         <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se pudo descargar el archivo solicitado desde {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</translation>
     </message>
@@ -50405,87 +50405,87 @@
         <translation>Descargar &amp;&amp; Instalar</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="407"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="410"/>
         <source>Plugins Repository URL Changed</source>
         <translation>La URL del Repositorio de Plugins Ha Cambiado</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="407"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="410"/>
         <source>The URL of the Plugins Repository has changed. Select the &quot;Update&quot; button to get the new repository file.</source>
         <translation>La URL del repositorio de plugins ha cambiado. Seleccionar el botón &apos;Actualizar&apos; para obtener el nuevo archivo del repositorio.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="117"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="120"/>
         <source>Hide</source>
         <translation>Ocultar</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="119"/>
-        <source>Hide Selected</source>
-        <translation>Ocultar seleccionados</translation>
-    </message>
-    <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="122"/>
-        <source>Show All</source>
-        <translation>Mostrar Todos</translation>
+        <source>Hide Selected</source>
+        <translation>Ocultar seleccionados</translation>
     </message>
     <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="125"/>
+        <source>Show All</source>
+        <translation>Mostrar Todos</translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="128"/>
         <source>Cleanup Downloads</source>
         <translation>Limpiar Descargas</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="600"/>
-        <source>up-to-date</source>
-        <translation>al dia</translation>
-    </message>
-    <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="603"/>
-        <source>new download available</source>
-        <translation>mueva descarga disponible</translation>
-    </message>
-    <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="607"/>
+        <source>up-to-date</source>
+        <translation>al dia</translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="610"/>
+        <source>new download available</source>
+        <translation>mueva descarga disponible</translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="614"/>
         <source>update installable</source>
         <translation>actualización instalable</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="611"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="618"/>
         <source>updated download available</source>
         <translation>descarga actualizada disponible</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="979"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="986"/>
         <source>Cleanup of Plugin Downloads</source>
         <translation>Limpieza de Descargas de Plugins</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="979"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="986"/>
         <source>&lt;p&gt;The plugin download &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;La descarga del plugin &lt;b&gt;{0}&lt;/b&gt; no se ha podido borrar.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="430"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="433"/>
         <source>New: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation>Nuevo: &lt;b&gt;{0}&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="432"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="435"/>
         <source>Local Updates: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation>Actualizaciones Locales: &lt;b&gt;{0}&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="434"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="437"/>
         <source>Remote Updates: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation>Actualizaciones Remotas: &lt;b&gt;{0}&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="580"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="587"/>
         <source>Obsolete</source>
         <translation>Obsoleto</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="615"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="622"/>
         <source>error determining status</source>
         <translation>Error al determinar el estado</translation>
     </message>
@@ -50493,17 +50493,17 @@
 <context>
     <name>PluginRepositoryWindow</name>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>OK</source>
         <translation>Aceptar</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>&lt;p&gt;Could not start the process.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido ejecutar el proceso.&lt;br&gt;Asegúrese de que esta disponible como &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
@@ -50855,17 +50855,17 @@
 <context>
     <name>Preferences</name>
     <message>
-        <location filename="../Preferences/__init__.py" line="1640"/>
+        <location filename="../Preferences/__init__.py" line="1649"/>
         <source>Export Preferences</source>
         <translation>Exportar Preferencias</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1668"/>
+        <location filename="../Preferences/__init__.py" line="1677"/>
         <source>Import Preferences</source>
         <translation>Importar Preferencias</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1668"/>
+        <location filename="../Preferences/__init__.py" line="1677"/>
         <source>Properties File (*.ini);;All Files (*)</source>
         <translation>Archivo de Propiedades (*.ini);;Todos los archivos (*)</translation>
     </message>
@@ -50886,7 +50886,7 @@
 <context>
     <name>PreviewModel</name>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="432"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="434"/>
         <source>Variable Name</source>
         <translation>Nombre de Variable</translation>
     </message>
@@ -50894,27 +50894,27 @@
 <context>
     <name>PreviewProcessingThread</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="463"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="466"/>
         <source>&lt;p&gt;No preview available for this type of file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No hay vista previa disponible para este tipo de archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="632"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="635"/>
         <source>&lt;p&gt;ReStructuredText preview requires the &lt;b&gt;python-docutils&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager, &apos;pip install docutils&apos; or see &lt;a href=&quot;http://pypi.python.org/pypi/docutils&quot;&gt;this page.&lt;/a&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;La previsualización de ReStructuredText requiere el package &lt;b&gt;python-docutils&lt;/b&gt; .&lt;br/&gt;Installar con el gestor de paquetes, &apos;pip install docutils&apos; o ver &lt;a href=&quot;http://pypi.python.org/pypi/docutils&quot;&gt;esta página .&lt;/a&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="572"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="575"/>
         <source>&lt;p&gt;ReStructuredText preview requires the &lt;b&gt;sphinx&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager,&apos;pip install Sphinx&apos; or see &lt;a href=&quot;http://pypi.python.org/pypi/Sphinx&quot;&gt;this page.&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Alternatively you may disable Sphinx usage on the Editor, Filehandling configuration page.&lt;/p&gt;</source>
         <translation>&lt;p&gt;La previsualización de ReStructuredText requiere el package &lt;b&gt;sphinx&lt;/b&gt; .&lt;br/&gt;Installar con el gestor de paquetes, &apos;pip install sphinx&apos; o ver &lt;a href=&quot;http://pypi.python.org/pypi/Sphinx&quot;&gt;esta página .&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Como alternativa, se puede deshabilitar el uso de Sphinx en el Editor, página de configuración de Gestión de Archivos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="675"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="678"/>
         <source>&lt;p&gt;Markdown preview requires the &lt;b&gt;Markdown&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager, &apos;pip install Markdown&apos; or see &lt;a href=&quot;http://pythonhosted.org/Markdown/install.html&quot;&gt;installation instructions.&lt;/a&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;La previsualización de Markdown requiere del package &lt;b&gt;Markdown&lt;/b&gt;.&lt;br/&gt;Instalarlo con el gestor de paquetes o ver en &lt;a href=&quot;http://pythonhosted.org/Markdown/install.html&quot;&gt;las instrucciones de instalación.&lt;/a&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="647"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="650"/>
         <source>&lt;p&gt;Docutils returned an error:&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Docutils ha retornado un error:&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
@@ -50922,42 +50922,42 @@
 <context>
     <name>PreviewerHTML</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="75"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="78"/>
         <source>Select to enable JavaScript for HTML previews</source>
         <translation>Seleccionar para habilitar JavaScript para las previsualizaciones de HTML</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="74"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="77"/>
         <source>Enable JavaScript</source>
         <translation>Habilitar JavaScript</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="81"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="84"/>
         <source>Select to enable support for Server Side Includes</source>
         <translation>Seleccionar para habilitar soporte para includes del Lado del Servidor</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="79"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="82"/>
         <source>Enable Server Side Includes</source>
         <translation>Habilitar Includes del Lado del Servidor</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="194"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="197"/>
         <source>&lt;p&gt;No preview available for this type of file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No hay vista previa disponible para este tipo de archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="253"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="256"/>
         <source>Preview - {0}</source>
         <translation>Vista Previa - {0}</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="255"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="258"/>
         <source>Preview</source>
         <translation>Vista Previa</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="57"/>
+        <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 previa HTML no disponible!&lt;br/&gt;Instalar PyQtWebEngine.&lt;/b&gt;</translation>
     </message>
@@ -51008,17 +51008,17 @@
         <translation>Archivos PDF (*.pdf);; Todos los archivos (*)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="76"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="80"/>
         <source>Portrait</source>
         <translation>Vertical</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="78"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="82"/>
         <source>Landscape</source>
         <translation>Apaisado</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="79"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="83"/>
         <source>{0}, {1}</source>
         <comment>page size, page orientation</comment>
         <translation>{0}, {1}</translation>
@@ -51203,17 +51203,17 @@
         <translation>(no configurado)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="436"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="437"/>
         <source>(not executable)</source>
         <translation>(no ejecutable)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="479"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="481"/>
         <source>(not found)</source>
         <translation>(no encontrado)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="433"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="434"/>
         <source>(unknown)</source>
         <translation>(desconocido)</translation>
     </message>
@@ -51273,7 +51273,7 @@
         <translation>Compilador gRPC</translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="398"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="399"/>
         <source>(module not found)</source>
         <translation>(módule no encontrado)</translation>
     </message>
@@ -52723,32 +52723,32 @@
 <context>
     <name>ProjectBaseBrowser</name>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="128"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="132"/>
         <source>Open</source>
         <translation>Abrir</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="496"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="503"/>
         <source>local</source>
         <translation>local</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="537"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="544"/>
         <source>Select entries</source>
         <translation>Seleccionar entradas</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="537"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="544"/>
         <source>There were no matching entries found.</source>
         <translation>No se encontraron entradas coincidentes.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="294"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="300"/>
         <source>Delete directories</source>
         <translation>Borrar directorios</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="294"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="300"/>
         <source>Do you really want to delete these directories from the project?</source>
         <translation>¿Realmente quiere borrar estas directorios del proyecto?</translation>
     </message>
@@ -52809,7 +52809,7 @@
         <translation>Estatus de VCS</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBrowserModel.py" line="797"/>
+        <location filename="../Project/ProjectBrowserModel.py" line="803"/>
         <source>local</source>
         <translation>local</translation>
     </message>
@@ -52998,7 +52998,7 @@
 <context>
     <name>ProjectFormsBrowser</name>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1009"/>
         <source>Forms</source>
         <translation>Formularios</translation>
     </message>
@@ -53163,42 +53163,42 @@
         <translation>¿Realmente quiere borrar estos formularios del proyecto?</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="784"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="788"/>
         <source>Form Compilation</source>
         <translation>Compilación del Formulario</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="768"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="772"/>
         <source>The compilation of the form file was successful.</source>
         <translation>Se ha compilado satisfactoriamente el archivo de formulario.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="784"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="788"/>
         <source>The compilation of the form file failed.</source>
         <translation>La compilación del archivo de formulario ha fallado.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="870"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="874"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="962"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="966"/>
         <source>Compiling forms...</source>
         <translation>Compilando formularios...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>Abort</source>
         <translation>Abortar</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>Determining changed forms...</source>
         <translation>Determinando que formularios han cambiado...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1031"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1035"/>
         <source>Compiling changed forms...</source>
         <translation>Compilando formularios que han cambiado...</translation>
     </message>
@@ -53218,12 +53218,12 @@
         <translation>&lt;p&gt;El nuevo archivo de formulario &lt;b&gt;{0}&lt;/b&gt; no ha podido ser creado.&lt;br&gt;Problema: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="775"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="779"/>
         <source>&lt;p&gt;The compilation of the form file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;La compilación del archivo de formulario ha fallado.&lt;/p&gt;&lt;p&gt;Causa: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="870"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="874"/>
         <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
         <translation>No se ha podido ejecutar {0}.&lt;br&gt;Verifique que está en la ruta de búsqueda (search path).</translation>
     </message>
@@ -53278,7 +53278,7 @@
         <translation>QStackedWidget</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>%v/%m Forms</source>
         <translation>%v/%m Formularios</translation>
     </message>
@@ -53933,7 +53933,7 @@
 <context>
     <name>ProjectResourcesBrowser</name>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="861"/>
         <source>Resources</source>
         <translation>Recursos</translation>
     </message>
@@ -54028,42 +54028,42 @@
         <translation>¿Realmente quiere borrar estas recursos del proyecto?</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="624"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="628"/>
         <source>Resource Compilation</source>
         <translation>Compilación de recursos</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="610"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="614"/>
         <source>The compilation of the resource file was successful.</source>
         <translation>Se ha compilado satisfactoriamente el archivo de recursos.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="624"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="628"/>
         <source>The compilation of the resource file failed.</source>
         <translation>La compilación del archivo de recursos ha fallado.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="713"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="717"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="779"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="783"/>
         <source>Compiling resources...</source>
         <translation>Compilando recursos...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>Abort</source>
         <translation>Abortar</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>Determining changed resources...</source>
         <translation>Determinando que recursos han cambiado...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="889"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="893"/>
         <source>Compiling changed resources...</source>
         <translation>Compilando recursos que han cambiado...</translation>
     </message>
@@ -54083,17 +54083,17 @@
         <translation>&lt;p&gt;El nuevo archivo de recursos &lt;b&gt;{0}&lt;/b&gt; no ha podido ser creado.&lt;br&gt;Problema: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="617"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="621"/>
         <source>&lt;p&gt;The compilation of the resource file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;La compilación del archivo de recursos ha fallado.&lt;/p&gt;&lt;p&gt;Causa: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="713"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="717"/>
         <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
         <translation>No se ha podido ejecutar {0}.&lt;br&gt;Verifique que está en la ruta de búsqueda (search path).</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>%v/%m Resources</source>
         <translation>%v/%m Recursos</translation>
     </message>
@@ -55168,7 +55168,7 @@
         <translation>Ejecutadas</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="349"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="361"/>
         <source>Coverage</source>
         <translation>Cobertura</translation>
     </message>
@@ -55200,47 +55200,47 @@
         <translation>Muestra el progreso de la acción de cobertura de codigo</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="61"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="63"/>
         <source>Annotate</source>
         <translation>Anotar</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="63"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="65"/>
         <source>Annotate all</source>
         <translation>Anotar todo</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="64"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="66"/>
         <source>Delete annotated files</source>
         <translation>Borrar archivos anotados</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="67"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="69"/>
         <source>Erase Coverage Info</source>
         <translation>Borrar Información de Cobertura</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>Annotating files...</source>
         <translation>Anotando archivos...</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>Abort</source>
         <translation>Abortar</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="58"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="60"/>
         <source>Open</source>
         <translation>Abrir</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="243"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="246"/>
         <source>Parse Error</source>
         <translation>Error de interpretación</translation>
     </message>
     <message numerus="yes">
-        <location filename="../DataViews/PyCoverageDialog.py" line="243"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="246"/>
         <source>%n file(s) could not be parsed. Coverage info for these is not available.</source>
         <translation>
             <numerusform>%n archivo no se ha podido interpretar. Información de cobertura no disponible.</numerusform>
@@ -55248,7 +55248,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>%v/%m Files</source>
         <translation>%v/%m Archivos</translation>
     </message>
@@ -55256,7 +55256,7 @@
 <context>
     <name>PyProfileDialog</name>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="234"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="239"/>
         <source>Profile Results</source>
         <translation>Resultados de Profiling</translation>
     </message>
@@ -55334,57 +55334,57 @@
         <translation>Muestra el progreso del cálculo de datos de profiling</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="337"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="354"/>
         <source>Exclude Python Library</source>
         <translation>Excluir Biblioteca de Python</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="89"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="92"/>
         <source>Erase Profiling Info</source>
         <translation>Borrar Información de Profiling</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="91"/>
-        <source>Erase Timing Info</source>
-        <translation>Borrar Información de Timing</translation>
-    </message>
-    <message>
         <location filename="../DataViews/PyProfileDialog.py" line="94"/>
+        <source>Erase Timing Info</source>
+        <translation>Borrar Información de Timing</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="97"/>
         <source>Erase All Infos</source>
         <translation>Borrar todas las Infos</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="215"/>
-        <source>function calls</source>
-        <translation>llamadas a función</translation>
-    </message>
-    <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="218"/>
-        <source>primitive calls</source>
-        <translation>llamadas a primitiva</translation>
-    </message>
-    <message>
         <location filename="../DataViews/PyProfileDialog.py" line="220"/>
+        <source>function calls</source>
+        <translation>llamadas a función</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="223"/>
+        <source>primitive calls</source>
+        <translation>llamadas a primitiva</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="225"/>
         <source>CPU seconds</source>
         <translation>segundos de CPU</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="246"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="251"/>
         <source>Loading Profiling Data</source>
         <translation>Cargando Datos de Profiling</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="333"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="350"/>
         <source>Include Python Library</source>
         <translation>Incluir Biblioteca de Python</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="234"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="239"/>
         <source>&lt;p&gt;There is no profiling data available for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No hay datos de profiling disponibles para &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="246"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="251"/>
         <source>&lt;p&gt;The profiling data could not be read from file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Los datos de profiling no se han podido leer del archivo &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
@@ -55987,132 +55987,132 @@
         <translation>Mostrar la siguiente coincidencia de la expresión regular</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="102"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="103"/>
         <source>Copy</source>
         <translation>Copiar</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="104"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="105"/>
         <source>Copy the regular expression to the clipboard</source>
         <translation>Copiar la expresión regular al portapapeles</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="188"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="190"/>
         <source>Named reference</source>
         <translation>Referencia con nombre</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="182"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="184"/>
         <source>No named groups have been defined yet.</source>
         <translation>No se han definido todavía grupos con nombre.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="188"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="190"/>
         <source>Select group name:</source>
         <translation>Seleccionar nombre de grupo:</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="372"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="374"/>
         <source>Save regular expression</source>
         <translation>Guardar expresión regular</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="360"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="362"/>
         <source>RegExp Files (*.rx);;All Files (*)</source>
         <translation>Archivos RegExp (*.rx);; Todos los archivos (*)</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="360"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="362"/>
         <source>Load regular expression</source>
         <translation>Cargar expresión regular</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="414"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="416"/>
         <source>The regular expression is valid.</source>
         <translation>La expresión regular es válida.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="578"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="581"/>
         <source>Error</source>
         <translation>Error</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="571"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="574"/>
         <source>Invalid regular expression: missing group name</source>
         <translation>La expresión regular no es válida: falta nombre de  grupo</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="433"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="435"/>
         <source>A regular expression must be given.</source>
         <translation>Se debe proporcionar una expresión regular.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="478"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="480"/>
         <source>Regexp</source>
         <translation>Regexp</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="488"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="490"/>
         <source>Offset</source>
         <translation>Desplazamiento</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="496"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="498"/>
         <source>Captures</source>
         <translation>Capturas</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="503"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="505"/>
         <source>Text</source>
         <translation>Texto</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="506"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="508"/>
         <source>Characters</source>
         <translation>Caracteres</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="511"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="513"/>
         <source>Match</source>
         <translation>Coincidir</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="546"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="549"/>
         <source>No more matches</source>
         <translation>No hay más coincidencias</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="550"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="553"/>
         <source>No matches</source>
         <translation>No hay coincidencias</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="578"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="581"/>
         <source>A regular expression and a text must be given.</source>
         <translation>Se deben proporcionar una expresión regular y un texto.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="372"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="374"/>
         <source>&lt;p&gt;The regular expression could not be saved.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;La expresión regular no se ha podido guardar &lt;/p&gt;&lt;p&gt;Causa: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="564"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="567"/>
         <source>Invalid regular expression: {0}</source>
         <translation>La expresión regular no es válida: {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="526"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="528"/>
         <source>Capture #{0}</source>
         <translation>Captura #{0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="334"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="336"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="414"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="416"/>
         <source>Validation</source>
         <translation>Validación</translation>
     </message>
@@ -56693,37 +56693,37 @@
         <translation>Rángo de Código</translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="247"/>
+        <location filename="../UI/PythonAstViewer.py" line="249"/>
         <source>Module</source>
         <translation>Módulo</translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="279"/>
+        <location filename="../UI/PythonAstViewer.py" line="281"/>
         <source>{0}: {1}</source>
         <translation>{0}: {1}</translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="300"/>
+        <location filename="../UI/PythonAstViewer.py" line="302"/>
         <source>{0},{1}</source>
         <translation>{0},{1}</translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="307"/>
+        <location filename="../UI/PythonAstViewer.py" line="309"/>
         <source>{0}  -  {1}</source>
         <translation>{0}  -  {1}</translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="211"/>
+        <location filename="../UI/PythonAstViewer.py" line="213"/>
         <source>No editor has been opened.</source>
         <translation>No se ha abierto ningún editor.</translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="222"/>
+        <location filename="../UI/PythonAstViewer.py" line="224"/>
         <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/PythonAstViewer.py" line="228"/>
+        <location filename="../UI/PythonAstViewer.py" line="230"/>
         <source>The current editor does not contain Python source code.</source>
         <translation>El editor actual no contiene código fuente Python.</translation>
     </message>
@@ -56776,7 +56776,7 @@
         <translation>Contraer Todo</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="695"/>
+        <location filename="../UI/PythonDisViewer.py" line="698"/>
         <source>Code Object &apos;{0}&apos;</source>
         <translation>Código Objeto &apos;{0}&apos;</translation>
     </message>
@@ -56831,72 +56831,72 @@
         <translation>Ocultar</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="810"/>
+        <location filename="../UI/PythonDisViewer.py" line="813"/>
         <source>Name</source>
         <translation>Nombre</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="812"/>
+        <location filename="../UI/PythonDisViewer.py" line="815"/>
         <source>Filename</source>
         <translation>Nombre de archivo</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="814"/>
+        <location filename="../UI/PythonDisViewer.py" line="817"/>
         <source>First Line</source>
         <translation>Primera Línea</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="816"/>
+        <location filename="../UI/PythonDisViewer.py" line="819"/>
         <source>Argument Count</source>
         <translation>Número de Argumentos</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="818"/>
+        <location filename="../UI/PythonDisViewer.py" line="821"/>
         <source>Positional-only Arguments</source>
         <translation>Solamente Argumentos Posicionales</translation>
     </message>
     <message>
+        <location filename="../UI/PythonDisViewer.py" line="827"/>
+        <source>Number of Locals</source>
+        <translation>Número de Locales</translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="829"/>
+        <source>Stack Size</source>
+        <translation>Tamaño de Stack</translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="831"/>
+        <source>Flags</source>
+        <translation>Flags</translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="834"/>
+        <source>Constants</source>
+        <translation>Constantes</translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="837"/>
+        <source>Names</source>
+        <translation>Nombres</translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="840"/>
+        <source>Variable Names</source>
+        <translation>Nombres de Variable</translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="843"/>
+        <source>Free Variables</source>
+        <translation>Variables Libres</translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="846"/>
+        <source>Cell Variables</source>
+        <translation>Variables Celda</translation>
+    </message>
+    <message>
         <location filename="../UI/PythonDisViewer.py" line="824"/>
-        <source>Number of Locals</source>
-        <translation>Número de Locales</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="826"/>
-        <source>Stack Size</source>
-        <translation>Tamaño de Stack</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="828"/>
-        <source>Flags</source>
-        <translation>Flags</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="831"/>
-        <source>Constants</source>
-        <translation>Constantes</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="834"/>
-        <source>Names</source>
-        <translation>Nombres</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="837"/>
-        <source>Variable Names</source>
-        <translation>Nombres de Variable</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="840"/>
-        <source>Free Variables</source>
-        <translation>Variables Libres</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="843"/>
-        <source>Cell Variables</source>
-        <translation>Variables Celda</translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="821"/>
         <source>Keyword-only Arguments</source>
         <translation>Solamente Argumentos Palabra Clave</translation>
     </message>
@@ -58482,197 +58482,197 @@
 <context>
     <name>QRegularExpressionWizardWidget</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="96"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="97"/>
         <source>Save</source>
         <translation>Guardar</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="98"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="99"/>
         <source>Save the regular expression to a file</source>
         <translation>Guardar la expresión regular en un archivo</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="100"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="101"/>
         <source>Load</source>
         <translation>Cargar</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="102"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="103"/>
         <source>Load a regular expression from a file</source>
         <translation>Cargar la expresión regular de un archivo</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="105"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="106"/>
         <source>Validate</source>
         <translation>Validar</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="107"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="108"/>
         <source>Validate the regular expression</source>
         <translation>Validar la expresión regular</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="109"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="110"/>
         <source>Execute</source>
         <translation>Ejecutar</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="111"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="112"/>
         <source>Execute the regular expression</source>
         <translation>Ejecutar la expresión regular</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="113"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="114"/>
         <source>Next match</source>
         <translation>Siguiente coincidencia</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="115"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="116"/>
         <source>Show the next match of the regular expression</source>
         <translation>Mostrar la siguiente coincidencia de la expresión regular</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="128"/>
-        <source>Copy</source>
-        <translation>Copiar</translation>
-    </message>
-    <message>
         <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="130"/>
+        <source>Copy</source>
+        <translation>Copiar</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="132"/>
         <source>Copy the regular expression to the clipboard</source>
         <translation>Copiar la expresión regular al portapapeles</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="292"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="295"/>
         <source>Named reference</source>
         <translation>Referencia con nombre</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="286"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="289"/>
         <source>No named groups have been defined yet.</source>
         <translation>No se han definido todavía grupos con nombre.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="292"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="295"/>
         <source>Select group name:</source>
         <translation>Seleccionar nombre de grupo:</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="454"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="457"/>
         <source>Save regular expression</source>
         <translation>Guardar expresión regular</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="416"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="419"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="454"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="457"/>
         <source>&lt;p&gt;The regular expression could not be saved.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;La expresión regular no se ha podido guardar &lt;/p&gt;&lt;p&gt;Causa: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="442"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="445"/>
         <source>Load regular expression</source>
         <translation>Cargar expresión regular</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="507"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="510"/>
         <source>Validation</source>
         <translation>Validación</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="507"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="510"/>
         <source>The regular expression is valid.</source>
         <translation>La expresión regular es válida.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="708"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="712"/>
         <source>Error</source>
         <translation>Error</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="582"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="585"/>
         <source>Invalid regular expression: {0}</source>
         <translation>La expresión regular no es válida: {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="538"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="541"/>
         <source>A regular expression must be given.</source>
         <translation>Se debe proporcionar una expresión regular.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="602"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="605"/>
         <source>Regexp</source>
         <translation>Regexp</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="613"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="616"/>
         <source>Offset</source>
         <translation>Desplazamiento</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="621"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="624"/>
         <source>Captures</source>
         <translation>Capturas</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="629"/>
-        <source>Text</source>
-        <translation>Texto</translation>
-    </message>
-    <message>
         <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="632"/>
+        <source>Text</source>
+        <translation>Texto</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="635"/>
         <source>Characters</source>
         <translation>Caracteres</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="637"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="640"/>
         <source>Match</source>
         <translation>Coincidir</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="652"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="655"/>
         <source>Capture #{0}</source>
         <translation>Captura #{0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="676"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="680"/>
         <source>No more matches</source>
         <translation>No hay más coincidencias</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="681"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="685"/>
         <source>No matches</source>
         <translation>No hay coincidencias</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="708"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="712"/>
         <source>A regular expression and a text must be given.</source>
         <translation>Se deben proporcionar una expresión regular y un texto.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="442"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="445"/>
         <source>RegExp Files (*.rx);;All Files (*)</source>
         <translation>Archivos RegExp (*.rx);; Todos los archivos (*)</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="702"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="706"/>
         <source>Communication Error</source>
         <translation>Error de Comunicación</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="169"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="172"/>
         <source>&lt;p&gt;The PyQt5 backend reported an error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El backend de PyQt5 ha reportado un error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="696"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="700"/>
         <source>Invalid response received from PyQt5 backend.</source>
         <translation>Respuesta no válida recibida desde el backend PyQt5.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="702"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="706"/>
         <source>Communication with PyQt5 backend failed.</source>
         <translation>La comunicación con el backend de PyQt5 ha fallado.</translation>
     </message>
@@ -58700,7 +58700,7 @@
         <translation>Eliminar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="174"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="176"/>
         <source>Add Documentation</source>
         <translation>Añadir Documentación</translation>
     </message>
@@ -58710,7 +58710,7 @@
         <translation>Archivos de Ayuda Comprimidos de Qt (*.qch)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="211"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="213"/>
         <source>Remove Documentation</source>
         <translation>Eliminar Documentación</translation>
     </message>
@@ -58725,7 +58725,7 @@
         <translation>Pulse para eliminar los documentos seleccionados de la base de datos</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="196"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="198"/>
         <source>Do you really want to remove the selected documentation sets from the database?</source>
         <translation>¿Realmente desea eliminar los conjuntos de documentación seleccionados de la base de datos?</translation>
     </message>
@@ -58735,12 +58735,12 @@
         <translation>El archivo &lt;b&gt;{0}&lt;/b&gt; no es un Archivo de Ayuda de Qt válido.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="174"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="176"/>
         <source>The namespace &lt;b&gt;{0}&lt;/b&gt; is already registered.</source>
         <translation>El espacio de nombres &lt;b&gt;{0}&lt;/b&gt; ya esta registrado.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="211"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="213"/>
         <source>Some documents currently opened reference the documentation you are attempting to remove. Removing the documentation will close those documents. Remove anyway?</source>
         <translation>Algunos documentos actualmente abiertos hacen referencia a la documentación que está tratando de eliminar. La eliminación de la documentación cerrará estos documentos. ¿Desea eliminarlos de todos modos?</translation>
     </message>
@@ -58795,7 +58795,7 @@
         <translation>Pulsar para eliminar los filtros seleccionados</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="406"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="410"/>
         <source>Remove Filters</source>
         <translation>Eliminar Filtros</translation>
     </message>
@@ -58805,7 +58805,7 @@
         <translation>Pulsar para eliminar los atributos seleccionados</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="434"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="438"/>
         <source>Remove Attributes</source>
         <translation>Eliminar Atributos</translation>
     </message>
@@ -58850,22 +58850,22 @@
         <translation>La página contiene cambios sin guardar. ¿Desea guardarlos?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="385"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="389"/>
         <source>Add Filter</source>
         <translation>Añadir Filtro</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="385"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="389"/>
         <source>Filter name:</source>
         <translation>Nombre de Filtro:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="406"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="410"/>
         <source>Do you really want to remove the selected filters from the database?</source>
         <translation>¿Desea realmente eliminar los filtros seleccionados de la base de datos?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="434"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="438"/>
         <source>Do you really want to remove the selected attributes from the database?</source>
         <translation>¿Desea realmente eliminar los atributos seleccionados de la base de datos?</translation>
     </message>
@@ -58883,27 +58883,27 @@
         <translation>Seleccionar los archivos de documentación a instalar:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="139"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="142"/>
         <source>Delete Documentation Sets</source>
         <translation>Borrar Conjuntos de Documentación</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="86"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="89"/>
         <source>Shall the selected documentation sets really be deleted?</source>
         <translation>¿Seguro que desea borrar los conjuntos de documentación seleccionados?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="102"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="105"/>
         <source>&lt;p&gt;The documentation set &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El conjunto de documentación &lt;b&gt;{0}&lt;/b&gt; no se ha podido borrar.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="121"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="124"/>
         <source>Shall the selected documentation set categories really be deleted?</source>
         <translation>¿Seguro que desea borrar las categorías de conjuntos de documentación seleccionados?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="139"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="142"/>
         <source>Shall all documentation sets really be deleted?</source>
         <translation>¿Seguro que desea borrar todos los conjuntos de documentación?</translation>
     </message>
@@ -60384,87 +60384,87 @@
 <context>
     <name>SafeBrowsingAPI</name>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="391"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="400"/>
         <source>&lt;h3&gt;Malware Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to install harmful programs on your computer in order to steal or destroy your data.&lt;/p&gt;</source>
         <translation>&lt;h3&gt;Advertencia de Malware&lt;/h3&gt;&lt;p&gt;Este sitio web podría tratar de instalar programas dañinos en su ordenador con la finalidad de robar o destruir datos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="398"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="407"/>
         <source>&lt;h3&gt;Phishing Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to trick you into doing something dangerous online, such as revealing passwords or personal information, usually through a fake website.&lt;/p&gt;</source>
         <translation>&lt;h3&gt;Advertencia de Phishing&lt;/h3&gt;&lt;p&gt;Este sitio web podría tratar de engañarle para hacer algo peligroso online, tal como revelar contraseñas o información personal, usualmente a través de un sitio web falsificado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="406"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="415"/>
         <source>&lt;h3&gt;Unwanted Software Warning&lt;/h3&gt;&lt;p&gt;The software you are about to download may negatively affect your browsing or computing experience.&lt;/p&gt;</source>
         <translation>&lt;h3&gt;Advertencia de Software no Deseado&lt;/h3&gt;&lt;p&gt;El software que se va a descargar podría afectar negativamente a la experiencia de navegación o de uso del ordenador.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="412"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="421"/>
         <source>&lt;h3&gt;Potentially Harmful Application&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to trick you into installing applications, that may negatively affect your browsing experience.&lt;/p&gt;</source>
         <translation>&lt;h3&gt;Aplicación Potencialmente Dañina&lt;/h3&gt;&lt;p&gt;Este sitio web podría tratar de engañarle para instalar aplicaciones que podrían afectar negativamente su experiencia de navegación.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="426"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="435"/>
         <source>&lt;h3&gt;Unknown Threat Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit was found in the Safe Browsing Database but was not classified yet.&lt;/p&gt;</source>
         <translation>&lt;h3&gt;Advertencia de Amenaza Desconocida&lt;/h3&gt;&lt;p&gt;Este sitio web se ha encontrado en la Base de Datos de Navegación Segura aunque no está todavía clasificado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="446"/>
-        <source>Malware</source>
-        <translation>Malware</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="449"/>
-        <source>Phishing</source>
-        <translation>Phishing</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="452"/>
-        <source>Unwanted Software</source>
-        <translation>Software No Deseado</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="455"/>
-        <source>Harmful Application</source>
-        <translation>Aplicación Dañina</translation>
+        <source>Malware</source>
+        <translation>Malware</translation>
     </message>
     <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="458"/>
-        <source>Malicious Binary</source>
-        <translation>Binario Malicioso</translation>
+        <source>Phishing</source>
+        <translation>Phishing</translation>
     </message>
     <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="461"/>
+        <source>Unwanted Software</source>
+        <translation>Software No Deseado</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="464"/>
+        <source>Harmful Application</source>
+        <translation>Aplicación Dañina</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="467"/>
+        <source>Malicious Binary</source>
+        <translation>Binario Malicioso</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="470"/>
         <source>Unknown Threat</source>
         <translation>Amenaza Desconocida</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="532"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="541"/>
         <source>any defined platform</source>
         <translation>cualquier plataforma definida</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="535"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="544"/>
         <source>all defined platforms</source>
         <translation>todas las plataformas definidas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="538"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="547"/>
         <source>unknown platform</source>
         <translation>plataforma desconocida</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="492"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="501"/>
         <source>executable program</source>
         <translation>programa ejecutable</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="495"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="504"/>
         <source>unknown type</source>
         <translation>tipo desconocido</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="419"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="428"/>
         <source>&lt;h3&gt;Malicious Binary Warning&lt;/h3&gt;&lt;p&gt;The software you are about to download may be harmful to your computer.&lt;/p&gt;</source>
         <translation>&lt;h3&gt;Advertencia de Software Malicioso&lt;/h3&gt;&lt;p&gt;El software que se va a descargar podría ser dañino para su ordenador.&lt;/p&gt;</translation>
     </message>
@@ -60472,7 +60472,7 @@
 <context>
     <name>SafeBrowsingDialog</name>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="171"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="173"/>
         <source>Safe Browsing Management</source>
         <translation>Gestión de Navegación Segura</translation>
     </message>
@@ -60562,52 +60562,52 @@
         <translation>Pulsar para comprobar la URL introducida</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="312"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="314"/>
         <source>Check URL</source>
         <translation>Comprobar URL</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="171"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="173"/>
         <source>The dialog contains unsaved changes.</source>
         <translation>El diálogo contiene cambios sin guardar.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="213"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="215"/>
         <source>Update Safe Browsing Cache</source>
         <translation>Actualizar Caché de Navegación Segura</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="196"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="198"/>
         <source>Updating the Safe Browsing cache might be a lengthy operation. Please be patient!</source>
         <translation>Actualizar la caché de Navegación Segura puede ser una operación larga. Por favor, ¡sea paciente!</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="207"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="209"/>
         <source>&lt;p&gt;Updating the Safe Browsing cache failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;La actualización de la caché de Navegación Segura ha fallado.&lt;/p&gt;&lt;p&gt;Razón: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="213"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="215"/>
         <source>&lt;p&gt;Updating the Safe Browsing cache failed.&lt;/p&gt;</source>
         <translation>&lt;p&gt;La actualización de la caché de Navegación Segura ha fallado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="224"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="226"/>
         <source>Clear Safe Browsing Cache</source>
         <translation>Limpiear Caché de Navegación Segura</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="224"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="226"/>
         <source>Do you really want to clear the Safe Browsing cache? Re-populating it might take some time.</source>
         <translation>¿Realmente desea limpiear la caché de Navegación Segura? Su regeneración podría llevar algún tiempo.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="304"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="306"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing Database.&lt;/p&gt;{1}</source>
         <translation>&lt;p&gt;La URL &lt;b&gt;{0}&lt;/b&gt; se ha encontrado en la base de datos de Navegación Segura.&lt;/p&gt;{1}</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="312"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="314"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was not found in the Safe Browsing Database and may be considered safe.&lt;/p&gt;</source>
         <translation>&lt;p&gt;La URL &lt;b&gt;{0}&lt;/b&gt; no se ha encontrado en la base de datos de Navegación Segura y se puede considerar segura.&lt;/p&gt;</translation>
     </message>
@@ -60637,17 +60637,17 @@
         <translation>Mostrar Momento de Actualización</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="339"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="341"/>
         <source>The next automatic threat list update will be done now.</source>
         <translation>La siguiente actualización automática de lista de amenazas se hará ahora.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="342"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="344"/>
         <source>&lt;p&gt;The next automatic threat list update will be done at &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;La siguiente actualización automática de lista de amenazas se hará en &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="346"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="348"/>
         <source>Update Time</source>
         <translation>Momento de Actualización</translation>
     </message>
@@ -60667,7 +60667,7 @@
         <translation>Gestionar Caché Local (Actualizar API solamente)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="296"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="298"/>
         <source>&lt;p&gt;The Google Safe Browsing Server reported an error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El servidor de Navegación Segura de Google ha reportado un error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
@@ -60736,17 +60736,17 @@
 <context>
     <name>SearchReplaceWidget</name>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="982"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="984"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation>&apos;{0}&apos; no se ha encontrado.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="1128"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="1130"/>
         <source>Replaced {0} occurrences.</source>
         <translation>Se han reemplazado {0} ocurrencias.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="1133"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="1135"/>
         <source>Nothing replaced because &apos;{0}&apos; was not found.</source>
         <translation>No se ha reemplazado nada porque &apos;{0}&apos; no se ha encontrado.</translation>
     </message>
@@ -60756,7 +60756,7 @@
         <translation>Buscar Siguiente</translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="173"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="174"/>
         <source>Find Prev</source>
         <translation>Buscar Anterior</translation>
     </message>
@@ -60789,17 +60789,17 @@
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="181"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="183"/>
         <source>Replace and Search</source>
         <translation>Buscar y Reemplazar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="191"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="193"/>
         <source>Replace Occurrence</source>
         <translation>Reemplazar Ocurrencia</translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="201"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="203"/>
         <source>Replace All</source>
         <translation>Reemplazar Todo</translation>
     </message>
@@ -60932,12 +60932,12 @@
         <translation>Palabra completa</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SearchWidget.py" line="98"/>
+        <location filename="../WebBrowser/SearchWidget.py" line="100"/>
         <source>Expression was not found.</source>
         <translation>La expresión no se ha encontrado.</translation>
     </message>
     <message>
-        <location filename="../UI/SearchWidget.py" line="208"/>
+        <location filename="../UI/SearchWidget.py" line="210"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation>&apos;{0}&apos; no se ha encontrado.</translation>
     </message>
@@ -61414,7 +61414,7 @@
 <context>
     <name>SendRefererWhitelistDialog</name>
     <message>
-        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="50"/>
+        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="51"/>
         <source>Send Referer Whitelist</source>
         <translation>Enviar Lista Blanca de Referers</translation>
     </message>
@@ -61454,7 +61454,7 @@
         <translation>&amp;Eliminar Todas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="50"/>
+        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="51"/>
         <source>Enter host name to add to the whitelist:</source>
         <translation>Introducir el nombre de host a añadir a la lista blanca:</translation>
     </message>
@@ -61585,7 +61585,7 @@
         <translation>Por favor, seleccione la sesión de inicio:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Session/SessionManager.py" line="710"/>
+        <location filename="../WebBrowser/Session/SessionManager.py" line="712"/>
         <source>{0} (last session)</source>
         <translation>{0} (última sesión)</translation>
     </message>
@@ -61989,42 +61989,42 @@
         <translation>setuptools</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="544"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="549"/>
         <source>Package Directory</source>
         <translation>Directorio de Paquetes</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="576"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="581"/>
         <source>Packages Root Directory</source>
         <translation>Directorio Raíz de Paquetes</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="615"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="620"/>
         <source>Add Package</source>
         <translation>Añadir Paquete</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="615"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="620"/>
         <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; is not a Python package.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El directorio &lt;b&gt;{0}&lt;/b&gt; no es un paquete Python.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="671"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="676"/>
         <source>Add Scripts</source>
         <translation>Añadir Scripts</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="671"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="676"/>
         <source>Python Files (*.py);;All Files(*)</source>
         <translation>Archivos Python (*.py);;Todos los Archivos(*)</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="710"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="715"/>
         <source>Add Python Modules</source>
         <translation>Añadir Módulos Python</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="710"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="715"/>
         <source>Python Files (*.py)</source>
         <translation>Archivos de Python (*.py)</translation>
     </message>
@@ -62074,12 +62074,12 @@
         <translation>Introducir las palabras clave separadas por comas</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="153"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="155"/>
         <source>Reading Trove Classifiers</source>
         <translation>Leyendo Clasificadores Trove</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="153"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="155"/>
         <source>&lt;p&gt;The Trove Classifiers 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 Clasificadores Trove &lt;b&gt;{0}&lt;/b&gt; no se ha podido leer.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
@@ -62139,7 +62139,7 @@
         <translation>Añadir Sentencia &apos;include_package_data&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="789"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="796"/>
         <source>Source Directory</source>
         <translation>Directorio de Fuentes</translation>
     </message>
@@ -62177,109 +62177,109 @@
         <translation>Shell</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="248"/>
+        <location filename="../QScintilla/Shell.py" line="249"/>
         <source>Passive &gt;&gt;&gt; </source>
         <translation>Pasivo &gt;&gt;&gt; </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="291"/>
+        <location filename="../QScintilla/Shell.py" line="292"/>
         <source>Start</source>
         <translation>Comienzo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="304"/>
-        <source>Copy</source>
-        <translation>Copiar</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="305"/>
+        <source>Copy</source>
+        <translation>Copiar</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="306"/>
         <source>Paste</source>
         <translation>Pegar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="311"/>
+        <location filename="../QScintilla/Shell.py" line="312"/>
         <source>Clear</source>
         <translation>Borrar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="839"/>
+        <location filename="../QScintilla/Shell.py" line="847"/>
         <source>Passive Debug Mode</source>
         <translation>Modo de depuración pasiva</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="843"/>
+        <location filename="../QScintilla/Shell.py" line="851"/>
         <source>No.</source>
         <translation>No.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2178"/>
+        <location filename="../QScintilla/Shell.py" line="2199"/>
         <source>Drop Error</source>
         <translation>Error al soltar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="296"/>
-        <source>History</source>
-        <translation>Historial</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="297"/>
-        <source>Select entry</source>
-        <translation>Seleccionar entrada</translation>
+        <source>History</source>
+        <translation>Historial</translation>
     </message>
     <message>
         <location filename="../QScintilla/Shell.py" line="298"/>
+        <source>Select entry</source>
+        <translation>Seleccionar entrada</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="299"/>
         <source>Show</source>
         <translation>Mostrar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="773"/>
+        <location filename="../QScintilla/Shell.py" line="781"/>
         <source>Select History</source>
         <translation>Seleccionar historial</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="773"/>
+        <location filename="../QScintilla/Shell.py" line="781"/>
         <source>Select the history entry to execute (most recent shown last).</source>
         <translation>Seleccionar la entrada del historial a ejecutar (las más recientes mostradas en último lugar).</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="840"/>
+        <location filename="../QScintilla/Shell.py" line="848"/>
         <source>
 Not connected</source>
         <translation>
 No conectado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="319"/>
+        <location filename="../QScintilla/Shell.py" line="320"/>
         <source>Configure...</source>
         <translation>Configurar...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="303"/>
+        <location filename="../QScintilla/Shell.py" line="304"/>
         <source>Cut</source>
         <translation>Cortar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1033"/>
-        <source>StdOut: {0}</source>
-        <translation>StdOut: {0}</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="1041"/>
+        <source>StdOut: {0}</source>
+        <translation>StdOut: {0}</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="1049"/>
         <source>StdErr: {0}</source>
         <translation>StdErr: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2178"/>
+        <location filename="../QScintilla/Shell.py" line="2199"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; no es un archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="309"/>
+        <location filename="../QScintilla/Shell.py" line="310"/>
         <source>Find</source>
         <translation>Buscar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="891"/>
+        <location filename="../QScintilla/Shell.py" line="899"/>
         <source>Exception &quot;{0}&quot;
 {1}
 File: {2}, Line: {3}
@@ -62290,14 +62290,14 @@
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="926"/>
+        <location filename="../QScintilla/Shell.py" line="934"/>
         <source>Unspecified syntax error.
 </source>
         <translation>Error de sintaxis sin especificar.
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="901"/>
+        <location filename="../QScintilla/Shell.py" line="909"/>
         <source>Exception &quot;{0}&quot;
 {1}
 </source>
@@ -62306,51 +62306,51 @@
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="928"/>
+        <location filename="../QScintilla/Shell.py" line="936"/>
         <source>Syntax error &quot;{1}&quot; in file {0} at line {2}, character {3}.
 </source>
         <translation>Error de sintaxis &quot;{1}&quot; en archivo {0} en la línea {2}, carácter {3}.
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="951"/>
+        <location filename="../QScintilla/Shell.py" line="959"/>
         <source>Signal &quot;{0}&quot; generated in file {1} at line {2}.
 Function: {3}({4})</source>
         <translation>Señal &quot;{0}&quot; generada en el archivo {1} y línea {2}.
 Función: {3}({4})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2035"/>
+        <location filename="../QScintilla/Shell.py" line="2056"/>
         <source>Project</source>
         <translation>Proyecto</translation>
     </message>
     <message>
         <location filename="../QScintilla/Shell.py" line="159"/>
         <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;restart&apos; kills the shell and starts a new one. &apos;clear&apos; clears the display of the shell window. &apos;start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;envs&apos; or &apos;environments&apos; commands. The active virtual environment can be questioned by the &apos;which&apos; command. &apos;quit&apos; or &apos;exit&apos; is used to exit the application. These commands (except environments&apos;, &apos;envs&apos; and &apos;which&apos;) are available through the window menus as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;La ventana de Shell&lt;/b&gt;&lt;p&gt;Se pueden utilizar las teclas de cursor al introducir comandos. Hay también un histórico de comandos que se pueden rellamar utilizando las teclas de cursor de arriba y abajo manteniendo apretada la tecla Ctrl. Esto se puede cambiar a solo las teclas de cursor arriba y abajo en el la página de shell del diálogo de configuración. Pulsando estas teclas despues de que se ha introducido algún texto inicia una búsqueda incremental.&lt;/p&gt;&lt;p&gt;La shell tiene algunos comandos especiales. &apos;restart&apos; termina la shell e inicia una nueva. &apos;clear&apos; limpia la salida de la ventana de shell. &apos;start&apos; se usa para iniciar una shell para un entorno virtual y se debería continuar con un nombre de entorno virtual. start&apos; sin nombre de entorno virtual inicia la shell por defecto. Los entornos virtuales disponibles se pueden listar con los comandos &apos;envs&apos; o &apos;environments&apos;. El entorno virtual activo se puede encontrar con el comando &apos;which&apos; . &apos;quit&apos; o &apos;exit&apos; se usa para salir de la aplicación. Estos comandos (exceptuando environments&apos;, &apos;envs&apos; y &apos;which&apos;) están dsponibles para los menús de ventana también.&lt;/p&gt;&lt;p&gt;Pulsando la tecla Tab después de introducir algún texto muestra una lista de autocompletados posibles. La entrada relevante puede entonces seleccionarse de este listado. Si hay solamente una entrada disponible, ésta se insertará automaticamente.&lt;/p&gt;</translation>
+        <translation type="obsolete">&lt;b&gt;La ventana de Shell&lt;/b&gt;&lt;p&gt;Se pueden utilizar las teclas de cursor al introducir comandos. Hay también un histórico de comandos que se pueden rellamar utilizando las teclas de cursor de arriba y abajo manteniendo apretada la tecla Ctrl. Esto se puede cambiar a solo las teclas de cursor arriba y abajo en el la página de shell del diálogo de configuración. Pulsando estas teclas despues de que se ha introducido algún texto inicia una búsqueda incremental.&lt;/p&gt;&lt;p&gt;La shell tiene algunos comandos especiales. &apos;restart&apos; termina la shell e inicia una nueva. &apos;clear&apos; limpia la salida de la ventana de shell. &apos;start&apos; se usa para iniciar una shell para un entorno virtual y se debería continuar con un nombre de entorno virtual. start&apos; sin nombre de entorno virtual inicia la shell por defecto. Los entornos virtuales disponibles se pueden listar con los comandos &apos;envs&apos; o &apos;environments&apos;. El entorno virtual activo se puede encontrar con el comando &apos;which&apos; . &apos;quit&apos; o &apos;exit&apos; se usa para salir de la aplicación. Estos comandos (exceptuando environments&apos;, &apos;envs&apos; y &apos;which&apos;) están dsponibles para los menús de ventana también.&lt;/p&gt;&lt;p&gt;Pulsando la tecla Tab después de introducir algún texto muestra una lista de autocompletados posibles. La entrada relevante puede entonces seleccionarse de este listado. Si hay solamente una entrada disponible, ésta se insertará automaticamente.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../QScintilla/Shell.py" line="186"/>
         <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.&lt;/p&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;restart&apos; kills the shell and starts a new one. &apos;clear&apos; clears the display of the shell window. &apos;start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;envs&apos; or &apos;environments&apos; commands. The active virtual environment can be questioned by the &apos;which&apos; command. These commands (except environments&apos; and &apos;envs&apos;) are available through the context menu as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;&lt;p&gt;In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;La Ventana de Shell&lt;/b&gt;&lt;p&gt;Es simplemente un intérprete corriendo en una ventana. El intérprete es el que se usa para ejecutar el programa en depuración. Ésto significa que se puede ejecutar cualquier comando mientras el programa en depuración esté corriendo.&lt;/p&gt;&lt;p&gt;Se puedeu utilizar las teclas de cursor al introducir comandos. Hay también un histórico de comandos que se pueden rellamar utilizando las teclas de cursor de arriba y abajo manteniendo apretada la tecla Ctrl. Esto se puede cambiar a solo las teclas de cursor arriba y abajo en el la página de shell del diálogo de configuración. Pulsando estas teclas despues de que se ha introducido algún texto inicia una búsqueda incremental.&lt;/p&gt;&lt;p&gt;La shell tiene algunos comandos especiales. &apos;restart&apos; termina la shell e inicia una nueva. &apos;clear&apos; limpia la salida de la ventana de shell. &apos;start&apos; se usa para iniciar una shell para un entorno virtual y se debería continuar con un nombre de entorno virtual. start&apos; sin nombre de entorno virtual inicia la shell por defecto. Los entornos virtuales disponibles se pueden listar con los comandos &apos;envs&apos; o &apos;environments&apos;. El entorno virtual activo se puede encontrar con el comando &apos;which&apos; . &apos;quit&apos; o &apos;exit&apos; se usa para salir de la aplicación. Estos comandos (exceptuando environments&apos;, &apos;envs&apos; y &apos;which&apos;) están dsponibles para los menús de ventana también.&lt;/p&gt;&lt;p&gt;Pulsando la tecla Tab después de introducir algún texto muestra una lista de autocompletados posibles. La entrada relevante puede entonces seleccionarse de este listado. Si hay solamente una entrada disponible, ésta se insertará automaticamente.&lt;/p&gt;&lt;p&gt;En modo pasivo de depuración la shell está solamente disponible despues de que el programa a depurar ha conectado con la IDE y hasta que termina. Esto se indica con un prompt distinto y con una indicación en el título de la ventana.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="312"/>
-        <source>Restart</source>
-        <translation>Reiniciar</translation>
+        <translation type="obsolete">&lt;b&gt;La Ventana de Shell&lt;/b&gt;&lt;p&gt;Es simplemente un intérprete corriendo en una ventana. El intérprete es el que se usa para ejecutar el programa en depuración. Ésto significa que se puede ejecutar cualquier comando mientras el programa en depuración esté corriendo.&lt;/p&gt;&lt;p&gt;Se puedeu utilizar las teclas de cursor al introducir comandos. Hay también un histórico de comandos que se pueden rellamar utilizando las teclas de cursor de arriba y abajo manteniendo apretada la tecla Ctrl. Esto se puede cambiar a solo las teclas de cursor arriba y abajo en el la página de shell del diálogo de configuración. Pulsando estas teclas despues de que se ha introducido algún texto inicia una búsqueda incremental.&lt;/p&gt;&lt;p&gt;La shell tiene algunos comandos especiales. &apos;restart&apos; termina la shell e inicia una nueva. &apos;clear&apos; limpia la salida de la ventana de shell. &apos;start&apos; se usa para iniciar una shell para un entorno virtual y se debería continuar con un nombre de entorno virtual. start&apos; sin nombre de entorno virtual inicia la shell por defecto. Los entornos virtuales disponibles se pueden listar con los comandos &apos;envs&apos; o &apos;environments&apos;. El entorno virtual activo se puede encontrar con el comando &apos;which&apos; . &apos;quit&apos; o &apos;exit&apos; se usa para salir de la aplicación. Estos comandos (exceptuando environments&apos;, &apos;envs&apos; y &apos;which&apos;) están dsponibles para los menús de ventana también.&lt;/p&gt;&lt;p&gt;Pulsando la tecla Tab después de introducir algún texto muestra una lista de autocompletados posibles. La entrada relevante puede entonces seleccionarse de este listado. Si hay solamente una entrada disponible, ésta se insertará automaticamente.&lt;/p&gt;&lt;p&gt;En modo pasivo de depuración la shell está solamente disponible despues de que el programa a depurar ha conectado con la IDE y hasta que termina. Esto se indica con un prompt distinto y con una indicación en el título de la ventana.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../QScintilla/Shell.py" line="313"/>
+        <source>Restart</source>
+        <translation>Reiniciar</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="314"/>
         <source>Restart and Clear</source>
         <translation>Restaurar y Limpiar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="317"/>
+        <location filename="../QScintilla/Shell.py" line="318"/>
         <source>Active Name</source>
         <translation>Nombre Activo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1850"/>
+        <location filename="../QScintilla/Shell.py" line="1867"/>
         <source>Available Virtual Environments:
 {0}
 </source>
@@ -62359,22 +62359,32 @@
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1896"/>
+        <location filename="../QScintilla/Shell.py" line="1917"/>
         <source>Current Virtual Environment: &apos;{0}&apos;
 </source>
         <translation>Entorno Virtual Actual: &apos;{0}&apos;
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="845"/>
+        <location filename="../QScintilla/Shell.py" line="853"/>
         <source>{0} on {1}</source>
         <translation>{0} en {1}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1067"/>
+        <location filename="../QScintilla/Shell.py" line="1075"/>
         <source>&lt;{0}&gt; {1}</source>
         <translation>&lt;{0}&gt; {1}</translation>
     </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="159"/>
+        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;%restart&apos; kills the shell and starts a new one. &apos;%clear&apos; clears the display of the shell window. &apos;%start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. &apos;%start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;%envs&apos; or &apos;%environments&apos; commands. The active virtual environment can be questioned by the &apos;%which&apos; command. &apos;%quit&apos; or &apos;%exit&apos; is used to exit the application. These commands (except &apos;%environments&apos;, &apos;%envs&apos; and &apos;%which&apos;) are available through the window menus as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="187"/>
+        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.&lt;/p&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;%restart&apos; kills the shell and starts a new one. &apos;%clear&apos; clears the display of the shell window. &apos;%start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. &apos;%start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;%envs&apos; or &apos;%environments&apos; commands. The active virtual environment can be questioned by the &apos;%which&apos; command. These commands (except &apos;%environments&apos; and &apos;%envs&apos;) are available through the context menu as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;&lt;p&gt;In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ShellHistoryDialog</name>
@@ -63255,62 +63265,62 @@
         <translation>Alternativa</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="131"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="132"/>
         <source>Project</source>
         <translation>Proyecto</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="135"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="136"/>
         <source>General</source>
         <translation>General</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="139"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="140"/>
         <source>Wizards</source>
         <translation>Asistentes</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="145"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="146"/>
         <source>Debug</source>
         <translation>Depurar</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="149"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="150"/>
         <source>Edit</source>
         <translation>Editar</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="153"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="154"/>
         <source>File</source>
         <translation>Archivo</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="157"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="158"/>
         <source>Search</source>
         <translation>Buscar</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="161"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="162"/>
         <source>View</source>
         <translation>Vista</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="165"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="166"/>
         <source>Macro</source>
         <translation>Macro</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="169"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="170"/>
         <source>Bookmarks</source>
         <translation>Marcadores</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="181"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="182"/>
         <source>Window</source>
         <translation>Ventana</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="364"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="365"/>
         <source>Edit shortcuts</source>
         <translation>Editar atajos</translation>
     </message>
@@ -63350,27 +63360,27 @@
         <translation>Seleccionar para filtrar basándose en atajo de teclado o en atajo de teclado alternativo</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="174"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="175"/>
         <source>Spelling</source>
         <translation>Corrección ortográfica</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="327"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="328"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has already been allocated to the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; ya ha sido reservado para la acción &lt;b&gt;{1}&lt;/b&gt;. ¿Eliminar este enlace?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="347"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="348"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; hides the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; oculta la acción &lt;b&gt;{1}&lt;/b&gt;. ¿Eliminar este enlace?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="364"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="365"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is hidden by the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; está oculto por la acción &lt;b&gt;{1}&lt;/b&gt;. ¿Eliminar este enlace?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="197"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="198"/>
         <source>eric Web Browser</source>
         <translation>Navegador Web de eric</translation>
     </message>
@@ -63474,42 +63484,42 @@
         <translation>&lt;b&gt;Vista preliminar&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="263"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="264"/>
         <source>Preview not available.</source>
         <translation>Vista preliminar no disponible.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="290"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="291"/>
         <source>Copy Image Location to Clipboard</source>
         <translation>Copiar Ubicación de la Imagen al Portapapeles</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="293"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="294"/>
         <source>Copy Image Name to Clipboard</source>
         <translation>Copiar Nombre de la Imagen al Portapapeles</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="357"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="358"/>
         <source>Save Image</source>
         <translation>Guardar imagen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="346"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="347"/>
         <source>All Files (*)</source>
         <translation>Todos los archivos (*)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="357"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="358"/>
         <source>&lt;p&gt;Cannot write to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No es posible escribir en el archivo &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="276"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="277"/>
         <source>Loading...</source>
         <translation>Cargando...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="334"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="335"/>
         <source>&lt;p&gt;This preview is not available.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Esta vista previa no está disponible.&lt;/p&gt;</translation>
     </message>
@@ -63547,62 +63557,62 @@
         <translation>&lt;b&gt;Site {0}&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="68"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="70"/>
         <source>Your connection to this site is &lt;b&gt;secure&lt;/b&gt;.</source>
         <translation>La conexión a este site es &lt;b&gt;segura&lt;/b&gt;.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="73"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="75"/>
         <source>Your connection to this site is &lt;b&gt;not secure&lt;/b&gt;.</source>
         <translation>La conexión a este site es &lt;b&gt;no segura&lt;/b&gt;.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="88"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="90"/>
         <source>This is your &lt;b&gt;{0}.&lt;/b&gt; visit of this site.</source>
         <translation>Esta es su &lt;b&gt;{0}.&lt;/b&gt; visita a este site.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="94"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="96"/>
         <source>You have &lt;b&gt;never&lt;/b&gt; visited this site before.</source>
         <translation>&lt;b&gt;Nunca&lt;/b&gt; ha visitado este sitio anteriormente.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="103"/>
-        <source>first</source>
-        <translation>primera</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="105"/>
-        <source>second</source>
-        <translation>segunda</translation>
+        <source>first</source>
+        <translation>primera</translation>
     </message>
     <message>
         <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="107"/>
+        <source>second</source>
+        <translation>segunda</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="109"/>
         <source>third</source>
         <translation>tercera</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="108"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="110"/>
         <source>This is your &lt;b&gt;{0}&lt;/b&gt; visit of this site.</source>
         <translation>Ésta es su &lt;b&gt;{0}&lt;/b&gt; visita a este site.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="129"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="131"/>
         <source>Register as &lt;b&gt;{0}&lt;/b&gt; links handler.</source>
         <translation>Regisrar como &lt;b&gt;{0}&lt;/b&gt; gestor de enlaces.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="136"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="138"/>
         <source>Register</source>
         <translation>Registrar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="153"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="156"/>
         <source>More...</source>
         <translation>Más...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="62"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="64"/>
         <source>Your connection to this site &lt;b&gt;may not be secure&lt;/b&gt;.</source>
         <translation>La conexión a este site &lt;b&gt;podría no ser segura&lt;/b&gt;.</translation>
     </message>
@@ -63740,17 +63750,17 @@
         <translation>Archivo de X11 Pixmap (*.xpm)</translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="252"/>
+        <location filename="../Snapshot/SnapWidget.py" line="253"/>
         <source>Save Snapshot</source>
         <translation>Guardar Captura de Pantalla</translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="231"/>
+        <location filename="../Snapshot/SnapWidget.py" line="232"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="252"/>
+        <location filename="../Snapshot/SnapWidget.py" line="253"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation>No se puede guardar el archivo {0}:
@@ -63797,7 +63807,7 @@
         <translation>captura de pantalla</translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="389"/>
+        <location filename="../Snapshot/SnapWidget.py" line="390"/>
         <source>The application contains an unsaved snapshot.</source>
         <translation>La aplicación contiene una captura de pantalla sin guardar.</translation>
     </message>
@@ -63812,7 +63822,7 @@
         <translation>Copiar y Vista &amp;Preliminar</translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="355"/>
+        <location filename="../Snapshot/SnapWidget.py" line="356"/>
         <source>Preview of the snapshot image ({0} x {1})</source>
         <translation>Vista preliminar de la imagen de captura de pantalla ({0} x {1})</translation>
     </message>
@@ -63852,7 +63862,7 @@
         <translation>Seleccionar Ventana</translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="419"/>
+        <location filename="../Snapshot/SnapWidget.py" line="420"/>
         <source>eric Snapshot</source>
         <translation>Captura de Pantalla de eric</translation>
     </message>
@@ -63860,7 +63870,7 @@
 <context>
     <name>SnapshotFreehandGrabber</name>
     <message>
-        <location filename="../Snapshot/SnapshotFreehandGrabber.py" line="72"/>
+        <location filename="../Snapshot/SnapshotFreehandGrabber.py" line="76"/>
         <source>Select a region using the mouse. To take the snapshot, press the Enter key or double click. Press Esc to quit.</source>
         <translation>Seleccionar una región utilizando el ratón. Para tomar la captura de pantalla, pulsar la tecla Enter o hacer doble click. Pulsar Esc para salir.</translation>
     </message>
@@ -63868,7 +63878,7 @@
 <context>
     <name>SnapshotRegionGrabber</name>
     <message>
-        <location filename="../Snapshot/SnapshotRegionGrabber.py" line="104"/>
+        <location filename="../Snapshot/SnapshotRegionGrabber.py" line="107"/>
         <source>Select a region using the mouse. To take the snapshot, press the Enter key or double click. Press Esc to quit.</source>
         <translation>Seleccionar una región utilizando el ratón. Para tomar la captura de pantalla, pulsar la tecla Enter o hacer doble click. Pulsar Esc para salir.</translation>
     </message>
@@ -63876,7 +63886,7 @@
 <context>
     <name>SnapshotTimer</name>
     <message numerus="yes">
-        <location filename="../Snapshot/SnapshotTimer.py" line="104"/>
+        <location filename="../Snapshot/SnapshotTimer.py" line="110"/>
         <source>Snapshot will be taken in %n seconds</source>
         <translation>
             <numerusform>La captura de pantalla se tomará en %n segundo</numerusform>
@@ -63998,27 +64008,27 @@
 <context>
     <name>SpeedDial</name>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="401"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="402"/>
         <source>Unable to load</source>
         <translation>No se ha podido cargar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="207"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="208"/>
         <source>Saving Speed Dial data</source>
         <translation>Guardando datos de Marcación Rápida</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="207"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="208"/>
         <source>&lt;p&gt;Speed Dial data could not be saved to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;Los datos de Marcación Rápido no se han podido guardar en &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="220"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="221"/>
         <source>Reset Speed Dials</source>
         <translation>Restablecer Marcadores Rápidos</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="220"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="221"/>
         <source>Are you sure you want to reset the speed dials to the default pages?</source>
         <translation>¿Realmente desea restablecer los marcadores rápidos a las páginas por defecto?</translation>
     </message>
@@ -64412,22 +64422,22 @@
         <translation>Listo</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="162"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="163"/>
         <source>Unable to open database</source>
         <translation>No se ha podido abrir la base de datos</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="304"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="307"/>
         <source>Query OK.</source>
         <translation>Consulta OK.</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="162"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="163"/>
         <source>An error occurred while opening the connection.</source>
         <translation>Ha ocurrido un error mientras se abría la conexión.</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="306"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="309"/>
         <source>Query OK, number of affected rows: {0}</source>
         <translation>Consulta OK, número de registros afectados: {0}</translation>
     </message>
@@ -64591,62 +64601,62 @@
         <translation>El certificado no tiene mecanismo para determinar si ha sido revocado.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="52"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="53"/>
         <source>Revocation information for the certificate is not available.</source>
         <translation>La información de revocación para el certificado no está disponible.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="55"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="56"/>
         <source>The certificate has been revoked.</source>
         <translation>El certificado está revocado.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="57"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="58"/>
         <source>The certificate is invalid.</source>
         <translation>El certificado no es válido.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="59"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="60"/>
         <source>The certificate is signed using a weak signature algorithm.</source>
         <translation>El certificado está firmado utilizando un algoritmo de firmado débil.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="62"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="63"/>
         <source>The host name specified in the certificate is not unique.</source>
         <translation>El nombre de host especificado en el certificado no es único.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="65"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="66"/>
         <source>The certificate contains a weak key.</source>
         <translation>El certificado contiene una clave débil.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="67"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="69"/>
         <source>The certificate claimed DNS names that are in violation of name constraints.</source>
         <translation>El certificado ha reclamado nombres de DNS que están en conflicto con restricciones de nombres.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="98"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="101"/>
         <source>No error description available.</source>
         <translation>No hay una descripción disponible para el error.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="129"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="132"/>
         <source>Remove Selected</source>
         <translation>Eliminar Seleccionados</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="134"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="137"/>
         <source>Remove All</source>
         <translation>Eliminar Todos</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="73"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="75"/>
         <source>The certificate has a validity period that is too long.</source>
         <translation>El certificado tiene un periodo de validez demasiado largo.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="82"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="85"/>
         <source>Certificate Transparency was required for this connection, but the server did not provide information that complied with the policy.</source>
         <translation>Se ha solicitado Transparencia de Certificado para esta conexión, pero el servidor no ha proporcionado información que cumpla con la norma.</translation>
     </message>
@@ -64688,7 +64698,7 @@
 &lt;p&gt;Introduzca el directorio de trabajo de la aplicación a depurar. Déjelo en blanco para establecer el directorio de trabajo como el directorio del ejecutable.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="151"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="154"/>
         <source>Environment Variables:</source>
         <translation>Variables de Entorno:</translation>
     </message>
@@ -64707,78 +64717,78 @@
 &lt;p&gt;Ejemplo: var1=1 var2=&quot;hello world&quot; var3+=&quot;:/tmp&quot;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="215"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="218"/>
         <source>Select this to erase the collected coverage information</source>
         <translation>Seleccionar para borrar la información recogida de cobertura</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="218"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="221"/>
         <source>&lt;b&gt;Erase coverage information&lt;/b&gt;
 &lt;p&gt;Select this to erase the collected coverage information before the next coverage run.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Borrar información de cobertura&lt;/b&gt;
 &lt;p&gt;Seleccionar para borrar la información recogida de cobertura antes de la siguiente ejecución de cobertura.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="222"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="225"/>
         <source>Erase coverage information</source>
         <translation>Borrar información de cobertura</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="225"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="228"/>
         <source>Alt+C</source>
         <translation>Alt+C</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="165"/>
-        <source>Uncheck to disable exception reporting</source>
-        <translation>Desmarcar para deshabilitar informes de excepciones</translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="168"/>
+        <source>Uncheck to disable exception reporting</source>
+        <translation>Desmarcar para deshabilitar informes de excepciones</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="171"/>
         <source>&lt;b&gt;Report exceptions&lt;/b&gt;
 &lt;p&gt;Uncheck this in order to disable exception reporting.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Informar de excepciones&lt;/b&gt;
 &lt;p&gt;Desmarcar para deshabilitar el informe de excepciones.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="172"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="175"/>
         <source>Report exceptions</source>
         <translation>Informar de excepciones</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="175"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="178"/>
         <source>Alt+E</source>
         <translation>Alt+E</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="185"/>
-        <source>Select to clear the display of the interpreter window</source>
-        <translation>Seleccionar para limpiar la pantalla de la ventana de intérprete</translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="188"/>
-        <source>&lt;b&gt;Clear interpreter window&lt;/b&gt;&lt;p&gt;This clears the display of the interpreter window before starting the debug client.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Limpiar ventana del  intérprete&lt;/b&gt;&lt;p&gt;Limpia la ventana del intérprete antes de empezar el cliente de depuración.&lt;/p&gt;</translation>
+        <source>Select to clear the display of the interpreter window</source>
+        <translation>Seleccionar para limpiar la pantalla de la ventana de intérprete</translation>
     </message>
     <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="191"/>
+        <source>&lt;b&gt;Clear interpreter window&lt;/b&gt;&lt;p&gt;This clears the display of the interpreter window before starting the debug client.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Limpiar ventana del  intérprete&lt;/b&gt;&lt;p&gt;Limpia la ventana del intérprete antes de empezar el cliente de depuración.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="194"/>
         <source>Clear interpreter window</source>
         <translation>Limpiar ventana de intérprete</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="201"/>
-        <source>Select to start the debugger in a console window</source>
-        <translation>Seleccionar para iniciar el depurador en una ventana de consola</translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="204"/>
+        <source>Select to start the debugger in a console window</source>
+        <translation>Seleccionar para iniciar el depurador en una ventana de consola</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="207"/>
         <source>&lt;b&gt;Start in console&lt;/b&gt;
 &lt;p&gt;Select to start the debugger in a console window. The console command has to be configured on the Debugger-&amp;gt;General page&lt;/p&gt;</source>
         <translation>&lt;b&gt;Iniciar en consola&lt;/b&gt;
 &lt;p&gt;Seleccionar para iniciar el depurador en una ventana de consola. El comando de consola debe ser configurado en Depurador-&amp;gt;Página General&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="208"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="211"/>
         <source>Start in console</source>
         <translation>Iniciar en consola</translation>
     </message>
@@ -64793,7 +64803,7 @@
         <translation type="obsolete">&lt;b&gt;Entorno Virtual&lt;/b&gt;\n&lt;p&gt;Introducir el entorno virtual a utilizar. Dejar en blanco para utilizar el entorno por defecto, por ejemplo el configurado globalmente o por proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="141"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="144"/>
         <source>Virtual Environment:</source>
         <translation>Entorno Virtual:</translation>
     </message>
@@ -65012,42 +65022,42 @@
 <context>
     <name>StartDialog</name>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="108"/>
+        <location filename="../Debugger/StartDialog.py" line="109"/>
         <source>Clear Histories</source>
         <translation>Borrar Histórico</translation>
     </message>
     <message>
+        <location filename="../Debugger/StartDialog.py" line="281"/>
+        <source>Edit History</source>
+        <translation>Editar Historial</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="268"/>
+        <source>Command Line</source>
+        <translation>Línea de Comando</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="269"/>
+        <source>Working Directory</source>
+        <translation>Directorio de trabajo</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="270"/>
+        <source>Environment</source>
+        <translation>Entorno</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="281"/>
+        <source>Select the history list to be edited:</source>
+        <translation>Seleccionar el listado de historial a editar:</translation>
+    </message>
+    <message>
         <location filename="../Debugger/StartDialog.py" line="279"/>
-        <source>Edit History</source>
-        <translation>Editar Historial</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="266"/>
-        <source>Command Line</source>
-        <translation>Línea de Comando</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="267"/>
-        <source>Working Directory</source>
-        <translation>Directorio de trabajo</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="268"/>
-        <source>Environment</source>
-        <translation>Entorno</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="279"/>
-        <source>Select the history list to be edited:</source>
-        <translation>Seleccionar el listado de historial a editar:</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="277"/>
         <source>No Debug Programs</source>
         <translation>No Depurar Programas</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="142"/>
+        <location filename="../Debugger/StartDialog.py" line="143"/>
         <source>Enter the list of programs or program patterns not to be debugged separated by &apos;{0}&apos;.</source>
         <translation>Introducir la lista de programas o patrones de programas que no se deben depurar separadamente por &apos;{0}&apos;.</translation>
     </message>
@@ -65756,12 +65766,12 @@
         <translation>Propiedad borrada.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2244"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2245"/>
         <source>Subversion Lock</source>
         <translation>Bloqueo de Subversion</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2244"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2245"/>
         <source>Enter lock comment</source>
         <translation>Introducir comentario para el bloqueo</translation>
     </message>
@@ -66126,32 +66136,32 @@
         <translation>Visor de SVG</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="91"/>
+        <location filename="../Graphics/SvgDiagram.py" line="92"/>
         <source>Close</source>
         <translation>Cerrar</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="96"/>
+        <location filename="../Graphics/SvgDiagram.py" line="97"/>
         <source>Print</source>
         <translation>Imprimir</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="131"/>
+        <location filename="../Graphics/SvgDiagram.py" line="132"/>
         <source>Window</source>
         <translation>Ventana</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="135"/>
+        <location filename="../Graphics/SvgDiagram.py" line="136"/>
         <source>Graphics</source>
         <translation>Gráficos</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="101"/>
+        <location filename="../Graphics/SvgDiagram.py" line="102"/>
         <source>Print Preview</source>
         <translation>Presentación preliminar</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="362"/>
+        <location filename="../Graphics/SvgDiagram.py" line="363"/>
         <source>Diagram: {0}</source>
         <translation>Diagrama: {0}</translation>
     </message>
@@ -66224,12 +66234,12 @@
         <translation>Alt+M</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="102"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="102"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>El proceso {0} no se ha podido ejecutar. Verifique que está en la ruta de búsqueda (search path).</translation>
     </message>
@@ -66306,22 +66316,22 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="83"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="85"/>
         <source>Files (relative to {0}):</source>
         <translation>Archivos (relativo a {0}):</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="152"/>
         <source>No changelists found</source>
         <translation>No se han encontrado listas de cambios</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>El proceso {0} no se ha podido ejecutar. Verifique que está en la ruta de búsqueda (search path).</translation>
     </message>
@@ -66561,29 +66571,29 @@
         <translation>Alt+M</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="169"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="82"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="84"/>
         <source> (binary)</source>
         <translation> (binario)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="169"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>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/vcsPySvn/SvnDialog.py" line="75"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="77"/>
         <source>Revision {0}.
 </source>
         <translation>Revisión {0}.
 </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="86"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="88"/>
         <source>{0} {1}{2}
 </source>
         <translation>{0} {1}{2}
@@ -66621,7 +66631,7 @@
 <context>
     <name>SvnDiffDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="175"/>
         <source>Subversion Diff</source>
         <translation>Diff de Subversion</translation>
     </message>
@@ -66681,59 +66691,59 @@
         <translation>Alt+M</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="189"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="207"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="209"/>
         <source>There is no difference.</source>
         <translation>No hay diferencia.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="399"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="409"/>
         <source>Save Diff</source>
         <translation>Guardar Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="367"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="377"/>
         <source>Patch Files (*.diff)</source>
         <translation>Archivos de Parche (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="175"/>
         <source>There is no temporary directory available.</source>
         <translation>No hay directorio temporal disponible.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="189"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>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/vcsSubversion/SvnDiffDialog.py" line="399"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="409"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de parche &lt;b&gt;{0}&lt;/b&gt; no puede ser guardado.&lt;br /&gt;Causa: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="211"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="219"/>
         <source>Processing file &apos;{0}&apos;...
 </source>
         <translation>Procesando archivo &apos;{0}&apos;...
 </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="384"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="394"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de parche &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="220"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="226"/>
         <source>&lt;Start&gt;</source>
         <translation>&lt;Inicio&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="221"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="227"/>
         <source>&lt;End&gt;</source>
         <translation>&lt;Fin&gt;</translation>
     </message>
@@ -66924,17 +66934,17 @@
         <translation>Seleccione el campo de filtrado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="664"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="679"/>
         <source>Revision</source>
         <translation>Revisión</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="661"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="676"/>
         <source>Author</source>
         <translation>Autor</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="164"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="167"/>
         <source>Message</source>
         <translation>Mensaje</translation>
     </message>
@@ -67064,37 +67074,37 @@
         <translation>Alt+M</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="93"/>
         <source>Added</source>
         <translation>Añadido</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="91"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="94"/>
         <source>Deleted</source>
         <translation>Borrado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="92"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="95"/>
         <source>Modified</source>
         <translation>Modificado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="519"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="535"/>
         <source>Subversion Error</source>
         <translation>Error de Subversion</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="309"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="317"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="309"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="317"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>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/vcsSubversion/SvnLogBrowserDialog.py" line="93"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="96"/>
         <source>Replaced</source>
         <translation>Reemplazado</translation>
     </message>
@@ -67262,7 +67272,7 @@
         <translation>&amp;Protocolo:</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="129"/>
         <source>&amp;URL:</source>
         <translation>&amp;URL:</translation>
     </message>
@@ -67310,7 +67320,7 @@
         <translation>&lt;b&gt;URL&lt;/b&gt;&lt;p&gt;Introduzca la URL del módulo. Para un repositorio con disposición estándar, no debe contener la parte trunk, tags o branches.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="121"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="122"/>
         <source>Pat&amp;h:</source>
         <translation>&amp;Ruta:</translation>
     </message>
@@ -68197,12 +68207,12 @@
 &lt;p&gt;Muestra los posibles mensajes de error del comando subversion proplist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="154"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnPropListDialog.py" line="145"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnPropListDialog.py" line="152"/>
         <source>None</source>
         <translation>Ninguno</translation>
     </message>
@@ -68212,7 +68222,7 @@
         <translation>Errores</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="154"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>El proceso {0} no se ha podido ejecutar. Verifique que está en la ruta de búsqueda (search path).</translation>
     </message>
@@ -68366,7 +68376,7 @@
         <translation>Fecha</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="281"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="288"/>
         <source>Subversion Error</source>
         <translation>Error de Subversion</translation>
     </message>
@@ -68421,17 +68431,17 @@
         <translation>Alt+M</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="204"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="208"/>
         <source>The installed version of PySvn should be 1.4.0 or better.</source>
         <translation>La versión instalada de PySvn debería ser 1.4.0 o superior.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="267"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="267"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>El proceso {0} no se ha podido ejecutar. Verifique que está en la ruta de búsqueda (search path).</translation>
     </message>
@@ -68547,7 +68557,7 @@
 <context>
     <name>SvnStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="400"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="406"/>
         <source>Subversion Status</source>
         <translation>Estado de Subversion</translation>
     </message>
@@ -68669,182 +68679,182 @@
         <translation>Presione para actualizar el estado visualizado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="83"/>
         <source>Commit changes to repository...</source>
         <translation>Hacer commit de los cambios al repositorio...</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="90"/>
         <source>Add to repository</source>
         <translation>Añadir al repositorio</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="96"/>
         <source>Revert changes</source>
         <translation>Revertir cambios</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="873"/>
-        <source>Lock</source>
-        <translation>Bloquear</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890"/>
+        <source>Lock</source>
+        <translation>Bloquear</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="907"/>
         <source>Unlock</source>
         <translation>Desbloquear</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="111"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="113"/>
         <source>Break lock</source>
         <translation>Romper bloqueo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="116"/>
         <source>Steal lock</source>
         <translation>Robar bloqueo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="120"/>
         <source>Adjust column sizes</source>
         <translation>Adjustar tamaño de columnas</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="158"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="161"/>
         <source>added</source>
         <translation>añadido</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="160"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="163"/>
         <source>deleted</source>
         <translation>borrado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="171"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="174"/>
         <source>modified</source>
         <translation>modificado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="165"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="168"/>
         <source>unversioned</source>
         <translation>sin versionar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="189"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="192"/>
         <source>locked</source>
         <translation>bloqueado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="190"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="193"/>
         <source>other lock</source>
         <translation>otro bloqueo</translation>
     </message>
     <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="194"/>
+        <source>stolen lock</source>
+        <translation>bloqueo robado</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="195"/>
+        <source>broken lock</source>
+        <translation>bloqueo roto</translation>
+    </message>
+    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="191"/>
-        <source>stolen lock</source>
-        <translation>bloqueo robado</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="192"/>
-        <source>broken lock</source>
-        <translation>bloqueo roto</translation>
+        <source>not locked</source>
+        <translation>no bloqueado</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="173"/>
+        <source>normal</source>
+        <translation>normal</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="166"/>
+        <source>replaced</source>
+        <translation>reemplazado</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="175"/>
+        <source>conflict</source>
+        <translation>conflicto</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="188"/>
-        <source>not locked</source>
-        <translation>no bloqueado</translation>
+        <source>external</source>
+        <translation>externo</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="164"/>
+        <source>ignored</source>
+        <translation>ignorado</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="169"/>
+        <source>missing</source>
+        <translation>perdido</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="170"/>
-        <source>normal</source>
-        <translation>normal</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="163"/>
-        <source>replaced</source>
-        <translation>reemplazado</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="172"/>
-        <source>conflict</source>
-        <translation>conflicto</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="185"/>
-        <source>external</source>
-        <translation>externo</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="161"/>
-        <source>ignored</source>
-        <translation>ignorado</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="166"/>
-        <source>missing</source>
-        <translation>perdido</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="167"/>
         <source>type error</source>
         <translation>error de tipo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="196"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="199"/>
         <source>no</source>
         <translation>no</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="195"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="198"/>
         <source>yes</source>
         <translation>si</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="413"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="742"/>
         <source>Commit</source>
         <translation>Commit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="850"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="867"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation>No hay cambios pendientes de commit disponibles/seleccionados.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="765"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="782"/>
         <source>Add</source>
         <translation>Añadir</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="765"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="782"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation>No hay entradas sin versionar disponibles/seleccionadas.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="811"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="828"/>
         <source>Revert</source>
         <translation>Revertir</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="873"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890"/>
         <source>There are no unlocked files available/selected.</source>
         <translation>No hay archivos desbloqueados disponibles/seleccionados.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="926"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="943"/>
         <source>There are no locked files available/selected.</source>
         <translation>No hay archivos bloqueados disponibles/seleccionados.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="908"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="925"/>
         <source>Break Lock</source>
         <translation>Romper Bloqueo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="926"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="943"/>
         <source>Steal Lock</source>
         <translation>Robar Bloqueo</translation>
     </message>
@@ -68854,27 +68864,27 @@
         <translation>Lista de cambios</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="102"/>
         <source>Add to Changelist</source>
         <translation>Añadir a la lista de cambios</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979"/>
         <source>Remove from Changelist</source>
         <translation>Quitar de la lista de cambios</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="943"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="960"/>
         <source>There are no files available/selected not belonging to a changelist.</source>
         <translation>No hay archivos disponibles/seleccionados que no pertenezcan a una lista de cambios.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979"/>
         <source>There are no files available/selected belonging to a changelist.</source>
         <translation>No hay archivos disponibles/seleccionados que pertenezcan a una lista de cambios.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="413"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>El proceso {0} no se ha podido ejecutar. Verifique que está en la ruta de búsqueda (search path).</translation>
     </message>
@@ -68939,42 +68949,42 @@
         <translation>&amp;Restore</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="92"/>
         <source>Show differences</source>
         <translation>Mostrar diferencias</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="96"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="98"/>
         <source>Restore missing</source>
         <translation>Restore sobre elementos perdidos</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="637"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="654"/>
         <source>all</source>
         <translation>todo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="829"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="846"/>
         <source>Differences</source>
         <translation>Diferencias</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="742"/>
         <source>There are no entries selected to be committed.</source>
         <translation>No hay entradas seleccionads sobre las que hacer commit.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="811"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="828"/>
         <source>There are no missing entries available/selected.</source>
         <translation>No hay entradas perdidas disponibles/seleccionadas.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="83"/>
-        <source>Select all for commit</source>
-        <translation>Seleccionar todo para hacer commit</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="85"/>
+        <source>Select all for commit</source>
+        <translation>Seleccionar todo para hacer commit</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="87"/>
         <source>Deselect all from commit</source>
         <translation>Deshacer selección de todo en el commit</translation>
     </message>
@@ -68989,17 +68999,17 @@
         <translation>&amp;Lado a Lado Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="92"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="94"/>
         <source>Show differences side-by-side</source>
         <translation>Mostrar diferencias lado a lado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="857"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="874"/>
         <source>Side-by-Side Diff</source>
         <translation>Lado a Lado Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="857"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="874"/>
         <source>Only one file with uncommitted changes must be selected.</source>
         <translation>Se debe seleccionar solamente un archivo con cambios sin commit.</translation>
     </message>
@@ -69174,52 +69184,52 @@
         <translation>Alt+M</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="96"/>
         <source>Subversion Branches List</source>
         <translation>Lista de Branches de Subversion</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="127"/>
         <source>Subversion Error</source>
         <translation>Error de Subversion</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="107"/>
         <source>The URL of the project repository could not be retrieved from the working copy. The list operation will be aborted</source>
         <translation>La URL del repositorio del proyecto no ha podido recuperarse de la copia de trabajo. La operación list se abortará</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="127"/>
         <source>The URL of the project repository has an invalid format. The list operation will be aborted</source>
         <translation>La URL del repositorio del proyecto tiene un formato no válido. La operación list se abortará</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="155"/>
         <source>Subversion List</source>
         <translation>Lista (list) de Subversion</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="142"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="144"/>
         <source>Enter the repository URL containing the tags or branches</source>
         <translation>Introducir la URL del repositorio que contiene las tag o branches</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="155"/>
         <source>The repository URL is empty. Aborting...</source>
         <translation>La URL del repositorio esta vacía. Abortando...</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="172"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="160"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="162"/>
         <source>The installed version of PySvn should be 1.4.0 or better.</source>
         <translation>La versión instalada de PySvn debería ser 1.4.0 o superior.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="172"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>El proceso {0} no se ha podido ejecutar. Verifique que está en la ruta de búsqueda (search path).</translation>
     </message>
@@ -71171,7 +71181,7 @@
         <translation>Pulsar para mostrar todos los archivos con algún problema</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="397"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="409"/>
         <source>No issues found.</source>
         <translation>No se han encontrado problemas.</translation>
     </message>
@@ -71196,7 +71206,7 @@
         <translation>Iniciar</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="288"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="297"/>
         <source>Error: {0}</source>
         <translation>Error: {0}</translation>
     </message>
@@ -71206,17 +71216,17 @@
         <translation>%v/%m Archivos</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="274"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="283"/>
         <source>Preparing files...</source>
         <translation>Preparando archivos...</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="98"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="101"/>
         <source>Errors</source>
         <translation>Errores</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="298"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="307"/>
         <source>Transferring data...</source>
         <translation>Transfiriendo datos...</translation>
     </message>
@@ -71502,72 +71512,72 @@
 <context>
     <name>TabManagerWidget</name>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="73"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="74"/>
         <source>Tab Manager</source>
         <translation>Gestor de Pestañas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="127"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="128"/>
         <source>Saved Tabs</source>
         <translation>Pestañas Guardadas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="171"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="172"/>
         <source>Local File System:</source>
         <translation>Sistema Local de Archivos:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="173"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="174"/>
         <source>eric Web Browser:</source>
         <translation>Navegador Web de eric:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="175"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="176"/>
         <source> [FTP]:</source>
         <translation> [FTP]:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="314"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="317"/>
         <source>Window {0}</source>
         <translation>Ventana {0}</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="315"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="318"/>
         <source>Double click to switch</source>
         <translation>Doble click para cambiar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="506"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="509"/>
         <source>Group by</source>
         <translation>Agrupar por</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="507"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="510"/>
         <source>&amp;Window</source>
         <translation>&amp;Ventana</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="512"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="515"/>
         <source>&amp;Domain</source>
         <translation>&amp;Dominio</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="517"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="520"/>
         <source>&amp;Host</source>
         <translation>&amp;Host</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="528"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="531"/>
         <source>&amp;Bookmark checked tabs</source>
         <translation>Añadir a &amp;Marcadores las pestañas seleccionadas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="533"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="536"/>
         <source>&amp;Close checked tabs</source>
         <translation>&amp;Cerrar las pestañas seleccionadas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="567"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="570"/>
         <source>Show Tab Manager</source>
         <translation>Mostrar Gestor de Pestañas</translation>
     </message>
@@ -71575,77 +71585,77 @@
 <context>
     <name>TabWidget</name>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="243"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="249"/>
         <source>Move Left</source>
         <translation>Mover a la Izquierda</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="246"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="252"/>
         <source>Move Right</source>
         <translation>Mover a la Derecha</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="256"/>
-        <source>Close</source>
-        <translation>Cerrar</translation>
-    </message>
-    <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="262"/>
-        <source>Close All</source>
-        <translation>Cerrar todo</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="265"/>
-        <source>Save</source>
-        <translation>Guardar</translation>
+        <source>Close</source>
+        <translation>Cerrar</translation>
     </message>
     <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="268"/>
-        <source>Save As...</source>
-        <translation>Guardar como...</translation>
+        <source>Close All</source>
+        <translation>Cerrar todo</translation>
     </message>
     <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="271"/>
+        <source>Save</source>
+        <translation>Guardar</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="274"/>
+        <source>Save As...</source>
+        <translation>Guardar como...</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="277"/>
         <source>Save All</source>
         <translation>Guardar todo</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="279"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="285"/>
         <source>Print</source>
         <translation>Imprimir</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="249"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="255"/>
         <source>Move First</source>
         <translation>Mover al Primero</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="252"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="258"/>
         <source>Move Last</source>
         <translation>Mover al Último</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="212"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="216"/>
         <source>Show a navigation menu</source>
         <translation>Mostrar un menú de navegación</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="259"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="265"/>
         <source>Close Others</source>
         <translation>Cerrar Otras</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="437"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="443"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="283"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="289"/>
         <source>Copy Path to Clipboard</source>
         <translation>Copiar Ruta al Portapapeles</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="275"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="281"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation>Abrir archivo &apos;de rechazo&apos;</translation>
     </message>
@@ -71653,12 +71663,12 @@
 <context>
     <name>Tabview</name>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1002"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1008"/>
         <source>Untitled {0}</source>
         <translation>Sin título {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1406"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1412"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
@@ -72211,17 +72221,17 @@
 <context>
     <name>TemplateMultipleVariablesDialog</name>
     <message>
-        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="105"/>
+        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="106"/>
         <source>Enter Template Variables</source>
         <translation>Introducir Variable de Plantilla</translation>
     </message>
     <message>
-        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="106"/>
-        <source>&amp;OK</source>
-        <translation>&amp;OK</translation>
-    </message>
-    <message>
         <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="107"/>
+        <source>&amp;OK</source>
+        <translation>&amp;OK</translation>
+    </message>
+    <message>
+        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="108"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Cancelar</translation>
     </message>
@@ -73226,12 +73236,12 @@
         <translation>Todos los archivos (*)</translation>
     </message>
     <message>
-        <location filename="../Project/TranslationPropertiesDialog.py" line="148"/>
+        <location filename="../Project/TranslationPropertiesDialog.py" line="149"/>
         <source>Exempt file from translation</source>
         <translation>Eximir archivo de traducción</translation>
     </message>
     <message>
-        <location filename="../Project/TranslationPropertiesDialog.py" line="161"/>
+        <location filename="../Project/TranslationPropertiesDialog.py" line="162"/>
         <source>Exempt directory from translation</source>
         <translation>Eximir directorio de traducción</translation>
     </message>
@@ -74652,97 +74662,97 @@
 <context>
     <name>UMLGraphicsView</name>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="78"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="79"/>
         <source>Delete shapes</source>
         <translation>Borrar figuras</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="111"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="112"/>
         <source>Set size</source>
         <translation>Establecer tamaño</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="121"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="122"/>
         <source>Re-Layout</source>
         <translation>Reubicar elementos</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="208"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="215"/>
         <source>Graphics</source>
         <translation>Gráficos</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="357"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="364"/>
         <source>Save Diagram</source>
         <translation>Guardar Diagrama</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="126"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="127"/>
         <source>Align Left</source>
         <translation>Alinear a la Izquierda</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="132"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="134"/>
         <source>Align Center Horizontal</source>
         <translation>Alinear Centrado Horizontal</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="138"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="141"/>
         <source>Align Right</source>
         <translation>Alinear a la Derecha</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="144"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="148"/>
         <source>Align Top</source>
         <translation>Alinear en la parte Superior</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="150"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="155"/>
         <source>Align Center Vertical</source>
         <translation>Alinear Centrado Vertical</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="156"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="162"/>
         <source>Align Bottom</source>
         <translation>Alinear en la parte Inferior</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="330"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="337"/>
         <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source>
         <translation>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="83"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="84"/>
         <source>Increase width by {0} points</source>
         <translation>Incrementar anchura por {0} puntos</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="90"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="91"/>
         <source>Increase height by {0} points</source>
         <translation>Incrementar altura por {0} puntos</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="97"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="98"/>
         <source>Decrease width by {0} points</source>
         <translation>Decrementar anchura por {0} puntos</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="104"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="105"/>
         <source>Decrease height by {0} points</source>
         <translation>Decrementar altura por {0} puntos</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="357"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="364"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; no pudo ser guardado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="345"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="352"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="116"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="117"/>
         <source>Re-Scan</source>
         <translation>Volver a Escanear</translation>
     </message>
@@ -74826,7 +74836,7 @@
 <context>
     <name>UnittestDialog</name>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="903"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="906"/>
         <source>Unittest</source>
         <translation>Test Unitario</translation>
     </message>
@@ -74953,72 +74963,72 @@
         <translation>Desocupado</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="96"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="98"/>
         <source>Start</source>
         <translation>Comenzar</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="98"/>
-        <source>Start the selected testsuite</source>
-        <translation>Comenzar la suite de tests seleccionada</translation>
-    </message>
-    <message>
         <location filename="../PyUnit/UnittestDialog.py" line="100"/>
+        <source>Start the selected testsuite</source>
+        <translation>Comenzar la suite de tests seleccionada</translation>
+    </message>
+    <message>
+        <location filename="../PyUnit/UnittestDialog.py" line="102"/>
         <source>&lt;b&gt;Start Test&lt;/b&gt;&lt;p&gt;This button starts the selected testsuite.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Comenzar Test&lt;/b&gt;&lt;p&gt;Este botón comienza la suite de tests seleccionada.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="111"/>
-        <source>Stop</source>
-        <translation>PararDetener</translation>
-    </message>
-    <message>
         <location filename="../PyUnit/UnittestDialog.py" line="113"/>
+        <source>Stop</source>
+        <translation>PararDetener</translation>
+    </message>
+    <message>
+        <location filename="../PyUnit/UnittestDialog.py" line="115"/>
         <source>Stop the running unittest</source>
         <translation>Detener el test unitario en ejecución</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="114"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="116"/>
         <source>&lt;b&gt;Stop Test&lt;/b&gt;&lt;p&gt;This button stops a running unittest.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Detener Test&lt;/b&gt;&lt;p&gt;Este botón detiene un test unitario en ejecución.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="166"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="168"/>
         <source>^Failure: </source>
         <translation>^Fallido: </translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="167"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="169"/>
         <source>^Error: </source>
         <translation>^Error: </translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="699"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="702"/>
         <source>Preparing Testsuite</source>
         <translation>Preparando Suite de Tests</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="985"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="988"/>
         <source>Running</source>
         <translation>Ejecutando</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1158"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1161"/>
         <source>Show Source</source>
         <translation>Mostrar código fuente</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="304"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="306"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation>Archivos Python (*.py);;Todos los Archivos (*)</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1029"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1032"/>
         <source>Failure: {0}</source>
         <translation>Fallido: {0}</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1044"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1047"/>
         <source>Error: {0}</source>
         <translation>Error: {0}</translation>
     </message>
@@ -75053,32 +75063,32 @@
         <translation>Número de tests con éxito inesperado</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1059"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1062"/>
         <source>    Skipped: {0}</source>
         <translation>    Ignorados: {0}</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1077"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1080"/>
         <source>    Expected Failure</source>
         <translation>    Fallo Esperado</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1094"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1097"/>
         <source>    Unexpected Success</source>
         <translation>    Éxito Inesperado</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="103"/>
-        <source>Rerun Failed</source>
-        <translation>Re-ejecución Fallida</translation>
-    </message>
-    <message>
         <location filename="../PyUnit/UnittestDialog.py" line="105"/>
-        <source>Reruns failed tests of the selected testsuite</source>
-        <translation>La re-ejecución ha fallado tests del testsuite seleccionado</translation>
+        <source>Rerun Failed</source>
+        <translation>Re-ejecución Fallida</translation>
     </message>
     <message>
         <location filename="../PyUnit/UnittestDialog.py" line="107"/>
+        <source>Reruns failed tests of the selected testsuite</source>
+        <translation>La re-ejecución ha fallado tests del testsuite seleccionado</translation>
+    </message>
+    <message>
+        <location filename="../PyUnit/UnittestDialog.py" line="109"/>
         <source>&lt;b&gt;Rerun Failed&lt;/b&gt;&lt;p&gt;This button reruns all failed tests of the selected testsuite.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Re-ejecución Fallida&lt;/b&gt;&lt;p&gt;Este botón re-ejecuta todos los tests fallidos del testsuite seleccionado.&lt;/p&gt;</translation>
     </message>
@@ -75167,17 +75177,17 @@
         <translation>Resultados</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="703"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="706"/>
         <source>Unittest with auto-discovery</source>
         <translation>Test unitario con auto-descubrir</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="787"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="790"/>
         <source>You must enter a start directory for auto-discovery.</source>
         <translation>Se debe introducir un directorio de inicio para auto-descubrir.</translation>
     </message>
     <message numerus="yes">
-        <location filename="../PyUnit/UnittestDialog.py" line="1009"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1012"/>
         <source>Ran %n test(s) in {0:.3f}s</source>
         <translation>
             <numerusform>Ejecutado %n test en {0:.3f}s</numerusform>
@@ -75190,27 +75200,27 @@
         <translation>Resultado de Descubrir</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="89"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="91"/>
         <source>Discover</source>
         <translation>Descubrir</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="91"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="93"/>
         <source>Discover tests</source>
         <translation>Descubrir tests</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="382"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="384"/>
         <source>Discovering Tests</source>
         <translation>Descubriendo Tests</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="447"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="449"/>
         <source>&lt;p&gt;Unable to discover tests.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;no se pueden descubrir tests.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message numerus="yes">
-        <location filename="../PyUnit/UnittestDialog.py" line="619"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="622"/>
         <source>Discovered %n Test(s)</source>
         <translation>
             <numerusform>Descubierto %n Test</numerusform>
@@ -75218,27 +75228,27 @@
         </translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="624"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="627"/>
         <source>&lt;p&gt;Unable to discover tests.&lt;/p&gt;&lt;p&gt;{0}&lt;br/&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se pueden descubrir tests.&lt;/p&gt;&lt;p&gt;{0}&lt;br/&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="690"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="693"/>
         <source>You must select auto-discovery or enter a test suite file or a dotted test name.</source>
         <translation>Se debe seleccionar auto-descubrir o introducir un archivo de test suite o un nombre de test puntuado.</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="712"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="715"/>
         <source>&lt;Unnamed Test&gt;</source>
         <translation>&lt;Test sin nombre&gt;</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="903"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="906"/>
         <source>&lt;p&gt;Unable to run test &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;br/&gt;{2}&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se puede ejecutar el test &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;br/&gt;{2}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="93"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="95"/>
         <source>&lt;b&gt;Discover&lt;/b&gt;&lt;p&gt;This button starts a discovery of available tests.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Descubrir&lt;/b&gt;&lt;p&gt;Este botón inicia el descubrimiento de tests disponibles.&lt;/p&gt;</translation>
     </message>
@@ -75263,12 +75273,12 @@
         <translation>Ejecutar con Depurador</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="720"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="723"/>
         <source>No test case has been selected. Shall all test cases be run?</source>
         <translation>No se ha seleccionado un caso de test. ¿Desea ejecutar todos los casos de test?</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="300"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="302"/>
         <source>Python3 Files ({0});;All Files (*)</source>
         <translation>Archivos de Python3 ({0});;Todos los Archivos (*)</translation>
     </message>
@@ -75386,7 +75396,7 @@
         <translation>Introducir aquí la URL.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/UrlBar/UrlBar.py" line="454"/>
+        <location filename="../WebBrowser/UrlBar/UrlBar.py" line="465"/>
         <source>Unknown</source>
         <translation>Desconocido</translation>
     </message>
@@ -75566,753 +75576,753 @@
         <translation>Activando Plugins...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
+        <location filename="../UI/UserInterface.py" line="1754"/>
         <source>Project-Viewer</source>
         <translation>Visor de Proyecto</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
+        <location filename="../UI/UserInterface.py" line="1789"/>
         <source>Debug-Viewer</source>
         <translation>Visor Depurador</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
         <source>Log-Viewer</source>
         <translation>Visor Log</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1849"/>
+        <location filename="../UI/UserInterface.py" line="1859"/>
         <source>Task-Viewer</source>
         <translation>Visor de Tareas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
+        <location filename="../UI/UserInterface.py" line="1878"/>
         <source>Template-Viewer</source>
         <translation>Visor de Plantillas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>Shell</source>
         <translation>Shell</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
+        <location filename="../UI/UserInterface.py" line="1824"/>
         <source>File-Browser</source>
         <translation>Explorador de archivos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
+        <location filename="../UI/UserInterface.py" line="1642"/>
         <source>Quit</source>
         <translation>Salir</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
+        <location filename="../UI/UserInterface.py" line="1642"/>
         <source>&amp;Quit</source>
         <translation>&amp;Salir</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
+        <location filename="../UI/UserInterface.py" line="1642"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1638"/>
+        <location filename="../UI/UserInterface.py" line="1648"/>
         <source>Quit the IDE</source>
         <translation>Salir del IDE</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1639"/>
+        <location filename="../UI/UserInterface.py" line="1649"/>
         <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Salir del IDE&lt;/b&gt;&lt;p&gt;Sale del IDE. Salve primero cualquier cambio que no haya guardado. Se detendran las depuraciones en curso y las preferencias se guardarán en disco.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1710"/>
+        <location filename="../UI/UserInterface.py" line="1720"/>
         <source>Edit Profile</source>
         <translation>Perfil de Edición</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1716"/>
+        <location filename="../UI/UserInterface.py" line="1726"/>
         <source>Activate the edit view profile</source>
         <translation>Activar el perfil de vista de edición</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1718"/>
+        <location filename="../UI/UserInterface.py" line="1728"/>
         <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Perfil de Edición&lt;/b&gt;&lt;p&gt;Activar &quot;Perfil de Vista de Edición&quot;. Las ventanas que se muestran, si este perfil esta activo, pueden ser configuradas con el diálogo &quot;Ver Configuración de Perfil&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1727"/>
+        <location filename="../UI/UserInterface.py" line="1737"/>
         <source>Debug Profile</source>
         <translation>Perfil de Depuración</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1733"/>
+        <location filename="../UI/UserInterface.py" line="1743"/>
         <source>Activate the debug view profile</source>
         <translation>Activar el perfil de vista de depuración</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1735"/>
+        <location filename="../UI/UserInterface.py" line="1745"/>
         <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Perfil de Depuración&lt;/b&gt;&lt;p&gt;Activar &quot;Perfil de Vista de Depuracion&quot;. Las ventanas que se muestran, si este perfil esta activo, pueden ser configuradas con el diálogo &quot;Ver Configuración de Perfil&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
+        <location filename="../UI/UserInterface.py" line="1754"/>
         <source>&amp;Project-Viewer</source>
         <translation>Visor de &amp;Proyecto</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
+        <location filename="../UI/UserInterface.py" line="1754"/>
         <source>Alt+Shift+P</source>
         <translation>Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
+        <location filename="../UI/UserInterface.py" line="1789"/>
         <source>Alt+Shift+D</source>
         <translation>Alt+Shift+D</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>&amp;Shell</source>
         <translation>&amp;Shell</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>Alt+Shift+S</source>
         <translation>Alt+Shift+S</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
+        <location filename="../UI/UserInterface.py" line="1824"/>
         <source>Alt+Shift+F</source>
         <translation>Alt+Shift+F</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
         <source>Alt+Shift+G</source>
         <translation>Alt+Shift+G</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1849"/>
+        <location filename="../UI/UserInterface.py" line="1859"/>
         <source>Alt+Shift+T</source>
         <translation>Alt+Shift+T</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
+        <location filename="../UI/UserInterface.py" line="1771"/>
         <source>Alt+Shift+M</source>
         <translation>Alt+Shift+M</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>What&apos;s This?</source>
         <translation>¿Qué es esto?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>&amp;What&apos;s This?</source>
         <translation>¿&amp;Qué es esto?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>Shift+F1</source>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2122"/>
+        <location filename="../UI/UserInterface.py" line="2132"/>
         <source>Context sensitive help</source>
         <translation>Ayuda sensible al contexto</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2123"/>
+        <location filename="../UI/UserInterface.py" line="2133"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mostrar ayuda sensible al contexto&lt;/b&gt;&lt;p&gt;En modo ¿Qué es esto? el puntero del ratón muestra una flecha con un interrogante, y se puede hacer click en elementos de la interfaz gráfica para obtener una descripción corta de lo que hacen y de cómo se utilizan. En los diálogos, se puede acceder a esta característica utilizando el botón de ayuda de contexto en la barra de título.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>Helpviewer</source>
         <translation>Visor de Ayuda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>&amp;Helpviewer...</source>
         <translation>Visor de &amp;Ayuda...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>F1</source>
         <translation>F1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2140"/>
+        <location filename="../UI/UserInterface.py" line="2150"/>
         <source>Open the helpviewer window</source>
         <translation>Abrir la ventana del visor de ayuda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2160"/>
+        <location filename="../UI/UserInterface.py" line="2170"/>
         <source>Show Versions</source>
         <translation>Mostrar Versiones</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2160"/>
+        <location filename="../UI/UserInterface.py" line="2170"/>
         <source>Show &amp;Versions</source>
         <translation>Mostrar Versione&amp;s</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2164"/>
+        <location filename="../UI/UserInterface.py" line="2174"/>
         <source>Display version information</source>
         <translation>Mostrar información de versiones</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2166"/>
-        <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Mostrar Versiones&lt;/b&gt;&lt;p&gt;Muestra información de versiones.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2176"/>
+        <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Mostrar Versiones&lt;/b&gt;&lt;p&gt;Muestra información de versiones.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2186"/>
         <source>Check for Updates</source>
         <translation>Buscar actualizaciones</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2173"/>
+        <location filename="../UI/UserInterface.py" line="2183"/>
         <source>Check for &amp;Updates...</source>
         <translation>Buscar act&amp;ualizaciones...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2184"/>
+        <location filename="../UI/UserInterface.py" line="2194"/>
         <source>Show downloadable versions</source>
         <translation>Mostrar versiones descargables</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2184"/>
+        <location filename="../UI/UserInterface.py" line="2194"/>
         <source>Show &amp;downloadable versions...</source>
         <translation>Mostrar versiones &amp;descargables...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2188"/>
+        <location filename="../UI/UserInterface.py" line="2198"/>
         <source>Show the versions available for download</source>
         <translation>Mostrar las versiones disponibles para descarga</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3818"/>
+        <location filename="../UI/UserInterface.py" line="3828"/>
         <source>Report Bug</source>
         <translation>Enviar informe de bugs</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2225"/>
+        <location filename="../UI/UserInterface.py" line="2235"/>
         <source>Report &amp;Bug...</source>
         <translation>Enviar informe de &amp;bugs...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2229"/>
+        <location filename="../UI/UserInterface.py" line="2239"/>
         <source>Report a bug</source>
         <translation>Enviar informe de bugs</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2230"/>
+        <location filename="../UI/UserInterface.py" line="2240"/>
         <source>&lt;b&gt;Report Bug...&lt;/b&gt;&lt;p&gt;Opens a dialog to report a bug.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Enviar informe de Bugs...&lt;/b&gt;&lt;p&gt;Abre un diálogo para enviar un informe de un error (bug).&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3361"/>
+        <location filename="../UI/UserInterface.py" line="3371"/>
         <source>Unittest</source>
         <translation>Test Unitario</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2252"/>
+        <location filename="../UI/UserInterface.py" line="2262"/>
         <source>&amp;Unittest...</source>
         <translation>Te&amp;st Unitario...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2257"/>
+        <location filename="../UI/UserInterface.py" line="2267"/>
         <source>Start unittest dialog</source>
         <translation>Ejecutar diálogo de tests unitarios</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2258"/>
+        <location filename="../UI/UserInterface.py" line="2268"/>
         <source>&lt;b&gt;Unittest&lt;/b&gt;&lt;p&gt;Perform unit tests. The dialog gives you the ability to select and run a unittest suite.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tests unitarios&lt;/b&gt;&lt;p&gt;Lleva a cabo tests unitarios. Este diálogo proporciona la capacidad de seleccionar y ejecutar una suite de tests unitarios.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2266"/>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>Unittest Restart</source>
         <translation>Ejecutar de nuevo Test Unitario</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2266"/>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>&amp;Restart Unittest...</source>
         <translation>Ejecuta&amp;r de nuevo Test Unitario...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2271"/>
+        <location filename="../UI/UserInterface.py" line="2281"/>
         <source>Restart last unittest</source>
         <translation>Ejecutar de nuevo el último test unitario</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2272"/>
+        <location filename="../UI/UserInterface.py" line="2282"/>
         <source>&lt;b&gt;Restart Unittest&lt;/b&gt;&lt;p&gt;Restart the unittest performed last.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ejecutar de nuevo Test Unitario&lt;/b&gt;&lt;p&gt;Vuelve a ejecutar el último test unitario que se ha ejecutado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2296"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Unittest Script</source>
         <translation>Test Unitario de Script</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2296"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Unittest &amp;Script...</source>
         <translation>Test Unitario de &amp;Script...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2301"/>
-        <source>Run unittest with current script</source>
-        <translation>Ejecutar test unitario con el script actual</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2303"/>
-        <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Test Unitario de Script&lt;/b&gt;&lt;p&gt;Ejecuta un test unitario con el script actual.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2311"/>
-        <source>Unittest Project</source>
-        <translation>Test Unitario de Proyecto</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2311"/>
+        <source>Run unittest with current script</source>
+        <translation>Ejecutar test unitario con el script actual</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2313"/>
+        <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Test Unitario de Script&lt;/b&gt;&lt;p&gt;Ejecuta un test unitario con el script actual.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2321"/>
+        <source>Unittest Project</source>
+        <translation>Test Unitario de Proyecto</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2321"/>
         <source>Unittest &amp;Project...</source>
         <translation>Test Unitario de &amp;Proyecto...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2316"/>
+        <location filename="../UI/UserInterface.py" line="2326"/>
         <source>Run unittest with current project</source>
         <translation>Ejecutar test unitario con el proyecto actual</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2318"/>
+        <location filename="../UI/UserInterface.py" line="2328"/>
         <source>&lt;b&gt;Unittest Project&lt;/b&gt;&lt;p&gt;Run unittest with current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Test Unitario del Proyecto&lt;/b&gt;Ejecuta un test unitario con el proyecto actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2379"/>
+        <location filename="../UI/UserInterface.py" line="2389"/>
         <source>UI Previewer</source>
         <translation>Previsualizador de UI</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2379"/>
+        <location filename="../UI/UserInterface.py" line="2389"/>
         <source>&amp;UI Previewer...</source>
         <translation>Previsualizador de &amp;UI...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2384"/>
+        <location filename="../UI/UserInterface.py" line="2394"/>
         <source>Start the UI Previewer</source>
         <translation>Ejecutar el Previsualizador de UI</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2385"/>
+        <location filename="../UI/UserInterface.py" line="2395"/>
         <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Previsualizador de UI&lt;/b&gt;&lt;p&gt;Ejecuta el Previsualizador de UI.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2392"/>
+        <location filename="../UI/UserInterface.py" line="2402"/>
         <source>Translations Previewer</source>
         <translation>Previsualizador de Traducciones</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2392"/>
+        <location filename="../UI/UserInterface.py" line="2402"/>
         <source>&amp;Translations Previewer...</source>
         <translation>Previsualizador de &amp;Traducciones...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2397"/>
+        <location filename="../UI/UserInterface.py" line="2407"/>
         <source>Start the Translations Previewer</source>
         <translation>Ejecutar el Previsualizador de traducciones</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2399"/>
+        <location filename="../UI/UserInterface.py" line="2409"/>
         <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Previsualizador de traducciones&lt;b&gt;&lt;p&gt;Ejecuta el Previsualizador de traducciones.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2406"/>
+        <location filename="../UI/UserInterface.py" line="2416"/>
         <source>Compare Files</source>
         <translation>Comparar Archivos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2406"/>
+        <location filename="../UI/UserInterface.py" line="2416"/>
         <source>&amp;Compare Files...</source>
         <translation>&amp;Comparar Archivos...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2424"/>
+        <location filename="../UI/UserInterface.py" line="2434"/>
         <source>Compare two files</source>
         <translation>Comparar dos archivos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2412"/>
+        <location filename="../UI/UserInterface.py" line="2422"/>
         <source>&lt;b&gt;Compare Files&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Comparar Archivos&lt;/b&gt;&lt;p&gt;Abre un diálogo para comparar dos archivos.&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2419"/>
+        <location filename="../UI/UserInterface.py" line="2429"/>
         <source>Compare Files side by side</source>
         <translation>Comparar Archivos uno al lado de otro</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2425"/>
+        <location filename="../UI/UserInterface.py" line="2435"/>
         <source>&lt;b&gt;Compare Files side by side&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files and show the result side by side.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Comparar Archivos uno al lado de otro&lt;/b&gt;&lt;p&gt;Abre un diálogo para comparar dos archivos y mostrar los resultados en paralelo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2517"/>
+        <location filename="../UI/UserInterface.py" line="2527"/>
         <source>Preferences</source>
         <translation>Preferencias</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2517"/>
+        <location filename="../UI/UserInterface.py" line="2527"/>
         <source>&amp;Preferences...</source>
         <translation>&amp;Preferencias...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2522"/>
+        <location filename="../UI/UserInterface.py" line="2532"/>
         <source>Set the prefered configuration</source>
         <translation>Establecer la configuración preferida</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2524"/>
+        <location filename="../UI/UserInterface.py" line="2534"/>
         <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Preferencias&lt;/b&gt;&lt;p&gt;Establecezca los elementos de configuración de la aplicación con sus valores preferidos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2561"/>
+        <location filename="../UI/UserInterface.py" line="2571"/>
         <source>Reload APIs</source>
         <translation>Recargar APIs</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2561"/>
+        <location filename="../UI/UserInterface.py" line="2571"/>
         <source>Reload &amp;APIs</source>
         <translation>Recargar &amp;APIs</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2565"/>
+        <location filename="../UI/UserInterface.py" line="2575"/>
         <source>Reload the API information</source>
         <translation>Recargar la información de API</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2567"/>
+        <location filename="../UI/UserInterface.py" line="2577"/>
         <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Recargar APIs&lt;/b&gt;&lt;p&gt;Recarga la información de API.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2579"/>
+        <location filename="../UI/UserInterface.py" line="2589"/>
         <source>Show external tools</source>
         <translation>Mostrar herramientas externas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2574"/>
+        <location filename="../UI/UserInterface.py" line="2584"/>
         <source>Show external &amp;tools</source>
         <translation>Mostrar herramien&amp;tas externas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2590"/>
+        <location filename="../UI/UserInterface.py" line="2600"/>
         <source>View Profiles</source>
         <translation>Perfiles de Vista</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2590"/>
+        <location filename="../UI/UserInterface.py" line="2600"/>
         <source>&amp;View Profiles...</source>
         <translation>Perfiles de &amp;Vista...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2595"/>
+        <location filename="../UI/UserInterface.py" line="2605"/>
         <source>Configure view profiles</source>
         <translation>Configurar perfiles de vista</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2597"/>
+        <location filename="../UI/UserInterface.py" line="2607"/>
         <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Perfiles de Vista&lt;/b&gt;&lt;p&gt;Configure los perfiles de vista. Con este diálogo puede establecer la visibilidad de las diversas ventanas para los perfiles de vista predeterminados.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2622"/>
+        <location filename="../UI/UserInterface.py" line="2632"/>
         <source>Keyboard Shortcuts</source>
         <translation>Atajos de Teclado</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2622"/>
+        <location filename="../UI/UserInterface.py" line="2632"/>
         <source>Keyboard &amp;Shortcuts...</source>
         <translation>Atajo&amp;s de Teclado...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2627"/>
-        <source>Set the keyboard shortcuts</source>
-        <translation>Establecer los atajos de teclado</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2629"/>
-        <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Atajos de Teclado&lt;/b&gt;&lt;p&gt;Establezca los atajos de teclado para la aplicación con sus valores preferidos.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6313"/>
-        <source>Export Keyboard Shortcuts</source>
-        <translation>Exportar Atajos de Teclado</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2637"/>
+        <source>Set the keyboard shortcuts</source>
+        <translation>Establecer los atajos de teclado</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2639"/>
+        <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Atajos de Teclado&lt;/b&gt;&lt;p&gt;Establezca los atajos de teclado para la aplicación con sus valores preferidos.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6333"/>
+        <source>Export Keyboard Shortcuts</source>
+        <translation>Exportar Atajos de Teclado</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2647"/>
         <source>&amp;Export Keyboard Shortcuts...</source>
         <translation>&amp;Exportar Atajos de Teclado...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2642"/>
+        <location filename="../UI/UserInterface.py" line="2652"/>
         <source>Export the keyboard shortcuts</source>
         <translation>Exportar los atajos de teclado</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2644"/>
+        <location filename="../UI/UserInterface.py" line="2654"/>
         <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Exportar Atajos de Teclado&lt;/b&gt;&lt;p&gt;Exporte  los atajos de teclado de la aplicación.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6329"/>
+        <location filename="../UI/UserInterface.py" line="6349"/>
         <source>Import Keyboard Shortcuts</source>
         <translation>Importar Atajos de Teclado</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2651"/>
+        <location filename="../UI/UserInterface.py" line="2661"/>
         <source>&amp;Import Keyboard Shortcuts...</source>
         <translation>&amp;Importar Atajos de Teclado...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2656"/>
+        <location filename="../UI/UserInterface.py" line="2666"/>
         <source>Import the keyboard shortcuts</source>
         <translation>Importar los atajos de teclado</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2658"/>
+        <location filename="../UI/UserInterface.py" line="2668"/>
         <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Importar Atajos de Teclado&lt;/b&gt;&lt;p&gt;Importe  los atajos de teclado de la aplicación.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2716"/>
+        <location filename="../UI/UserInterface.py" line="2726"/>
         <source>Activate current editor</source>
         <translation>Activar editor actual</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2716"/>
-        <source>Alt+Shift+E</source>
-        <translation>Alt+Shift+E</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2726"/>
+        <source>Alt+Shift+E</source>
+        <translation>Alt+Shift+E</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2736"/>
         <source>Ctrl+Alt+Tab</source>
         <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2735"/>
+        <location filename="../UI/UserInterface.py" line="2745"/>
         <source>Shift+Ctrl+Alt+Tab</source>
         <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2753"/>
+        <location filename="../UI/UserInterface.py" line="2763"/>
         <source>Plugin Infos</source>
         <translation>Información sobre Plugins</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2753"/>
+        <location filename="../UI/UserInterface.py" line="2763"/>
         <source>&amp;Plugin Infos...</source>
         <translation>Información sobre &amp;Plugins...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2757"/>
+        <location filename="../UI/UserInterface.py" line="2767"/>
         <source>Show Plugin Infos</source>
         <translation>Mostrar Información sobre Plugins</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2758"/>
+        <location filename="../UI/UserInterface.py" line="2768"/>
         <source>&lt;b&gt;Plugin Infos...&lt;/b&gt;&lt;p&gt;This opens a dialog, that show some information about loaded plugins.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Información sobre Plugins...&lt;/b&gt;&lt;p&gt;Abre un diálogo que muestra información sobre las extensiones (plugins) cargadas.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2784"/>
+        <location filename="../UI/UserInterface.py" line="2794"/>
         <source>Uninstall Plugin</source>
         <translation>Desinstalar Plugin</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2779"/>
+        <location filename="../UI/UserInterface.py" line="2789"/>
         <source>&amp;Uninstall Plugin...</source>
         <translation>Desinstalar Pl&amp;ugin...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2785"/>
+        <location filename="../UI/UserInterface.py" line="2795"/>
         <source>&lt;b&gt;Uninstall Plugin...&lt;/b&gt;&lt;p&gt;This opens a dialog to uninstall a plugin.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Desinstalar Plugin...&lt;/b&gt;&lt;p&gt;Abre un diálogo para desinstalar una extensión o plugin.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2792"/>
+        <location filename="../UI/UserInterface.py" line="2802"/>
         <source>Plugin Repository</source>
         <translation>Repositorio de Plugins</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2792"/>
+        <location filename="../UI/UserInterface.py" line="2802"/>
         <source>Plugin &amp;Repository...</source>
         <translation>&amp;Repositorio de Plugins...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2797"/>
+        <location filename="../UI/UserInterface.py" line="2807"/>
         <source>Show Plugins available for download</source>
         <translation>Mostrar Plugins disponibles para descarga</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2799"/>
+        <location filename="../UI/UserInterface.py" line="2809"/>
         <source>&lt;b&gt;Plugin Repository...&lt;/b&gt;&lt;p&gt;This opens a dialog, that shows a list of plugins available on the Internet.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Repositorios de Plugins...&lt;/b&gt;&lt;p&gt;Abre un diálogo que muestra una lista de extensiones (plugins) disponibles en Internet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2949"/>
+        <location filename="../UI/UserInterface.py" line="2959"/>
         <source>Eric API Documentation</source>
         <translation>Documentación de API de Eric</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2953"/>
+        <location filename="../UI/UserInterface.py" line="2963"/>
         <source>Open Eric API Documentation</source>
         <translation>Abrir Documentación de API de Eric</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3154"/>
+        <location filename="../UI/UserInterface.py" line="3164"/>
         <source>&amp;Unittest</source>
         <translation>Te&amp;st Unitario</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3098"/>
-        <source>E&amp;xtras</source>
-        <translation>E&amp;xtras</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="3108"/>
+        <source>E&amp;xtras</source>
+        <translation>E&amp;xtras</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3118"/>
         <source>Wi&amp;zards</source>
         <translation>Asis&amp;tentes</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3171"/>
+        <location filename="../UI/UserInterface.py" line="3181"/>
         <source>Select Tool Group</source>
         <translation>Seleccionar Grupo de Herramientas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3182"/>
+        <location filename="../UI/UserInterface.py" line="3192"/>
         <source>Se&amp;ttings</source>
         <translation>Con&amp;figuración</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3212"/>
+        <location filename="../UI/UserInterface.py" line="3222"/>
         <source>&amp;Window</source>
         <translation>Ven&amp;tana</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3273"/>
+        <location filename="../UI/UserInterface.py" line="3283"/>
         <source>&amp;Toolbars</source>
         <translation>&amp;Barra de Herramientas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3135"/>
+        <location filename="../UI/UserInterface.py" line="3145"/>
         <source>P&amp;lugins</source>
         <translation>P&amp;lugins</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3287"/>
+        <location filename="../UI/UserInterface.py" line="3297"/>
         <source>&amp;Help</source>
         <translation>Ay&amp;uda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3360"/>
+        <location filename="../UI/UserInterface.py" line="3370"/>
         <source>Tools</source>
         <translation>Herramientas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3362"/>
+        <location filename="../UI/UserInterface.py" line="3372"/>
         <source>Settings</source>
         <translation>Ajustes</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5220"/>
+        <location filename="../UI/UserInterface.py" line="5237"/>
         <source>Help</source>
         <translation>Ayuda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3364"/>
+        <location filename="../UI/UserInterface.py" line="3374"/>
         <source>Profiles</source>
         <translation>Perfiles</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3365"/>
+        <location filename="../UI/UserInterface.py" line="3375"/>
         <source>Plugins</source>
         <translation>Plugins</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7279"/>
+        <location filename="../UI/UserInterface.py" line="7300"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3818"/>
+        <location filename="../UI/UserInterface.py" line="3828"/>
         <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
         <translation>La dirección de correo electrónico o la dirección del servidor de correo están en blanco. Por favor configure las opciones de Correo Electrónico en el diálogo de Preferencias.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4219"/>
+        <location filename="../UI/UserInterface.py" line="4229"/>
         <source>Configure Tool Groups ...</source>
         <translation>Configurar Grupos de Herramientas ...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4223"/>
+        <location filename="../UI/UserInterface.py" line="4233"/>
         <source>Configure current Tool Group ...</source>
         <translation>Configurar Grupo de Herramientas actual ...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4174"/>
+        <location filename="../UI/UserInterface.py" line="4184"/>
         <source>&amp;Builtin Tools</source>
         <translation>Herramientas de serie (&amp;builtin)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4191"/>
+        <location filename="../UI/UserInterface.py" line="4201"/>
         <source>&amp;Plugin Tools</source>
         <translation>Herramientas de Extensión (&amp;Plugin)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4340"/>
+        <location filename="../UI/UserInterface.py" line="4350"/>
         <source>&amp;Show all</source>
         <translation>&amp;Ver todo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4342"/>
+        <location filename="../UI/UserInterface.py" line="4352"/>
         <source>&amp;Hide all</source>
         <translation>&amp;Ocultar todo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5348"/>
+        <location filename="../UI/UserInterface.py" line="5365"/>
         <source>Problem</source>
         <translation>Problema</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5543"/>
+        <location filename="../UI/UserInterface.py" line="5560"/>
         <source>Process Generation Error</source>
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5220"/>
+        <location filename="../UI/UserInterface.py" line="5237"/>
         <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
         <translation>No hay visor personalizado seleccionado actualmente. Por favor, especifique uno en el diálogo de preferencias.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5254"/>
+        <location filename="../UI/UserInterface.py" line="5271"/>
         <source>&lt;p&gt;Could not start the help viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido ejecutar el visor de ayuda.&lt;br&gt;Asegúrese de que esta disponible como &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="5900"/>
+        <source>Documentation Missing</source>
+        <translation>Falta documentación</translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="5883"/>
-        <source>Documentation Missing</source>
-        <translation>Falta documentación</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5866"/>
         <source>Documentation</source>
         <translation>Documentación</translation>
     </message>
@@ -76327,87 +76337,87 @@
         <translation type="obsolete">Leer tareas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6897"/>
+        <location filename="../UI/UserInterface.py" line="6917"/>
         <source>Drop Error</source>
         <translation>Error de volcado</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7240"/>
+        <location filename="../UI/UserInterface.py" line="7261"/>
         <source>Error during updates check</source>
         <translation>Error durante la verificación de actualización</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7062"/>
+        <location filename="../UI/UserInterface.py" line="7082"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Cancelar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7221"/>
+        <location filename="../UI/UserInterface.py" line="7242"/>
         <source>Update available</source>
         <translation>Actualizaciones disponibles</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7240"/>
+        <location filename="../UI/UserInterface.py" line="7261"/>
         <source>Could not perform updates check.</source>
         <translation>No se puede llevar a cabo la verificación de actualizaciones.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7264"/>
+        <location filename="../UI/UserInterface.py" line="7285"/>
         <source>&lt;h3&gt;Available versions&lt;/h3&gt;&lt;table&gt;</source>
         <translation>&lt;h3&gt;Versiones disponibles&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7316"/>
+        <location filename="../UI/UserInterface.py" line="7337"/>
         <source>First time usage</source>
         <translation>Usado por primera vez</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2451"/>
+        <location filename="../UI/UserInterface.py" line="2461"/>
         <source>Mini Editor</source>
         <translation>Mini Editor</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2446"/>
+        <location filename="../UI/UserInterface.py" line="2456"/>
         <source>Mini &amp;Editor...</source>
         <translation>Mini &amp;Editor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2452"/>
+        <location filename="../UI/UserInterface.py" line="2462"/>
         <source>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Open a dialog with a simplified editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Abre un diálogo con un editor simple.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2771"/>
+        <location filename="../UI/UserInterface.py" line="2781"/>
         <source>Install Plugins</source>
         <translation>Instalar Plugins</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2766"/>
+        <location filename="../UI/UserInterface.py" line="2776"/>
         <source>&amp;Install Plugins...</source>
         <translation>&amp;Instalar Plugins...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2772"/>
+        <location filename="../UI/UserInterface.py" line="2782"/>
         <source>&lt;b&gt;Install Plugins...&lt;/b&gt;&lt;p&gt;This opens a dialog to install or update plugins.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Instalar Plugins...&lt;/b&gt;&lt;p&gt;Abre un diálogo para instalar o actualizar extensiones (plugins).&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2607"/>
+        <location filename="../UI/UserInterface.py" line="2617"/>
         <source>Toolbars</source>
         <translation>Barras de Herramientas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2607"/>
+        <location filename="../UI/UserInterface.py" line="2617"/>
         <source>Tool&amp;bars...</source>
         <translation>&amp;Barras de Herramientas...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2612"/>
+        <location filename="../UI/UserInterface.py" line="2622"/>
         <source>Configure toolbars</source>
         <translation>Configurar Barras de Herramientas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2613"/>
+        <location filename="../UI/UserInterface.py" line="2623"/>
         <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Barras de Herramientas&lt;/b&gt;&lt;p&gt;Configure las barras de herramientas. Con este diálogo puede cambiar las accines mostradas en las diversas barras de herramientas, y definir sus propias barras de herramientas.&lt;/p&gt;</translation>
     </message>
@@ -76417,346 +76427,346 @@
         <translation>Restaurando Gestor de Barras de Herramientas...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5488"/>
+        <location filename="../UI/UserInterface.py" line="5505"/>
         <source>External Tools</source>
         <translation>Herramientas Externas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
+        <location filename="../UI/UserInterface.py" line="1771"/>
         <source>Multiproject-Viewer</source>
         <translation>Visor de Multiproyecto</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
+        <location filename="../UI/UserInterface.py" line="1771"/>
         <source>&amp;Multiproject-Viewer</source>
         <translation>Visor de &amp;Multiproyecto</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1669"/>
+        <location filename="../UI/UserInterface.py" line="1679"/>
         <source>Save session</source>
         <translation>Guardar sesión</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6611"/>
+        <location filename="../UI/UserInterface.py" line="6631"/>
         <source>Read session</source>
         <translation>Cargar sesión</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3537"/>
+        <location filename="../UI/UserInterface.py" line="3547"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Esta zona de la barra de estado muestra la codificación del editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3551"/>
+        <location filename="../UI/UserInterface.py" line="3561"/>
         <source>&lt;p&gt;This part of the status bar displays an indication of the current editors files writability.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Esta zona de la barra de estado muestra una indicación de las propiedades de escritura de los archivos del editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
+        <location filename="../UI/UserInterface.py" line="2247"/>
         <source>Request Feature</source>
         <translation>Solicitar nueva característica</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
+        <location filename="../UI/UserInterface.py" line="2247"/>
         <source>Request &amp;Feature...</source>
         <translation>Solicitar nueva &amp;característica...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2241"/>
+        <location filename="../UI/UserInterface.py" line="2251"/>
         <source>Send a feature request</source>
         <translation>Enviar una solicitud de nueva característica</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2243"/>
+        <location filename="../UI/UserInterface.py" line="2253"/>
         <source>&lt;b&gt;Request Feature...&lt;/b&gt;&lt;p&gt;Opens a dialog to send a feature request.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Solicitar nueva Característica...&lt;/b&gt;&lt;p&gt;Abre un diálogo para enviar una solicitud de nueva característica.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3530"/>
+        <location filename="../UI/UserInterface.py" line="3540"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Esta zona de la barra de estado muestra el lenguaje del editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3558"/>
+        <location filename="../UI/UserInterface.py" line="3568"/>
         <source>&lt;p&gt;This part of the status bar displays the line number of the current editor.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Esta zona de la barra de estado muestra el número de línea en el editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3565"/>
+        <location filename="../UI/UserInterface.py" line="3575"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position of the current editor.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Esta zona de la barra de estado muestra la posición del cursor en el editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1911"/>
+        <location filename="../UI/UserInterface.py" line="1921"/>
         <source>Horizontal Toolbox</source>
         <translation>Caja de Herramientas Horizontal</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
+        <location filename="../UI/UserInterface.py" line="1878"/>
         <source>Alt+Shift+A</source>
         <translation>Alt+Shift+A</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1911"/>
+        <location filename="../UI/UserInterface.py" line="1921"/>
         <source>&amp;Horizontal Toolbox</source>
         <translation>Caja de Herramientas &amp;Horizontal</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1915"/>
-        <source>Toggle the Horizontal Toolbox window</source>
-        <translation>Conmutar la ventana de Caja de Herramientas Horizontal</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1917"/>
-        <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Conmutar la ventana de Caja de Herramientas Horizontal&lt;/b&gt;&lt;p&gt;Si la ventana de Caja de Herramientas Horizontal está escondida, se muestra. Si está siendo mostrada, se cierra.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4138"/>
-        <source>Restart application</source>
-        <translation>Reiniciar aplicación</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4138"/>
-        <source>The application needs to be restarted. Do it now?</source>
-        <translation>La aplicación necesita ser reiniciada. ¿Desea hacerlo ahora?</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3144"/>
-        <source>Configure...</source>
-        <translation>Configurar...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3544"/>
-        <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Esta zona de la barra de estado muestra la configuración actual de fin de línea (eol) para los editores.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2744"/>
-        <source>Switch between tabs</source>
-        <translation>Alternar entre pestañas</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2744"/>
-        <source>Ctrl+1</source>
-        <translation>Ctrl+1</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2533"/>
-        <source>Export Preferences</source>
-        <translation>Exportar Preferencias</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2533"/>
-        <source>E&amp;xport Preferences...</source>
-        <translation>E&amp;xportar Preferencias...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2538"/>
-        <source>Export the current configuration</source>
-        <translation>Exportar la configuración actual</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2540"/>
-        <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Exportar Preferencias&lt;/b&gt;&lt;p&gt;Exportar la configuración actual a un archivo.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2547"/>
-        <source>Import Preferences</source>
-        <translation>Importar Preferencias</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2547"/>
-        <source>I&amp;mport Preferences...</source>
-        <translation>I&amp;mportar Preferencias...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2552"/>
-        <source>Import a previously exported configuration</source>
-        <translation>Importar una configuración previamente exportada</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2554"/>
-        <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Importar Preferencias&lt;/b&gt;&lt;p&gt;Importar una configuración previamente exportada.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2726"/>
-        <source>Show next</source>
-        <translation>Mostrar siguente</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2735"/>
-        <source>Show previous</source>
-        <translation>Mostrar anterior</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1925"/>
+        <source>Toggle the Horizontal Toolbox window</source>
+        <translation>Conmutar la ventana de Caja de Herramientas Horizontal</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1927"/>
+        <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Conmutar la ventana de Caja de Herramientas Horizontal&lt;/b&gt;&lt;p&gt;Si la ventana de Caja de Herramientas Horizontal está escondida, se muestra. Si está siendo mostrada, se cierra.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4148"/>
+        <source>Restart application</source>
+        <translation>Reiniciar aplicación</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4148"/>
+        <source>The application needs to be restarted. Do it now?</source>
+        <translation>La aplicación necesita ser reiniciada. ¿Desea hacerlo ahora?</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3154"/>
+        <source>Configure...</source>
+        <translation>Configurar...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3554"/>
+        <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Esta zona de la barra de estado muestra la configuración actual de fin de línea (eol) para los editores.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2754"/>
+        <source>Switch between tabs</source>
+        <translation>Alternar entre pestañas</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2754"/>
+        <source>Ctrl+1</source>
+        <translation>Ctrl+1</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2543"/>
+        <source>Export Preferences</source>
+        <translation>Exportar Preferencias</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2543"/>
+        <source>E&amp;xport Preferences...</source>
+        <translation>E&amp;xportar Preferencias...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2548"/>
+        <source>Export the current configuration</source>
+        <translation>Exportar la configuración actual</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2550"/>
+        <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Exportar Preferencias&lt;/b&gt;&lt;p&gt;Exportar la configuración actual a un archivo.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2557"/>
+        <source>Import Preferences</source>
+        <translation>Importar Preferencias</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2557"/>
+        <source>I&amp;mport Preferences...</source>
+        <translation>I&amp;mportar Preferencias...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2562"/>
+        <source>Import a previously exported configuration</source>
+        <translation>Importar una configuración previamente exportada</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2564"/>
+        <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Importar Preferencias&lt;/b&gt;&lt;p&gt;Importar una configuración previamente exportada.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2736"/>
+        <source>Show next</source>
+        <translation>Mostrar siguente</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2745"/>
+        <source>Show previous</source>
+        <translation>Mostrar anterior</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <source>Left Sidebar</source>
         <translation>Barra Lateral a la Izquierda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1925"/>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <source>&amp;Left Sidebar</source>
         <translation>Barra &amp;Lateral a la Izquierda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1929"/>
+        <location filename="../UI/UserInterface.py" line="1939"/>
         <source>Toggle the left sidebar window</source>
         <translation>Conmutar la barra lateral a la izquierda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1930"/>
+        <location filename="../UI/UserInterface.py" line="1940"/>
         <source>&lt;b&gt;Toggle the left sidebar window&lt;/b&gt;&lt;p&gt;If the left sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Conmutar la barra lateral a la izquierda&lt;/b&gt;&lt;p&gt;Si la barra lateral a la izquierda está escondida, se muestra. Si está siendo mostrada, se cierra.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1952"/>
+        <location filename="../UI/UserInterface.py" line="1962"/>
         <source>Bottom Sidebar</source>
         <translation>Barra Lateral Inferior</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1952"/>
+        <location filename="../UI/UserInterface.py" line="1962"/>
         <source>&amp;Bottom Sidebar</source>
         <translation>&amp;Barra Lateral Inferior</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1956"/>
+        <location filename="../UI/UserInterface.py" line="1966"/>
         <source>Toggle the bottom sidebar window</source>
         <translation>Conmutar la barra lateral inferior</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1958"/>
+        <location filename="../UI/UserInterface.py" line="1968"/>
         <source>&lt;b&gt;Toggle the bottom sidebar window&lt;/b&gt;&lt;p&gt;If the bottom sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Conmutar la barra lateral inferior&lt;/b&gt;&lt;p&gt;Si la barra lateral inferior está escondida, se muestra. Si está siendo mostrada, se cierra.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
+        <location filename="../UI/UserInterface.py" line="1789"/>
         <source>&amp;Debug-Viewer</source>
         <translation>Visor &amp;Depurador</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2433"/>
+        <location filename="../UI/UserInterface.py" line="2443"/>
         <source>SQL Browser</source>
         <translation>Navegador SQL</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2433"/>
+        <location filename="../UI/UserInterface.py" line="2443"/>
         <source>SQL &amp;Browser...</source>
         <translation>&amp;Navegador SQL...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2438"/>
+        <location filename="../UI/UserInterface.py" line="2448"/>
         <source>Browse a SQL database</source>
         <translation>Navegar una base de datos SQL</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2439"/>
+        <location filename="../UI/UserInterface.py" line="2449"/>
         <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Navegador SQL&lt;/b&gt;&lt;p&gt;Navegar una base de datos SQL.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2488"/>
+        <location filename="../UI/UserInterface.py" line="2498"/>
         <source>Icon Editor</source>
         <translation>Editor de Iconos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2488"/>
+        <location filename="../UI/UserInterface.py" line="2498"/>
         <source>&amp;Icon Editor...</source>
         <translation>Editor de &amp;Iconos...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1598"/>
+        <location filename="../UI/UserInterface.py" line="1608"/>
         <source>{0} - Passive Mode</source>
         <translation>{0} - Modo Pasivo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1605"/>
+        <location filename="../UI/UserInterface.py" line="1615"/>
         <source>{0} - {1} - Passive Mode</source>
         <translation>{0} - {1} - Modo Pasivo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1609"/>
+        <location filename="../UI/UserInterface.py" line="1619"/>
         <source>{0} - {1} - {2} - Passive Mode</source>
         <translation>{0} - {1} - {2} - Modo Pasivo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3636"/>
+        <location filename="../UI/UserInterface.py" line="3646"/>
         <source>External Tools/{0}</source>
         <translation>Herramientas Externas/{0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5348"/>
+        <location filename="../UI/UserInterface.py" line="5365"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist or is zero length.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; no existe o tiene longitud nula. &lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5073"/>
+        <location filename="../UI/UserInterface.py" line="5090"/>
         <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido ejecutar Qt-Designer.&lt;br&gt;Asegúrese de que esta disponible como &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5143"/>
+        <location filename="../UI/UserInterface.py" line="5160"/>
         <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido ejecutar Qt-Linguist.&lt;br&gt;Asegúrese de que esta disponible como &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5187"/>
+        <location filename="../UI/UserInterface.py" line="5204"/>
         <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido ejecutar Qt-Assistant.&lt;br&gt;Asegúrese de que esta disponible como &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5234"/>
+        <location filename="../UI/UserInterface.py" line="5251"/>
         <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido ejecutar el visor personalizado.&lt;br&gt;Asegúrese de que esta disponible como &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5304"/>
+        <location filename="../UI/UserInterface.py" line="5321"/>
         <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido ejecutar el Previsualizador de UI.&lt;br&gt;Asegúrese de que esta disponible como &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5361"/>
+        <location filename="../UI/UserInterface.py" line="5378"/>
         <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido ejecutar el Previsualizador de Traducciones.&lt;br&gt;Asegúrese de que esta disponible como &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5384"/>
+        <location filename="../UI/UserInterface.py" line="5401"/>
         <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido iniciar el navegador SQL.&lt;br&gt;Asegúrese de que está disponible como &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5479"/>
+        <location filename="../UI/UserInterface.py" line="5496"/>
         <source>No tool entry found for external tool &apos;{0}&apos; in tool group &apos;{1}&apos;.</source>
         <translation>No se ha encontrado la entrada para la herramienta externa &apos;{0}&apos; en el grupo de herramientas &apos;{1}&apos;.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5488"/>
+        <location filename="../UI/UserInterface.py" line="5505"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation>No se ha encontrado la entrada para el grupo de herramientas &apos;{0}&apos;.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5527"/>
+        <location filename="../UI/UserInterface.py" line="5544"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation>Comenzando proceso &apos;{0} {1}&apos;.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5543"/>
+        <location filename="../UI/UserInterface.py" line="5560"/>
         <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido ejecutar la entrada de herramienta &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Asegúrese de que esta disponible como &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5621"/>
+        <location filename="../UI/UserInterface.py" line="5638"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation>El proceso &apos;{0}&apos; ha finalizado.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5883"/>
+        <location filename="../UI/UserInterface.py" line="5900"/>
         <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; could not be found.&lt;/p&gt;</source>
         <translation>&lt;P&gt;El punto de entrada de documentación &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; no ha podido encontrarse.&lt;/p&gt;</translation>
     </message>
@@ -76766,57 +76776,57 @@
         <translation type="obsolete">&lt;p&gt;El archivo de tareas &lt;b&gt;{0}&lt;/b&gt; no pudo ser guardado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6518"/>
+        <location filename="../UI/UserInterface.py" line="6538"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de tareas &lt;b&gt;{0}&lt;/b&gt; no puede leerse.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6556"/>
+        <location filename="../UI/UserInterface.py" line="6576"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de sesión &lt;b&gt;{0}&lt;/b&gt; no ha podido guardarse.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6611"/>
+        <location filename="../UI/UserInterface.py" line="6631"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de sesión &lt;b&gt;&lt;/b&gt; no ha podido ser leído.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6897"/>
+        <location filename="../UI/UserInterface.py" line="6917"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; no es un archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7071"/>
+        <location filename="../UI/UserInterface.py" line="7091"/>
         <source>Trying host {0}</source>
         <translation>Probando host {0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1118"/>
+        <location filename="../UI/UserInterface.py" line="1123"/>
         <source>Cooperation</source>
         <translation>Cooperación</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Alt+Shift+O</source>
         <translation>Alt+Shift+O</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1174"/>
+        <location filename="../UI/UserInterface.py" line="1179"/>
         <source>Symbols</source>
         <translation>Símbolos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2004"/>
+        <location filename="../UI/UserInterface.py" line="2014"/>
         <source>Alt+Shift+Y</source>
         <translation>Alt+Shift+Y</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1183"/>
+        <location filename="../UI/UserInterface.py" line="1188"/>
         <source>Numbers</source>
         <translation>Números</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
+        <location filename="../UI/UserInterface.py" line="2033"/>
         <source>Alt+Shift+B</source>
         <translation>Alt+Shift+B</translation>
     </message>
@@ -76826,37 +76836,37 @@
         <translation type="obsolete">Archivo de atajos de teclado (*.e4k)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2927"/>
+        <location filename="../UI/UserInterface.py" line="2937"/>
         <source>Python 3 Documentation</source>
         <translation>Documentación de Python 3</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2931"/>
+        <location filename="../UI/UserInterface.py" line="2941"/>
         <source>Open Python 3 Documentation</source>
         <translation>Abrir Documentación de Python 3</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7129"/>
+        <location filename="../UI/UserInterface.py" line="7150"/>
         <source>Error getting versions information</source>
         <translation>Error al obtener información de versiones</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7122"/>
+        <location filename="../UI/UserInterface.py" line="7143"/>
         <source>The versions information could not be downloaded. Please go online and try again.</source>
         <translation>La información de versiones no se ha podido descargar. Póngase online por favor e inténtelo de nuevo.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6086"/>
+        <location filename="../UI/UserInterface.py" line="6103"/>
         <source>Open Browser</source>
         <translation>Abrir Navegador</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6086"/>
+        <location filename="../UI/UserInterface.py" line="6103"/>
         <source>Could not start a web browser</source>
         <translation>No se ha podido iniciar el navegador web</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7129"/>
+        <location filename="../UI/UserInterface.py" line="7150"/>
         <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source>
         <translation>La información de versiones no se ha podido descargar en los últimos 7 días. Póngase por favor online e inténtelo de nuevo.</translation>
     </message>
@@ -76881,448 +76891,448 @@
         <translation>Iniciando Depurador...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
+        <location filename="../UI/UserInterface.py" line="1701"/>
         <source>New Window</source>
         <translation>Nueva Ventana</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
+        <location filename="../UI/UserInterface.py" line="1701"/>
         <source>New &amp;Window</source>
         <translation>Nueva &amp;Ventana</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
+        <location filename="../UI/UserInterface.py" line="1701"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation>Ctrl+Shift+N</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2280"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <source>Unittest Rerun Failed</source>
         <translation>Re-ejecución de Test Unitatio Fallida</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2280"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <source>Rerun Failed Tests...</source>
         <translation>Re-ejecutar Tests Fallidos...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2285"/>
+        <location filename="../UI/UserInterface.py" line="2295"/>
         <source>Rerun failed tests of the last run</source>
         <translation>Re-ejecutar tests fallidos de la última ejecución</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2287"/>
+        <location filename="../UI/UserInterface.py" line="2297"/>
         <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last unittest run.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Re-ejecución Tests Fallidos&lt;/b&gt;&lt;p&gt;Re-ejecutar todos los tests que fallaron durante la última ejecución de test unitario.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2419"/>
+        <location filename="../UI/UserInterface.py" line="2429"/>
         <source>Compare &amp;Files side by side...</source>
         <translation>Comparar &amp;Archivos uno al lado de otro...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2502"/>
+        <location filename="../UI/UserInterface.py" line="2512"/>
         <source>Snapshot</source>
         <translation>Captura de Pantalla</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2502"/>
+        <location filename="../UI/UserInterface.py" line="2512"/>
         <source>&amp;Snapshot...</source>
         <translation>Captura de &amp;Pantalla...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2507"/>
+        <location filename="../UI/UserInterface.py" line="2517"/>
         <source>Take snapshots of a screen region</source>
         <translation>Tomar capturas de una región de la pantalla</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2509"/>
+        <location filename="../UI/UserInterface.py" line="2519"/>
         <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Captura de Pantalla&lt;/b&gt;&lt;p&gt;Abre un diálogo para tomar capturas de pantalla de una región de la pantalla.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5456"/>
+        <location filename="../UI/UserInterface.py" line="5473"/>
         <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido ejecutar la herramienta de Captura de Pantalla.&lt;br&gt;Asegúrese de que esta disponible como &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7335"/>
+        <location filename="../UI/UserInterface.py" line="7356"/>
         <source>Select Workspace Directory</source>
         <translation>Seleccionar Directorio para el Espacio de Trabajo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1886"/>
+        <location filename="../UI/UserInterface.py" line="1896"/>
         <source>Left Toolbox</source>
         <translation>Caja de herramientas de la Izquierda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1898"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <source>Right Toolbox</source>
         <translation>Caja de herramientas de la Derecha</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
+        <location filename="../UI/UserInterface.py" line="1760"/>
         <source>Switch the input focus to the Project-Viewer window.</source>
         <translation>Cambiar el foco de input a la ventana de Visor de Proyecto.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1752"/>
+        <location filename="../UI/UserInterface.py" line="1762"/>
         <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Activar Visor de Proyectos&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Visor de Proyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1767"/>
+        <location filename="../UI/UserInterface.py" line="1777"/>
         <source>Switch the input focus to the Multiproject-Viewer window.</source>
         <translation>Cambiar el foco de input a la ventana de Visor de Multiproyecto.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1769"/>
+        <location filename="../UI/UserInterface.py" line="1779"/>
         <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Activar Visor de Multiproyecto&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Visor de Multiproyecto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
+        <location filename="../UI/UserInterface.py" line="1795"/>
         <source>Switch the input focus to the Debug-Viewer window.</source>
         <translation>Cambiar el foco de input a la ventana de Visor de Depuración.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1787"/>
+        <location filename="../UI/UserInterface.py" line="1797"/>
         <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Activar Visor de Depuración&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Visor de Depuración.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1803"/>
+        <location filename="../UI/UserInterface.py" line="1813"/>
         <source>Switch the input focus to the Shell window.</source>
         <translation>Cambiar el foco de input a la ventana de Shell.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1805"/>
+        <location filename="../UI/UserInterface.py" line="1815"/>
         <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Activar Shell&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Shell.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
+        <location filename="../UI/UserInterface.py" line="1824"/>
         <source>&amp;File-Browser</source>
         <translation>Na&amp;vegador de archivos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
+        <location filename="../UI/UserInterface.py" line="1830"/>
         <source>Switch the input focus to the File-Browser window.</source>
         <translation>Cambiar el foco de input a la ventana de Navegador de Archivos.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1822"/>
+        <location filename="../UI/UserInterface.py" line="1832"/>
         <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Activar Navegador de Archivos&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Navegador de Archivos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
         <source>Lo&amp;g-Viewer</source>
         <translation>Visor de Lo&amp;g</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1837"/>
+        <location filename="../UI/UserInterface.py" line="1847"/>
         <source>Switch the input focus to the Log-Viewer window.</source>
         <translation>Cambiar el foco de input a la ventana de Visor de Log.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
-        <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Activar Visor de Log&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Visor de Log.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1849"/>
+        <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Activar Visor de Log&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Visor de Log.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1859"/>
         <source>&amp;Task-Viewer</source>
         <translation>Visor de &amp;Tareas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1855"/>
+        <location filename="../UI/UserInterface.py" line="1865"/>
         <source>Switch the input focus to the Task-Viewer window.</source>
         <translation>Cambiar el foco de input a la ventana de Visor de Tareas.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
+        <location filename="../UI/UserInterface.py" line="1878"/>
         <source>Templ&amp;ate-Viewer</source>
         <translation>Visor de Pl&amp;antillas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1874"/>
+        <location filename="../UI/UserInterface.py" line="1884"/>
         <source>Switch the input focus to the Template-Viewer window.</source>
         <translation>Cambiar el foco de input a la ventana de Visor de Plantillas.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1876"/>
-        <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Activar Visor de Plantillas&lt;/b&gt;&lt;p&gt;Cambiar el foco de input a la ventana de Visor de Plantillas.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1886"/>
+        <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Activar Visor de Plantillas&lt;/b&gt;&lt;p&gt;Cambiar el foco de input a la ventana de Visor de Plantillas.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1896"/>
         <source>&amp;Left Toolbox</source>
         <translation>Caja de herramientas de &amp;la Izquierda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1889"/>
+        <location filename="../UI/UserInterface.py" line="1899"/>
         <source>Toggle the Left Toolbox window</source>
         <translation>Conmutar la ventana de Caja de Herramientas a la izquierda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1890"/>
+        <location filename="../UI/UserInterface.py" line="1900"/>
         <source>&lt;b&gt;Toggle the Left Toolbox window&lt;/b&gt;&lt;p&gt;If the Left Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Conmutar la Caja de Herramientas de la izquierda&lt;/b&gt;&lt;p&gt;Si la ventana Caja de Herramientas de la izquierda está escondida, se muestra. Si está siendo mostrada, se cierra.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1898"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <source>&amp;Right Toolbox</source>
         <translation>Caja de herramientas de la De&amp;recha</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1902"/>
+        <location filename="../UI/UserInterface.py" line="1912"/>
         <source>Toggle the Right Toolbox window</source>
         <translation>Conmutar la ventana de Caja de Herramientas a la derecha</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1903"/>
+        <location filename="../UI/UserInterface.py" line="1913"/>
         <source>&lt;b&gt;Toggle the Right Toolbox window&lt;/b&gt;&lt;p&gt;If the Right Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Conmutar la Caja de Herramientas de la derecha&lt;/b&gt;&lt;p&gt;Si la ventana Caja de Herramientas de la derecha está escondida, se muestra. Si está siendo mostrada, se cierra.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1948"/>
         <source>Right Sidebar</source>
         <translation>Barra Lateral a la Derecha</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1948"/>
         <source>&amp;Right Sidebar</source>
         <translation>Ba&amp;rra Lateral a la Derecha</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1942"/>
+        <location filename="../UI/UserInterface.py" line="1952"/>
         <source>Toggle the right sidebar window</source>
         <translation>Conmutar la ventana de barra lateral de la derecha</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1944"/>
+        <location filename="../UI/UserInterface.py" line="1954"/>
         <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Conmutar la ventana de barra lateral de la derecha&lt;/b&gt;&lt;p&gt;Si la ventana de barra lateral a la derecha está escondida, se muestra. Si está siendo mostrada, se cierra.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Cooperation-Viewer</source>
         <translation>Visor de Cooperación</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Co&amp;operation-Viewer</source>
         <translation>Visor de Co&amp;operación</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1973"/>
+        <location filename="../UI/UserInterface.py" line="1983"/>
         <source>Switch the input focus to the Cooperation-Viewer window.</source>
         <translation>Cambiar el foco de input a la ventana de Visor de Cooperación.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="1985"/>
         <source>&lt;b&gt;Activate Cooperation-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Cooperation-Viewer window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Activar Visor de Cooperación&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Visor de Cooperación.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2004"/>
+        <location filename="../UI/UserInterface.py" line="2014"/>
         <source>Symbols-Viewer</source>
         <translation>Visor de Símbolos</translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="2014"/>
+        <source>S&amp;ymbols-Viewer</source>
+        <translation>Visor de S&amp;ímbolos</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2020"/>
+        <source>Switch the input focus to the Symbols-Viewer window.</source>
+        <translation>Cambiar el foco de input a la ventana de Visor de Símbolos.</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2022"/>
+        <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Activar Visor de Símbolos&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Visor de Símbolos.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2033"/>
+        <source>Numbers-Viewer</source>
+        <translation>Visor de Números</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2033"/>
+        <source>Num&amp;bers-Viewer</source>
+        <translation>Visor de Nú&amp;meros</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2039"/>
+        <source>Switch the input focus to the Numbers-Viewer window.</source>
+        <translation>Cambiar el foco de input a la ventana de Visor de Números.</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2041"/>
+        <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Activar Visor de Números&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Visor de Números.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3231"/>
+        <source>&amp;Windows</source>
+        <translation>&amp;Ventanas</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1867"/>
+        <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Activar Visor de Tareas&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Visor de Tareas.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1996"/>
+        <source>IRC</source>
+        <translation>IRC</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1996"/>
+        <source>&amp;IRC</source>
+        <translation>&amp;IRC</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2002"/>
+        <source>Switch the input focus to the IRC window.</source>
+        <translation>Cambiar el foco de input a la ventana de IRC.</translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="2004"/>
-        <source>S&amp;ymbols-Viewer</source>
-        <translation>Visor de S&amp;ímbolos</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2010"/>
-        <source>Switch the input focus to the Symbols-Viewer window.</source>
-        <translation>Cambiar el foco de input a la ventana de Visor de Símbolos.</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2012"/>
-        <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Activar Visor de Símbolos&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Visor de Símbolos.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
-        <source>Numbers-Viewer</source>
-        <translation>Visor de Números</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
-        <source>Num&amp;bers-Viewer</source>
-        <translation>Visor de Nú&amp;meros</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2029"/>
-        <source>Switch the input focus to the Numbers-Viewer window.</source>
-        <translation>Cambiar el foco de input a la ventana de Visor de Números.</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2031"/>
-        <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Activar Visor de Números&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Visor de Números.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3221"/>
-        <source>&amp;Windows</source>
-        <translation>&amp;Ventanas</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1857"/>
-        <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Activar Visor de Tareas&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de Visor de Tareas.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
-        <source>IRC</source>
-        <translation>IRC</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
-        <source>&amp;IRC</source>
-        <translation>&amp;IRC</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1992"/>
-        <source>Switch the input focus to the IRC window.</source>
-        <translation>Cambiar el foco de input a la ventana de IRC.</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
         <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Activar IRC&lt;/b&gt;&lt;p&gt;Cambia el foco de input a la ventana de IRC.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2338"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Qt-Designer</source>
         <translation>Qt Designer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2338"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Qt-&amp;Designer...</source>
         <translation>Qt-&amp;Designer...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2343"/>
+        <location filename="../UI/UserInterface.py" line="2353"/>
         <source>Start Qt-Designer</source>
         <translation>Iniciar Qt-Designer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2344"/>
+        <location filename="../UI/UserInterface.py" line="2354"/>
         <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Ejecutar Qt-Designer.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2364"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Qt-Linguist</source>
         <translation>Qt-Linguist</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2364"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Qt-&amp;Linguist...</source>
         <translation>Qt-&amp;Linguist...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2369"/>
+        <location filename="../UI/UserInterface.py" line="2379"/>
         <source>Start Qt-Linguist</source>
         <translation>Iniciar Qt Linguist</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2370"/>
+        <location filename="../UI/UserInterface.py" line="2380"/>
         <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Iniciar Qt-Linguist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2858"/>
+        <location filename="../UI/UserInterface.py" line="2868"/>
         <source>Qt5 Documentation</source>
         <translation>Documentación de Qt5</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2862"/>
+        <location filename="../UI/UserInterface.py" line="2872"/>
         <source>Open Qt5 Documentation</source>
         <translation>Abrir Documentación de Qt5</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2666"/>
+        <location filename="../UI/UserInterface.py" line="2676"/>
         <source>Manage SSL Certificates</source>
         <translation>Gestionar Certificados SSL</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2666"/>
+        <location filename="../UI/UserInterface.py" line="2676"/>
         <source>Manage SSL Certificates...</source>
         <translation>Gestionar Certificados SSL...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2671"/>
+        <location filename="../UI/UserInterface.py" line="2681"/>
         <source>Manage the saved SSL certificates</source>
         <translation>Gestionar los certificados SSL guardados</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2673"/>
+        <location filename="../UI/UserInterface.py" line="2683"/>
         <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gestionar Certificados SSL...&lt;/b&gt;&lt;p&gt;Abre un diálogo para gestionar los certificados SSL guardados.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2682"/>
+        <location filename="../UI/UserInterface.py" line="2692"/>
         <source>Edit Message Filters</source>
         <translation>Editar Filtros de Mensajes</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2682"/>
+        <location filename="../UI/UserInterface.py" line="2692"/>
         <source>Edit Message Filters...</source>
         <translation>Editar Filtros de Mensajes...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2687"/>
+        <location filename="../UI/UserInterface.py" line="2697"/>
         <source>Edit the message filters used to suppress unwanted messages</source>
         <translation>Editar los filtros de mensajes utilizados para suprimir mensajes no deseados</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2689"/>
+        <location filename="../UI/UserInterface.py" line="2699"/>
         <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Editar Filtros de Mensajes&lt;/b&gt;&lt;p&gt;Abre un diálogo para editar los filtros de mensajes utilizados para suprimir mensajes no deseados y que no se muestren en la ventana de error.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2888"/>
+        <location filename="../UI/UserInterface.py" line="2898"/>
         <source>PyQt5 Documentation</source>
         <translation>Documentación de PyQt5</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2892"/>
+        <location filename="../UI/UserInterface.py" line="2902"/>
         <source>Open PyQt5 Documentation</source>
         <translation>Abrir Documentación de PyQt5</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2933"/>
+        <location filename="../UI/UserInterface.py" line="2943"/>
         <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Documentación de Python 3&lt;/b&gt;&lt;p&gt;Mostrar la documentación de Python 3. Si no se ha configurado un directorio con lesta documentación, la ubicación de la documentación de Python 3 se asumirá en el directorio de documentación bajo la ubicación del ejecutable de Python 3 en Windows, y en &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; para Unix. Establezca el valor de la variable de entorno PYTHON3DOCDIR para sobreescribir estas opciones. &lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7062"/>
+        <location filename="../UI/UserInterface.py" line="7082"/>
         <source>%v/%m</source>
         <translation>%v/%m</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2203"/>
+        <location filename="../UI/UserInterface.py" line="2213"/>
         <source>Show Error Log</source>
         <translation>Mostrar Registro de Errores</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2199"/>
+        <location filename="../UI/UserInterface.py" line="2209"/>
         <source>Show Error &amp;Log...</source>
         <translation>Mostrar &amp;Registro de Errores...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2204"/>
+        <location filename="../UI/UserInterface.py" line="2214"/>
         <source>&lt;b&gt;Show Error Log...&lt;/b&gt;&lt;p&gt;Opens a dialog showing the most recent error log.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mostrar registro de errores...&lt;/b&gt;&lt;p&gt;Abre un diálogo mostrando el registro más reciente de errores.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7066"/>
+        <location filename="../UI/UserInterface.py" line="7086"/>
         <source>Version Check</source>
         <translation>Verificación de Versión</translation>
     </message>
@@ -77332,67 +77342,67 @@
         <translation>Generando Barras de Herramientas para Plugins...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4194"/>
+        <location filename="../UI/UserInterface.py" line="4204"/>
         <source>&amp;User Tools</source>
         <translation>Herramientas de &amp;Usuario</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4266"/>
+        <location filename="../UI/UserInterface.py" line="4276"/>
         <source>No User Tools Configured</source>
         <translation>No se han Configurado Herramientas de Usuario</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2459"/>
+        <location filename="../UI/UserInterface.py" line="2469"/>
         <source>Hex Editor</source>
         <translation>Editor Hexadecimal</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2459"/>
+        <location filename="../UI/UserInterface.py" line="2469"/>
         <source>&amp;Hex Editor...</source>
         <translation>Editor &amp;Hexadecimal...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2705"/>
+        <location filename="../UI/UserInterface.py" line="2715"/>
         <source>Clear private data</source>
         <translation>Limpiar Datos Privados</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2707"/>
+        <location filename="../UI/UserInterface.py" line="2717"/>
         <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Limpiar datos privados&lt;/b&gt;&lt;p&gt;Limpia los datos privados como las listas de archivos recientes, proyectos o multiproyectos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1665"/>
+        <location filename="../UI/UserInterface.py" line="1675"/>
         <source>Save session...</source>
         <translation>Guardar sesión...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1670"/>
+        <location filename="../UI/UserInterface.py" line="1680"/>
         <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Guardar sesión...&lt;/b&gt;&lt;p&gt;Guarda la sesión actual a disco. Se muestra un diálogo para seleccionar el nombre de archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6650"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <source>Load session</source>
         <translation>Cargar sesión</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1678"/>
+        <location filename="../UI/UserInterface.py" line="1688"/>
         <source>Load session...</source>
         <translation>Cargar sesión...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1683"/>
+        <location filename="../UI/UserInterface.py" line="1693"/>
         <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cargar sesión...&lt;/b&gt;&lt;p&gt;Carga una sesión guardada en disco anteriormente. Se muestra un diálogo para seleccionar el nombre de archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6703"/>
+        <location filename="../UI/UserInterface.py" line="6723"/>
         <source>Crash Session found!</source>
         <translation>¡Se ha hallado una sesión perdida!</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6703"/>
+        <location filename="../UI/UserInterface.py" line="6723"/>
         <source>A session file of a crashed session was found. Shall this session be restored?</source>
         <translation>Se ha encontrado un archivo de sesió para una sesión perdida. ¿Desea restaurar esta sesión?</translation>
     </message>
@@ -77407,388 +77417,388 @@
         <translation>Inicializando Plugins...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7209"/>
+        <location filename="../UI/UserInterface.py" line="7230"/>
         <source>Update Check</source>
         <translation>Comprobación Actualización</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7209"/>
+        <location filename="../UI/UserInterface.py" line="7230"/>
         <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
         <translation>Ha instalado eric directamente a partir del código fuente. No es posible comprobar la disponibilidad de una actuación.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2042"/>
+        <location filename="../UI/UserInterface.py" line="2052"/>
         <source>Code Documentation Viewer</source>
         <translation>Visor de Documentación de Código</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2863"/>
+        <location filename="../UI/UserInterface.py" line="2873"/>
         <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation>&lt;b&gt;Documentación de Qt5&lt;/b&gt;&lt;p&gt;Muestra la Documentación de Qt5. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2894"/>
+        <location filename="../UI/UserInterface.py" line="2904"/>
         <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation>&lt;b&gt;Documentación de PyQt5&lt;/b&gt;&lt;p&gt;Muestra la Documentación de PyQt5. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2970"/>
+        <location filename="../UI/UserInterface.py" line="2980"/>
         <source>PySide2 Documentation</source>
         <translation>Documentación de PySide2</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2974"/>
+        <location filename="../UI/UserInterface.py" line="2984"/>
         <source>Open PySide2 Documentation</source>
         <translation>Abrir Documentación de PySide2</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2976"/>
+        <location filename="../UI/UserInterface.py" line="2986"/>
         <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation>&lt;b&gt;Documentación de PySide2&lt;/b&gt;&lt;p&gt;Muestra la Documentación de PySide2. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5866"/>
+        <location filename="../UI/UserInterface.py" line="5883"/>
         <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation>&lt;P&gt;El punto de entrada de documentación de PySide{0} no ha sido configurado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2813"/>
+        <location filename="../UI/UserInterface.py" line="2823"/>
         <source>Virtualenv Manager</source>
         <translation>Gestor de Virtualenv</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2807"/>
+        <location filename="../UI/UserInterface.py" line="2817"/>
         <source>&amp;Virtualenv Manager...</source>
         <translation>Gestor de &amp;Virtualenv...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2815"/>
+        <location filename="../UI/UserInterface.py" line="2825"/>
         <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gestor de Virtualenv&lt;/b&gt;&lt;p&gt;Abre un diálogo para gestionar los entornos virtuales Python definidos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2830"/>
+        <location filename="../UI/UserInterface.py" line="2840"/>
         <source>Virtualenv Configurator</source>
         <translation>Configurador de Virtualenv</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2824"/>
+        <location filename="../UI/UserInterface.py" line="2834"/>
         <source>Virtualenv &amp;Configurator...</source>
         <translation>Configurador de &amp;Virtualenv...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2832"/>
+        <location filename="../UI/UserInterface.py" line="2842"/>
         <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Configurador de Virtualenv&lt;/b&gt;&lt;p&gt;Abre un diálogo para introducir todos los parámetros necesarios para crear un entorno virtual de Python utilizando virtualenv o pyvenv.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3228"/>
+        <location filename="../UI/UserInterface.py" line="3238"/>
         <source>Left Side</source>
         <translation>Lado Izquierdo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3240"/>
+        <location filename="../UI/UserInterface.py" line="3250"/>
         <source>Bottom Side</source>
         <translation>Lado Inferior</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3247"/>
+        <location filename="../UI/UserInterface.py" line="3257"/>
         <source>Right Side</source>
         <translation>Lado Derecho</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3267"/>
+        <location filename="../UI/UserInterface.py" line="3277"/>
         <source>Plug-ins</source>
         <translation>Plugins</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
+        <location filename="../UI/UserInterface.py" line="1659"/>
         <source>Restart</source>
         <translation>Reiniciar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
+        <location filename="../UI/UserInterface.py" line="1659"/>
         <source>Ctrl+Shift+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Shift+Q</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1655"/>
+        <location filename="../UI/UserInterface.py" line="1665"/>
         <source>Restart the IDE</source>
         <translation>Reiniciar la IDE</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1656"/>
+        <location filename="../UI/UserInterface.py" line="1666"/>
         <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Reiniciar la IDE&lt;/b&gt;&lt;p&gt;Reinicia la IDE. Todos los cambios sin guardar pueden ser guardados primero. Cualquier programa de Python que esté en depuración será detenido, y las preferencias se guardarán en disco.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6043"/>
+        <location filename="../UI/UserInterface.py" line="6060"/>
         <source>Start Web Browser</source>
         <translation>Iniciar Navegador Web</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2080"/>
+        <location filename="../UI/UserInterface.py" line="2090"/>
         <source>Conda</source>
         <translation>Conda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2062"/>
+        <location filename="../UI/UserInterface.py" line="2072"/>
         <source>PyPI</source>
         <translation>PyPI</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3576"/>
+        <location filename="../UI/UserInterface.py" line="3586"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Esta zona de la barra de estado permite hacer zoom sobre el editor actual o la shell.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2098"/>
+        <location filename="../UI/UserInterface.py" line="2108"/>
         <source>MicroPython</source>
         <translation>MicroPython</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
+        <location filename="../UI/UserInterface.py" line="1996"/>
         <source>Ctrl+Alt+Shift+I</source>
         <translation>Ctrl+Alt+Shift+I</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2042"/>
+        <location filename="../UI/UserInterface.py" line="2052"/>
         <source>Ctrl+Alt+Shift+D</source>
         <translation>Ctrl+Alt+Shift+D</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2048"/>
+        <location filename="../UI/UserInterface.py" line="2058"/>
         <source>Switch the input focus to the Code Documentation Viewer window.</source>
         <translation>Cambiar el foco de entrada a la ventana  de Visor de Documentación de Código.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2051"/>
+        <location filename="../UI/UserInterface.py" line="2061"/>
         <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Visor de Documentación de Código&lt;/b&gt;&lt;p&gt;Cambia el foco de entrada a la ventana del Visor de Documentación de Código.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2062"/>
+        <location filename="../UI/UserInterface.py" line="2072"/>
         <source>Ctrl+Alt+Shift+P</source>
         <translation>Ctrl+Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2068"/>
+        <location filename="../UI/UserInterface.py" line="2078"/>
         <source>Switch the input focus to the PyPI window.</source>
         <translation>Cambiar el foco de entrada a la ventana PyPI.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2070"/>
-        <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;Cambia el foco de entrada a la ventana de PyPI.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2080"/>
+        <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;Cambia el foco de entrada a la ventana de PyPI.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2090"/>
         <source>Ctrl+Alt+Shift+C</source>
         <translation>Ctrl+Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2086"/>
+        <location filename="../UI/UserInterface.py" line="2096"/>
         <source>Switch the input focus to the Conda window.</source>
         <translation>Cambiar el foco de entrada a la ventana de Conda.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2088"/>
-        <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;Cambia el foco de entrada a la ventana de Conda.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2098"/>
+        <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;Cambia el foco de entrada a la ventana de Conda.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2108"/>
         <source>Ctrl+Alt+Shift+M</source>
         <translation>Ctrl+Alt+Shift+M</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2104"/>
+        <location filename="../UI/UserInterface.py" line="2114"/>
         <source>Switch the input focus to the MicroPython window.</source>
         <translation>Cambiar el foco de entrada a la ventana de MicroPython.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2106"/>
+        <location filename="../UI/UserInterface.py" line="2116"/>
         <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;Cambia el foco de entrada a la ventana de MicroPython.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3225"/>
+        <location filename="../UI/UserInterface.py" line="3235"/>
         <source>Central Park</source>
         <translation>Central Park</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3745"/>
+        <location filename="../UI/UserInterface.py" line="3755"/>
         <source>&lt;h2&gt;Version Numbers&lt;/h2&gt;&lt;table&gt;</source>
         <translation>&lt;h2&gt;Números de Versiones&lt;/h2&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5082"/>
+        <location filename="../UI/UserInterface.py" line="5099"/>
         <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido encontrar el ejecutable de Qt-Designer.&lt;br&gt;Asegúrese de que está instalado y opcionalmente configurado en la página de configuración de Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5152"/>
+        <location filename="../UI/UserInterface.py" line="5169"/>
         <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido encontrar el ejecutable de Qt-Linguist.&lt;br&gt;Asegúrese de que está instalado y opcionalmente configurado en la página de configuración de Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5196"/>
+        <location filename="../UI/UserInterface.py" line="5213"/>
         <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido encontrar el ejecutable de Qt-Assistant.&lt;br&gt;Asegúrese de que está instalado y opcionalmente configurado en la página de configuración de Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2211"/>
+        <location filename="../UI/UserInterface.py" line="2221"/>
         <source>Show Install Info</source>
         <translation>Mostrar Información de Instalación</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2211"/>
+        <location filename="../UI/UserInterface.py" line="2221"/>
         <source>Show Install &amp;Info...</source>
         <translation>Mostrar &amp;Información de Instalación...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2215"/>
+        <location filename="../UI/UserInterface.py" line="2225"/>
         <source>Show Installation Information</source>
         <translation>Mostrar Información de Instalación</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2217"/>
+        <location filename="../UI/UserInterface.py" line="2227"/>
         <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mostrar información de instalación...&lt;/b&gt;&lt;p&gt;Abre un diálogo que muestra información sobre el proceso de instalación.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2873"/>
+        <location filename="../UI/UserInterface.py" line="2883"/>
         <source>Qt6 Documentation</source>
         <translation>Documentación de Qt6</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2877"/>
+        <location filename="../UI/UserInterface.py" line="2887"/>
         <source>Open Qt6 Documentation</source>
         <translation>Abrir Documentación de Qt6</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2878"/>
+        <location filename="../UI/UserInterface.py" line="2888"/>
         <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation>&lt;b&gt;Documentación de Qt6&lt;/b&gt;&lt;p&gt;Muestra la Documentación de Qt6. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2905"/>
+        <location filename="../UI/UserInterface.py" line="2915"/>
         <source>PyQt6 Documentation</source>
         <translation>Documentación de PyQt6</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2909"/>
+        <location filename="../UI/UserInterface.py" line="2919"/>
         <source>Open PyQt6 Documentation</source>
         <translation>Abrir Documentación de PyQt6</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2911"/>
+        <location filename="../UI/UserInterface.py" line="2921"/>
         <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation>&lt;b&gt;Documentación de PyQt6&lt;/b&gt;&lt;p&gt;Muestra la Documentación de PyQt6. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2990"/>
+        <location filename="../UI/UserInterface.py" line="3000"/>
         <source>PySide6 Documentation</source>
         <translation>Documentación de PySide6</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2994"/>
+        <location filename="../UI/UserInterface.py" line="3004"/>
         <source>Open PySide6 Documentation</source>
         <translation>Abrir Documentación de PySide6</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2996"/>
+        <location filename="../UI/UserInterface.py" line="3006"/>
         <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation>&lt;b&gt;Documentación de PySide6&lt;/b&gt;&lt;p&gt;Muestra la Documentación de PySide6. Dependiendo de la configuración, esta documentación será mostrará en el visor de ayuda interno de Eric, o se ejecutará en un navegador web, o Qt Assistant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5761"/>
+        <location filename="../UI/UserInterface.py" line="5778"/>
         <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation>&lt;P&gt;El punto de entrada de documentación de PyQt{0} no ha sido configurado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1697"/>
+        <location filename="../UI/UserInterface.py" line="1707"/>
         <source>Open a new eric instance</source>
         <translation>Abrir una nueva instancia de eric</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1699"/>
+        <location filename="../UI/UserInterface.py" line="1709"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nueva Ventana&lt;/b&gt;&lt;p&gt;Abre una nueva instancia del IDE eric.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2142"/>
+        <location filename="../UI/UserInterface.py" line="2152"/>
         <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is search in the Qt help collection.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Visor de ayuda&lt;/b&gt;&lt;p&gt;Mostrar el navegador web de eric. Esta ventana mostrará archivos de ayuda HTML y ayuda de las colecciones de ayuda de Qt. Tiene la capacidad de navegar a hiperenlaces, establecer marcadores, imprimir la ayuda visualizada y algunas otras características.&lt;/p&gt;&lt;p&gt;Si se invoca con una palabra seleccionada, esta palabra se busca en la colección de ayuda de Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2177"/>
+        <location filename="../UI/UserInterface.py" line="2187"/>
         <source>&lt;b&gt;Check for Updates...&lt;/b&gt;&lt;p&gt;Checks the internet for updates of eric.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Buscar actualizaciones...&lt;/b&gt;&lt;p&gt;Busca actualizaciones de eric en internet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2190"/>
+        <location filename="../UI/UserInterface.py" line="2200"/>
         <source>&lt;b&gt;Show downloadable versions...&lt;/b&gt;&lt;p&gt;Shows the eric versions available for download from the internet.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mostrar versiones descargables...&lt;/b&gt;&lt;p&gt;Muestra las versiones de eric disponibles para descarga de internet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2464"/>
-        <source>Start the eric Hex Editor</source>
-        <translation>Iniciar el Editor Hexadecimal de eric</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2466"/>
-        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Editor Hexadecimal&lt;/b&gt;&lt;p&gt;Inicia el Editor Hexadecimal de eric para visionado o edición de archivos binarios.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2474"/>
+        <source>Start the eric Hex Editor</source>
+        <translation>Iniciar el Editor Hexadecimal de eric</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2476"/>
+        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Editor Hexadecimal&lt;/b&gt;&lt;p&gt;Inicia el Editor Hexadecimal de eric para visionado o edición de archivos binarios.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2484"/>
         <source>eric Web Browser</source>
         <translation>Navegador Web de eric</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2474"/>
+        <location filename="../UI/UserInterface.py" line="2484"/>
         <source>eric &amp;Web Browser...</source>
         <translation>Navegador &amp;Web de eric...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2479"/>
+        <location filename="../UI/UserInterface.py" line="2489"/>
         <source>Start the eric Web Browser</source>
         <translation>Iniciar el Navegador Web de eric</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2481"/>
+        <location filename="../UI/UserInterface.py" line="2491"/>
         <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Navegador Web de eric&lt;/b&gt;&lt;p&gt;Navegar por Internet con el Navegador Web de eric.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2493"/>
+        <location filename="../UI/UserInterface.py" line="2503"/>
         <source>Start the eric Icon Editor</source>
         <translation>Iniciar el Editor de Iconos de eric</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2495"/>
+        <location filename="../UI/UserInterface.py" line="2505"/>
         <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Editor de Iconos&lt;/b&gt;&lt;p&gt;Inicia el Editor de Iconos de eric para editar iconos sencillos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2581"/>
+        <location filename="../UI/UserInterface.py" line="2591"/>
         <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mostrar herramientas externas&lt;/b&gt;&lt;p&gt;Abre un diálogo para mostrar la ruta y versiones de todas las herramientas externas que utiliza eric.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2955"/>
+        <location filename="../UI/UserInterface.py" line="2965"/>
         <source>&lt;b&gt;Eric API Documentation&lt;/b&gt;&lt;p&gt;Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Documentación de API de Eric&lt;/b&gt;&lt;p&gt;Muestra la documentación de API de Eric. La ubicación de la documentación es el subdirectorio Documentation/Source del directorio de instalación de eric.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5979"/>
+        <location filename="../UI/UserInterface.py" line="5996"/>
         <source>The eric web browser could not be started.</source>
         <translation>El navegador web de eric no se ha podido iniciar.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6043"/>
+        <location filename="../UI/UserInterface.py" line="6060"/>
         <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El navegador web de eric no se ha iniciado.&lt;/p&gt;&lt;p&gt;Razón: {0}&lt;/p&gt;</translation>
     </message>
@@ -77798,62 +77808,62 @@
         <translation type="obsolete">Archivos de Sesión de eric (*.e5s)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7221"/>
+        <location filename="../UI/UserInterface.py" line="7242"/>
         <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
         <translation>La actualización para &lt;b&gt;{0}&lt;/b&gt; de eric está disponible en &lt;b&gt;{1}&lt;/b&gt;. ¿Le gustaría obtenerla?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7199"/>
+        <location filename="../UI/UserInterface.py" line="7220"/>
         <source>You are using a snapshot release of eric. A more up-to-date stable release might be available.</source>
         <translation>Ésta es una snapshot release the eric. Una release estable más reciente podría estar disponible.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7233"/>
+        <location filename="../UI/UserInterface.py" line="7254"/>
         <source>eric is up to date</source>
         <translation>eric está actualizado</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7233"/>
+        <location filename="../UI/UserInterface.py" line="7254"/>
         <source>You are using the latest version of eric</source>
         <translation>Está utilizando la última versión de eric</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7316"/>
+        <location filename="../UI/UserInterface.py" line="7337"/>
         <source>eric has not been configured yet. The configuration dialog will be started.</source>
         <translation>eric todavía no está configurado. El diálogo de configuración va a ser iniciado.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6294"/>
+        <location filename="../UI/UserInterface.py" line="6314"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard Shortcuts File (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6313"/>
+        <location filename="../UI/UserInterface.py" line="6333"/>
         <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6329"/>
+        <location filename="../UI/UserInterface.py" line="6349"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6518"/>
+        <location filename="../UI/UserInterface.py" line="6538"/>
         <source>Read Tasks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6627"/>
+        <location filename="../UI/UserInterface.py" line="6647"/>
         <source>Save Session</source>
         <translation type="unfinished">Guardar Sesión</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6584"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>Read Session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6650"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77934,7 +77944,7 @@
 <context>
     <name>Utilities</name>
     <message>
-        <location filename="../Utilities/__init__.py" line="1453"/>
+        <location filename="../Utilities/__init__.py" line="1454"/>
         <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;Puede utilizar %-códigos como marcadores en la cadena. Los valores sportados son:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;columna del cursos en el editor actual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directorio del editor actual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;nombre de archivo del editor actual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;directorio home del usuario actual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;línea del cursor en el editor actual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;ruta del proyecto actual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;texto seleccionado en el editor actual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;nombre de usuario del usuario actual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;signo de porcentaje&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</translation>
     </message>
@@ -78223,32 +78233,32 @@
 <context>
     <name>VariablesViewer</name>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="958"/>
+        <location filename="../Debugger/VariablesViewer.py" line="965"/>
         <source>Global Variables</source>
         <translation>Variables Globales</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="959"/>
-        <source>&lt;b&gt;The Global Variables Viewer Window&lt;/b&gt;&lt;p&gt;This window displays the global variables of the debugged program.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Ventana de Visor de Variables Globales&lt;/b&gt;&lt;p&gt;Esta ventana muestra las variables globales del programa en depuración.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/VariablesViewer.py" line="965"/>
-        <source>Local Variables</source>
-        <translation>Variables Locales</translation>
-    </message>
-    <message>
         <location filename="../Debugger/VariablesViewer.py" line="966"/>
+        <source>&lt;b&gt;The Global Variables Viewer Window&lt;/b&gt;&lt;p&gt;This window displays the global variables of the debugged program.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Ventana de Visor de Variables Globales&lt;/b&gt;&lt;p&gt;Esta ventana muestra las variables globales del programa en depuración.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/VariablesViewer.py" line="972"/>
+        <source>Local Variables</source>
+        <translation>Variables Locales</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/VariablesViewer.py" line="973"/>
         <source>&lt;b&gt;The Local Variables Viewer Window&lt;/b&gt;&lt;p&gt;This window displays the local variables of the debugged program.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ventana de Visor de Variables Locales&lt;/b&gt;&lt;p&gt;Esta ventana muestra las variables locales  del programa en depuración.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1083"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1090"/>
         <source>Show Details...</source>
         <translation>Mostrar detalles...</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1098"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1105"/>
         <source>Configure...</source>
         <translation>Configurar...</translation>
     </message>
@@ -78258,27 +78268,27 @@
         <translation>{0} elementos</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1096"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1103"/>
         <source>Refresh</source>
         <translation>Actualizar</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1085"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1092"/>
         <source>Expand</source>
         <translation>Expandir</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1086"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1093"/>
         <source>Collapse</source>
         <translation>Contraer</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1087"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1094"/>
         <source>Collapse All</source>
         <translation>Contraer Todo</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1099"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1106"/>
         <source>Variables Type Filter...</source>
         <translation>Fitro por Tipo de Variable...</translation>
     </message>
@@ -78932,7 +78942,7 @@
         <translation>Error de Generación de Proceso</translation>
     </message>
     <message>
-        <location filename="../VCS/VersionControl.py" line="761"/>
+        <location filename="../VCS/VersionControl.py" line="764"/>
         <source>Repository status checking is switched off</source>
         <translation>El chequeo de estado del repositorio está deshabilitado</translation>
     </message>
@@ -78945,1361 +78955,1361 @@
 <context>
     <name>ViewManager</name>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>New</source>
         <translation>Nuevo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>&amp;New</source>
         <translation>&amp;Nuevo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="592"/>
+        <location filename="../ViewManager/ViewManager.py" line="593"/>
         <source>Open an empty editor window</source>
         <translation>Abre una ventana vacia en el editor</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="595"/>
+        <location filename="../ViewManager/ViewManager.py" line="596"/>
         <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="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>Open</source>
         <translation>Abrir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>&amp;Open...</source>
         <translation>&amp;Abrir...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="611"/>
+        <location filename="../ViewManager/ViewManager.py" line="612"/>
         <source>Open a file</source>
         <translation>Abrir un archivo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="613"/>
+        <location filename="../ViewManager/ViewManager.py" line="614"/>
         <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="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>Close</source>
         <translation>Cerrar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>&amp;Close</source>
         <translation>&amp;Cerrar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="632"/>
+        <location filename="../ViewManager/ViewManager.py" line="633"/>
         <source>Close the current window</source>
         <translation>Cierra la ventana actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="636"/>
         <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="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="644"/>
         <source>Close All</source>
         <translation>Cerrar todo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="644"/>
         <source>Clos&amp;e All</source>
         <translation>Cerrar &amp;Todo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="647"/>
+        <location filename="../ViewManager/ViewManager.py" line="648"/>
         <source>Close all editor windows</source>
         <translation>Cerrar todas las ventanas del editor</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="650"/>
+        <location filename="../ViewManager/ViewManager.py" line="651"/>
         <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="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>Save</source>
         <translation>Guardar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>&amp;Save</source>
         <translation>&amp;Guardar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation>Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="669"/>
+        <location filename="../ViewManager/ViewManager.py" line="670"/>
         <source>Save the current file</source>
         <translation>Guarda el archivo actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="671"/>
+        <location filename="../ViewManager/ViewManager.py" line="672"/>
         <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="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Save as</source>
         <translation>Guardar como</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Save &amp;as...</source>
         <translation>Guardar &amp;como...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="686"/>
+        <location filename="../ViewManager/ViewManager.py" line="687"/>
         <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="688"/>
+        <location filename="../ViewManager/ViewManager.py" line="689"/>
         <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="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="714"/>
         <source>Save all</source>
         <translation>Guardar todo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="718"/>
+        <location filename="../ViewManager/ViewManager.py" line="719"/>
         <source>Save all files</source>
         <translation>Guardar todos los archivos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="720"/>
+        <location filename="../ViewManager/ViewManager.py" line="721"/>
         <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="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>Print</source>
         <translation>Imprimir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>&amp;Print</source>
         <translation>Im&amp;primir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation>Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="737"/>
+        <location filename="../ViewManager/ViewManager.py" line="738"/>
         <source>Print the current file</source>
         <translation>Imprime el archivo actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="739"/>
+        <location filename="../ViewManager/ViewManager.py" line="740"/>
         <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="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Search File</source>
         <translation>Buscar archivo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Search &amp;File...</source>
         <translation>B&amp;uscar Archivo...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Alt+Ctrl+F</source>
         <comment>File|Search File</comment>
         <translation>Alt+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="771"/>
+        <location filename="../ViewManager/ViewManager.py" line="772"/>
         <source>Search for a file</source>
         <translation>Buscar un archivo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="773"/>
+        <location filename="../ViewManager/ViewManager.py" line="774"/>
         <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="787"/>
+        <location filename="../ViewManager/ViewManager.py" line="788"/>
         <source>&amp;File</source>
         <translation>&amp;Archivo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="789"/>
+        <location filename="../ViewManager/ViewManager.py" line="790"/>
         <source>Open &amp;Recent Files</source>
         <translation>Abrir Archivos &amp;Recientes</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="792"/>
+        <location filename="../ViewManager/ViewManager.py" line="793"/>
         <source>Open &amp;Bookmarked Files</source>
         <translation>Abrir Archivos &amp;Marcados</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="840"/>
+        <location filename="../ViewManager/ViewManager.py" line="841"/>
         <source>File</source>
         <translation>Archivo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="863"/>
+        <location filename="../ViewManager/ViewManager.py" line="864"/>
         <source>Export as</source>
         <translation>Exportar como</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Undo</source>
         <translation>Deshacer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>&amp;Undo</source>
         <translation>&amp;Deshacer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="896"/>
+        <location filename="../ViewManager/ViewManager.py" line="897"/>
         <source>Undo the last change</source>
         <translation>Revierte el último cambio</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="898"/>
+        <location filename="../ViewManager/ViewManager.py" line="899"/>
         <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="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>Redo</source>
         <translation>Rehacer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>&amp;Redo</source>
         <translation>&amp;Rehacer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="914"/>
+        <location filename="../ViewManager/ViewManager.py" line="915"/>
         <source>Redo the last change</source>
         <translation>Rehace el último cambio</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="916"/>
+        <location filename="../ViewManager/ViewManager.py" line="917"/>
         <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="933"/>
+        <location filename="../ViewManager/ViewManager.py" line="934"/>
         <source>Revert to last saved state</source>
         <translation>Volver al último estado grabado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="924"/>
+        <location filename="../ViewManager/ViewManager.py" line="925"/>
         <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="924"/>
+        <location filename="../ViewManager/ViewManager.py" line="925"/>
         <source>Ctrl+Y</source>
         <comment>Edit|Revert</comment>
         <translation>Ctrl+Y</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="935"/>
+        <location filename="../ViewManager/ViewManager.py" line="936"/>
         <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="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Cut</source>
         <translation>Cortar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Cu&amp;t</source>
         <translation>Cor&amp;tar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="955"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Cut the selection</source>
         <translation>Corta lo seleccionado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="958"/>
         <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="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Copy</source>
         <translation>Copiar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>&amp;Copy</source>
         <translation>&amp;Copiar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="976"/>
         <source>Copy the selection</source>
         <translation>Copia lo seleccionao</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="977"/>
+        <location filename="../ViewManager/ViewManager.py" line="978"/>
         <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="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Paste</source>
         <translation>Pegar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>&amp;Paste</source>
         <translation>&amp;Pegar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="995"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Paste the last cut/copied text</source>
         <translation>Pega el último texto copiado/cortado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="998"/>
         <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="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>Clear</source>
         <translation>Borrar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1014"/>
+        <location filename="../ViewManager/ViewManager.py" line="1015"/>
         <source>Clear all text</source>
         <translation>Borra todo el texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1016"/>
+        <location filename="../ViewManager/ViewManager.py" line="1017"/>
         <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="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>Indent</source>
         <translation>Sangrar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>&amp;Indent</source>
         <translation>&amp;Sangrar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>Ctrl+I</source>
         <comment>Edit|Indent</comment>
         <translation>Ctrl+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1049"/>
+        <location filename="../ViewManager/ViewManager.py" line="1050"/>
         <source>Indent line</source>
         <translation>Sangrar línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1051"/>
+        <location filename="../ViewManager/ViewManager.py" line="1052"/>
         <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="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>Unindent</source>
         <translation>Quitar sangrado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>U&amp;nindent</source>
         <translation>&amp;Quitar sangrado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>Ctrl+Shift+I</source>
         <comment>Edit|Unindent</comment>
         <translation>Ctrl+Shift+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1068"/>
+        <location filename="../ViewManager/ViewManager.py" line="1069"/>
         <source>Unindent line</source>
         <translation>Quitar sangrado de línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1070"/>
+        <location filename="../ViewManager/ViewManager.py" line="1071"/>
         <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="1079"/>
+        <location filename="../ViewManager/ViewManager.py" line="1080"/>
         <source>Smart indent</source>
         <translation>Sangrado inteligente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1085"/>
+        <location filename="../ViewManager/ViewManager.py" line="1086"/>
         <source>Smart indent Line or Selection</source>
         <translation>Sangrado inteligente de Linea o Selección</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1087"/>
+        <location filename="../ViewManager/ViewManager.py" line="1088"/>
         <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="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>Comment</source>
         <translation>Comentario</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>C&amp;omment</source>
         <translation>Co&amp;mentario</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>Ctrl+M</source>
         <comment>Edit|Comment</comment>
         <translation>Ctrl+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1104"/>
+        <location filename="../ViewManager/ViewManager.py" line="1105"/>
         <source>Comment Line or Selection</source>
         <translation>Comentar línea o selección</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1106"/>
+        <location filename="../ViewManager/ViewManager.py" line="1107"/>
         <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="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Uncomment</source>
         <translation>Descomentar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Unco&amp;mment</source>
         <translation>Desc&amp;omentar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Alt+Ctrl+M</source>
         <comment>Edit|Uncomment</comment>
         <translation>Alt+Ctrl+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1123"/>
+        <location filename="../ViewManager/ViewManager.py" line="1124"/>
         <source>Uncomment Line or Selection</source>
         <translation>Descomentar  Línea o Selección</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1125"/>
+        <location filename="../ViewManager/ViewManager.py" line="1126"/>
         <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="1156"/>
+        <location filename="../ViewManager/ViewManager.py" line="1157"/>
         <source>Stream Comment</source>
         <translation>Bloque de comentarios</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1161"/>
+        <location filename="../ViewManager/ViewManager.py" line="1162"/>
         <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="1164"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <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="1173"/>
+        <location filename="../ViewManager/ViewManager.py" line="1174"/>
         <source>Box Comment</source>
         <translation>Caja de comentario</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1178"/>
+        <location filename="../ViewManager/ViewManager.py" line="1179"/>
         <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="1180"/>
+        <location filename="../ViewManager/ViewManager.py" line="1181"/>
         <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="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Select to brace</source>
         <translation>Seleccionar hasta la llave ( &apos;{&apos; o &apos;}&apos; )</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <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="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Ctrl+E</source>
         <comment>Edit|Select to brace</comment>
         <translation>Ctrl+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1196"/>
+        <location filename="../ViewManager/ViewManager.py" line="1197"/>
         <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="1198"/>
+        <location filename="../ViewManager/ViewManager.py" line="1199"/>
         <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="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>Select all</source>
         <translation>Seleccionar todo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>&amp;Select all</source>
         <translation>Seleccionar &amp;todo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select all</comment>
         <translation>Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1215"/>
+        <location filename="../ViewManager/ViewManager.py" line="1216"/>
         <source>Select all text</source>
         <translation>Seleccionar todo el texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1217"/>
+        <location filename="../ViewManager/ViewManager.py" line="1218"/>
         <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="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>Deselect all</source>
         <translation>Deseleccionar todo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>&amp;Deselect all</source>
         <translation>&amp;Deseleccionar todo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>Alt+Ctrl+A</source>
         <comment>Edit|Deselect all</comment>
         <translation>Alt+Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1232"/>
+        <location filename="../ViewManager/ViewManager.py" line="1233"/>
         <source>Deselect all text</source>
         <translation>Deseleccionar todo el texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1234"/>
+        <location filename="../ViewManager/ViewManager.py" line="1235"/>
         <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="1249"/>
+        <location filename="../ViewManager/ViewManager.py" line="1250"/>
         <source>Convert Line End Characters</source>
         <translation>Convertir caracteres de Fin de Línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1242"/>
+        <location filename="../ViewManager/ViewManager.py" line="1243"/>
         <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="1251"/>
+        <location filename="../ViewManager/ViewManager.py" line="1252"/>
         <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="1265"/>
+        <location filename="../ViewManager/ViewManager.py" line="1266"/>
         <source>Shorten empty lines</source>
         <translation>Convertir lineas vacías</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1267"/>
+        <location filename="../ViewManager/ViewManager.py" line="1268"/>
         <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="1452"/>
+        <location filename="../ViewManager/ViewManager.py" line="1453"/>
         <source>Move left one character</source>
         <translation>Mover a la izquierda un carácter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1452"/>
+        <location filename="../ViewManager/ViewManager.py" line="1453"/>
         <source>Left</source>
         <translation>Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1466"/>
+        <location filename="../ViewManager/ViewManager.py" line="1467"/>
         <source>Move right one character</source>
         <translation>Mover a la derecha un carácter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1466"/>
+        <location filename="../ViewManager/ViewManager.py" line="1467"/>
         <source>Right</source>
         <translation>Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1481"/>
         <source>Move up one line</source>
         <translation>Mover arriba una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1481"/>
         <source>Up</source>
         <translation>Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1492"/>
+        <location filename="../ViewManager/ViewManager.py" line="1493"/>
         <source>Move down one line</source>
         <translation>Mover abajo una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1492"/>
+        <location filename="../ViewManager/ViewManager.py" line="1493"/>
         <source>Down</source>
         <translation>Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1504"/>
+        <location filename="../ViewManager/ViewManager.py" line="1505"/>
         <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="1538"/>
+        <location filename="../ViewManager/ViewManager.py" line="1539"/>
         <source>Alt+Left</source>
         <translation>Alt+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1518"/>
+        <location filename="../ViewManager/ViewManager.py" line="1519"/>
         <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="2418"/>
+        <location filename="../ViewManager/ViewManager.py" line="2419"/>
         <source>Alt+Right</source>
         <translation>Alt+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1532"/>
+        <location filename="../ViewManager/ViewManager.py" line="1533"/>
         <source>Move left one word</source>
         <translation>Mover a la izquierda una palabra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1583"/>
+        <location filename="../ViewManager/ViewManager.py" line="1584"/>
         <source>Ctrl+Left</source>
         <translation>Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1547"/>
+        <location filename="../ViewManager/ViewManager.py" line="1548"/>
         <source>Move right one word</source>
         <translation>Mover a la derecha una palabra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2173"/>
         <source>Ctrl+Right</source>
         <translation>Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2373"/>
+        <location filename="../ViewManager/ViewManager.py" line="2374"/>
         <source>Home</source>
         <translation>Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1586"/>
+        <location filename="../ViewManager/ViewManager.py" line="1587"/>
         <source>Alt+Home</source>
         <translation>Alt+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2388"/>
+        <location filename="../ViewManager/ViewManager.py" line="2389"/>
         <source>End</source>
         <translation>End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1609"/>
+        <location filename="../ViewManager/ViewManager.py" line="1610"/>
         <source>Scroll view down one line</source>
         <translation>Scroll hacia abajo una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1699"/>
+        <location filename="../ViewManager/ViewManager.py" line="1700"/>
         <source>Ctrl+Down</source>
         <translation>Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1621"/>
+        <location filename="../ViewManager/ViewManager.py" line="1622"/>
         <source>Scroll view up one line</source>
         <translation>Scroll hacia arriba una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1683"/>
         <source>Ctrl+Up</source>
         <translation>Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1632"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Move up one paragraph</source>
         <translation>Mover arriba un párrafo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1632"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Alt+Up</source>
         <translation>Alt+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1641"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Move down one paragraph</source>
         <translation>Mover abajo un párrafo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1641"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Alt+Down</source>
         <translation>Alt+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1653"/>
+        <location filename="../ViewManager/ViewManager.py" line="1654"/>
         <source>Move up one page</source>
         <translation>Mover arriba una página</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1653"/>
+        <location filename="../ViewManager/ViewManager.py" line="1654"/>
         <source>PgUp</source>
         <translation>PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1662"/>
+        <location filename="../ViewManager/ViewManager.py" line="1663"/>
         <source>Move down one page</source>
         <translation>Mover abajo una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1662"/>
+        <location filename="../ViewManager/ViewManager.py" line="1663"/>
         <source>PgDown</source>
         <translation>PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1685"/>
+        <location filename="../ViewManager/ViewManager.py" line="1686"/>
         <source>Ctrl+Home</source>
         <translation>Ctrl+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1702"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>Ctrl+End</source>
         <translation>Ctrl+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1708"/>
+        <location filename="../ViewManager/ViewManager.py" line="1709"/>
         <source>Indent one level</source>
         <translation>Indentar un nivel</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1708"/>
+        <location filename="../ViewManager/ViewManager.py" line="1709"/>
         <source>Tab</source>
         <translation>Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1717"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Unindent one level</source>
         <translation>Desindentar un nivel</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1717"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Shift+Tab</source>
         <translation>Shift+Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1728"/>
         <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="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1728"/>
         <source>Shift+Left</source>
         <translation>Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1742"/>
+        <location filename="../ViewManager/ViewManager.py" line="1743"/>
         <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="1742"/>
+        <location filename="../ViewManager/ViewManager.py" line="1743"/>
         <source>Shift+Right</source>
         <translation>Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1757"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <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="1757"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Shift+Up</source>
         <translation>Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1772"/>
+        <location filename="../ViewManager/ViewManager.py" line="1773"/>
         <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="1772"/>
+        <location filename="../ViewManager/ViewManager.py" line="1773"/>
         <source>Shift+Down</source>
         <translation>Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1787"/>
+        <location filename="../ViewManager/ViewManager.py" line="1788"/>
         <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="1823"/>
+        <location filename="../ViewManager/ViewManager.py" line="1824"/>
         <source>Alt+Shift+Left</source>
         <translation>Alt+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1802"/>
         <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="2433"/>
+        <location filename="../ViewManager/ViewManager.py" line="2434"/>
         <source>Alt+Shift+Right</source>
         <translation>Alt+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1815"/>
+        <location filename="../ViewManager/ViewManager.py" line="1816"/>
         <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="2527"/>
+        <location filename="../ViewManager/ViewManager.py" line="2528"/>
         <source>Ctrl+Shift+Left</source>
         <translation>Ctrl+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1832"/>
+        <location filename="../ViewManager/ViewManager.py" line="1833"/>
         <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="2189"/>
+        <location filename="../ViewManager/ViewManager.py" line="2190"/>
         <source>Ctrl+Shift+Right</source>
         <translation>Ctrl+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1861"/>
+        <location filename="../ViewManager/ViewManager.py" line="1862"/>
         <source>Shift+Home</source>
         <translation>Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2293"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Alt+Shift+Home</source>
         <translation>Alt+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1878"/>
+        <location filename="../ViewManager/ViewManager.py" line="1879"/>
         <source>Shift+End</source>
         <translation>Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1884"/>
+        <location filename="../ViewManager/ViewManager.py" line="1885"/>
         <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="1884"/>
+        <location filename="../ViewManager/ViewManager.py" line="1885"/>
         <source>Alt+Shift+Up</source>
         <translation>Alt+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1897"/>
+        <location filename="../ViewManager/ViewManager.py" line="1898"/>
         <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="1897"/>
+        <location filename="../ViewManager/ViewManager.py" line="1898"/>
         <source>Alt+Shift+Down</source>
         <translation>Alt+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1910"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Extend selection up one page</source>
         <translation>Extender selección arriba una página</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1910"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Shift+PgUp</source>
         <translation>Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1922"/>
+        <location filename="../ViewManager/ViewManager.py" line="1923"/>
         <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="1922"/>
+        <location filename="../ViewManager/ViewManager.py" line="1923"/>
         <source>Shift+PgDown</source>
         <translation>Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1949"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Ctrl+Shift+Home</source>
         <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1966"/>
+        <location filename="../ViewManager/ViewManager.py" line="1967"/>
         <source>Ctrl+Shift+End</source>
         <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1972"/>
+        <location filename="../ViewManager/ViewManager.py" line="1973"/>
         <source>Delete previous character</source>
         <translation>Borrar carácter anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1972"/>
+        <location filename="../ViewManager/ViewManager.py" line="1973"/>
         <source>Backspace</source>
         <translation>Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1984"/>
+        <location filename="../ViewManager/ViewManager.py" line="1985"/>
         <source>Shift+Backspace</source>
         <translation>Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2003"/>
+        <location filename="../ViewManager/ViewManager.py" line="2004"/>
         <source>Delete current character</source>
         <translation>Borrar carácter actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2003"/>
+        <location filename="../ViewManager/ViewManager.py" line="2004"/>
         <source>Del</source>
         <translation>Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2017"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <source>Delete word to left</source>
         <translation>Borrar palabra a la izquierda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2017"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <source>Ctrl+Backspace</source>
         <translation>Ctrl+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2028"/>
+        <location filename="../ViewManager/ViewManager.py" line="2029"/>
         <source>Delete word to right</source>
         <translation>Borrar palabra a la derecha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2028"/>
+        <location filename="../ViewManager/ViewManager.py" line="2029"/>
         <source>Ctrl+Del</source>
         <translation>Ctrl+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2038"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Delete line to left</source>
         <translation>Borrar línea a la izquierda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2038"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation>Ctrl+Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2049"/>
+        <location filename="../ViewManager/ViewManager.py" line="2050"/>
         <source>Delete line to right</source>
         <translation>Borrar línea a la derecha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2058"/>
+        <location filename="../ViewManager/ViewManager.py" line="2059"/>
         <source>Ctrl+Shift+Del</source>
         <translation>Ctrl+Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Insert new line</source>
         <translation>Insertar nueva línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Return</source>
         <translation>Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Enter</source>
         <translation>Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Delete current line</source>
         <translation>Borrar línea actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Ctrl+Shift+L</source>
         <translation>Ctrl+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2098"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Duplicate current line</source>
         <translation>Duplicar línea actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2098"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Ctrl+D</source>
         <translation>Ctrl+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2109"/>
+        <location filename="../ViewManager/ViewManager.py" line="2110"/>
         <source>Swap current and previous lines</source>
         <translation>Intercambiar línea actual con la anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2109"/>
+        <location filename="../ViewManager/ViewManager.py" line="2110"/>
         <source>Ctrl+T</source>
         <translation>Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2132"/>
+        <location filename="../ViewManager/ViewManager.py" line="2133"/>
         <source>Cut current line</source>
         <translation>Cortar línea actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2132"/>
+        <location filename="../ViewManager/ViewManager.py" line="2133"/>
         <source>Alt+Shift+L</source>
         <translation>Alt+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2142"/>
+        <location filename="../ViewManager/ViewManager.py" line="2143"/>
         <source>Copy current line</source>
         <translation>Copiar línea actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2142"/>
+        <location filename="../ViewManager/ViewManager.py" line="2143"/>
         <source>Ctrl+Shift+T</source>
         <translation>Ctrl+Shift+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2153"/>
+        <location filename="../ViewManager/ViewManager.py" line="2154"/>
         <source>Toggle insert/overtype</source>
         <translation>Alternar insertar/sobreescribir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2153"/>
+        <location filename="../ViewManager/ViewManager.py" line="2154"/>
         <source>Ins</source>
         <translation>Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2717"/>
+        <location filename="../ViewManager/ViewManager.py" line="2718"/>
         <source>Convert selection to lower case</source>
         <translation>Convertir selección a minúsculas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2717"/>
+        <location filename="../ViewManager/ViewManager.py" line="2718"/>
         <source>Alt+Shift+U</source>
         <translation>Alt+Shift+U</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2729"/>
+        <location filename="../ViewManager/ViewManager.py" line="2730"/>
         <source>Convert selection to upper case</source>
         <translation>Convertir selección a mayúsculas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2729"/>
+        <location filename="../ViewManager/ViewManager.py" line="2730"/>
         <source>Ctrl+Shift+U</source>
         <translation>Ctrl+Shift+U</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2175"/>
+        <location filename="../ViewManager/ViewManager.py" line="2176"/>
         <source>Alt+End</source>
         <translation>Alt+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2195"/>
+        <location filename="../ViewManager/ViewManager.py" line="2196"/>
         <source>Formfeed</source>
         <translation>Formfeed</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2204"/>
+        <location filename="../ViewManager/ViewManager.py" line="2205"/>
         <source>Escape</source>
         <translation>Escape</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2204"/>
+        <location filename="../ViewManager/ViewManager.py" line="2205"/>
         <source>Esc</source>
         <translation>Esc</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2213"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <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="2213"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <source>Alt+Ctrl+Down</source>
         <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2229"/>
+        <location filename="../ViewManager/ViewManager.py" line="2230"/>
         <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="2229"/>
+        <location filename="../ViewManager/ViewManager.py" line="2230"/>
         <source>Alt+Ctrl+Up</source>
         <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2244"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <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="2244"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <source>Alt+Ctrl+Left</source>
         <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2262"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <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="2262"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Alt+Ctrl+Right</source>
         <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2318"/>
+        <location filename="../ViewManager/ViewManager.py" line="2319"/>
         <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="2333"/>
+        <location filename="../ViewManager/ViewManager.py" line="2334"/>
         <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="2351"/>
+        <location filename="../ViewManager/ViewManager.py" line="2352"/>
         <source>Duplicate current selection</source>
         <translation>Duplicar selección actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2351"/>
+        <location filename="../ViewManager/ViewManager.py" line="2352"/>
         <source>Ctrl+Shift+D</source>
         <translation>Ctrl+Shift+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3262"/>
+        <location filename="../ViewManager/ViewManager.py" line="3263"/>
         <source>&amp;Search</source>
         <translation>&amp;Buscar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2758"/>
+        <location filename="../ViewManager/ViewManager.py" line="2759"/>
         <source>&amp;Edit</source>
         <translation>&amp;Editar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2817"/>
+        <location filename="../ViewManager/ViewManager.py" line="2818"/>
         <source>Edit</source>
         <translation>Editar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3296"/>
+        <location filename="../ViewManager/ViewManager.py" line="3297"/>
         <source>Search</source>
         <translation>Buscar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2849"/>
+        <location filename="../ViewManager/ViewManager.py" line="2850"/>
         <source>&amp;Search...</source>
         <translation>&amp;Buscar...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2849"/>
+        <location filename="../ViewManager/ViewManager.py" line="2850"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation>Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2857"/>
+        <location filename="../ViewManager/ViewManager.py" line="2858"/>
         <source>Search for a text</source>
         <translation>Buscar un texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2859"/>
+        <location filename="../ViewManager/ViewManager.py" line="2860"/>
         <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="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>Search next</source>
         <translation>Buscar siguiente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>Search &amp;next</source>
         <translation>Buscar &amp;Siguiente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation>F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Search previous</source>
         <translation>Buscar anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Search &amp;previous</source>
         <translation>Buscar a&amp;nterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation>Shift+F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>Replace</source>
         <translation>Reemplazar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>&amp;Replace...</source>
         <translation>&amp;Reemplazar...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation>Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2982"/>
+        <location filename="../ViewManager/ViewManager.py" line="2983"/>
         <source>Replace some text</source>
         <translation>Reemplazar un texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2984"/>
+        <location filename="../ViewManager/ViewManager.py" line="2985"/>
         <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>
@@ -80372,629 +80382,629 @@
         <translation type="obsolete">&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="3070"/>
+        <location filename="../ViewManager/ViewManager.py" line="3071"/>
         <source>Goto Line</source>
         <translation>Ir a línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3062"/>
+        <location filename="../ViewManager/ViewManager.py" line="3063"/>
         <source>&amp;Goto Line...</source>
         <translation>&amp;Ir a Linea...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3062"/>
+        <location filename="../ViewManager/ViewManager.py" line="3063"/>
         <source>Ctrl+G</source>
         <comment>Search|Goto Line</comment>
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3072"/>
+        <location filename="../ViewManager/ViewManager.py" line="3073"/>
         <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="3089"/>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
         <source>Goto Brace</source>
         <translation>Ir a paréntesis</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3081"/>
+        <location filename="../ViewManager/ViewManager.py" line="3082"/>
         <source>Goto &amp;Brace</source>
         <translation>Ir al Parén&amp;tesis</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3081"/>
+        <location filename="../ViewManager/ViewManager.py" line="3082"/>
         <source>Ctrl+L</source>
         <comment>Search|Goto Brace</comment>
         <translation>Ctrl+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3091"/>
+        <location filename="../ViewManager/ViewManager.py" line="3092"/>
         <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="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Search in Files</source>
         <translation>Buscar en archivos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Search in &amp;Files...</source>
         <translation>Buscar en arc&amp;hivos...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation>Shift+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3177"/>
+        <location filename="../ViewManager/ViewManager.py" line="3178"/>
         <source>Search for a text in files</source>
         <translation>Buscar texto en archivos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3179"/>
+        <location filename="../ViewManager/ViewManager.py" line="3180"/>
         <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="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom in</source>
         <translation>Aumentar zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom &amp;in</source>
         <translation>A&amp;umentar Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3344"/>
-        <source>Zoom in on the text</source>
-        <translation>Zoom sobre el texto</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3346"/>
+        <source>Zoom in on the text</source>
+        <translation>Zoom sobre el texto</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3348"/>
         <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="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom out</source>
         <translation>Disminuir Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom &amp;out</source>
         <translation>Dismi&amp;nuir Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3363"/>
+        <location filename="../ViewManager/ViewManager.py" line="3365"/>
         <source>Zoom out on the text</source>
         <translation>Disminuir zoom en el texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3365"/>
+        <location filename="../ViewManager/ViewManager.py" line="3367"/>
         <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="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>Zoom</source>
         <translation>Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>&amp;Zoom</source>
         <translation>&amp;Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation>Ctrl+#</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3400"/>
-        <source>Zoom the text</source>
-        <translation>Zoom sobre el texto</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3402"/>
+        <source>Zoom the text</source>
+        <translation>Zoom sobre el texto</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3404"/>
         <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="3415"/>
-        <source>Toggle all folds</source>
-        <translation>Recoger/Desplegar los anidamientos</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3411"/>
-        <source>&amp;Toggle all folds</source>
-        <translation>Recoger/Desplegar los &amp;anidamientos</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3417"/>
+        <source>Toggle all folds</source>
+        <translation>Recoger/Desplegar los anidamientos</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3413"/>
+        <source>&amp;Toggle all folds</source>
+        <translation>Recoger/Desplegar los &amp;anidamientos</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3419"/>
         <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="3431"/>
-        <source>Toggle all folds (including children)</source>
-        <translation>Recoger/Desplegar todos los anidamientos (inc. hijos)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3425"/>
-        <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="3433"/>
+        <source>Toggle all folds (including children)</source>
+        <translation>Recoger/Desplegar todos los anidamientos (inc. hijos)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3427"/>
+        <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="3435"/>
         <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="3447"/>
-        <source>Toggle current fold</source>
-        <translation>Recoger/Desplegar el anidamiento actual</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3443"/>
-        <source>Toggle &amp;current fold</source>
-        <translation>Recoger/Desplega&amp;r el anidamiento actual</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3449"/>
+        <source>Toggle current fold</source>
+        <translation>Recoger/Desplegar el anidamiento actual</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3445"/>
+        <source>Toggle &amp;current fold</source>
+        <translation>Recoger/Desplega&amp;r el anidamiento actual</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3451"/>
         <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="3479"/>
-        <source>Remove all highlights</source>
-        <translation>Quitar todos los resaltes</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3481"/>
+        <source>Remove all highlights</source>
+        <translation>Quitar todos los resaltes</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3483"/>
         <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="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3529"/>
         <source>Split view</source>
         <translation>Dividir vista</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3529"/>
         <source>&amp;Split view</source>
         <translation>&amp;Dividir vista</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3532"/>
-        <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="3534"/>
+        <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="3536"/>
         <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="3542"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Arrange horizontally</source>
         <translation>Organizar horizontalmente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3542"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Arrange &amp;horizontally</source>
         <translation>Or&amp;ganizar horizontalmente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation>Organizar las vistas divididas horizontalmente</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3548"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation>Organizar las vistas divididas horizontalmente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3550"/>
         <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="3557"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>Remove split</source>
         <translation>Quitar división</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3557"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>&amp;Remove split</source>
         <translation>&amp;Quitar división</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3562"/>
-        <source>Remove the current split</source>
-        <translation>Eliminar división actual</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3564"/>
+        <source>Remove the current split</source>
+        <translation>Eliminar división actual</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3566"/>
         <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="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>Next split</source>
         <translation>Próxima división</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>&amp;Next split</source>
         <translation>Pró&amp;xima división</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation>Ctrl+Alt+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3579"/>
+        <location filename="../ViewManager/ViewManager.py" line="3581"/>
         <source>Move to the next split</source>
         <translation>Mover a la siguiente división</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3581"/>
+        <location filename="../ViewManager/ViewManager.py" line="3583"/>
         <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="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Previous split</source>
         <translation>División anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>&amp;Previous split</source>
         <translation>Divi&amp;sión anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation>Ctrl+Alt+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3595"/>
-        <source>Move to the previous split</source>
-        <translation>Mover a la división anterior</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3597"/>
+        <source>Move to the previous split</source>
+        <translation>Mover a la división anterior</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3599"/>
         <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="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3683"/>
         <source>&amp;View</source>
         <translation>&amp;Ver</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3718"/>
+        <location filename="../ViewManager/ViewManager.py" line="3720"/>
         <source>View</source>
         <translation>Ver</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3754"/>
-        <source>Start Macro Recording</source>
-        <translation>Comenzar grabación de macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3748"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation>Comenzar &amp;grabación de macro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3756"/>
+        <source>Start Macro Recording</source>
+        <translation>Comenzar grabación de macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3750"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation>Comenzar &amp;grabación de macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3758"/>
         <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="3768"/>
-        <source>Stop Macro Recording</source>
-        <translation>Detener Grabación de Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3764"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation>Detene&amp;r grabación de macro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3770"/>
+        <source>Stop Macro Recording</source>
+        <translation>Detener Grabación de Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3766"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation>Detene&amp;r grabación de macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3772"/>
         <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="3782"/>
-        <source>Run Macro</source>
-        <translation>Ejecutar macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3778"/>
-        <source>&amp;Run Macro</source>
-        <translation>Ejecuta&amp;r macro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3784"/>
+        <source>Run Macro</source>
+        <translation>Ejecutar macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3780"/>
+        <source>&amp;Run Macro</source>
+        <translation>Ejecuta&amp;r macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <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="3796"/>
-        <source>Delete Macro</source>
-        <translation>Borrar macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3792"/>
-        <source>&amp;Delete Macro</source>
-        <translation>&amp;Borrar macro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Delete Macro</source>
+        <translation>Borrar macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3794"/>
+        <source>&amp;Delete Macro</source>
+        <translation>&amp;Borrar macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3800"/>
         <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="3810"/>
-        <source>Load Macro</source>
-        <translation>Cargar macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3806"/>
-        <source>&amp;Load Macro</source>
-        <translation>&amp;Cargar macro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3812"/>
+        <source>Load Macro</source>
+        <translation>Cargar macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3808"/>
+        <source>&amp;Load Macro</source>
+        <translation>&amp;Cargar macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3814"/>
         <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="3824"/>
-        <source>Save Macro</source>
-        <translation>Guardar macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3820"/>
-        <source>&amp;Save Macro</source>
-        <translation>&amp;Guardar macro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3826"/>
+        <source>Save Macro</source>
+        <translation>Guardar macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
+        <source>&amp;Save Macro</source>
+        <translation>&amp;Guardar macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3828"/>
         <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="3842"/>
+        <location filename="../ViewManager/ViewManager.py" line="3844"/>
         <source>&amp;Macros</source>
         <translation>&amp;Macros</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3868"/>
+        <location filename="../ViewManager/ViewManager.py" line="3870"/>
         <source>Toggle Bookmark</source>
         <translation>Alternar Marcador</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3860"/>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
         <source>&amp;Toggle Bookmark</source>
         <translation>Al&amp;ternar marcador</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3860"/>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation>Alt+Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3870"/>
+        <location filename="../ViewManager/ViewManager.py" line="3872"/>
         <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="3887"/>
-        <source>Next Bookmark</source>
-        <translation>Siguiente marcador</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3879"/>
-        <source>&amp;Next Bookmark</source>
-        <translation>Siguie&amp;nte marcador</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3879"/>
-        <source>Ctrl+PgDown</source>
-        <comment>Bookmark|Next</comment>
-        <translation>Ctrl+PgDown</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3889"/>
+        <source>Next Bookmark</source>
+        <translation>Siguiente marcador</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3881"/>
+        <source>&amp;Next Bookmark</source>
+        <translation>Siguie&amp;nte marcador</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3881"/>
+        <source>Ctrl+PgDown</source>
+        <comment>Bookmark|Next</comment>
+        <translation>Ctrl+PgDown</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3891"/>
         <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="3905"/>
-        <source>Previous Bookmark</source>
-        <translation>Marcador anterior</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3897"/>
-        <source>&amp;Previous Bookmark</source>
-        <translation>Marcador an&amp;terior</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3897"/>
-        <source>Ctrl+PgUp</source>
-        <comment>Bookmark|Previous</comment>
-        <translation>Ctrl+PgUp</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3907"/>
+        <source>Previous Bookmark</source>
+        <translation>Marcador anterior</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3899"/>
+        <source>&amp;Previous Bookmark</source>
+        <translation>Marcador an&amp;terior</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3899"/>
+        <source>Ctrl+PgUp</source>
+        <comment>Bookmark|Previous</comment>
+        <translation>Ctrl+PgUp</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3909"/>
         <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="3922"/>
-        <source>Clear Bookmarks</source>
-        <translation>Borrar todos los marcadores</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3915"/>
-        <source>&amp;Clear Bookmarks</source>
-        <translation>Borrar todos los mar&amp;cadores</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3915"/>
-        <source>Alt+Ctrl+C</source>
-        <comment>Bookmark|Clear</comment>
-        <translation>Alt+Ctrl+C</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3924"/>
+        <source>Clear Bookmarks</source>
+        <translation>Borrar todos los marcadores</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
+        <source>&amp;Clear Bookmarks</source>
+        <translation>Borrar todos los mar&amp;cadores</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
+        <source>Alt+Ctrl+C</source>
+        <comment>Bookmark|Clear</comment>
+        <translation>Alt+Ctrl+C</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3926"/>
         <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="3938"/>
-        <source>Goto Syntax Error</source>
-        <translation>Ir al error de sintaxis</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3932"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation>&amp;Ir al error de sintaxis</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3940"/>
+        <source>Goto Syntax Error</source>
+        <translation>Ir al error de sintaxis</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3934"/>
+        <source>&amp;Goto Syntax Error</source>
+        <translation>&amp;Ir al error de sintaxis</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3942"/>
         <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="3953"/>
-        <source>Clear Syntax Errors</source>
-        <translation>Borrar Errores de Sintaxis</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3948"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation>Borrar Errores de &amp;Sintaxis</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3955"/>
+        <source>Clear Syntax Errors</source>
+        <translation>Borrar Errores de Sintaxis</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3950"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation>Borrar Errores de &amp;Sintaxis</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3957"/>
         <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="4023"/>
-        <source>Next uncovered line</source>
-        <translation>Siguiente línea sin cobertura</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4017"/>
-        <source>&amp;Next uncovered line</source>
-        <translation>Siguie&amp;nte línea sin cobertura</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4025"/>
+        <source>Next uncovered line</source>
+        <translation>Siguiente línea sin cobertura</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4019"/>
+        <source>&amp;Next uncovered line</source>
+        <translation>Siguie&amp;nte línea sin cobertura</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4027"/>
         <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="4042"/>
-        <source>Previous uncovered line</source>
-        <translation>Anterior línea sin cobertura</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4034"/>
-        <source>&amp;Previous uncovered line</source>
-        <translation>Anteri&amp;or línea sin cobertura</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4044"/>
+        <source>Previous uncovered line</source>
+        <translation>Anterior línea sin cobertura</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
+        <source>&amp;Previous uncovered line</source>
+        <translation>Anteri&amp;or línea sin cobertura</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4046"/>
         <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="4060"/>
-        <source>Next Task</source>
-        <translation>Siguiente Tarea</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4054"/>
-        <source>&amp;Next Task</source>
-        <translation>Siguie&amp;nte Tarea</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4062"/>
+        <source>Next Task</source>
+        <translation>Siguiente Tarea</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4056"/>
+        <source>&amp;Next Task</source>
+        <translation>Siguie&amp;nte Tarea</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4064"/>
         <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="4077"/>
-        <source>Previous Task</source>
-        <translation>Tarea anterior</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4070"/>
-        <source>&amp;Previous Task</source>
-        <translation>Tarea anteri&amp;or</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4079"/>
+        <source>Previous Task</source>
+        <translation>Tarea anterior</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4072"/>
+        <source>&amp;Previous Task</source>
+        <translation>Tarea anteri&amp;or</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4081"/>
         <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="4133"/>
+        <location filename="../ViewManager/ViewManager.py" line="4135"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Marcadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4179"/>
+        <location filename="../ViewManager/ViewManager.py" line="4181"/>
         <source>Bookmarks</source>
         <translation>Marcadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4333"/>
         <source>Open files</source>
         <translation>Abrir Archivos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4377"/>
         <source>File Modified</source>
         <translation>Archivo Modificado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5219"/>
+        <location filename="../ViewManager/ViewManager.py" line="5221"/>
         <source>&amp;Clear</source>
         <translation>&amp;Limpiar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5213"/>
+        <location filename="../ViewManager/ViewManager.py" line="5215"/>
         <source>&amp;Add</source>
         <translation>&amp;Agregar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5216"/>
+        <location filename="../ViewManager/ViewManager.py" line="5218"/>
         <source>&amp;Edit...</source>
         <translation>&amp;Editar...</translation>
     </message>
@@ -81004,43 +81014,43 @@
         <translation type="obsolete">Editor de texto de Búsqueda Rápida</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2910"/>
+        <location filename="../ViewManager/ViewManager.py" line="2911"/>
         <source>Clear search markers</source>
         <translation>Limpiar marcadores de búsqueda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2910"/>
+        <location filename="../ViewManager/ViewManager.py" line="2911"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation>Ctrl+3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Clear all displayed search markers</source>
         <translation>Limpiar todos los marcadores de texto mostrados</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2920"/>
+        <location filename="../ViewManager/ViewManager.py" line="2921"/>
         <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="2878"/>
+        <location filename="../ViewManager/ViewManager.py" line="2879"/>
         <source>Search next occurrence of text</source>
         <translation>Buscar siguiente ocurrencia del texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2880"/>
+        <location filename="../ViewManager/ViewManager.py" line="2881"/>
         <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="2898"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>Search previous occurrence of text</source>
         <translation>Buscar anterior ocurrencia del texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2900"/>
+        <location filename="../ViewManager/ViewManager.py" line="2901"/>
         <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>
@@ -81060,1047 +81070,1047 @@
         <translation type="obsolete">&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="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>Calltip</source>
         <translation>Consejo de llamada (calltip)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>&amp;Calltip</source>
         <translation>&amp;Consejo de llamada (calltip)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1370"/>
+        <location filename="../ViewManager/ViewManager.py" line="1371"/>
         <source>Show Calltips</source>
         <translation>Mostrar Consejos de llamada (calltips)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1372"/>
+        <location filename="../ViewManager/ViewManager.py" line="1373"/>
         <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="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="749"/>
         <source>Print Preview</source>
         <translation>Presentación preliminar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="753"/>
+        <location filename="../ViewManager/ViewManager.py" line="754"/>
         <source>Print preview of the current file</source>
         <translation>Presentación preliminar del archivo actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="755"/>
+        <location filename="../ViewManager/ViewManager.py" line="756"/>
         <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="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <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="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <source>Shift+Return</source>
         <translation>Shift+Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <source>Shift+Enter</source>
         <translation>Shift+Entrar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Replace in Files</source>
         <translation>Reemplazar en Archivos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Replace in F&amp;iles...</source>
         <translation>Reemplazar en Arch&amp;ivos...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation>Shift+Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3196"/>
+        <location filename="../ViewManager/ViewManager.py" line="3197"/>
         <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="3198"/>
+        <location filename="../ViewManager/ViewManager.py" line="3199"/>
         <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="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4221"/>
+        <location filename="../ViewManager/ViewManager.py" line="4223"/>
         <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="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>Automatic spell checking</source>
         <translation>Corrección ortográfica automática</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>&amp;Automatic spell checking</source>
         <translation>Corrección ortográfica &amp;automática</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4239"/>
-        <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="4241"/>
+        <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="4243"/>
         <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="4308"/>
+        <location filename="../ViewManager/ViewManager.py" line="4310"/>
         <source>Spelling</source>
         <translation>Corrección ortográfica</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4377"/>
         <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="4774"/>
+        <location filename="../ViewManager/ViewManager.py" line="4776"/>
         <source>Line: {0:5}</source>
         <translation>Línea: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4780"/>
+        <location filename="../ViewManager/ViewManager.py" line="4782"/>
         <source>Pos: {0:5}</source>
         <translation>Pos: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3970"/>
+        <location filename="../ViewManager/ViewManager.py" line="3972"/>
         <source>Next warning message</source>
         <translation>Siguiente mensaje de advertencia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3964"/>
+        <location filename="../ViewManager/ViewManager.py" line="3966"/>
         <source>&amp;Next warning message</source>
         <translation>Siguie&amp;nte mensaje de advertencia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3989"/>
+        <location filename="../ViewManager/ViewManager.py" line="3991"/>
         <source>Previous warning message</source>
         <translation>Mensaje de advertencia anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3981"/>
+        <location filename="../ViewManager/ViewManager.py" line="3983"/>
         <source>&amp;Previous warning message</source>
         <translation>&amp;Mensaje de advertencia anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4007"/>
+        <location filename="../ViewManager/ViewManager.py" line="4009"/>
         <source>Clear Warning Messages</source>
         <translation>Limpiar Mensajes de Advertencia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4000"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>&amp;Limpiar Mensajes de Advertencia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1031"/>
+        <location filename="../ViewManager/ViewManager.py" line="1032"/>
         <source>Join Lines</source>
         <translation>Unir Líneas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1024"/>
+        <location filename="../ViewManager/ViewManager.py" line="1025"/>
         <source>Ctrl+J</source>
         <comment>Edit|Join Lines</comment>
         <translation>Ctrl+J</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1033"/>
+        <location filename="../ViewManager/ViewManager.py" line="1034"/>
         <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="3110"/>
+        <location filename="../ViewManager/ViewManager.py" line="3111"/>
         <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="3099"/>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <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="3099"/>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <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="3113"/>
+        <location filename="../ViewManager/ViewManager.py" line="3114"/>
         <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="3122"/>
+        <location filename="../ViewManager/ViewManager.py" line="3123"/>
         <source>Goto Previous Method or Class</source>
         <translation>Ir al Anterior Método o Clase</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3122"/>
+        <location filename="../ViewManager/ViewManager.py" line="3123"/>
         <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="3132"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <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="3136"/>
+        <location filename="../ViewManager/ViewManager.py" line="3137"/>
         <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="3146"/>
+        <location filename="../ViewManager/ViewManager.py" line="3147"/>
         <source>Goto Next Method or Class</source>
         <translation>Ir al Siguiente Método o Clase</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3146"/>
+        <location filename="../ViewManager/ViewManager.py" line="3147"/>
         <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="3156"/>
+        <location filename="../ViewManager/ViewManager.py" line="3157"/>
         <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="3158"/>
+        <location filename="../ViewManager/ViewManager.py" line="3159"/>
         <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="3605"/>
+        <location filename="../ViewManager/ViewManager.py" line="3607"/>
         <source>Preview</source>
         <translation>Vista Previa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3610"/>
-        <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="3612"/>
+        <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="3614"/>
         <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="1461"/>
+        <location filename="../ViewManager/ViewManager.py" line="1462"/>
         <source>Meta+B</source>
         <translation>Meta+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1474"/>
+        <location filename="../ViewManager/ViewManager.py" line="1475"/>
         <source>Meta+F</source>
         <translation>Meta+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1486"/>
+        <location filename="../ViewManager/ViewManager.py" line="1487"/>
         <source>Meta+P</source>
         <translation>Meta+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1498"/>
+        <location filename="../ViewManager/ViewManager.py" line="1499"/>
         <source>Meta+N</source>
         <translation>Meta+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1559"/>
+        <location filename="../ViewManager/ViewManager.py" line="1560"/>
         <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="1575"/>
+        <location filename="../ViewManager/ViewManager.py" line="1576"/>
         <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="1592"/>
+        <location filename="../ViewManager/ViewManager.py" line="1593"/>
         <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="1600"/>
+        <location filename="../ViewManager/ViewManager.py" line="1601"/>
         <source>Meta+E</source>
         <translation>Meta+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1668"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Meta+V</source>
         <translation>Meta+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1674"/>
+        <location filename="../ViewManager/ViewManager.py" line="1675"/>
         <source>Move to start of document</source>
         <translation>Mover al principio del documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1692"/>
         <source>Move to end of document</source>
         <translation>Mover al final del documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1737"/>
         <source>Meta+Shift+B</source>
         <translation>Meta+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1751"/>
+        <location filename="../ViewManager/ViewManager.py" line="1752"/>
         <source>Meta+Shift+F</source>
         <translation>Meta+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1766"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Meta+Shift+P</source>
         <translation>Meta+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1781"/>
+        <location filename="../ViewManager/ViewManager.py" line="1782"/>
         <source>Meta+Shift+N</source>
         <translation>Meta+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1849"/>
+        <location filename="../ViewManager/ViewManager.py" line="1850"/>
         <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="1867"/>
+        <location filename="../ViewManager/ViewManager.py" line="1868"/>
         <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="1875"/>
+        <location filename="../ViewManager/ViewManager.py" line="1876"/>
         <source>Meta+Shift+E</source>
         <translation>Meta+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1932"/>
+        <location filename="../ViewManager/ViewManager.py" line="1933"/>
         <source>Meta+Shift+V</source>
         <translation>Meta+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1939"/>
         <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="1946"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Ctrl+Shift+Up</source>
         <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1955"/>
+        <location filename="../ViewManager/ViewManager.py" line="1956"/>
         <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="1963"/>
+        <location filename="../ViewManager/ViewManager.py" line="1964"/>
         <source>Ctrl+Shift+Down</source>
         <translation>Ctrl+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1981"/>
+        <location filename="../ViewManager/ViewManager.py" line="1982"/>
         <source>Meta+H</source>
         <translation>Meta+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1990"/>
+        <location filename="../ViewManager/ViewManager.py" line="1991"/>
         <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="2011"/>
+        <location filename="../ViewManager/ViewManager.py" line="2012"/>
         <source>Meta+D</source>
         <translation>Meta+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2055"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Meta+K</source>
         <translation>Meta+K</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2164"/>
+        <location filename="../ViewManager/ViewManager.py" line="2165"/>
         <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="2181"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <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="2223"/>
+        <location filename="../ViewManager/ViewManager.py" line="2224"/>
         <source>Meta+Alt+Shift+N</source>
         <translation>Meta+Alt+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2238"/>
+        <location filename="../ViewManager/ViewManager.py" line="2239"/>
         <source>Meta+Alt+Shift+P</source>
         <translation>Meta+Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2256"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <source>Meta+Alt+Shift+B</source>
         <translation>Meta+Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2275"/>
         <source>Meta+Alt+Shift+F</source>
         <translation>Meta+Alt+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2280"/>
+        <location filename="../ViewManager/ViewManager.py" line="2281"/>
         <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="2299"/>
+        <location filename="../ViewManager/ViewManager.py" line="2300"/>
         <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="2309"/>
+        <location filename="../ViewManager/ViewManager.py" line="2310"/>
         <source>Meta+Alt+Shift+E</source>
         <translation>Meta+Alt+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2312"/>
+        <location filename="../ViewManager/ViewManager.py" line="2313"/>
         <source>Alt+Shift+End</source>
         <translation>Alt+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2333"/>
+        <location filename="../ViewManager/ViewManager.py" line="2334"/>
         <source>Alt+Shift+PgDown</source>
         <translation>Alt+Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2345"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <source>Meta+Alt+Shift+V</source>
         <translation>Meta+Alt+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2365"/>
+        <location filename="../ViewManager/ViewManager.py" line="2366"/>
         <source>Scroll to start of document</source>
         <translation>Desplazamiento hasta el principio del documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2380"/>
+        <location filename="../ViewManager/ViewManager.py" line="2381"/>
         <source>Scroll to end of document</source>
         <translation>Desplazamiento hasta el final del documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2395"/>
+        <location filename="../ViewManager/ViewManager.py" line="2396"/>
         <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="2403"/>
+        <location filename="../ViewManager/ViewManager.py" line="2404"/>
         <source>Meta+L</source>
         <translation>Meta+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2410"/>
+        <location filename="../ViewManager/ViewManager.py" line="2411"/>
         <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="2425"/>
+        <location filename="../ViewManager/ViewManager.py" line="2426"/>
         <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="2441"/>
+        <location filename="../ViewManager/ViewManager.py" line="2442"/>
         <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="2453"/>
+        <location filename="../ViewManager/ViewManager.py" line="2454"/>
         <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="2465"/>
+        <location filename="../ViewManager/ViewManager.py" line="2466"/>
         <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="2473"/>
+        <location filename="../ViewManager/ViewManager.py" line="2474"/>
         <source>Meta+A</source>
         <translation>Meta+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2480"/>
+        <location filename="../ViewManager/ViewManager.py" line="2481"/>
         <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="2491"/>
+        <location filename="../ViewManager/ViewManager.py" line="2492"/>
         <source>Meta+Shift+A</source>
         <translation>/media/110106_1117</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2498"/>
+        <location filename="../ViewManager/ViewManager.py" line="2499"/>
         <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="2508"/>
+        <location filename="../ViewManager/ViewManager.py" line="2509"/>
         <source>Meta+Alt+Shift+A</source>
         <translation>Meta+Alt+Shift+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2516"/>
+        <location filename="../ViewManager/ViewManager.py" line="2517"/>
         <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="2535"/>
+        <location filename="../ViewManager/ViewManager.py" line="2536"/>
         <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="2549"/>
+        <location filename="../ViewManager/ViewManager.py" line="2550"/>
         <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="2564"/>
+        <location filename="../ViewManager/ViewManager.py" line="2565"/>
         <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="2581"/>
+        <location filename="../ViewManager/ViewManager.py" line="2582"/>
         <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="2598"/>
+        <location filename="../ViewManager/ViewManager.py" line="2599"/>
         <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="2612"/>
+        <location filename="../ViewManager/ViewManager.py" line="2613"/>
         <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="2627"/>
+        <location filename="../ViewManager/ViewManager.py" line="2628"/>
         <source>Stuttered move up one page</source>
         <translation>Mover progresivamente hacia arriba una página</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2639"/>
+        <location filename="../ViewManager/ViewManager.py" line="2640"/>
         <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="2652"/>
+        <location filename="../ViewManager/ViewManager.py" line="2653"/>
         <source>Stuttered move down one page</source>
         <translation>Mover progresivamente hacia abajo una página</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2664"/>
+        <location filename="../ViewManager/ViewManager.py" line="2665"/>
         <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="2677"/>
+        <location filename="../ViewManager/ViewManager.py" line="2678"/>
         <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="2685"/>
+        <location filename="../ViewManager/ViewManager.py" line="2686"/>
         <source>Alt+Del</source>
         <translation>Alt+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2692"/>
+        <location filename="../ViewManager/ViewManager.py" line="2693"/>
         <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="2704"/>
+        <location filename="../ViewManager/ViewManager.py" line="2705"/>
         <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="2318"/>
+        <location filename="../ViewManager/ViewManager.py" line="2319"/>
         <source>Alt+Shift+PgUp</source>
         <translation>Alt+Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1134"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Toggle Comment</source>
         <translation>Alternar Comentario</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1134"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Ctrl+Shift+M</source>
         <comment>Edit|Toggle Comment</comment>
         <translation>Ctrl+Shift+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1142"/>
+        <location filename="../ViewManager/ViewManager.py" line="1143"/>
         <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="1146"/>
+        <location filename="../ViewManager/ViewManager.py" line="1147"/>
         <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="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Zoom reset</source>
         <translation>Restablecer zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Zoom &amp;reset</source>
         <translation>&amp;Restablecer zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3381"/>
-        <source>Reset the zoom of the text</source>
-        <translation>Restablecer el zoom aplicado al texto</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3383"/>
+        <source>Reset the zoom of the text</source>
+        <translation>Restablecer el zoom aplicado al texto</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3385"/>
         <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="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation>Aumentar Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation>Disminuir Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="714"/>
         <source>Save a&amp;ll</source>
         <translation>Guardar a&amp;ll</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4094"/>
-        <source>Next Change</source>
-        <translation>Siguiente Cambio</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4088"/>
-        <source>&amp;Next Change</source>
-        <translation>Siguie&amp;nte Cambio</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4096"/>
+        <source>Next Change</source>
+        <translation>Siguiente Cambio</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4090"/>
+        <source>&amp;Next Change</source>
+        <translation>Siguie&amp;nte Cambio</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <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="4112"/>
-        <source>Previous Change</source>
-        <translation>Cambio Anterior</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4105"/>
-        <source>&amp;Previous Change</source>
-        <translation>Cambio &amp;Anterior</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4114"/>
+        <source>Previous Change</source>
+        <translation>Cambio Anterior</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4107"/>
+        <source>&amp;Previous Change</source>
+        <translation>Cambio &amp;Anterior</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4116"/>
         <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="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Check spelling</source>
         <translation>Corrección ortográfica</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Check &amp;spelling...</source>
         <translation>Corrección &amp;ortográfica...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4223"/>
+        <location filename="../ViewManager/ViewManager.py" line="4225"/>
         <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="4272"/>
-        <source>Edit Dictionary</source>
-        <translation>Editar Diccionario</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4274"/>
+        <source>Edit Dictionary</source>
+        <translation>Editar Diccionario</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4276"/>
         <source>Project Word List</source>
         <translation>Lista de Palabras del Proyecto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4277"/>
+        <location filename="../ViewManager/ViewManager.py" line="4279"/>
         <source>Project Exception List</source>
         <translation>Lista de Excepciones del Proyecto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4282"/>
+        <location filename="../ViewManager/ViewManager.py" line="4284"/>
         <source>User Word List</source>
         <translation>Lista de Palabras del Usuario</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4285"/>
+        <location filename="../ViewManager/ViewManager.py" line="4287"/>
         <source>User Exception List</source>
         <translation>Lista de Excepciones del Usuario</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6255"/>
+        <location filename="../ViewManager/ViewManager.py" line="6257"/>
         <source>Edit Spelling Dictionary</source>
         <translation>Editar Diccionario Ortográfico</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6232"/>
+        <location filename="../ViewManager/ViewManager.py" line="6234"/>
         <source>Editing {0}</source>
         <translation>Editando {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6214"/>
+        <location filename="../ViewManager/ViewManager.py" line="6216"/>
         <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="6243"/>
+        <location filename="../ViewManager/ViewManager.py" line="6245"/>
         <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="6255"/>
+        <location filename="../ViewManager/ViewManager.py" line="6257"/>
         <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="2929"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>Search current word forward</source>
         <translation>Buscar palabra actual hacia adelante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2929"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation>Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2940"/>
+        <location filename="../ViewManager/ViewManager.py" line="2941"/>
         <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="2943"/>
+        <location filename="../ViewManager/ViewManager.py" line="2944"/>
         <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="2952"/>
+        <location filename="../ViewManager/ViewManager.py" line="2953"/>
         <source>Search current word backward</source>
         <translation>Buscar palabra actual hacia atrás</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2952"/>
+        <location filename="../ViewManager/ViewManager.py" line="2953"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation>Ctrl+,</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2963"/>
+        <location filename="../ViewManager/ViewManager.py" line="2964"/>
         <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="2966"/>
+        <location filename="../ViewManager/ViewManager.py" line="2967"/>
         <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="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <source>Search in Open Files</source>
         <translation>Buscar en los Archivos Abiertos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <source>Search in Open Files...</source>
         <translation>Buscar en los Archivos Abiertos...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <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="3220"/>
+        <location filename="../ViewManager/ViewManager.py" line="3221"/>
         <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="3222"/>
+        <location filename="../ViewManager/ViewManager.py" line="3223"/>
         <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="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <source>Replace in Open Files</source>
         <translation>Reemplazar en los Archivos Abiertos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <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="3242"/>
+        <location filename="../ViewManager/ViewManager.py" line="3243"/>
         <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="3244"/>
+        <location filename="../ViewManager/ViewManager.py" line="3245"/>
         <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="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <source>Replace in Open Files...</source>
         <translation>Reemplazar en los Archivos Abiertos...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1399"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Sort</source>
         <translation>Ordenar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1399"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Ctrl+Alt+S</source>
         <comment>Edit|Sort</comment>
         <translation>Ctrl+Alt+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1406"/>
+        <location filename="../ViewManager/ViewManager.py" line="1407"/>
         <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="1409"/>
+        <location filename="../ViewManager/ViewManager.py" line="1410"/>
         <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="4801"/>
+        <location filename="../ViewManager/ViewManager.py" line="4803"/>
         <source>Language: {0}</source>
         <translation>Lenguaje: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4808"/>
+        <location filename="../ViewManager/ViewManager.py" line="4810"/>
         <source>EOL Mode: {0}</source>
         <translation>Modo de EOL: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3491"/>
         <source>New Document View</source>
         <translation>Nueva Vista de Documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3491"/>
         <source>New &amp;Document View</source>
         <translation>Nueva Vista de &amp;Documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3494"/>
-        <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="3496"/>
+        <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="3498"/>
         <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="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3508"/>
         <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="3513"/>
+        <location filename="../ViewManager/ViewManager.py" line="3515"/>
         <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="3516"/>
+        <location filename="../ViewManager/ViewManager.py" line="3518"/>
         <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="3972"/>
+        <location filename="../ViewManager/ViewManager.py" line="3974"/>
         <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="3991"/>
+        <location filename="../ViewManager/ViewManager.py" line="3993"/>
         <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="4009"/>
+        <location filename="../ViewManager/ViewManager.py" line="4011"/>
         <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="2748"/>
+        <location filename="../ViewManager/ViewManager.py" line="2749"/>
         <source>Complete</source>
         <translation>Completar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1277"/>
         <source>&amp;Complete</source>
         <translation>&amp;Completar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1277"/>
         <source>Ctrl+Space</source>
         <comment>Edit|Complete</comment>
         <translation>Ctrl+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1283"/>
+        <location filename="../ViewManager/ViewManager.py" line="1284"/>
         <source>Complete current word</source>
         <translation>Completar la palabra actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1285"/>
+        <location filename="../ViewManager/ViewManager.py" line="1286"/>
         <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="1294"/>
+        <location filename="../ViewManager/ViewManager.py" line="1295"/>
         <source>Complete from Document</source>
         <translation>Completar desde documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1294"/>
+        <location filename="../ViewManager/ViewManager.py" line="1295"/>
         <source>Ctrl+Shift+Space</source>
         <comment>Edit|Complete from Document</comment>
         <translation>Ctrl+Shift+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1304"/>
+        <location filename="../ViewManager/ViewManager.py" line="1305"/>
         <source>Complete current word from Document</source>
         <translation>Completar palabra actual desde Documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1307"/>
+        <location filename="../ViewManager/ViewManager.py" line="1308"/>
         <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="1317"/>
+        <location filename="../ViewManager/ViewManager.py" line="1318"/>
         <source>Complete from APIs</source>
         <translation>Completar desde APIs</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1317"/>
+        <location filename="../ViewManager/ViewManager.py" line="1318"/>
         <source>Ctrl+Alt+Space</source>
         <comment>Edit|Complete from APIs</comment>
         <translation>Ctrl+Alt+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1328"/>
         <source>Complete current word from APIs</source>
         <translation>Completar palabra actual desde APIs</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1330"/>
+        <location filename="../ViewManager/ViewManager.py" line="1331"/>
         <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="1340"/>
+        <location filename="../ViewManager/ViewManager.py" line="1341"/>
         <source>Complete from Document and APIs</source>
         <translation>Completar desde Documento y de APIs</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1340"/>
+        <location filename="../ViewManager/ViewManager.py" line="1341"/>
         <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="1350"/>
+        <location filename="../ViewManager/ViewManager.py" line="1351"/>
         <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="1353"/>
+        <location filename="../ViewManager/ViewManager.py" line="1354"/>
         <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="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>Meta+Alt+Space</source>
         <comment>Edit|Calltip</comment>
         <translation>Meta+Alt+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="697"/>
+        <location filename="../ViewManager/ViewManager.py" line="698"/>
         <source>Save Copy</source>
         <translation>Guardar Copia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="697"/>
+        <location filename="../ViewManager/ViewManager.py" line="698"/>
         <source>Save &amp;Copy...</source>
         <translation>Guardar &amp;Copia...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="702"/>
+        <location filename="../ViewManager/ViewManager.py" line="703"/>
         <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="704"/>
+        <location filename="../ViewManager/ViewManager.py" line="705"/>
         <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>
@@ -82111,141 +82121,141 @@
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2995"/>
         <source>Replace and Search</source>
         <translation>Buscar y Reemplazar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2995"/>
         <source>Meta+R</source>
         <comment>Search|Replace and Search</comment>
         <translation>Meta+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3004"/>
+        <location filename="../ViewManager/ViewManager.py" line="3005"/>
         <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="3007"/>
+        <location filename="../ViewManager/ViewManager.py" line="3008"/>
         <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="3018"/>
+        <location filename="../ViewManager/ViewManager.py" line="3019"/>
         <source>Replace Occurrence</source>
         <translation>Reemplazar Ocurrencia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3018"/>
+        <location filename="../ViewManager/ViewManager.py" line="3019"/>
         <source>Ctrl+Meta+R</source>
         <comment>Search|Replace Occurrence</comment>
         <translation>Ctrl+Meta+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3028"/>
+        <location filename="../ViewManager/ViewManager.py" line="3029"/>
         <source>Replace the found text</source>
         <translation>Reemplazar el texto encontrado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3030"/>
+        <location filename="../ViewManager/ViewManager.py" line="3031"/>
         <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="3040"/>
+        <location filename="../ViewManager/ViewManager.py" line="3041"/>
         <source>Replace All</source>
         <translation>Reemplazar Todo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3040"/>
+        <location filename="../ViewManager/ViewManager.py" line="3041"/>
         <source>Shift+Meta+R</source>
         <comment>Search|Replace All</comment>
         <translation>Shift+Meta+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3050"/>
+        <location filename="../ViewManager/ViewManager.py" line="3051"/>
         <source>Replace search text occurrences</source>
         <translation>Reemplazar ocurrencias de texto de búsqueda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3052"/>
+        <location filename="../ViewManager/ViewManager.py" line="3053"/>
         <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="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1382"/>
         <source>Code Info</source>
         <translation>Info del Código</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1382"/>
         <source>Ctrl+Alt+I</source>
         <comment>Edit|Code Info</comment>
         <translation>Ctrl+Alt+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1389"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Show Code Info</source>
         <translation>Mostrar Info del Código</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1392"/>
         <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="3462"/>
-        <source>Clear all folds</source>
-        <translation>Limpiar todos los anidamientos</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3458"/>
-        <source>Clear &amp;all folds</source>
-        <translation>Limpiar todos los anid&amp;amientos</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3464"/>
+        <source>Clear all folds</source>
+        <translation>Limpiar todos los anidamientos</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3460"/>
+        <source>Clear &amp;all folds</source>
+        <translation>Limpiar todos los anid&amp;amientos</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3466"/>
         <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="2120"/>
+        <location filename="../ViewManager/ViewManager.py" line="2121"/>
         <source>Reverse selected lines</source>
         <translation>Revertir líneas seleccionadas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2120"/>
+        <location filename="../ViewManager/ViewManager.py" line="2121"/>
         <source>Meta+Alt+R</source>
         <translation>Meta+Alt+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3622"/>
+        <location filename="../ViewManager/ViewManager.py" line="3624"/>
         <source>Python AST Viewer</source>
         <translation>Visor AST de Python</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3627"/>
-        <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="3629"/>
+        <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="3631"/>
         <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="3639"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>Python Disassembly Viewer</source>
         <translation>Visor de Desensamblado Python</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3646"/>
-        <source>Show the Disassembly for the current Python file</source>
-        <translation>Mostrar el desensamblado para el archivo Python actual</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3648"/>
+        <source>Show the Disassembly for the current Python file</source>
+        <translation>Mostrar el desensamblado para el archivo Python actual</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3650"/>
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Visor Desensamblado Python&lt;/b&gt;&lt;p&gt;Abre una vista de árbol del desensamblado del archivo actual de código Python.&lt;/p&gt;</translation>
     </message>
@@ -82265,23 +82275,23 @@
         <translation>&lt;b&gt;Buscar anterior&lt;/b&gt;&lt;p&gt;Buscar la anterior ocurrencia de un texto en la ventana de shell. Se reusan el texto y las opciones introducidos previamente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1418"/>
+        <location filename="../ViewManager/ViewManager.py" line="1419"/>
         <source>Generate Docstring</source>
         <translation>Generar Docstring</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1418"/>
+        <location filename="../ViewManager/ViewManager.py" line="1419"/>
         <source>Ctrl+Alt+D</source>
         <comment>Edit|Generate Docstring</comment>
         <translation>Ctrl+Alt+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1425"/>
+        <location filename="../ViewManager/ViewManager.py" line="1426"/>
         <source>Generate a docstring for the current function/method</source>
         <translation>Generar una cadena Docstring para la función/método actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1428"/>
+        <location filename="../ViewManager/ViewManager.py" line="1429"/>
         <source>&lt;b&gt;Generate Docstring&lt;/b&gt;&lt;p&gt;Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Generar Docstring&lt;/b&gt;&lt;p&gt;Generar una cadena docstring para la función/método actual si el cursor está posicionado en una línea de inicio de definición de función o en líneas posteriores. La docstring se inserta en la posición adecuada y el cursor se posiciona al final de la línea de descripción.&lt;/p&gt;</translation>
     </message>
@@ -82763,32 +82773,32 @@
         <translation>Actualizar</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="342"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="346"/>
         <source>&lt;virtualenv did not finish within 5s.&gt;</source>
         <translation>&lt;virtualenv no ha terminado en 5s.&gt;</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="360"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="364"/>
         <source>&lt;No suitable virtualenv found.&gt;</source>
         <translation>&lt;No se ha encontrado un virtualenv adecuado.&gt;</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="362"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="366"/>
         <source>virtualenv Version: {0}</source>
         <translation>Versión de virtualenv : {0}</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="396"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="400"/>
         <source>&lt;pyvenv did not finish within 5s.&gt;</source>
         <translation>&lt;pyvenv no ha terminado en 5s.&gt;</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="416"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="420"/>
         <source>&lt;No suitable pyvenv found.&gt;</source>
         <translation>&lt;No se ha encontrado un pyvenv adecuado.&gt;</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="418"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="422"/>
         <source>pyvenv Version: {0}</source>
         <translation>Versión de pyvenv : {0}</translation>
     </message>
@@ -82923,7 +82933,7 @@
         <translation>Archivos de Texto (*.txt);;Todos los Archivos (*)</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="430"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="434"/>
         <source>conda Version: {0}</source>
         <translation>Versión de conda: {0}</translation>
     </message>
@@ -82946,14 +82956,14 @@
         <translation>Errores</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="110"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="112"/>
         <source>Executing: {0}
 </source>
         <translation>Ejecutando: {0}
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="154"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="163"/>
         <source>Failed
 
 </source>
@@ -82962,7 +82972,7 @@
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="166"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="175"/>
         <source>
 virtualenv finished.
 </source>
@@ -82971,14 +82981,14 @@
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="195"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="204"/>
         <source>No suitable virtualenv program could be started.
 </source>
         <translation>No se ha podido iniciar un programa para virtualenv adecuado.
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="259"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="268"/>
         <source>
 Writing log file &apos;{0}&apos;.
 </source>
@@ -82987,21 +82997,21 @@
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="264"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="273"/>
         <source>Output:
 </source>
         <translation>Salida:
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="269"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="278"/>
         <source>Errors:
 </source>
         <translation>Errores:
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="272"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="281"/>
         <source>The logfile &apos;{0}&apos; could not be written.
 Reason: {1}
 </source>
@@ -83010,14 +83020,14 @@
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="302"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="311"/>
         <source>Done.
 </source>
         <translation>Terminado.
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="292"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="301"/>
         <source>
 Writing script file &apos;{0}&apos;.
 </source>
@@ -83026,7 +83036,7 @@
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="299"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="308"/>
         <source>The script file &apos;{0}&apos; could not be written.
 Reason: {1}
 </source>
@@ -83049,7 +83059,7 @@
 &lt;p&gt;Muestra los errores del comando de virtualenv.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="164"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="173"/>
         <source>
 pyvenv finished.
 </source>
@@ -83058,7 +83068,7 @@
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="191"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="200"/>
         <source>No suitable pyvenv program could be started.
 </source>
         <translation>No se ha podido iniciar un programa para pyvenv adecuado.
@@ -83518,82 +83528,82 @@
 <context>
     <name>WatchPointViewer</name>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="47"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="49"/>
         <source>Watchpoints</source>
         <translation>Puntos a examinar</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="174"/>
-        <source>Add</source>
-        <translation>Añadir</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="141"/>
-        <source>Edit...</source>
-        <translation>Editar...</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="143"/>
-        <source>Enable</source>
-        <translation>Habilitar</translation>
-    </message>
-    <message>
         <location filename="../Debugger/WatchPointViewer.py" line="178"/>
-        <source>Enable all</source>
-        <translation>Habilitar todo</translation>
+        <source>Add</source>
+        <translation>Añadir</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="145"/>
+        <source>Edit...</source>
+        <translation>Editar...</translation>
     </message>
     <message>
         <location filename="../Debugger/WatchPointViewer.py" line="147"/>
-        <source>Disable</source>
-        <translation>Deshabilitar</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="183"/>
-        <source>Disable all</source>
-        <translation>Deshabilitar todo</translation>
+        <source>Enable</source>
+        <translation>Habilitar</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="182"/>
+        <source>Enable all</source>
+        <translation>Habilitar todo</translation>
     </message>
     <message>
         <location filename="../Debugger/WatchPointViewer.py" line="151"/>
+        <source>Disable</source>
+        <translation>Deshabilitar</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="187"/>
+        <source>Disable all</source>
+        <translation>Deshabilitar todo</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="155"/>
         <source>Delete</source>
         <translation>Borrar</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="188"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="192"/>
         <source>Delete all</source>
         <translation>Borrar todo</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="176"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="180"/>
         <source>Enable selected</source>
         <translation>Habilitar selección</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="181"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="185"/>
         <source>Disable selected</source>
         <translation>Deshabilitar selección</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="186"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="190"/>
         <source>Delete selected</source>
         <translation>Borrar selección</translation>
     </message>
     <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="253"/>
+        <source>Watch expression already exists</source>
+        <translation>La expresión a Examinar ya existe</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="195"/>
+        <source>Configure...</source>
+        <translation>Configurar...</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="244"/>
+        <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; already exists.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Una expresión a examinar &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; ya existe.&lt;/p&gt;</translation>
+    </message>
+    <message>
         <location filename="../Debugger/WatchPointViewer.py" line="249"/>
-        <source>Watch expression already exists</source>
-        <translation>La expresión a Examinar ya existe</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="191"/>
-        <source>Configure...</source>
-        <translation>Configurar...</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="240"/>
-        <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; already exists.&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Una expresión a examinar &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; ya existe.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="245"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Una expresión a examinar &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; para la variable &lt;b&gt;{1}&lt;/b&gt; ya existe.&lt;/p&gt;</translation>
     </message>
@@ -84108,34 +84118,34 @@
         <translation>Seleccionar Todo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="42"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="43"/>
         <source>Info</source>
         <translation>Info</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="43"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="45"/>
         <source>Warning</source>
         <translation>Advertencia</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="44"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="47"/>
         <source>Error</source>
         <translation>Error</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="97"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="100"/>
         <source>[{0}] {1}</source>
         <translation>[{0}] {1}</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="102"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="105"/>
         <source> at line {0}
 </source>
         <translation> en línea {0}
 </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="107"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="110"/>
         <source>URL: {0}
 </source>
         <translation>URL: {0}
@@ -84704,12 +84714,12 @@
         <translation> s</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="185"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="188"/>
         <source>Suspicuous URL detected</source>
         <translation>Detectada URL sospechosa</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="185"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="188"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
         <translation>&lt;p&gt;La URL &lt;b&gt;{0}&lt;/b&gt; se ha encontrado en la base de datos de Navegación Segura.&lt;/p&gt;{1}</translation>
     </message>
@@ -84967,12 +84977,12 @@
         <translation>Habilitar Visor PDF Interno</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="702"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="706"/>
         <source>SSL Info</source>
         <translation>SSL Info</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="702"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="706"/>
         <source>This site does not contain SSL information.</source>
         <translation>Este site no contiene información SSL.</translation>
     </message>
@@ -85038,107 +85048,107 @@
         <translation>Mostrar un menú de navegación</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="135"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="136"/>
         <source>Show a navigation menu for closed tabs</source>
         <translation>Mostrar un menú de navegación para pestañas cerradas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="149"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="152"/>
         <source>Open a new web browser tab</source>
         <translation>Abrir una nueva pestaña de navegador web</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="163"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="166"/>
         <source>New Tab</source>
         <translation>Nueva pestaña</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="167"/>
-        <source>Move Left</source>
-        <translation>Mover a la Izquierda</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="170"/>
+        <source>Move Left</source>
+        <translation>Mover a la Izquierda</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="173"/>
         <source>Move Right</source>
         <translation>Mover a la Derecha</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="174"/>
-        <source>Duplicate Page</source>
-        <translation>Duplicar Página</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="177"/>
-        <source>Close</source>
-        <translation>Cerrar</translation>
+        <source>Duplicate Page</source>
+        <translation>Duplicar Página</translation>
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="180"/>
+        <source>Close</source>
+        <translation>Cerrar</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="183"/>
         <source>Close Others</source>
         <translation>Cerrar Otras</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="211"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="214"/>
         <source>Close All</source>
         <translation>Cerrar todo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="186"/>
-        <source>Print Preview</source>
-        <translation>Vista Previa de Impresión</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="189"/>
-        <source>Print</source>
-        <translation>Imprimir</translation>
+        <source>Print Preview</source>
+        <translation>Vista Previa de Impresión</translation>
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="192"/>
+        <source>Print</source>
+        <translation>Imprimir</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="195"/>
         <source>Print as PDF</source>
         <translation>Imprimir como PDF</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="213"/>
-        <source>Reload All</source>
-        <translation>Recargar Todo</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="216"/>
+        <source>Reload All</source>
+        <translation>Recargar Todo</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="219"/>
         <source>Bookmark All Tabs</source>
         <translation>Todas las Pestañas a Marcadores</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="220"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="223"/>
         <source>Restore Closed Tab</source>
         <translation>Restaurar Pestaña Cerrada</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="456"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="459"/>
         <source>...</source>
         <translation>...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="912"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="922"/>
         <source>Loading...</source>
         <translation>Cargando...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="921"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="931"/>
         <source>Finished loading</source>
         <translation>Carga terminada</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="888"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="898"/>
         <source>Failed to load</source>
         <translation>Ha fallado la carga</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
         <source>Are you sure you want to close the window?</source>
         <translation>¿Realmente desea cerrar la ventana?</translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
         <source>Are you sure you want to close the window?
 You have %n tab(s) open.</source>
         <translation>
@@ -85149,47 +85159,47 @@
         </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="969"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="979"/>
         <source>&amp;Quit</source>
         <translation>&amp;Salir</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="982"/>
         <source>C&amp;lose Current Tab</source>
         <translation>Cerrar Pestaña Actua&amp;l</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1153"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1165"/>
         <source>Restore All Closed Tabs</source>
         <translation>Restaurar Todas las Pestañas Cerradas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1155"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1167"/>
         <source>Clear List</source>
         <translation>Borrar Lista</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="250"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="253"/>
         <source>Unmute Tab</source>
         <translation>Devolver Sonido a Pestaña</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="254"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="257"/>
         <source>Mute Tab</source>
         <translation>Silenciar Pestaña</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="753"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="763"/>
         <source>Print to PDF</source>
         <translation>Imprimir como PDF</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="703"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="713"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo&lt;b&gt;{0}&lt;/b&gt; ya existe. ¿Desea sobreescribirlo?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="753"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="763"/>
         <source>&lt;p&gt;The PDF could not be written to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Error:&lt;/b&gt; {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El PDF no se ha podido guardar como archivo &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Error:&lt;/b&gt; {1}&lt;/p&gt;</translation>
     </message>
@@ -85197,7 +85207,7 @@
 <context>
     <name>WebBrowserTools</name>
     <message>
-        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="250"/>
+        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="254"/>
         <source>&lt;unknown&gt;</source>
         <translation>&lt;desconocido&gt;</translation>
     </message>
@@ -85405,7 +85415,7 @@
         <translation>Añadir a la barra de búsqueda web</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1791"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1816"/>
         <source>Try reloading the page or closing some tabs to make more memory available.</source>
         <translation>Intente recargar la página o cerrar algunas pestañas para que haya más memoria disponible.</translation>
     </message>
@@ -85425,22 +85435,22 @@
         <translation>Buscar imagen con...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1780"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1797"/>
         <source>Render Process terminated abnormally</source>
         <translation>El Proceso de Dibujado ha terminado anomalamente</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1783"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1804"/>
         <source>The render process crashed while loading this page.</source>
         <translation>El proceso de dibujado ha fallado mientras se cargaba esta página.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1786"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1811"/>
         <source>The render process was killed.</source>
         <translation>El proceso de dibujado se ha eliminado.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1788"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1813"/>
         <source>The render process terminated while loading this page.</source>
         <translation>El proceso de dibujado ha terminado mientras se cargaba esta página.</translation>
     </message>
@@ -85450,37 +85460,37 @@
         <translation>No hay sugerencias</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1914"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1939"/>
         <source>Web Archive (*.mhtml *.mht)</source>
         <translation>Archivo Web (*.mhtml *.mht)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1915"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1940"/>
         <source>HTML File (*.html *.htm)</source>
         <translation>Archivo HTML (*.html *.htm)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1916"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1941"/>
         <source>HTML File with all resources (*.html *.htm)</source>
         <translation>Archivo HTML con todos los recursos (*.html *.htm)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1939"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1964"/>
         <source>Save Web Page</source>
         <translation>Guardar Página Web</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1731"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1742"/>
         <source>Empty Page</source>
         <translation>Página en Blanco</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2289"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2321"/>
         <source>Quota Request</source>
         <translation>Solicitud de Cuota</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2289"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2321"/>
         <source>&lt;p&gt; Allow the website at &lt;b&gt;{0}&lt;/b&gt; to use &lt;b&gt;{1}&lt;/b&gt; of persistent storage?&lt;/p&gt;</source>
         <translation>&lt;p&gt; ¿Permitir al sitio web &lt;b&gt;{0}&lt;/b&gt; utilizar &lt;b&gt;{1}&lt;/b&gt; de almacenamiento persistente?&lt;/p&gt;</translation>
     </message>
@@ -85609,1064 +85619,1064 @@
         <translation>Contenido</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1467"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1472"/>
         <source>Index</source>
         <translation>Índice</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1480"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1485"/>
         <source>Search</source>
         <translation>Buscar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1743"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1748"/>
         <source>JavaScript Console</source>
         <translation>Consola de Javascript</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>New Tab</source>
         <translation>Nueva pestaña</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>&amp;New Tab</source>
         <translation>Nueva pes&amp;taña</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>Ctrl+T</source>
         <comment>File|New Tab</comment>
         <translation>Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="666"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="671"/>
         <source>Open a new web browser tab</source>
         <translation>Abrir una nueva pestaña de navegador web</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="667"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="672"/>
         <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nueva pestaña&lt;/b&gt;&lt;p&gt;Abre una nueva pestaña con un navegador web.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>New Window</source>
         <translation>Nueva Ventana</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>New &amp;Window</source>
         <translation>Nueva &amp;Ventana</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>Ctrl+N</source>
         <comment>File|New Window</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="680"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="685"/>
         <source>Open a new web browser window</source>
         <translation>Abrir una nueva ventana de navegador web</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="681"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="686"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new web browser window in the current privacy mode.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nueva Ventana&lt;/b&gt;&lt;p&gt;Abre una nueva ventana de navegador web en el modo de privacidad actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>New Private Window</source>
         <translation>Nueva Ventana Privada</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="689"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="694"/>
         <source>New &amp;Private Window</source>
         <translation>Nueva Ventana &amp;Privada</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="689"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="694"/>
         <source>Ctrl+Shift+P</source>
         <comment>File|New Private Window</comment>
         <translation>Ctrl+Shift+P</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="695"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="700"/>
         <source>Open a new private web browser window</source>
         <translation>Abrir una nueva ventana privada de navegación web</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="697"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="702"/>
         <source>&lt;b&gt;New Private Window&lt;/b&gt;&lt;p&gt;This opens a new private web browser window by starting a new web browser instance in private mode.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nueva Ventana Privada&lt;/b&gt;&lt;p&gt;Abre una nueva ventana privada de navegador web iniciando una nueva instancia del navegador en web en modo privado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2503"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2508"/>
         <source>Open File</source>
         <translation>Abrir archivo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="705"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="710"/>
         <source>&amp;Open File</source>
         <translation>&amp;Abrir Archivo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="705"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="710"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="711"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="716"/>
         <source>Open a file for display</source>
         <translation>Abrir un archivo para mostrar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="712"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="717"/>
         <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new file for display. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Abrir Archivo&lt;/b&gt;&lt;p&gt;Abre un nuevo archivo para mostrar. Abre un diálogo de selección de archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Open File in New Tab</source>
         <translation>Abrir Archivo en Nueva Pestaña</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Open File in New &amp;Tab</source>
         <translation>Abrir Archivo en Nueva Pes&amp;taña</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Shift+Ctrl+O</source>
         <comment>File|Open in new tab</comment>
         <translation>Shift+Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="726"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="731"/>
         <source>Open a file for display in a new tab</source>
         <translation>Abre un fichero para mostrar en una nueva pestaña</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="733"/>
         <source>&lt;b&gt;Open File in New Tab&lt;/b&gt;&lt;p&gt;This opens a new file for display in a new tab. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Abrir Archivo en Nueva Pestaña&lt;/b&gt;&lt;p&gt;Abre un nuevo archivo para mostrar en una nueva pestaña. Abre un diálogo de selección de archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="754"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="759"/>
         <source>Save Page Screen</source>
         <translation>Guardar Pantalla de Página</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="754"/>
-        <source>Save Page Screen...</source>
-        <translation>Guardar Pantalla de Página...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="759"/>
+        <source>Save Page Screen...</source>
+        <translation>Guardar Pantalla de Página...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="764"/>
         <source>Save the visible part of the current page as a screen shot</source>
         <translation>Guardar la parte visible de la página actual como una captura de pantalla</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="772"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="777"/>
         <source>Import Bookmarks</source>
         <translation>Importar Marcadores</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="772"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="777"/>
         <source>&amp;Import Bookmarks...</source>
         <translation>&amp;Importar Marcadores...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="776"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="781"/>
         <source>Import bookmarks from other browsers</source>
         <translation>Importar marcadores desde otros navegadores</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="778"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="783"/>
         <source>&lt;b&gt;Import Bookmarks&lt;/b&gt;&lt;p&gt;Import bookmarks from other browsers.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Importar Marcadores&lt;/b&gt;&lt;p&gt;Importar marcadores desde otros navegadores.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="786"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="791"/>
         <source>Export Bookmarks</source>
         <translation>Exportar Marcadores</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="786"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="791"/>
         <source>&amp;Export Bookmarks...</source>
         <translation>&amp;Exportar Marcadores...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="790"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="795"/>
         <source>Export the bookmarks into a file</source>
         <translation>Exportar marcadores a un archivo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="792"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="797"/>
         <source>&lt;b&gt;Export Bookmarks&lt;/b&gt;&lt;p&gt;Export the bookmarks into a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Exportar Marcadores&lt;/b&gt;&lt;p&gt;Exportar los marcadores a un archivo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2122"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2127"/>
         <source>Print</source>
         <translation>Imprimir</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="800"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="805"/>
         <source>&amp;Print</source>
         <translation>Im&amp;primir</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="800"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="805"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation>Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="806"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="811"/>
         <source>Print the displayed help</source>
         <translation>Imprimir la ayuda que se está mostrando</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="807"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="812"/>
         <source>&lt;b&gt;Print&lt;/b&gt;&lt;p&gt;Print the displayed help text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Imprimir&lt;/b&gt;&lt;p&gt;Imprimir el texto de ayuda mostrado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="814"/>
-        <source>Print as PDF</source>
-        <translation>Imprimir como PDF</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="819"/>
+        <source>Print as PDF</source>
+        <translation>Imprimir como PDF</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="824"/>
         <source>Print the displayed help as PDF</source>
         <translation>Imprimir la ayuda mostrada como PDF</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="821"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="826"/>
         <source>&lt;b&gt;Print as PDF&lt;/b&gt;&lt;p&gt;Print the displayed help text as a PDF file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Imprimir como PDF&lt;/b&gt;&lt;p&gt;Imprimir la ayuda mostrada como un archivo PDF.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="829"/>
-        <source>Print Preview</source>
-        <translation>Vista Previa de Impresión</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="834"/>
+        <source>Print Preview</source>
+        <translation>Vista Previa de Impresión</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="839"/>
         <source>Print preview of the displayed help</source>
         <translation>Presentación preliminar de la ayuda mostrada</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="836"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="841"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the displayed help text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Presentación Preliminar&lt;/b&gt;&lt;p&gt;Presentación preliminar del texto de ayuda mostrado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>Close</source>
         <translation>Cerrar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>&amp;Close</source>
         <translation>&amp;Cerrar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="864"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="869"/>
         <source>Close the current help window</source>
         <translation>Cierra la ventana actual</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="866"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="871"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cerrar&lt;/b&gt;&lt;p&gt;Cierra la ventana de navegador web actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="873"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="878"/>
         <source>Close All</source>
         <translation>Cerrar todo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="873"/>
-        <source>Close &amp;All</source>
-        <translation>Cerrar &amp;Todo</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="877"/>
-        <source>Close all help windows</source>
-        <translation>Cerrar todas las ventanas de ayuda</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="878"/>
+        <source>Close &amp;All</source>
+        <translation>Cerrar &amp;Todo</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="882"/>
+        <source>Close all help windows</source>
+        <translation>Cerrar todas las ventanas de ayuda</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="883"/>
         <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all web browser windows except the first one.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cerrar Todo&lt;/b&gt;&lt;p&gt;Cierra todas las ventanas de navegador web excepto la primera.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="886"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="891"/>
         <source>Quit</source>
         <translation>Salir</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2854"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2859"/>
         <source>&amp;Quit</source>
         <translation>&amp;Salir</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="886"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="891"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>Backward</source>
         <translation>Atrás</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>&amp;Backward</source>
         <translation>&amp;Atrás</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>Alt+Left</source>
         <comment>Go|Backward</comment>
         <translation>Alt+Left</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="906"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="911"/>
         <source>Move one screen backward</source>
         <translation>Ir una pantalla hacia atrás</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="907"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="912"/>
         <source>&lt;b&gt;Backward&lt;/b&gt;&lt;p&gt;Moves one screen backward. If none is available, this action is disabled.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Atrás&lt;/b&gt;&lt;p&gt;Mueve una ventana hacia atrás. Si no hay ninguna disponible, esta acción estará deshabilitada.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>Forward</source>
         <translation>Adelante</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>&amp;Forward</source>
         <translation>A&amp;delante</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>Alt+Right</source>
         <comment>Go|Forward</comment>
         <translation>Alt+Right</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="921"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="926"/>
         <source>Move one screen forward</source>
         <translation>Ir una pantalla hacia adelante</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="923"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="928"/>
         <source>&lt;b&gt;Forward&lt;/b&gt;&lt;p&gt;Moves one screen forward. If none is available, this action is disabled.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Adelante&lt;/b&gt;&lt;p&gt;Mueve una ventana hacia adelante. Si no hay ninguna disponible, esta acción estará deshabilitada.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>Home</source>
         <translation>Inicio</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>&amp;Home</source>
         <translation>&amp;Inicio</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>Ctrl+Home</source>
         <comment>Go|Home</comment>
         <translation>Ctrl+Home</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="939"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="944"/>
         <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Inicio&lt;/b&gt;&lt;p&gt;Navega a la pantalla inicial.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>Reload</source>
         <translation>Recargar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>&amp;Reload</source>
         <translation>&amp;Recargar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>Ctrl+R</source>
         <comment>Go|Reload</comment>
         <translation>Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>F5</source>
         <comment>Go|Reload</comment>
         <translation>F5</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="953"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="958"/>
         <source>Reload the current screen</source>
         <translation>Recargar la pantalla actual</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="955"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="960"/>
         <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Recargar&lt;/b&gt;&lt;p&gt;Recarga la pantalla actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Stop</source>
         <translation>Detener</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>&amp;Stop</source>
         <translation>&amp;Detener</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Ctrl+.</source>
         <comment>Go|Stop</comment>
         <translation>Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Esc</source>
         <comment>Go|Stop</comment>
         <translation>Esc</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="969"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="974"/>
         <source>Stop loading</source>
         <translation>Detener carga</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="970"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="975"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Detener&lt;/b&gt;&lt;p&gt;Detiene la carga de la pestaña actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>Copy</source>
         <translation>Copiar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>&amp;Copy</source>
         <translation>&amp;Copiar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="983"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="988"/>
         <source>Copy the selected text</source>
         <translation>Copiar el texto seleccionado</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="984"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="989"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Copiar&lt;/b&gt;&lt;p&gt;Copiar el texto seleccionado al portapapeles.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Cut</source>
         <translation>Cortar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Cu&amp;t</source>
         <translation>Cor&amp;tar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="997"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1002"/>
         <source>Cut the selected text</source>
         <translation>Cortar el texto seleccionado</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="998"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1003"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cortar&lt;/b&gt;&lt;p&gt;Cortar el texto seleccionado al portapapeles.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>Paste</source>
         <translation>Pegar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>&amp;Paste</source>
         <translation>&amp;Pegar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1011"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1016"/>
         <source>Paste text from the clipboard</source>
         <translation>Pegar texto desde el portapapeles</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1012"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1017"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Pegar&lt;/b&gt;&lt;p&gt;Pegar texto desde el portapapeles.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>Undo</source>
         <translation>Deshacer</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>&amp;Undo</source>
         <translation>&amp;Deshacer</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1025"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1030"/>
         <source>Undo the last edit action</source>
         <translation>Deshacer la última acción de edición</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1026"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1031"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Deshacer&lt;/b&gt;&lt;p&gt;Deshacer la última acción de edición.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>Redo</source>
         <translation>Rehacer</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>&amp;Redo</source>
         <translation>&amp;Rehacer</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1039"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1044"/>
         <source>Redo the last edit action</source>
         <translation>Rehacer la última acción de edición</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1040"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1045"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rehacer&lt;/b&gt;&lt;p&gt;Rehacer la última acción de edición.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>Select All</source>
         <translation>Seleccionar todo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>&amp;Select All</source>
         <translation>Seleccionar &amp;todo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation>Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1053"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1058"/>
         <source>Select all text</source>
         <translation>Seleccionar todo el texto</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1054"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1059"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current browser.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Seleccionar todo&lt;/b&gt;&lt;p&gt;Selecciona todo el texto del navegador actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>Find...</source>
         <translation>Buscar...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>&amp;Find...</source>
         <translation>&amp;Buscar...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>Ctrl+F</source>
         <comment>Edit|Find</comment>
         <translation>Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1080"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1085"/>
         <source>Find text in page</source>
         <translation>Buscar texto en página</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1081"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1086"/>
         <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Buscar&lt;/b&gt;&lt;p&gt;Buscar texto en la página actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>Find next</source>
         <translation>Buscar siguiente</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>Find &amp;next</source>
         <translation>Buscar sigui&amp;ente</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>F3</source>
         <comment>Edit|Find next</comment>
         <translation>F3</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1094"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1099"/>
         <source>Find next occurrence of text in page</source>
         <translation>Busca la siguiente aparición del texto</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1096"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1101"/>
         <source>&lt;b&gt;Find next&lt;/b&gt;&lt;p&gt;Find the next occurrence of text in the current page.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Buscar siguiente&lt;/b&gt;&lt;p&gt;Buscar la siguiente aparición del texto en la página actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Find previous</source>
         <translation>Buscar anterior</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Find &amp;previous</source>
         <translation>Buscar a&amp;nterior</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Shift+F3</source>
         <comment>Edit|Find previous</comment>
         <translation>Shift+F3</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1109"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1114"/>
         <source>Find previous occurrence of text in page</source>
         <translation>Busca la anterior ocurrencia del texto</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1111"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1116"/>
         <source>&lt;b&gt;Find previous&lt;/b&gt;&lt;p&gt;Find the previous occurrence of text in the current page.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Buscar anterior&lt;/b&gt;&lt;p&gt;Buscar la anterior ocurrencia del texto en la página actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
         <source>Manage Bookmarks</source>
         <translation>Gestionar marcadores</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
         <source>&amp;Manage Bookmarks...</source>
         <translation>&amp;Gestionar marcadores...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
         <source>Ctrl+Shift+B</source>
         <comment>Help|Manage bookmarks</comment>
         <translation>Ctrl+Shift+B</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1130"/>
         <source>Open a dialog to manage the bookmarks.</source>
         <translation>Abrir un diálogo para gestionar los marcadores.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1127"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1132"/>
         <source>&lt;b&gt;Manage Bookmarks...&lt;/b&gt;&lt;p&gt;Open a dialog to manage the bookmarks.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gestionar Bookmarks...&lt;/b&gt;&lt;p&gt;Abrir un diálogo para gestionar los marcadores.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Add Bookmark</source>
         <translation>Añadir Marcador</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Add &amp;Bookmark...</source>
         <translation>Añadir &amp;marcador...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Ctrl+D</source>
         <comment>Help|Add bookmark</comment>
         <translation>Ctrl+D</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1142"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1147"/>
         <source>Open a dialog to add a bookmark.</source>
         <translation>Abrir un diálogo para añadir un marcador.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1144"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1149"/>
         <source>&lt;b&gt;Add Bookmark&lt;/b&gt;&lt;p&gt;Open a dialog to add the current URL as a bookmark.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Añadir Marcador&lt;/b&gt;&lt;p&gt;Abre un diálogo para añadir la URL actual como un marcador.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1151"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1156"/>
         <source>Add Folder</source>
         <translation>Añadir carpeta</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1151"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1156"/>
         <source>Add &amp;Folder...</source>
         <translation>Añadir &amp;Carpeta...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1155"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1160"/>
         <source>Open a dialog to add a new bookmarks folder.</source>
         <translation>Abrir un diálogo para añadir una nueva carpeta de marcadores.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1157"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1162"/>
         <source>&lt;b&gt;Add Folder...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Añadir Carpeta...&lt;/b&gt;&lt;p&gt;Abrir un diálogo para añadir una nueva carpeta de marcadores.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1165"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1170"/>
         <source>Bookmark All Tabs</source>
         <translation>Todas las Pestañas a Marcadores</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1165"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1170"/>
         <source>Bookmark All Tabs...</source>
         <translation>Todas las Pestañas a Marcadores...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1169"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1174"/>
         <source>Bookmark all open tabs.</source>
         <translation>Todas las pestañas abiertas a marcadores.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1171"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1176"/>
         <source>&lt;b&gt;Bookmark All Tabs...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder for all open tabs.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Todas las Pestañas a Marcadores...&lt;/b&gt;&lt;p&gt;Abrir un diálogo para añadir una nueva carpeta de marcadores para todas las pestañas abiertas.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>What&apos;s This?</source>
         <translation>¿Qué es esto?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>&amp;What&apos;s This?</source>
         <translation>¿&amp;Qué es esto?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1185"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1190"/>
         <source>Context sensitive help</source>
         <translation>Ayuda sensible al contexto</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1186"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1191"/>
         <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="../WebBrowser/WebBrowserWindow.py" line="1197"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1202"/>
         <source>About</source>
         <translation>Acerca de</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1197"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1202"/>
         <source>&amp;About</source>
         <translation>&amp;Acerca de</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1201"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1206"/>
         <source>Display information about this software</source>
         <translation>Muestra información acerca de este software</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1203"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1208"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Acerca de&lt;/b&gt;&lt;p&gt;Muestra información acerca de este software.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1210"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1215"/>
         <source>About Qt</source>
         <translation>Acerca de Qt</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1210"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1215"/>
         <source>About &amp;Qt</source>
         <translation>Acerca de &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1214"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1219"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Muestra información sobre las herramientas Qt</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1216"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1221"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Acerca de Qt&lt;/b&gt;&lt;p&gt;Muestra información sobre las herramientas Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom in</source>
         <translation>Aumentar zoom</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom &amp;in</source>
         <translation>A&amp;umentar Zoom</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation>Aumentar Zoom</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1230"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1235"/>
         <source>Zoom in on the web page</source>
         <translation>Aumentar zoom en la página web</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1231"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1236"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the web page. This makes the web page bigger.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aumentar Zoom&lt;/b&gt;&lt;p&gt;Aumenta el zoom sobre la página web. Esto provoca que la página sea mayor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom out</source>
         <translation>Disminuir zoom</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom &amp;out</source>
         <translation>Dismi&amp;nuir Zoom</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation>Disminuir Zoom</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1246"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1251"/>
         <source>Zoom out on the web page</source>
         <translation>Disminuir zoom en la página web</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1247"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1252"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the web page. This makes the web page smaller.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Disminuir zoom&lt;/b&gt;&lt;p&gt;Disminuir el zoom sobre la página web. Esto provoca que la página sea menor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Zoom reset</source>
         <translation>Restablecer zoom</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Zoom &amp;reset</source>
         <translation>&amp;Restablecer zoom</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1261"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1266"/>
         <source>Reset the zoom of the web page</source>
         <translation>Restablecer el zoom aplicado a la página web</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1263"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1268"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the web page. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Restablecer zoom&lt;/b&gt;&lt;p&gt;Restablece el zoom aplicado a la página web. Establece el factor de zoom a 100%.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1271"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1276"/>
         <source>Show page source</source>
         <translation>Mostrar código fuente</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1271"/>
-        <source>Ctrl+U</source>
-        <translation>Ctrl+U</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1276"/>
+        <source>Ctrl+U</source>
+        <translation>Ctrl+U</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1281"/>
         <source>Show the page source in an editor</source>
         <translation>Muestra el código fuente en un editor</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1278"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1283"/>
         <source>&lt;b&gt;Show page source&lt;/b&gt;&lt;p&gt;Show the page source in an editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mostrar codigo fuente&lt;/b&gt;&lt;p&gt;Muestra el código fuente en un editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1286"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1291"/>
         <source>Full Screen</source>
         <translation>Pantalla Completa</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1286"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1291"/>
         <source>&amp;Full Screen</source>
         <translation>&amp;Pantalla Completa</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1296"/>
-        <source>F11</source>
-        <translation>F11</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1301"/>
+        <source>F11</source>
+        <translation>F11</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1306"/>
         <source>Show next tab</source>
         <translation>Mostrar siguiente pestaña</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1301"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1306"/>
         <source>Ctrl+Alt+Tab</source>
         <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1310"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1315"/>
         <source>Show previous tab</source>
         <translation>Mostrar pestaña anterior</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1310"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1315"/>
         <source>Shift+Ctrl+Alt+Tab</source>
         <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1319"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1324"/>
         <source>Switch between tabs</source>
         <translation>Alternar entre pestañas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1319"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1324"/>
         <source>Ctrl+1</source>
         <translation>Ctrl+1</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1328"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1333"/>
         <source>Preferences</source>
         <translation>Preferencias</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1328"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1333"/>
         <source>&amp;Preferences...</source>
         <translation>&amp;Preferencias...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1332"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1337"/>
         <source>Set the prefered configuration</source>
         <translation>Establecer la configuración preferida</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1334"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1339"/>
         <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Preferencias&lt;/b&gt;&lt;p&gt;Establecezca los elementos de configuración de la aplicación con sus valores preferidos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1342"/>
-        <source>Languages</source>
-        <translation>Idiomas</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1342"/>
-        <source>&amp;Languages...</source>
-        <translation>&amp;Idiomas...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1347"/>
+        <source>Languages</source>
+        <translation>Idiomas</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1347"/>
+        <source>&amp;Languages...</source>
+        <translation>&amp;Idiomas...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1352"/>
         <source>Configure the accepted languages for web pages</source>
         <translation>Configurar los idiomas aceptados para páginas web</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1349"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1354"/>
         <source>&lt;b&gt;Languages&lt;/b&gt;&lt;p&gt;Configure the accepted languages for web pages.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Idiomas&lt;/b&gt;&lt;p&gt;Configurar los idiomas aceptados para páginas web..&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1357"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1362"/>
         <source>Cookies</source>
         <translation>Cookies</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1357"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1362"/>
         <source>C&amp;ookies...</source>
         <translation>C&amp;ookies...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1361"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1366"/>
         <source>Configure cookies handling</source>
         <translation>Configurar gestión de cookies</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1363"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1368"/>
         <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configurar gestión de cookies.&lt;/p&gt;</translation>
     </message>
@@ -86691,905 +86701,905 @@
         <translation type="obsolete">&lt;b&gt;Cookies de Flash&lt;/b&gt;&lt;p&gt;Mostrar un diálogo para gestionar las cookies de flash.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1371"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1376"/>
         <source>Personal Information</source>
         <translation>Información Personal</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1371"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1376"/>
         <source>Personal Information...</source>
         <translation>Información Personal...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1377"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1382"/>
         <source>Configure personal information for completing form fields</source>
         <translation>Configurar información personal para completar campos de formulario</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1379"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1384"/>
         <source>&lt;b&gt;Personal Information...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the personal information used for completing form fields.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Información Personal...&lt;/b&gt;&lt;p&gt;Abre un diálogo para configurar la información personal usada para completar campos de formulario.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1388"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1393"/>
         <source>GreaseMonkey Scripts</source>
         <translation>Scripts de GreaseMonkey</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1388"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1393"/>
         <source>GreaseMonkey Scripts...</source>
         <translation>Scripts de GreaseMonkey...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1394"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1399"/>
         <source>Configure the GreaseMonkey Scripts</source>
         <translation>Configurar los Scripts de GreaseMonkey</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1396"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1401"/>
         <source>&lt;b&gt;GreaseMonkey Scripts...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available GreaseMonkey Scripts.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Scripts de GreaseMonkey...&lt;/b&gt;&lt;p&gt;Abre un diálogo para configurar los Scripts de GreaseMonkey disponibles.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1405"/>
-        <source>Edit Message Filters</source>
-        <translation>Editar Filtros de Mensajes</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1405"/>
-        <source>Edit Message Filters...</source>
-        <translation>Editar Filtros de Mensajes...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1410"/>
+        <source>Edit Message Filters</source>
+        <translation>Editar Filtros de Mensajes</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1410"/>
+        <source>Edit Message Filters...</source>
+        <translation>Editar Filtros de Mensajes...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1415"/>
         <source>Edit the message filters used to suppress unwanted messages</source>
         <translation>Editar los filtros de mensajes utilizados para suprimir mensajes no deseados</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1412"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1417"/>
         <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Editar Filtros de Mensajes&lt;/b&gt;&lt;p&gt;Abre un diálogo para editar los filtros de mensajes utilizados para suprimir mensajes no deseados y que no se muestren en la ventana de error.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1422"/>
-        <source>Edit HTML5 Feature Permissions</source>
-        <translation>Editar Permisos de Características HTML5</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1422"/>
-        <source>Edit HTML5 Feature Permissions...</source>
-        <translation>Editar Permisos de Características HTML5...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1427"/>
+        <source>Edit HTML5 Feature Permissions</source>
+        <translation>Editar Permisos de Características HTML5</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1427"/>
+        <source>Edit HTML5 Feature Permissions...</source>
+        <translation>Editar Permisos de Características HTML5...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1432"/>
         <source>Edit the remembered HTML5 feature permissions</source>
         <translation>Editar los permisos de características HTML5 recordados</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1429"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1434"/>
         <source>&lt;b&gt;Edit HTML5 Feature Permissions&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the remembered HTML5 feature permissions.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Editar Permisos de Características HTML5&lt;/b&gt;&lt;p&gt;Abre un diálogo para editar los permisos de características HTML5 recordados.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1439"/>
-        <source>Sync with Table of Contents</source>
-        <translation>Sincronizar con la Tabla de Contenidos</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1444"/>
+        <source>Sync with Table of Contents</source>
+        <translation>Sincronizar con la Tabla de Contenidos</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1449"/>
         <source>Synchronizes the table of contents with current page</source>
         <translation>Sincroniza la tabla de contenidos con la página actual</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1446"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1451"/>
         <source>&lt;b&gt;Sync with Table of Contents&lt;/b&gt;&lt;p&gt;Synchronizes the table of contents with current page.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sincronizar con la Tabla de Contenidos&lt;/b&gt;Sincroniza la tabla de contenidos con la página actual&lt;p&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1454"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1459"/>
         <source>Table of Contents</source>
         <translation>Tabla de Contenidos</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1458"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1463"/>
         <source>Shows the table of contents window</source>
         <translation>Muestra la ventana de la tabla de contenidos</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1460"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1465"/>
         <source>&lt;b&gt;Table of Contents&lt;/b&gt;&lt;p&gt;Shows the table of contents window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tabla de Contenidos&lt;/b&gt;&lt;p&gt;Muestra la ventana de la tabla de contenidos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1471"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1476"/>
         <source>Shows the index window</source>
         <translation>Muestra la ventana del índice</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1473"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1478"/>
         <source>&lt;b&gt;Index&lt;/b&gt;&lt;p&gt;Shows the index window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Índice&lt;/b&gt;&lt;p&gt;Muestra la ventana del índice.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1484"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1489"/>
         <source>Shows the search window</source>
         <translation>Muestra la ventana de búsqueda</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1486"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1491"/>
         <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Buscar&lt;/b&gt;&lt;p&gt;Muestra la ventana de búsqueda.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1494"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1499"/>
         <source>Manage QtHelp Documents</source>
         <translation>Gestionar Documentos de QtHelp</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1494"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1499"/>
         <source>Manage QtHelp &amp;Documents</source>
         <translation>Gestionar &amp;Documentos de QtHelp</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1498"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1503"/>
         <source>Shows a dialog to manage the QtHelp documentation set</source>
         <translation>Muestra un diálogo para gestionar el conjunto de documentación de QtHelp</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1500"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1505"/>
         <source>&lt;b&gt;Manage QtHelp Documents&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the QtHelp documentation set.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gestionar Documentos de QtHelp&lt;/b&gt;&lt;p&gt;Muestra un diálogo para gestionar el conjunto de documentación de QtHelp.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1509"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1514"/>
         <source>Reindex Documentation</source>
         <translation>Reindexar Documentación</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1509"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1514"/>
         <source>&amp;Reindex Documentation</source>
         <translation>&amp;Reindexar Documentación</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1513"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1518"/>
         <source>Reindexes the documentation set</source>
         <translation>Reindexa el conjunto de documentación</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1520"/>
         <source>&lt;b&gt;Reindex Documentation&lt;/b&gt;&lt;p&gt;Reindexes the documentation set.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Reindexar Documentación&lt;/b&gt;&lt;p&gt;Reindexa el conjunto de documentación.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1529"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1534"/>
         <source>Clear private data</source>
         <translation>Limpiar Datos Privados</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1531"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1536"/>
         <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like browsing history, search history or the favicons database.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Limpiar datos privados&lt;/b&gt;&lt;p&gt;Limpia los datos privados como historial de navegación, de búsqueda o base de datos de favicons.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/>
-        <source>Clear icons database</source>
-        <translation>Limpiar base de datos de iconos</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/>
-        <source>Clear &amp;icons database</source>
-        <translation>Limpiar base de datos de &amp;iconos</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1545"/>
+        <source>Clear icons database</source>
+        <translation>Limpiar base de datos de iconos</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1545"/>
+        <source>Clear &amp;icons database</source>
+        <translation>Limpiar base de datos de &amp;iconos</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1550"/>
         <source>Clear the database of favicons</source>
         <translation>Limpiar base de datos de favicons</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1547"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1552"/>
         <source>&lt;b&gt;Clear icons database&lt;/b&gt;&lt;p&gt;Clears the database of favicons of previously visited URLs.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Limpiar base de datos de iconos&lt;/b&gt;&lt;p&gt;Limpia la base de datos de favicons de URLs previamente visitadas.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1555"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1560"/>
         <source>Manage saved Favicons</source>
         <translation>Gestionar Iconos de páginas web Guardados</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1561"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/>
         <source>Show a dialog to manage the saved favicons</source>
         <translation>Muestra un diálogo para gestionar los iconos de páginas web almacenados</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1563"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1568"/>
         <source>&lt;b&gt;Manage saved Favicons&lt;/b&gt;&lt;p&gt;This shows a dialog to manage the saved favicons of previously visited URLs.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gestionar Iconos de páginas web Almacenados&lt;/b&gt;&lt;p&gt;Muestra un diálogo para gestionar los iconos de páginas web almacenados de URLs visitadas anteriormente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1576"/>
         <source>Configure Search Engines</source>
         <translation>Configurar Motores de Búsqueda</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/>
-        <source>Configure Search &amp;Engines...</source>
-        <translation>Configurar Motor&amp;es de Búsqueda...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1576"/>
+        <source>Configure Search &amp;Engines...</source>
+        <translation>Configurar Motor&amp;es de Búsqueda...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/>
         <source>Configure the available search engines</source>
         <translation>Configurar los motores de búsqueda disponibles</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1578"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1583"/>
         <source>&lt;b&gt;Configure Search Engines...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available search engines.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Configurar Motores de Búsqueda...&lt;/b&gt;&lt;p&gt;Abre un diálogo para configurar los motores de búsqueda disponibles.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1592"/>
         <source>Manage Saved Passwords</source>
         <translation>Gestionar Contraseñas Almacenadas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1592"/>
         <source>Manage Saved Passwords...</source>
         <translation>Gestionar Contraseñas Almacenadas...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1593"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/>
         <source>Manage the saved passwords</source>
         <translation>Gestionar las contraseñas almacenadas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1595"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1600"/>
         <source>&lt;b&gt;Manage Saved Passwords...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved passwords.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gestionar Contraseñas Almacenadas&lt;/b&gt;&lt;p&gt;Abre un diálogo para gestionar las contraseñas almacenadas.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1602"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/>
         <source>Ad Block</source>
         <translation>Ad Block</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1602"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/>
         <source>&amp;Ad Block...</source>
         <translation>&amp;Ad Block...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1608"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1613"/>
         <source>Configure AdBlock subscriptions and rules</source>
         <translation>Configurar las suscripciones y reglas de AdBlock</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1610"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1615"/>
         <source>&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure AdBlock subscriptions and rules.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Abre un diálogo para configurar las suscripciones y reglas de AdBlock&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1618"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/>
         <source>Manage SSL Certificate Errors</source>
         <translation>Gestionar Errores de Certificados SSL</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1618"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/>
         <source>Manage SSL Certificate Errors...</source>
         <translation>Gestionar Errores de Certificados SSL...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1624"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1629"/>
         <source>Manage the accepted SSL certificate Errors</source>
         <translation>Gestionar los Errores de certificados SSL aceptados</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1626"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/>
         <source>&lt;b&gt;Manage SSL Certificate Errors...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the accepted SSL certificate errors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gestionar Errores de Certificados SSL&lt;/b&gt;&lt;p&gt;Abre un diálogo para gestionar los errores de certificados SSL aceptados.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1651"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1656"/>
         <source>Downloads</source>
         <translation>Descargas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1655"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1660"/>
         <source>Shows the downloads window</source>
         <translation>Muestra la ventana de descargas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1657"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1662"/>
         <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Descargas&lt;/b&gt;&lt;p&gt;Muestra la ventana de descargas.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>RSS Feeds Dialog</source>
         <translation>Diálogo de RSS Feeds</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>&amp;RSS Feeds Dialog...</source>
         <translation>Diálogo de &amp;RSS Feeds...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>Ctrl+Shift+F</source>
         <comment>Help|RSS Feeds Dialog</comment>
         <translation>Ctrl+Shift+F</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1671"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1676"/>
         <source>Open a dialog showing the configured RSS feeds.</source>
         <translation>Abrir un diálogo mostrando los RSS feeds configurados.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1673"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1678"/>
         <source>&lt;b&gt;RSS Feeds Dialog...&lt;/b&gt;&lt;p&gt;Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Diálogo de RSS Feeds ...&lt;/b&gt;&lt;p&gt;Abrir un diálogo para mostrar todos los RSS feeds configurados. Puede utilizarse para gestionar los feeds y cómo mostrar sus contenidos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>Siteinfo Dialog</source>
         <translation>Diálogo Siteinfo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>&amp;Siteinfo Dialog...</source>
         <translation>Diálogo &amp;Siteinfo...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>Ctrl+Shift+I</source>
         <comment>Help|Siteinfo Dialog</comment>
         <translation>Ctrl+Shift+I</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1688"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1693"/>
         <source>Open a dialog showing some information about the current site.</source>
         <translation>Abrir un diálogo para mostrar información acerca del site actual.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1690"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1695"/>
         <source>&lt;b&gt;Siteinfo Dialog...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the current site.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Diálogo Siteinfo...&lt;/b&gt;&lt;p&gt;Abre un diálogo que muestra información acerca del site actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1703"/>
         <source>Manage User Agent Settings</source>
         <translation>Gestionar Ajustes de Agente de Usuario</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1703"/>
         <source>Manage &amp;User Agent Settings</source>
         <translation>Gestionar Ajustes de Agente de &amp;Usuario</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1702"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1707"/>
         <source>Shows a dialog to manage the User Agent settings</source>
         <translation>Muestra un diálogo para gestionar los ajustes de Agente de Usuario</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1704"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1709"/>
         <source>&lt;b&gt;Manage User Agent Settings&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the User Agent settings.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gestionar Ajustes de Agente de Usuario&lt;/b&gt;&lt;p&gt;Muestra un diálogo para gestionar los ajustes de Agente de Usuario.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1712"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1717"/>
         <source>Synchronize data</source>
         <translation>Sincronizar datos</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1712"/>
-        <source>&amp;Synchronize Data...</source>
-        <translation>&amp;Sincronizar Datos...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1717"/>
+        <source>&amp;Synchronize Data...</source>
+        <translation>&amp;Sincronizar Datos...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1722"/>
         <source>Shows a dialog to synchronize data via the network</source>
         <translation>Muestra un diálogo para sincronizar datos a través de la red</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1719"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1724"/>
         <source>&lt;b&gt;Synchronize Data...&lt;/b&gt;&lt;p&gt;This shows a dialog to synchronize data via the network.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sincronizar Datos...&lt;/b&gt;&lt;p&gt;Muestra un diálogo para sincronizar datos a través de la red.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/>
         <source>Manage Saved Zoom Values</source>
         <translation>Gestionar Valores de Zoom Guardados</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/>
         <source>Manage Saved Zoom Values...</source>
         <translation>Gestionar Valores de Zoom Guardados...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1734"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1739"/>
         <source>Manage the saved zoom values</source>
         <translation>Gestionar los valores de zoom guardados</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1736"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1741"/>
         <source>&lt;b&gt;Manage Saved Zoom Values...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved zoom values.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gestionar los Valores de Zoom Guardados...&lt;/b&gt;&lt;p&gt;Abre un diálogo para gestionar los valores de zoom almacenados.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1747"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1752"/>
         <source>Toggle the JavaScript console window</source>
         <translation>Conmutar la ventana de consola de JavaScript</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1749"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1754"/>
         <source>&lt;b&gt;JavaScript Console&lt;/b&gt;&lt;p&gt;This toggles the JavaScript console window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Consola de JavaScript&lt;/b&gt;&lt;p&gt;Conmuta la ventana de consola de JavaScript.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1910"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1915"/>
         <source>&amp;File</source>
         <translation>&amp;Archivo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1942"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1947"/>
         <source>&amp;Edit</source>
         <translation>&amp;Editar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2181"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2186"/>
         <source>&amp;View</source>
         <translation>&amp;Ver</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1969"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1974"/>
         <source>Text Encoding</source>
         <translation>Codificación de Texto</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1981"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1986"/>
         <source>H&amp;istory</source>
         <translation>&amp;Historial</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1998"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2003"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Marcadores</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2014"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2019"/>
         <source>&amp;Settings</source>
         <translation>Con&amp;figuración</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2046"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2051"/>
         <source>Global User Agent</source>
         <translation>Agente de Usuario Global</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2212"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2217"/>
         <source>&amp;Tools</source>
         <translation>&amp;Herramientas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2087"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2092"/>
         <source>&amp;Help</source>
         <translation>A&amp;yuda</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2236"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2241"/>
         <source>File</source>
         <translation>Archivo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2261"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2266"/>
         <source>Edit</source>
         <translation>Editar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2274"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2279"/>
         <source>View</source>
         <translation>Ver</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2284"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2289"/>
         <source>Find</source>
         <translation>Buscar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2293"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2298"/>
         <source>Filter</source>
         <translation>Filtro</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2303"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2308"/>
         <source>Filtered by: </source>
         <translation>Filtrado por: </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2311"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2316"/>
         <source>Settings</source>
         <translation>Ajustes</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2323"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2328"/>
         <source>Tools</source>
         <translation>Herramientas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2332"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2337"/>
         <source>Help</source>
         <translation>Ayuda</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2339"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2344"/>
         <source>VirusTotal</source>
         <translation>VirusTotal</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1785"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1790"/>
         <source>Scan current site</source>
         <translation>Analizar sitio actual</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4613"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4626"/>
         <source>IP Address Report</source>
         <translation>Informe de Dirección IP</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4623"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4636"/>
         <source>Domain Report</source>
         <translation>Informe de Dominio</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>&lt;p&gt;Could not start the process.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;No se ha podido ejecutar el proceso.&lt;br&gt;Asegúrese de que esta disponible como &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>OK</source>
         <translation>OK</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2667"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2672"/>
         <source>Saved Tabs</source>
         <translation>Pestañas Guardadas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3392"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3399"/>
         <source>Could not find an associated content.</source>
         <translation>No se ha podido encontrar un contenido asociado.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3486"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3493"/>
         <source>Updating search index</source>
         <translation>Actualizando índice de búsqueda</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3560"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3567"/>
         <source>Looking for Documentation...</source>
         <translation>Buscando Documentación...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3590"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3597"/>
         <source>Unfiltered</source>
         <translation>Sin filtrar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3607"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3614"/>
         <source>Help Engine</source>
         <translation>Motor de Ayuda</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4144"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4151"/>
         <source>ISO</source>
         <translation>ISO</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4148"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4155"/>
         <source>Windows</source>
         <translation>Windows</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4146"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4153"/>
         <source>Unicode</source>
         <translation>Unicode</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4154"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4161"/>
         <source>Other</source>
         <translation>Otro</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4150"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4157"/>
         <source>IBM</source>
         <translation>IBM</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4578"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4591"/>
         <source>VirusTotal Scan</source>
         <translation>Análisis con VirusTotal</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4578"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4591"/>
         <source>&lt;p&gt;The VirusTotal scan could not be scheduled.&lt;p&gt;
 &lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El análisis con VirusTotal no se ha podido programar.&lt;p&gt;
 &lt;p&gt;Razón: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4604"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4617"/>
         <source>Enter a valid IPv4 address in dotted quad notation:</source>
         <translation>Introducir una dirección IPv4 válida en notación decimal punteada:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4613"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4626"/>
         <source>The given IP address is not in dotted quad notation.</source>
         <translation>La dirección IP no se ha proporcionado en notación decimal punteada.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4623"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4636"/>
         <source>Enter a valid domain name:</source>
         <translation>Introducir un nombre de dominio válido:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1757"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1762"/>
         <source>Tab Manager</source>
         <translation>Gestor de Pestañas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1761"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1766"/>
         <source>Shows the tab manager window</source>
         <translation>Muestra la ventana de gestor de pestañas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1763"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1768"/>
         <source>&lt;b&gt;Tab Manager&lt;/b&gt;&lt;p&gt;Shows the tab manager window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gestor de Pestañas&lt;/b&gt;&lt;p&gt;Muestra la ventana del gestor de pestañas.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
         <source>Save As</source>
         <translation>Guardar como</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
         <source>&amp;Save As...</source>
         <translation>Guardar co&amp;mo...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="743"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="748"/>
         <source>Save the current page to disk</source>
         <translation>Guardar página actual en disco</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="745"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="750"/>
         <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current page to disk.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Guardar Como...&lt;/b&gt;&lt;p&gt;Guarda la página actual en disco.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1061"/>
-        <source>Unselect</source>
-        <translation>Eliminar selección</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1066"/>
+        <source>Unselect</source>
+        <translation>Eliminar selección</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1071"/>
         <source>Clear current selection</source>
         <translation>Deshacer selección actual</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1067"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1072"/>
         <source>&lt;b&gt;Unselect&lt;/b&gt;&lt;p&gt;Clear the selection of the current browser.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Eliminar Selección&lt;/b&gt;&lt;p&gt;Deshacer la selección en el navegador actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1061"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1066"/>
         <source>Alt+Ctrl+A</source>
         <comment>Edit|Unselect</comment>
         <translation>Alt+Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2503"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2508"/>
         <source>HTML Files (*.html *.htm *.mhtml *.mht);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source>
         <translation>Archivos HTML (*.html *.htm *.mhtml *.mht);;Archivos PDF (*.pdf);;Archivos CHM (*.chm);;Todos los Archivos (*)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="937"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="942"/>
         <source>Move to the initial screen</source>
         <translation>Mover a la pantalla inicial</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1293"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1298"/>
         <source>Meta+Ctrl+F</source>
         <translation>Meta+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2218"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2223"/>
         <source>&amp;VirusTotal</source>
         <translation>&amp;VirusTotal</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2183"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2188"/>
         <source>&amp;Windows</source>
         <translation>&amp;Ventanas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2081"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2086"/>
         <source>&amp;Toolbars</source>
         <translation>&amp;Barra de Herramientas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2116"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2121"/>
         <source>Save</source>
         <translation>Guardar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2140"/>
         <source>Show All History...</source>
         <translation>Mostrar Todo el Historial...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4186"/>
         <source>Menu Bar</source>
         <translation>Barra de Menú</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4184"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4191"/>
         <source>Bookmarks</source>
         <translation>Marcadores</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4189"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4196"/>
         <source>Status Bar</source>
         <translation>Barra de Estado</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4203"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4210"/>
         <source>&amp;Show all</source>
         <translation>Mo&amp;strar todo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4205"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4212"/>
         <source>&amp;Hide all</source>
         <translation>&amp;Ocultar todo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="844"/>
-        <source>Send Page Link</source>
-        <translation>Enviar Enlace de Página</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="849"/>
+        <source>Send Page Link</source>
+        <translation>Enviar Enlace de Página</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="854"/>
         <source>Send the link of the current page via email</source>
         <translation>Enviar por email un enlace a la página actual</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="851"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="856"/>
         <source>&lt;b&gt;Send Page Link&lt;/b&gt;&lt;p&gt;Send the link of the current page via email.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Enviar Enlace de Página&lt;/b&gt;&lt;p&gt;Enviar por email un enlace a la página actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1771"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1776"/>
         <source>Session Manager</source>
         <translation>Gestor de Sesiones</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1771"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1776"/>
         <source>Session Manager...</source>
         <translation>Gestor de Sesiones...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1775"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1780"/>
         <source>Shows the session manager window</source>
         <translation>Muestra la ventana de gestor de sesiones</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1777"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1782"/>
         <source>&lt;b&gt;Session Manager&lt;/b&gt;&lt;p&gt;Shows the session manager window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gestor de Sesiones&lt;/b&gt;&lt;p&gt;Muestra la ventana del gestor de sesiones.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2109"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2114"/>
         <source>Sessions</source>
         <translation>Sesiones</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2845"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2850"/>
         <source>Are you sure you want to close the web browser?</source>
         <translation>¿Realmente desea cerrar el navegador web?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2845"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2850"/>
         <source>Are you sure you want to close the web browser?
 You have {0} windows with {1} tabs open.</source>
         <translation>¿Desea realmente cerrar el navegador web?
 Tiene {0} ventanas con {1} pestañas abiertas.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1635"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/>
         <source>Manage Safe Browsing</source>
         <translation>Gestionar Navegación Segura</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1635"/>
-        <source>Manage Safe Browsing...</source>
-        <translation>Gestionar Navegación Segura...</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1642"/>
-        <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Gestionar Navegación Segura&lt;/b&gt;&lt;p&gt;Abre un diálogo para configurar la Navegación Segura y gestionar la caché local.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/>
+        <source>Manage Safe Browsing...</source>
+        <translation>Gestionar Navegación Segura...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1647"/>
+        <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Gestionar Navegación Segura&lt;/b&gt;&lt;p&gt;Abre un diálogo para configurar la Navegación Segura y gestionar la caché local.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1645"/>
         <source>Configure Safe Browsing and manage local cache</source>
         <translation>Configurar la Navegación Segura y gestionar la caché local</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="762"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="767"/>
         <source>&lt;b&gt;Save Page Screen...&lt;/b&gt;&lt;p&gt;Saves the visible part of the current page as a screen shot.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Guardar Captura de Pantalla de la Página...&lt;/b&gt;&lt;p&gt;Guarda la parte visible de la página actual como una captura de pantalla.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1823"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1828"/>
         <source>Keyboard Shortcuts</source>
         <translation>Atajos de Teclado</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1823"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1828"/>
         <source>Keyboard &amp;Shortcuts...</source>
         <translation>Atajo&amp;s de Teclado...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1829"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1834"/>
         <source>Set the keyboard shortcuts</source>
         <translation>Establecer los atajos de teclado</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1831"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1836"/>
         <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Atajos de Teclado&lt;/b&gt;&lt;p&gt;Establezca los atajos de teclado para la aplicación con sus valores preferidos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5009"/>
         <source>Export Keyboard Shortcuts</source>
         <translation>Exportar Atajos de Teclado</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1839"/>
-        <source>&amp;Export Keyboard Shortcuts...</source>
-        <translation>&amp;Exportar Atajos de Teclado...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1844"/>
+        <source>&amp;Export Keyboard Shortcuts...</source>
+        <translation>&amp;Exportar Atajos de Teclado...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1849"/>
         <source>Export the keyboard shortcuts</source>
         <translation>Exportar los atajos de teclado</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1846"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1851"/>
         <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Exportar Atajos de Teclado&lt;/b&gt;&lt;p&gt;Exportar los atajos de teclado de la aplicación.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5007"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5025"/>
         <source>Import Keyboard Shortcuts</source>
         <translation>Importar Atajos de Teclado</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1853"/>
-        <source>&amp;Import Keyboard Shortcuts...</source>
-        <translation>&amp;Importar Atajos de Teclado...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1858"/>
+        <source>&amp;Import Keyboard Shortcuts...</source>
+        <translation>&amp;Importar Atajos de Teclado...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1863"/>
         <source>Import the keyboard shortcuts</source>
         <translation>Importar los atajos de teclado</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1860"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1865"/>
         <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Importar Atajos de Teclado&lt;/b&gt;&lt;p&gt;Importar los atajos de teclado de la aplicación.&lt;/p&gt;</translation>
     </message>
@@ -87599,37 +87609,37 @@
         <translation type="obsolete">Archivo de atajos de teclado (*.e4k)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1867"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1872"/>
         <source>Protocol Handler Manager</source>
         <translation>Organizador de Gestores de Protocolo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1867"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1872"/>
         <source>Protocol Handler Manager...</source>
         <translation>Organizador de Gestores de Protocolo...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1871"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1876"/>
         <source>Shows the protocol handler manager window</source>
         <translation>Muestra la ventana de organizador de gestores de protocolo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1873"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1878"/>
         <source>&lt;b&gt;Protocol Handler Manager&lt;/b&gt;&lt;p&gt;Shows the protocol handler manager window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Organizador de Gestores de Protocolo&lt;/b&gt;&lt;p&gt;Muestra la ventana de organizador de gestores de protocolo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4141"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4148"/>
         <source>System</source>
         <translation>Sistema</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4152"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4159"/>
         <source>Apple</source>
         <translation>Apple</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2189"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2194"/>
         <source>QtHelp</source>
         <translation>QtHelp</translation>
     </message>
@@ -87639,37 +87649,37 @@
         <translation>Navegador Web de eric (Modo Privado)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3570"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3577"/>
         <source>eric Web Browser</source>
         <translation>Navegador Web de eric</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="892"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="897"/>
         <source>Quit the eric Web Browser</source>
         <translation>Salir del Navegador Web de eric</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="893"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="898"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Salir&lt;/b&gt;&lt;p&gt;Salir del Navegador Web de eric.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2544"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2549"/>
         <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chrome {2}.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Navegador Web de eric- {0}&lt;/b&gt;&lt;p&gt;El Navegador Web de eric is una combinación de navegador de archivos de ayuda y de HTML. Es parte del conjunto de herramientas de desarrollo de eric.&lt;/p&gt;&lt;p&gt;Está basado en QtWebEngine {1} y Chrome {2}.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4972"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4990"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard Shortcuts File (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5009"/>
         <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5007"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5025"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -88022,12 +88032,12 @@
 <context>
     <name>eric6</name>
     <message>
-        <location filename="../eric6.py" line="397"/>
+        <location filename="../eric6.py" line="398"/>
         <source>Starting...</source>
         <translation>Comenzando...</translation>
     </message>
     <message>
-        <location filename="../eric6.py" line="402"/>
+        <location filename="../eric6.py" line="403"/>
         <source>Generating Main Window...</source>
         <translation>Generando Ventana Principal...</translation>
     </message>
--- a/eric6/i18n/eric6_fr.ts	Tue Mar 02 19:22:12 2021 +0100
+++ b/eric6/i18n/eric6_fr.ts	Tue Mar 02 19:49:43 2021 +0100
@@ -107,22 +107,22 @@
         <translation>Actions</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="166"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="167"/>
         <source>Learn more about writing rules...</source>
         <translation>Savoir plus sur comment écrire des règles ...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="159"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="160"/>
         <source>Update Subscription</source>
         <translation>Actualiser subscription</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="146"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="147"/>
         <source>Browse Subscriptions...</source>
         <translation>Parcourir subscriptions...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="243"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="244"/>
         <source>Remove Subscription</source>
         <translation>Effacer subscription</translation>
     </message>
@@ -142,37 +142,37 @@
         <translation>Rechercher...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="139"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="140"/>
         <source>Add Rule</source>
         <translation>Ajouter règle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="142"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="143"/>
         <source>Remove Rule</source>
         <translation>Effacer règle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="154"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="155"/>
         <source>Disable Subscription</source>
         <translation>Desactiver subscription</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="156"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="157"/>
         <source>Enable Subscription</source>
         <translation>Activer subscription</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="162"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="163"/>
         <source>Update All Subscriptions</source>
         <translation>Actualiser toutes les subscriptions</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="233"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="234"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt; and all subscriptions requiring it?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</source>
         <translation>&lt;p&gt;Voulez vous vraiment effacer la subscription &lt;b&gt;{0}&lt;/b&gt;et toutes les subscriptions qui en ont besoin?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="240"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="241"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Voulez vous vraiment effacer la subscription &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</translation>
     </message>
@@ -286,17 +286,17 @@
 <context>
     <name>AdBlockManager</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="232"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="233"/>
         <source>Custom Rules</source>
         <translation>Règles personnalisées</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="334"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="335"/>
         <source>Subscribe?</source>
         <translation>Souscrire ?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="334"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="335"/>
         <source>&lt;p&gt;Subscribe to this AdBlock subscription?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Souscrire à AdBlock ?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
@@ -304,22 +304,22 @@
 <context>
     <name>AdBlockSubscription</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="291"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="294"/>
         <source>Load subscription rules</source>
         <translation>Charger règles de subscriptions</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="500"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="503"/>
         <source>Downloading subscription rules</source>
         <translation>En train de telecharger les règles de subscriptions</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="410"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="413"/>
         <source>Got empty subscription rules.</source>
         <translation>Reçu des règles de subscriptions vides.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="523"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="527"/>
         <source>Saving subscription rules</source>
         <translation>En train d&apos;enregistrer les règles de subscription</translation>
     </message>
@@ -329,7 +329,7 @@
         <translation type="obsolete">Impossible d&apos;ouvrir en lecture le fichier AdBlock &apos;{0}&apos;.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="397"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="400"/>
         <source>&lt;p&gt;Subscription rules could not be downloaded.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt; Les règles de subscription n&apos;ont pas pu être téléchargées. &lt;/p&gt;&lt;p&gt;Erreur: {0}&lt;/p&gt;</translation>
     </message>
@@ -339,22 +339,22 @@
         <translation type="obsolete">Impossible d&apos;ouvrir en écriture le fichier AdBlock &apos;{0}&apos;.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="291"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="294"/>
         <source>AdBlock file &apos;{0}&apos; does not start with [Adblock.</source>
         <translation>Le fichier AdBlock &apos;{0}&apos; ne commence pas par [Adblock.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="500"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="503"/>
         <source>&lt;p&gt;AdBlock subscription &lt;b&gt;{0}&lt;/b&gt; has a wrong checksum.&lt;br/&gt;Found: {1}&lt;br/&gt;Calculated: {2}&lt;br/&gt;Use it anyway?&lt;/p&gt;</source>
         <translation>&lt;p&gt; Subscription AdBlock &lt;b&gt;{0}&lt;/b&gt; a un checksum faux.&lt;br/&gt;Trouvé: {1}&lt;br/&gt;Calculé: {2}&lt;br/&gt;L&apos;utiliser quand même?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="281"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="284"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for reading.</source>
         <translation>Impossible d&apos;ouvrir le fichier AdBlock &apos;{0}&apos; en lecture.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="523"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="527"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for writing.</source>
         <translation>Impossible d&apos;ouvrir le fichier AdBlock &apos;{0}&apos; en écriture.</translation>
     </message>
@@ -362,27 +362,27 @@
 <context>
     <name>AdBlockTreeWidget</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="123"/>
         <source>Add Custom Rule</source>
         <translation>Ajouter règle personnalisée</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="123"/>
         <source>Write your rule here:</source>
         <translation>Ecrivez votre règle ici:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="164"/>
-        <source>Add Rule</source>
-        <translation>Ajouter règle</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="166"/>
+        <source>Add Rule</source>
+        <translation>Ajouter règle</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="168"/>
         <source>Remove Rule</source>
         <translation>Effacer règle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="219"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="227"/>
         <source>{0} (recently updated)</source>
         <translation>{0} (actualisé récemment)</translation>
     </message>
@@ -1169,7 +1169,7 @@
         <translation>Entrer une courte description du projet</translation>
     </message>
     <message>
-        <location filename="../MultiProject/AddProjectDialog.py" line="64"/>
+        <location filename="../MultiProject/AddProjectDialog.py" line="65"/>
         <source>Project Properties</source>
         <translation>Propriétés du projet</translation>
     </message>
@@ -1639,37 +1639,37 @@
 <context>
     <name>BackgroundService</name>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="134"/>
+        <location filename="../Utilities/BackgroundService.py" line="135"/>
         <source>{0} not configured.</source>
         <translation>{0} n&apos;est pas configuré.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="189"/>
+        <location filename="../Utilities/BackgroundService.py" line="190"/>
         <source>Restart background client?</source>
         <translation>Redémarrer le client en arrière plan ?</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="444"/>
+        <location filename="../Utilities/BackgroundService.py" line="445"/>
         <source>Eric&apos;s background client disconnected because of an unknown reason.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="450"/>
+        <location filename="../Utilities/BackgroundService.py" line="451"/>
         <source>Background client disconnected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="189"/>
+        <location filename="../Utilities/BackgroundService.py" line="190"/>
         <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It&apos;s used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;&apos;Yes&apos;&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Retry&apos;&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;No&apos;&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="450"/>
+        <location filename="../Utilities/BackgroundService.py" line="451"/>
         <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="215"/>
+        <location filename="../Utilities/BackgroundService.py" line="216"/>
         <source>An error in Eric&apos;s background client stopped the service.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1926,32 +1926,32 @@
         <translation>Ajouter &amp;Répertoire</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="155"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="156"/>
         <source>&amp;Open</source>
         <translation>&amp;Ouvrir</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="157"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="158"/>
         <source>Open in New &amp;Tab</source>
         <translation>Ouvrir dans un nouvel &amp;onglet</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="168"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="169"/>
         <source>Edit &amp;Name</source>
         <translation>Éditer &amp;Nom</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="171"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="172"/>
         <source>Edit &amp;Address</source>
         <translation>Éditer &amp;Adresse</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="173"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="174"/>
         <source>&amp;Delete</source>
         <translation>&amp;Supprimer</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="342"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="355"/>
         <source>New Folder</source>
         <translation>Nouveau répertoire</translation>
     </message>
@@ -1961,37 +1961,37 @@
         <translation>Cliquer pour supprimer les entrées sélectionnées</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="177"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="178"/>
         <source>&amp;Properties...</source>
         <translation>&amp;Propriétés...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="162"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="163"/>
         <source>Open in New &amp;Window</source>
         <translation>Ouvrir dans une Nouvelle &amp;Fenêtre</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="164"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="165"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation>Ouvrir dans une Nouvelle Fenêtre Pri&amp;vée</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="159"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="160"/>
         <source>Open in New &amp;Background Tab</source>
         <translation>Ouvrir &amp;dans un nouvel onglet de fond</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="181"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="182"/>
         <source>New &amp;Folder...</source>
         <translation>Nouveau &amp;Dossier...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="334"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="347"/>
         <source>New Bookmark Folder</source>
         <translation>Nouveau Dossier de Signets</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="334"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="347"/>
         <source>Enter title for new bookmark folder:</source>
         <translation>Entrer le titre pour le nouveau dossier de signets :</translation>
     </message>
@@ -2310,72 +2310,72 @@
 <context>
     <name>BreakPointViewer</name>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="52"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="54"/>
         <source>Breakpoints</source>
         <translation>Point d&apos;arrêts</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="159"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="165"/>
         <source>Edit...</source>
         <translation>Éditer...</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="161"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="167"/>
         <source>Enable</source>
         <translation>Activer</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="196"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="202"/>
         <source>Enable all</source>
         <translation>Tout activer</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="164"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="170"/>
         <source>Disable</source>
         <translation>Désactiver</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="201"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="207"/>
         <source>Disable all</source>
         <translation>Tout désactiver</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="168"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="174"/>
         <source>Delete</source>
         <translation>Supprimer</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="206"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="212"/>
         <source>Delete all</source>
         <translation>Tout supprimer</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="171"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="177"/>
         <source>Goto</source>
         <translation>Aller à</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="194"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="200"/>
         <source>Enable selected</source>
         <translation>Activer la sélection</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="199"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="205"/>
         <source>Disable selected</source>
         <translation>Désactiver la sélection</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="204"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="210"/>
         <source>Delete selected</source>
         <translation>Supprimer la sélection</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="192"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="198"/>
         <source>Add</source>
         <translation>Ajouter</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="209"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="215"/>
         <source>Configure...</source>
         <translation>Configuration...</translation>
     </message>
@@ -2383,12 +2383,12 @@
 <context>
     <name>Browser</name>
     <message>
-        <location filename="../UI/Browser.py" line="282"/>
+        <location filename="../UI/Browser.py" line="284"/>
         <source>Open</source>
         <translation>Ouvrir</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="231"/>
+        <location filename="../UI/Browser.py" line="233"/>
         <source>Run unittest...</source>
         <translation>Lancer un run test...</translation>
     </message>
@@ -2398,27 +2398,27 @@
         <translation>Navigateur de fichiers</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="340"/>
+        <location filename="../UI/Browser.py" line="342"/>
         <source>New toplevel directory...</source>
         <translation>Nouveau répertoire racine...</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="299"/>
+        <location filename="../UI/Browser.py" line="301"/>
         <source>Remove from toplevel</source>
         <translation>Supprimer du niveau racine</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="296"/>
+        <location filename="../UI/Browser.py" line="298"/>
         <source>Add as toplevel directory</source>
         <translation>Ajouter en tant que répertoire racine</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="642"/>
+        <location filename="../UI/Browser.py" line="644"/>
         <source>New toplevel directory</source>
         <translation>Nouveau répertoire racine</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="307"/>
+        <location filename="../UI/Browser.py" line="309"/>
         <source>Find in this directory</source>
         <translation>Trouver dans ce répertoire</translation>
     </message>
@@ -2433,27 +2433,27 @@
         <translation type="obsolete">Rechercher&amp;&amp;Rempacer dans ce répertoire</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="261"/>
+        <location filename="../UI/Browser.py" line="263"/>
         <source>Open in Icon Editor</source>
         <translation>Ouvrir dans Icon Editor</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="314"/>
+        <location filename="../UI/Browser.py" line="316"/>
         <source>Copy Path to Clipboard</source>
         <translation>Copier chemin dans le Presse-Papiers</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="303"/>
+        <location filename="../UI/Browser.py" line="305"/>
         <source>Refresh directory</source>
         <translation>Rafraichir répertoire</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="326"/>
+        <location filename="../UI/Browser.py" line="328"/>
         <source>Goto</source>
         <translation>Aller à</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="433"/>
+        <location filename="../UI/Browser.py" line="435"/>
         <source>Line {0}</source>
         <translation>Ligne {0}</translation>
     </message>
@@ -2463,152 +2463,152 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="553"/>
+        <location filename="../UI/Browser.py" line="555"/>
         <source>Show Mime-Type</source>
         <translation>Montrer le type Mime</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="526"/>
+        <location filename="../UI/Browser.py" line="528"/>
         <source>The mime type of the file could not be determined.</source>
         <translation>Le type mime du fichier n&apos;a pas pu être déterminé.</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="544"/>
+        <location filename="../UI/Browser.py" line="546"/>
         <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.</source>
         <translation>Le fichier a le type mime &lt;b&gt;{0}&lt;/b&gt;.</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="553"/>
+        <location filename="../UI/Browser.py" line="555"/>
         <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt; Shall it be added to the list of text mime types?</source>
         <translation>Le fichier a le type mime &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt; Faut-il l&apos;ajouter à la liste des types mime texte ?</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="258"/>
+        <location filename="../UI/Browser.py" line="260"/>
         <source>Open in Hex Editor</source>
         <translation>Ouvrir dans Hex Editor</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="310"/>
+        <location filename="../UI/Browser.py" line="312"/>
         <source>Find &amp;&amp; Replace in this directory</source>
         <translation>Chercher &amp;&amp; Remplacer dans ce répertoire</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="239"/>
+        <location filename="../UI/Browser.py" line="241"/>
         <source>Refresh Source File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="212"/>
+        <location filename="../UI/Browser.py" line="214"/>
         <source>Show Hidden Files</source>
         <translation type="unfinished">Montrer les fichiers cachés</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="219"/>
-        <source>New</source>
-        <translation type="unfinished">Nouveau</translation>
-    </message>
-    <message>
         <location filename="../UI/Browser.py" line="221"/>
+        <source>New</source>
+        <translation type="unfinished">Nouveau</translation>
+    </message>
+    <message>
+        <location filename="../UI/Browser.py" line="223"/>
         <source>Directory</source>
         <translation type="unfinished">Répertoire</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="224"/>
+        <location filename="../UI/Browser.py" line="226"/>
         <source>File</source>
         <translation type="unfinished">Fichier</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="321"/>
+        <location filename="../UI/Browser.py" line="323"/>
         <source>Delete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="879"/>
+        <location filename="../UI/Browser.py" line="881"/>
         <source>New Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="861"/>
+        <location filename="../UI/Browser.py" line="863"/>
         <source>Name for new directory:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="902"/>
+        <location filename="../UI/Browser.py" line="904"/>
         <source>A file or directory named &lt;b&gt;{0}&lt;/b&gt; exists already. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="879"/>
+        <location filename="../UI/Browser.py" line="881"/>
         <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Le répertoire &lt;b&gt;{0}&lt;/b&gt; ne peut être créé.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="913"/>
+        <location filename="../UI/Browser.py" line="915"/>
         <source>New File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="894"/>
+        <location filename="../UI/Browser.py" line="896"/>
         <source>Name for new file:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="913"/>
+        <location filename="../UI/Browser.py" line="915"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="942"/>
+        <location filename="../UI/Browser.py" line="944"/>
         <source>Do you really want to move this file to the trash?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="946"/>
+        <location filename="../UI/Browser.py" line="948"/>
         <source>Do you really want to delete this file?</source>
         <translation type="unfinished">Voulez-vous vraiment supprimer ce fichier ?</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1043"/>
+        <location filename="../UI/Browser.py" line="1045"/>
         <source>Delete File</source>
         <translation type="unfinished">Supprimer le fichier</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1043"/>
+        <location filename="../UI/Browser.py" line="1045"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Le fichier sélectionné &lt;b&gt;{0}&lt;/b&gt; ne peut être supprimé.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="979"/>
+        <location filename="../UI/Browser.py" line="981"/>
         <source>Do you really want to move this directory to the trash?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="983"/>
+        <location filename="../UI/Browser.py" line="985"/>
         <source>Do you really want to delete this directory?</source>
         <translation type="unfinished">Voulez-vous vraiment supprimer ce répertoire ?</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1000"/>
+        <location filename="../UI/Browser.py" line="1002"/>
         <source>Delete Directory</source>
         <translation type="unfinished">Supprimer le répertoire</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1000"/>
+        <location filename="../UI/Browser.py" line="1002"/>
         <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Le répertoire sélectionné &lt;b&gt;{0}&lt;/b&gt; ne peut être supprimé.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1023"/>
+        <location filename="../UI/Browser.py" line="1025"/>
         <source>Do you really want to move these files to the trash?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1027"/>
+        <location filename="../UI/Browser.py" line="1029"/>
         <source>Do you really want to delete these files?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1032"/>
+        <location filename="../UI/Browser.py" line="1034"/>
         <source>Delete Files</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2621,27 +2621,27 @@
         <translation>Nom</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="759"/>
+        <location filename="../UI/BrowserModel.py" line="766"/>
         <source>Attributes</source>
         <translation>Attributs</translation>
     </message>
     <message>
+        <location filename="../UI/BrowserModel.py" line="667"/>
+        <source>Globals</source>
+        <translation>Variables globales</translation>
+    </message>
+    <message>
         <location filename="../UI/BrowserModel.py" line="660"/>
-        <source>Globals</source>
-        <translation>Variables globales</translation>
-    </message>
-    <message>
-        <location filename="../UI/BrowserModel.py" line="653"/>
         <source>Coding: {0}</source>
         <translation>Codage: {0}</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="769"/>
+        <location filename="../UI/BrowserModel.py" line="776"/>
         <source>Class Attributes</source>
         <translation>Attributs de classe</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="666"/>
+        <location filename="../UI/BrowserModel.py" line="673"/>
         <source>Imports</source>
         <translation>Imports</translation>
     </message>
@@ -2664,7 +2664,7 @@
         <translation>Sauvegarder</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="71"/>
+        <location filename="../Debugger/CallStackViewer.py" line="72"/>
         <source>File: {0}
 Line: {1}
 {2}{3}</source>
@@ -2673,34 +2673,34 @@
 {2}{3}</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="73"/>
+        <location filename="../Debugger/CallStackViewer.py" line="74"/>
         <source>File: {0}
 Line: {1}</source>
         <translation>Fichier : {0}
 Ligne : {1}</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="202"/>
+        <location filename="../Debugger/CallStackViewer.py" line="203"/>
         <source>Save Call Stack Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="188"/>
+        <location filename="../Debugger/CallStackViewer.py" line="189"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation>Fichiers texte (*.txt);;Tous les fichiers (*)</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="202"/>
+        <location filename="../Debugger/CallStackViewer.py" line="203"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="224"/>
+        <location filename="../Debugger/CallStackViewer.py" line="225"/>
         <source>Error saving Call Stack Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="224"/>
+        <location filename="../Debugger/CallStackViewer.py" line="225"/>
         <source>&lt;p&gt;The call stack info could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2710,7 +2710,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="213"/>
+        <location filename="../Debugger/CallStackViewer.py" line="214"/>
         <source>Call Stack of &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3362,32 +3362,32 @@
 <context>
     <name>CodeDocumentationViewer</name>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="208"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="211"/>
         <source>Code Info Provider:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="221"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="227"/>
         <source>Select the code info provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="223"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="229"/>
         <source>&lt;disabled&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="404"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="410"/>
         <source>No documentation available</source>
         <translation>Pas de documentation disponible</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="425"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="431"/>
         <source>No source code documentation provider has been registered. This function has been disabled.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="430"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="436"/>
         <source>This function has been disabled.</source>
         <translation>Cette fonction a été désactivée.</translation>
     </message>
@@ -3418,32 +3418,32 @@
 <context>
     <name>CodeMetricsDialog</name>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="203"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="215"/>
         <source>empty lines</source>
         <translation>lignes vides</translation>
     </message>
     <message>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="217"/>
+        <source>non-commentary lines</source>
+        <translation>lignes non-commentaires</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="211"/>
+        <source>comments</source>
+        <translation>commentaires</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="209"/>
+        <source>bytes</source>
+        <translation>octets</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="207"/>
+        <source>lines</source>
+        <translation>lignes</translation>
+    </message>
+    <message>
         <location filename="../DataViews/CodeMetricsDialog.py" line="205"/>
-        <source>non-commentary lines</source>
-        <translation>lignes non-commentaires</translation>
-    </message>
-    <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="199"/>
-        <source>comments</source>
-        <translation>commentaires</translation>
-    </message>
-    <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="197"/>
-        <source>bytes</source>
-        <translation>octets</translation>
-    </message>
-    <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="195"/>
-        <source>lines</source>
-        <translation>lignes</translation>
-    </message>
-    <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="193"/>
         <source>files</source>
         <translation>fichiers</translation>
     </message>
@@ -3554,17 +3554,17 @@
         <translation>Fichiers %v/%m</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="201"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="213"/>
         <source>comment lines</source>
         <translation>lignes de commentaire</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="52"/>
-        <source>Collapse All</source>
-        <translation type="unfinished">Tout contracter</translation>
-    </message>
-    <message>
         <location filename="../DataViews/CodeMetricsDialog.py" line="54"/>
+        <source>Collapse All</source>
+        <translation type="unfinished">Tout contracter</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="56"/>
         <source>Expand All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3798,7 +3798,7 @@
         <translation>Appuyer pour montrer tous les fichiers contenant une erreur</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="244"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="246"/>
         <source>Error: {0}</source>
         <translation>Erreur : {0}</translation>
     </message>
@@ -3808,7 +3808,7 @@
         <translation>Correction : {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1037"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1044"/>
         <source>No issues found.</source>
         <translation>Pas d&apos;erreur trouvée.</translation>
     </message>
@@ -3833,12 +3833,12 @@
         <translation>Montrer les erreurs ignorées</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="963"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="968"/>
         <source>{0} (ignored)</source>
         <translation>{0} (ignoré)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="856"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="861"/>
         <source>Preparing files...</source>
         <translation>Préparation des fichiers...</translation>
     </message>
@@ -3848,12 +3848,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="217"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="219"/>
         <source>Errors</source>
         <translation>Erreurs</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="895"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="900"/>
         <source>Transferring data...</source>
         <translation>Transfert des données...</translation>
     </message>
@@ -3958,7 +3958,7 @@
         <translation>&amp;Réinitialiser valeurs par défaut</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1040"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1047"/>
         <source>No files found (check your ignore list).</source>
         <translation>Pas de fichier trouvé (vérifier votre liste d&apos;ignorés).</translation>
     </message>
@@ -4268,12 +4268,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2004"/>
         <source>Commented Code Whitelist Pattern</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2004"/>
         <source>Enter a Commented Code Whitelist Pattern</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5130,7 +5130,7 @@
 <context>
     <name>CondaExecDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="96"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="102"/>
         <source>Conda Execution</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5157,48 +5157,48 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="96"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="102"/>
         <source>The conda executable could not be started. Is it configured correctly?</source>
         <translation>L&apos;exécutable conda n&apos;a pas pu être lancé. Est il correctement configuré ?</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="103"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="109"/>
         <source>Operation started.
 </source>
         <translation>Lancement de l&apos;opération.
 </translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="134"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="143"/>
         <source>Operation finished.
 </source>
         <translation>Opération terminée.
 </translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="154"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="163"/>
         <source>Conda command &apos;{0}&apos; did not return success.</source>
         <translation>La commande Conda &apos;{0}&apos; n&apos;a pas fonctionnée.</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="164"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="173"/>
         <source>
 Conda Message: {0}</source>
         <translation>
 Message Conda : {0}</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="203"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="212"/>
         <source>{0} (Size: {1})</source>
         <translation>{0} (Size: {1})</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="208"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="217"/>
         <source>Fetching {0} ...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="212"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="221"/>
         <source> Done.
 </source>
         <translation> Terminé.
@@ -5208,7 +5208,7 @@
 <context>
     <name>CondaExportDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="209"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="211"/>
         <source>Generate Requirements</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5288,27 +5288,27 @@
         <translation>&amp;Rafraichir</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="209"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="211"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation>Fichiers texte (*.txt);;Tous les fichiers (*)</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="109"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="111"/>
         <source>The requirements were changed. Do you want to overwrite these changes?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="140"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="142"/>
         <source>No output generated by conda.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="177"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="179"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; already exists. Do you want to overwrite it?</source>
         <translation>Le fichier &lt;b&gt;{0}&lt;/b&gt; existe déjà. Voulez-vous l&apos;écraser ?</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="189"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="191"/>
         <source>&lt;p&gt;The requirements could not be written to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5495,7 +5495,7 @@
 <context>
     <name>CondaPackageDetailsDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaPackageDetailsWidget.py" line="91"/>
+        <location filename="../CondaInterface/CondaPackageDetailsWidget.py" line="93"/>
         <source>Package Details</source>
         <translation>Détails du package</translation>
     </message>
@@ -5706,132 +5706,132 @@
         <translation>Menu Conda</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="123"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="125"/>
         <source>Clean</source>
         <translation>Nettoyer</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="124"/>
-        <source>All</source>
-        <translation>Tous</translation>
-    </message>
-    <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="126"/>
-        <source>Cache</source>
-        <translation type="unfinished"></translation>
+        <source>All</source>
+        <translation>Tous</translation>
     </message>
     <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="128"/>
+        <source>Cache</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="130"/>
         <source>Lock Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="131"/>
-        <source>Packages</source>
-        <translation>Packages</translation>
-    </message>
-    <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="133"/>
+        <source>Packages</source>
+        <translation>Packages</translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="135"/>
         <source>Tarballs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="136"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="138"/>
         <source>About Conda...</source>
         <translation>À propos de Conda...</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="139"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="141"/>
         <source>Update Conda</source>
         <translation>Mettre à jour Conda</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="575"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="581"/>
         <source>Install Packages</source>
         <translation>Installer des Packages</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="144"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="146"/>
         <source>Install Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="147"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="149"/>
         <source>Generate Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="150"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="152"/>
         <source>Create Environment from Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="617"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="623"/>
         <source>Clone Environment</source>
         <translation>Cloner l&apos;environnement</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="662"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="668"/>
         <source>Delete Environment</source>
         <translation>Supprimer l&apos;environnement</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="160"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="162"/>
         <source>Edit User Configuration...</source>
         <translation>Éditer la configuration utilisateur...</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="164"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="166"/>
         <source>Configure...</source>
         <translation>Configuration...</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="221"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="223"/>
         <source>Getting installed packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="234"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="236"/>
         <source>Getting outdated packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="256"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="260"/>
         <source>{0} (Build: {1})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="397"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="403"/>
         <source>Conda Search Package Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="555"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="561"/>
         <source>Package Specifications (separated by whitespace):</source>
         <translation type="unfinished">Spécifications de package (séparées par un espace) :</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="575"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="581"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation>Fichiers texte (*.txt);;Tous les fichiers (*)</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="641"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="647"/>
         <source>Create Environment</source>
         <translation>Créer l&apos;environnement</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="662"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="668"/>
         <source>&lt;p&gt;Shall the environment &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation>&lt;p&gt;L&apos;environment &lt;b&gt;{0}&lt;/b&gt;  doit il vraiment être suppimé ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="687"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="693"/>
         <source>Edit Configuration</source>
         <translation>Éditer la configuration</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="687"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="693"/>
         <source>The configuration file &quot;{0}&quot; does not exist or is not writable.</source>
         <translation>Le fichier de configuration &quot;{0}&quot; n&apos;existe pas ou n&apos;est pas accessible en écriture.</translation>
     </message>
@@ -6027,7 +6027,7 @@
         <translation>Gestionnaire d&apos;affichage</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="661"/>
         <source>Configuration Page Error</source>
         <translation>Erreur de la page de configuration</translation>
     </message>
@@ -6062,12 +6062,12 @@
         <translation>Propriétés</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="571"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="578"/>
         <source>Preferences</source>
         <translation>Préférences</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="576"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="584"/>
         <source>Please select an entry of the list 
 to display the configuration page.</source>
         <translation>Choisir une entrée dans la liste
@@ -6089,7 +6089,7 @@
         <translation>Python3</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
+        <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 page de configuration &lt;b&gt;{0}&lt;/b&gt; n&apos;a pas pu être chargée.&lt;/p&gt;</translation>
     </message>
@@ -6322,17 +6322,17 @@
         <translation>État (status)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="82"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="87"/>
         <source>Allow</source>
         <translation>Autorisé</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="91"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="96"/>
         <source>Block</source>
         <translation>Bloqué</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="100"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="105"/>
         <source>Allow For Session</source>
         <translation>Autorisé pour la session</translation>
     </message>
@@ -6501,7 +6501,7 @@
         <translation>Domaine :</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="175"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="176"/>
         <source>&lt;no cookie selected&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6546,37 +6546,37 @@
         <translation>Appuyer pour supprimer tous les cookies</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="143"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="144"/>
         <source>Remove All Cookies</source>
         <translation>Supprimer tous les cookies</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="143"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="144"/>
         <source>Do you really want to remove all stored cookies?</source>
         <translation>Voulez-vous vraiment supprimer tous les cookies stockés ?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="177"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="178"/>
         <source>Remove Cookies</source>
         <translation>Supprimer les cookies</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="186"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="187"/>
         <source>Secure connections only</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="188"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="189"/>
         <source>All connections</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="190"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="191"/>
         <source>Session Cookie</source>
         <translation>Cookie de la session</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="197"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="198"/>
         <source>Remove Cookie</source>
         <translation>Supprimer le cookie</translation>
     </message>
@@ -6863,57 +6863,57 @@
         <translation>Filtrer &amp;avec:</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="578"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="580"/>
         <source>Code Generation</source>
         <translation>Génération de code</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="225"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="226"/>
         <source>uic error</source>
         <translation>erreur uic</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="135"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="136"/>
         <source>Create Dialog Code</source>
         <translation>Création du code de boite de dialogue</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="135"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="136"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; exists but does not contain any classes.</source>
         <translation>Le fichier &lt;b&gt;{0}&lt;/b&gt; existe mais ne contient pas de classes.</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="216"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="217"/>
         <source>&lt;p&gt;There was an error loading the form &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Erreur de chargement du formulaire &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="448"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="449"/>
         <source>&lt;p&gt;Could not open the code template file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Erreur d&apos;ouverture du fichier de template &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Raison: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="485"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="486"/>
         <source>&lt;p&gt;Could not open the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Erreur d&apos;ouverture du fichier source &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Raison: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="578"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="580"/>
         <source>&lt;p&gt;Could not write the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Erreur d&apos;écriture du fichier source &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Raison: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="225"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="226"/>
         <source>&lt;p&gt;The project specific Python interpreter &lt;b&gt;{0}&lt;/b&gt; could not be started or did not finish within 30 seconds.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="401"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="402"/>
         <source>&lt;p&gt;Code generation for project language &quot;{0}&quot; is not supported.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="437"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="438"/>
         <source>&lt;p&gt;No code template file available for project type &quot;{0}&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6956,12 +6956,12 @@
         <translation>modifiée</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="865"/>
+        <location filename="../Debugger/DebugServer.py" line="867"/>
         <source>Connection from illegal host</source>
         <translation>Connexion en provenance d&apos;un hote illégal</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1875"/>
+        <location filename="../Debugger/DebugServer.py" line="1877"/>
         <source>
 Not connected
 </source>
@@ -6970,39 +6970,39 @@
 </translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="865"/>
+        <location filename="../Debugger/DebugServer.py" line="867"/>
         <source>&lt;p&gt;A connection was attempted by the illegal host &lt;b&gt;{0}&lt;/b&gt;. Accept this connection?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="2144"/>
+        <location filename="../Debugger/DebugServer.py" line="2146"/>
         <source>Passive debug connection received
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="2158"/>
+        <location filename="../Debugger/DebugServer.py" line="2160"/>
         <source>Passive debug connection closed
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="351"/>
+        <location filename="../Debugger/DebugServer.py" line="353"/>
         <source>Register Debugger Interface</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="351"/>
+        <location filename="../Debugger/DebugServer.py" line="353"/>
         <source>&lt;p&gt;The debugger interface &lt;b&gt;{0}&lt;/b&gt; has already been registered. Ignoring this request.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1601"/>
         <source>Start Debugger</source>
         <translation>Démarrage du débogueur</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1601"/>
         <source>&lt;p&gt;The debugger type &lt;b&gt;{0}&lt;/b&gt; is not supported or not configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7010,7 +7010,7 @@
 <context>
     <name>DebugUI</name>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1961"/>
+        <location filename="../Debugger/DebugUI.py" line="1964"/>
         <source>Run Script</source>
         <translation>Lancer le script</translation>
     </message>
@@ -7030,7 +7030,7 @@
         <translation>&lt;b&gt;Lancer le script&lt;/b&gt;&lt;p&gt;Entrer les arguments de la ligne de commande et lancer le script sans le débogueur. Si le script a des modifications, elles doivent d&apos;abord être enregistrées.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1973"/>
+        <location filename="../Debugger/DebugUI.py" line="1976"/>
         <source>Run Project</source>
         <translation>Lancer le projet</translation>
     </message>
@@ -7040,418 +7040,418 @@
         <translation>Lancer &amp;projet...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="220"/>
+        <location filename="../Debugger/DebugUI.py" line="221"/>
         <source>Run the current Project</source>
         <translation>Lance le projet courant</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="221"/>
+        <location filename="../Debugger/DebugUI.py" line="222"/>
         <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Lancer le projet&lt;/b&gt;&lt;p&gt;Entrer les arguments de la ligne de commande et lancer le projet sans le débogueur. Si des fichiers du projet on été modifiés ils doivent d&apos;abord être enregistrées.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="231"/>
+        <location filename="../Debugger/DebugUI.py" line="232"/>
         <source>Coverage run of Script</source>
         <translation>Lancer le script en mode Coverage</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="231"/>
+        <location filename="../Debugger/DebugUI.py" line="232"/>
         <source>Coverage run of Script...</source>
         <translation>Lancer le script en mode Coverage...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="236"/>
+        <location filename="../Debugger/DebugUI.py" line="237"/>
         <source>Perform a coverage run of the current Script</source>
         <translation>Lance le script courant en mode Coverage</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="238"/>
+        <location filename="../Debugger/DebugUI.py" line="239"/>
         <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Lancement du script en mode Coverage&lt;/b&gt;&lt;p&gt;Indiquer les paramètres de la ligne de commande et lancer le script en exploitant les outils d&apos;analyse &apos;Coverage&apos;. Si le fichier a été modifié, il doit être sauvé avant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="247"/>
+        <location filename="../Debugger/DebugUI.py" line="248"/>
         <source>Coverage run of Project</source>
         <translation>Lancer le projet en mode Coverage</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="247"/>
+        <location filename="../Debugger/DebugUI.py" line="248"/>
         <source>Coverage run of Project...</source>
         <translation>Lancer le projet en mode Coverage...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="252"/>
+        <location filename="../Debugger/DebugUI.py" line="253"/>
         <source>Perform a coverage run of the current Project</source>
         <translation>Lance le projet courant en mode coverage</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="254"/>
+        <location filename="../Debugger/DebugUI.py" line="255"/>
         <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Lancement du projet en mode Coverage&lt;/b&gt;&lt;p&gt;Indiquer les paramètres de la ligne de commande et lancer le projet courant en exploitant les outils d&apos;analyse &apos;Coverage&apos;. Si des fichiers du projet ont été modifiés, ils doivent être sauvés avant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="264"/>
+        <location filename="../Debugger/DebugUI.py" line="265"/>
         <source>Profile Script</source>
         <translation>Profiler le script</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="264"/>
+        <location filename="../Debugger/DebugUI.py" line="265"/>
         <source>Profile Script...</source>
         <translation>Profiler le script....</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="268"/>
-        <source>Profile the current Script</source>
-        <translation>Profiler le script courant</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="269"/>
+        <source>Profile the current Script</source>
+        <translation>Profiler le script courant</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="270"/>
         <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Profiler le script&lt;/b&gt;&lt;p&gt;Entrer les arguments de la ligne de commande et profiler le script. Si le script a subi des modifications, celles-ci doivent d&apos;abord être enregistrées.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="277"/>
+        <location filename="../Debugger/DebugUI.py" line="278"/>
         <source>Profile Project</source>
         <translation>Profiler le projet</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="277"/>
+        <location filename="../Debugger/DebugUI.py" line="278"/>
         <source>Profile Project...</source>
         <translation>Profiler le projet...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="282"/>
+        <location filename="../Debugger/DebugUI.py" line="283"/>
         <source>Profile the current Project</source>
         <translation>Profile le projet courant</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="284"/>
+        <location filename="../Debugger/DebugUI.py" line="285"/>
         <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Profiler le projet&lt;/b&gt;&lt;p&gt;Entrer les arguments de la ligne de commande et profiler le projet. Si des fichiers du projet ont été modifiés, ils doivent d&apos;abord être enregistrés.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2094"/>
+        <location filename="../Debugger/DebugUI.py" line="2097"/>
         <source>Debug Script</source>
         <translation>Déboguer le script</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="293"/>
+        <location filename="../Debugger/DebugUI.py" line="294"/>
         <source>&amp;Debug Script...</source>
         <translation>&amp;Déboguer le script...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="298"/>
-        <source>Debug the current Script</source>
-        <translation>Débogue le script courant</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="299"/>
+        <source>Debug the current Script</source>
+        <translation>Débogue le script courant</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="300"/>
         <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Deboguer le script&lt;/b&gt;&lt;p&gt;Entrer les arguments de la ligne de commande et donner la ligne qui correspond à la première instruction Python. Si le fichier a été modifié, il doit d&apos;abord être sauvé.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2111"/>
+        <location filename="../Debugger/DebugUI.py" line="2114"/>
         <source>Debug Project</source>
         <translation>Déboguer le projet</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="309"/>
+        <location filename="../Debugger/DebugUI.py" line="310"/>
         <source>Debug &amp;Project...</source>
         <translation>Déboguer le &amp;Projet...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="314"/>
-        <source>Debug the current Project</source>
-        <translation>Déboguer le projet en cours</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="316"/>
+        <source>Debug the current Project</source>
+        <translation>Déboguer le projet en cours</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="318"/>
         <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Deboguer le projet&lt;/b&gt;&lt;p&gt;Entrer les arguments de la ligne de commande et donner la ligne correspondant à la première instruction Python du script principal du projet en cours.Si des fichiers du projet ont été modifiés, ils doivent d&apos;abord être sauvés.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="330"/>
+        <location filename="../Debugger/DebugUI.py" line="332"/>
         <source>Restart the last debugged script</source>
         <translation>Relance le dernier script débogué</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="357"/>
+        <location filename="../Debugger/DebugUI.py" line="359"/>
         <source>Continue</source>
         <translation>Continuer</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="357"/>
+        <location filename="../Debugger/DebugUI.py" line="359"/>
         <source>&amp;Continue</source>
         <translation>&amp;Continuer</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="362"/>
-        <source>Continue running the program from the current line</source>
-        <translation>Continuer le programme à partir de la ligne courante</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="364"/>
+        <source>Continue running the program from the current line</source>
+        <translation>Continuer le programme à partir de la ligne courante</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="366"/>
         <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Continuer&lt;/b&gt;&lt;p&gt;Continue le programme à partir de la ligne courante. Le programme s&apos;arrêtera à la fin si aucun point d&apos;arrêt n&apos;est rencontré.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="426"/>
+        <location filename="../Debugger/DebugUI.py" line="429"/>
         <source>Single Step</source>
         <translation>Instruction suivante (Single Step)</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="426"/>
+        <location filename="../Debugger/DebugUI.py" line="429"/>
         <source>Sin&amp;gle Step</source>
         <translation>Instruction &amp;suivante (Single Step)</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="431"/>
+        <location filename="../Debugger/DebugUI.py" line="434"/>
         <source>Execute a single Python statement</source>
         <translation>Execute une seule instruction Python</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="432"/>
+        <location filename="../Debugger/DebugUI.py" line="435"/>
         <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Un seul Pas&lt;/b&gt;&lt;p&gt;Execute une seule instruction Python. Si l&apos;instruction est dans un &lt;tt&gt;import&lt;/tt&gt; , un constructeur de classe, ou un appel à une méthode ou à une fonction, alors le contrôle est rendu au débogueur à l&apos;instruction suivante.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="442"/>
+        <location filename="../Debugger/DebugUI.py" line="445"/>
         <source>Step Over</source>
         <translation>Bloc d&apos;instructions suivant (Step Over)</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="442"/>
+        <location filename="../Debugger/DebugUI.py" line="445"/>
         <source>Step &amp;Over</source>
         <translation>&amp;Bloc d&apos;instructions suivant (Step Over)</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="447"/>
-        <source>Execute a single Python statement staying in the current frame</source>
-        <translation>Execute une seule instruction Python en restant dans le même niveau d&apos;instructions</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="450"/>
+        <source>Execute a single Python statement staying in the current frame</source>
+        <translation>Execute une seule instruction Python en restant dans le même niveau d&apos;instructions</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="453"/>
         <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Bloc suivant&lt;/b&gt;&lt;p&gt;Execute une seule instruction Python en restant au même niveau (profondeur) d&apos;instructions. Si l&apos;instruction est dans un &lt;tt&gt;import&lt;/tt&gt; , un constructeur de classe, ou un appel à une méthode ou à une fonction, alors le contrôle est rendu au débogueur quand l&apos;instruction est terminée.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="461"/>
+        <location filename="../Debugger/DebugUI.py" line="464"/>
         <source>Step Out</source>
         <translation>Sortie du bloc (Step Out)</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="461"/>
+        <location filename="../Debugger/DebugUI.py" line="464"/>
         <source>Step Ou&amp;t</source>
         <translation>Sortie du bloc (Step &amp;Out)</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="466"/>
-        <source>Execute Python statements until leaving the current frame</source>
-        <translation>Débogue les instructions Python à partir de la sortie du bloc courant</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="469"/>
+        <source>Execute Python statements until leaving the current frame</source>
+        <translation>Débogue les instructions Python à partir de la sortie du bloc courant</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="472"/>
         <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sortie du Bloc (Step Out)&lt;/b&gt;&lt;p&gt;Débogue les instructions Python à partir de la sortie du bloc courant. Si les instructions sont dans un &lt;tt&gt;import&lt;/tt&gt; , un constructeur de classe, ou dans une méthode ou une fonction, alors le contrôle est rendu au débogueur au début du bloc suivant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="480"/>
+        <location filename="../Debugger/DebugUI.py" line="483"/>
         <source>Stop</source>
         <translation>Arrêt</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="480"/>
+        <location filename="../Debugger/DebugUI.py" line="483"/>
         <source>&amp;Stop</source>
         <translation>&amp;Arrêt</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="485"/>
+        <location filename="../Debugger/DebugUI.py" line="488"/>
         <source>Stop debugging</source>
         <translation>Arrêter le débogage</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="486"/>
+        <location filename="../Debugger/DebugUI.py" line="489"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Arrêt&lt;/b&gt;&lt;p&gt;Arrête le débogage courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="509"/>
+        <location filename="../Debugger/DebugUI.py" line="512"/>
         <source>Exceptions Filter</source>
         <translation>Filtre d&apos;exceptions</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="509"/>
+        <location filename="../Debugger/DebugUI.py" line="512"/>
         <source>&amp;Exceptions Filter...</source>
         <translation>Filtre d&apos;&amp;exceptions...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="513"/>
+        <location filename="../Debugger/DebugUI.py" line="516"/>
         <source>Configure exceptions filter</source>
         <translation>Configuration du filtre d&apos;exceptions</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="515"/>
+        <location filename="../Debugger/DebugUI.py" line="518"/>
         <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Filtre d&apos;exceptions&lt;/b&gt;&lt;p&gt;Configuration du filtre d&apos;exceptions. Seuls les types d&apos;exceptions listés sont signalés pendant le débogage.&lt;/p&gt;&lt;p&gt;Notez que toutes les exceptions non prises en charge sont signalés, indépendamment de la liste de filtres.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="551"/>
+        <location filename="../Debugger/DebugUI.py" line="554"/>
         <source>Toggle Breakpoint</source>
         <translation>Placer/Supprimer un point d&apos;arrêt</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="552"/>
+        <location filename="../Debugger/DebugUI.py" line="555"/>
         <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Placer/supprimer un point d&apos;arrêt&lt;/b&gt;&lt;p&gt;Place ou enlève un point d&apos;arrêt sur la ligne courante de l&apos;éditeur en cours.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="566"/>
+        <location filename="../Debugger/DebugUI.py" line="569"/>
         <source>Edit Breakpoint</source>
         <translation>Edition Point d&apos;arrêt</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="560"/>
+        <location filename="../Debugger/DebugUI.py" line="563"/>
         <source>Edit Breakpoint...</source>
         <translation>Éditer le point d&apos;arrêt...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="567"/>
+        <location filename="../Debugger/DebugUI.py" line="570"/>
         <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Edition Point d&apos;arrêt&lt;/b&gt;&lt;p&gt;Edite les propriétés des points d&apos;arrêt au travers d&apos;une boite de dialogue. Ceci s&apos;applique à la ligne courante de l&apos;éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="582"/>
+        <location filename="../Debugger/DebugUI.py" line="585"/>
         <source>Next Breakpoint</source>
         <translation>Point d&apos;arrêt suivant</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="583"/>
+        <location filename="../Debugger/DebugUI.py" line="586"/>
         <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Point d&apos;arrêt suivant&lt;/b&gt;&lt;p&gt;Avance au point d&apos;arrêt suivant dans l&apos;éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="597"/>
+        <location filename="../Debugger/DebugUI.py" line="600"/>
         <source>Previous Breakpoint</source>
         <translation>Point d&apos;arrêt précédent</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="598"/>
+        <location filename="../Debugger/DebugUI.py" line="601"/>
         <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Point d&apos;arrêt précédent&lt;/b&gt;&lt;p&gt;Remonte au point d&apos;arrêt précédent dans l&apos;éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="610"/>
+        <location filename="../Debugger/DebugUI.py" line="613"/>
         <source>Clear Breakpoints</source>
         <translation>Suppression des point d&apos;arrêts</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="611"/>
+        <location filename="../Debugger/DebugUI.py" line="614"/>
         <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Suppression des points d&apos;arrêts&lt;/b&gt;&lt;p&gt;Supprime les points d&apos;arrêts de tous les éditeurs.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="641"/>
+        <location filename="../Debugger/DebugUI.py" line="644"/>
         <source>&amp;Breakpoints</source>
         <translation>&amp;Point d&apos;arrêts</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1169"/>
+        <location filename="../Debugger/DebugUI.py" line="1172"/>
         <source>The program being debugged contains an unspecified syntax error.</source>
         <translation>Le programme débogué contient une erreur de syntaxe non identifiée.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1212"/>
+        <location filename="../Debugger/DebugUI.py" line="1215"/>
         <source>An unhandled exception occured. See the shell window for details.</source>
         <translation>Une erreur imprévue est apparue. Regardez les détails dans la fenêtre shell.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1345"/>
+        <location filename="../Debugger/DebugUI.py" line="1348"/>
         <source>The program being debugged has terminated unexpectedly.</source>
         <translation>Le programme débogué s&apos;est terminé de façon prématurée.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1700"/>
+        <location filename="../Debugger/DebugUI.py" line="1703"/>
         <source>Coverage of Project</source>
         <translation>Coverage du projet</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1687"/>
+        <location filename="../Debugger/DebugUI.py" line="1690"/>
         <source>Coverage of Script</source>
         <translation>Coverage du Script</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1973"/>
+        <location filename="../Debugger/DebugUI.py" line="1976"/>
         <source>There is no main script defined for the current project. Aborting</source>
         <translation>Il n&apos;y a pas de script principal défini dans le projet en cours. Abandon</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1837"/>
+        <location filename="../Debugger/DebugUI.py" line="1840"/>
         <source>Profile of Project</source>
         <translation>Profil du projet</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1824"/>
+        <location filename="../Debugger/DebugUI.py" line="1827"/>
         <source>Profile of Script</source>
         <translation>Profil du Script</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2111"/>
+        <location filename="../Debugger/DebugUI.py" line="2114"/>
         <source>There is no main script defined for the current project. No debugging possible.</source>
         <translation>Il n&apos;y a pas de script principal défini dans le projet en cours. Débogage impossible.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="373"/>
+        <location filename="../Debugger/DebugUI.py" line="375"/>
         <source>Continue to Cursor</source>
         <translation>Continuer jusqu&apos;au curseur</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="373"/>
+        <location filename="../Debugger/DebugUI.py" line="375"/>
         <source>Continue &amp;To Cursor</source>
         <translation>Continuer &amp;jusqu&apos;au curseur</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="378"/>
-        <source>Continue running the program from the current line to the current cursor position</source>
-        <translation>Continue le programme en cours de la ligne en cours jusqu&apos;à la position du curseur</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="381"/>
+        <source>Continue running the program from the current line to the current cursor position</source>
+        <translation>Continue le programme en cours de la ligne en cours jusqu&apos;à la position du curseur</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="384"/>
         <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Continuer jusqu&apos;au curseur&lt;/b&gt;&lt;p&gt;Continue le programme depuis la ligne courante jusqu&apos;au curseur.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="493"/>
+        <location filename="../Debugger/DebugUI.py" line="496"/>
         <source>Variables Type Filter</source>
         <translation>Filtre sur les types de variables</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="493"/>
+        <location filename="../Debugger/DebugUI.py" line="496"/>
         <source>Varia&amp;bles Type Filter...</source>
         <translation>Filtre sur les types de varia&amp;bles...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="497"/>
+        <location filename="../Debugger/DebugUI.py" line="500"/>
         <source>Configure variables type filter</source>
         <translation>Configurer le filtre de variables</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="499"/>
+        <location filename="../Debugger/DebugUI.py" line="502"/>
         <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Filtre de Variables&lt;/b&gt;&lt;p&gt;Configure le filtre de variables. Seuls les types de variables non sélectionnés sont affichés dans la fenêtre des variables globales (resp. locales) pendant la session de débogage.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1452"/>
+        <location filename="../Debugger/DebugUI.py" line="1455"/>
         <source>Breakpoint Condition Error</source>
         <translation>Erreur de condition pour le point d&apos;arrêt</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="575"/>
+        <location filename="../Debugger/DebugUI.py" line="578"/>
         <source>Ctrl+Shift+PgDown</source>
         <comment>Debug|Next Breakpoint</comment>
         <translation>Ctrl+Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="590"/>
+        <location filename="../Debugger/DebugUI.py" line="593"/>
         <source>Ctrl+Shift+PgUp</source>
         <comment>Debug|Previous Breakpoint</comment>
         <translation>Ctrl+Shift+PgUp</translation>
@@ -7463,7 +7463,7 @@
         <translation type="obsolete">Ctrl+Shift+C</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="637"/>
+        <location filename="../Debugger/DebugUI.py" line="640"/>
         <source>&amp;Debug</source>
         <translation>&amp;Débogage</translation>
     </message>
@@ -7473,119 +7473,119 @@
         <translation type="obsolete">&amp;Lancer</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="684"/>
+        <location filename="../Debugger/DebugUI.py" line="687"/>
         <source>Start</source>
         <translation>Lancer</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="698"/>
+        <location filename="../Debugger/DebugUI.py" line="701"/>
         <source>Debug</source>
         <translation>Débogage</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="347"/>
+        <location filename="../Debugger/DebugUI.py" line="349"/>
         <source>Stop the running script.</source>
         <translation>Arrête le run en cours.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1491"/>
+        <location filename="../Debugger/DebugUI.py" line="1494"/>
         <source>Watch Expression Error</source>
         <translation>Erreur dans l&apos;expression</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1531"/>
+        <location filename="../Debugger/DebugUI.py" line="1534"/>
         <source>Watch expression already exists</source>
         <translation>L&apos;expression existe déjà</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="526"/>
+        <location filename="../Debugger/DebugUI.py" line="529"/>
         <source>Ignored Exceptions</source>
         <translation>Exceptions ignorées</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="526"/>
+        <location filename="../Debugger/DebugUI.py" line="529"/>
         <source>&amp;Ignored Exceptions...</source>
         <translation>Exceptions &amp;ignorées...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="530"/>
+        <location filename="../Debugger/DebugUI.py" line="533"/>
         <source>Configure ignored exceptions</source>
         <translation>Configuration des exceptions ignorées</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="532"/>
+        <location filename="../Debugger/DebugUI.py" line="535"/>
         <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Exceptions ignorées&lt;/b&gt;&lt;p&gt;Configuration des exceptions ignorées. Seuls les types d&apos;exception non listés seront indiqués pendant le débogage.&lt;/p&gt;&lt;p&gt;Les exceptions non gérées ne pourront pas être ignorées.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="545"/>
+        <location filename="../Debugger/DebugUI.py" line="548"/>
         <source>Shift+F11</source>
         <comment>Debug|Toggle Breakpoint</comment>
         <translation>Shift+F11</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="560"/>
+        <location filename="../Debugger/DebugUI.py" line="563"/>
         <source>Shift+F12</source>
         <comment>Debug|Edit Breakpoint</comment>
         <translation>Shift+F12</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1188"/>
+        <location filename="../Debugger/DebugUI.py" line="1191"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; contient une erreur de syntaxe &lt;b&gt;{1}&lt;/b&gt; à la ligne &lt;b&gt;{2}&lt;/b&gt;, caractère &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1262"/>
+        <location filename="../Debugger/DebugUI.py" line="1265"/>
         <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1277"/>
+        <location filename="../Debugger/DebugUI.py" line="1280"/>
         <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1452"/>
+        <location filename="../Debugger/DebugUI.py" line="1455"/>
         <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1491"/>
+        <location filename="../Debugger/DebugUI.py" line="1494"/>
         <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1521"/>
+        <location filename="../Debugger/DebugUI.py" line="1524"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; already exists.&lt;/p&gt;</source>
         <translation>&lt;p&gt;L&apos;expression de contrôle &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; existe déjà.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1526"/>
+        <location filename="../Debugger/DebugUI.py" line="1529"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
         <translation>&lt;p&gt;L&apos;expression de contrôle &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; pour la variable &lt;b&gt;{1}&lt;/b&gt; existe déjà.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1141"/>
+        <location filename="../Debugger/DebugUI.py" line="1144"/>
         <source>Program terminated</source>
         <translation>Programme terminé</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="326"/>
+        <location filename="../Debugger/DebugUI.py" line="328"/>
         <source>Restart</source>
         <translation>Redémarrer</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="332"/>
+        <location filename="../Debugger/DebugUI.py" line="334"/>
         <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="348"/>
+        <location filename="../Debugger/DebugUI.py" line="350"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1331"/>
+        <location filename="../Debugger/DebugUI.py" line="1334"/>
         <source>&lt;p&gt;The program generate the signal &quot;{0}&quot;.&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7595,7 +7595,7 @@
         <translation type="obsolete">&lt;p&gt;Message : {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1122"/>
+        <location filename="../Debugger/DebugUI.py" line="1125"/>
         <source>Message: {0}</source>
         <translation>Message : {0}</translation>
     </message>
@@ -7632,32 +7632,32 @@
 </translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="406"/>
+        <location filename="../Debugger/DebugUI.py" line="409"/>
         <source>Move Instruction Pointer to Cursor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="406"/>
+        <location filename="../Debugger/DebugUI.py" line="409"/>
         <source>&amp;Jump To Cursor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="411"/>
-        <source>Skip the code from the current line to the current cursor position</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="414"/>
+        <source>Skip the code from the current line to the current cursor position</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="417"/>
         <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It&apos;s not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1409"/>
+        <location filename="../Debugger/DebugUI.py" line="1412"/>
         <source>No locals available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="639"/>
+        <location filename="../Debugger/DebugUI.py" line="642"/>
         <source>Sta&amp;rt</source>
         <translation>Déma&amp;rrer</translation>
     </message>
@@ -7667,32 +7667,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="389"/>
+        <location filename="../Debugger/DebugUI.py" line="392"/>
         <source>Continue Until</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="389"/>
+        <location filename="../Debugger/DebugUI.py" line="392"/>
         <source>Continue &amp;Until</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="394"/>
-        <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="397"/>
+        <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="400"/>
         <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1127"/>
+        <location filename="../Debugger/DebugUI.py" line="1130"/>
         <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1131"/>
+        <location filename="../Debugger/DebugUI.py" line="1134"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8035,17 +8035,17 @@
         <translation>Sauvegarde automatique des scripts modifiés</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="282"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="283"/>
         <source>Add allowed host</source>
         <translation>Ajouter un hôte autorisé</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305"/>
         <source>Enter the IP address of an allowed host</source>
         <translation>Entrer l&apos;adresse IP d&apos;un hôte autorisé</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="316"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318"/>
         <source>Edit allowed host</source>
         <translation>Éditer un hôte autorisé</translation>
     </message>
@@ -8110,7 +8110,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="316"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318"/>
         <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;L&apos;adresse entrée &lt;b&gt;{0}&lt;/b&gt; n&apos;est pas une adresse IP v4 ou IP v6 valide. Annulation...&lt;/p&gt;</translation>
     </message>
@@ -8283,7 +8283,7 @@
 <context>
     <name>DebuggerPropertiesDialog</name>
     <message>
-        <location filename="../Project/DebuggerPropertiesDialog.py" line="129"/>
+        <location filename="../Project/DebuggerPropertiesDialog.py" line="130"/>
         <source>All Files (*)</source>
         <translation>Tous fichiers (*)</translation>
     </message>
@@ -9299,7 +9299,7 @@
 <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="316"/>
         <source>.desktop Wizard</source>
         <translation>Assistant .desktop</translation>
     </message>
@@ -9634,22 +9634,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>FreeDesktop Standard .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>KDE Plasma MetaData .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>Ubuntu Unity QuickList .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="316"/>
         <source>Only one of &apos;Only Show In&apos; or  &apos;Not Show In&apos; allowed.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9735,32 +9735,32 @@
         <translation>Cliquer pour ouvrir le fichier téléchargé</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="220"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="223"/>
         <source>Download canceled: {0}</source>
         <translation>Téléchargement annulé : {0}</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="210"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="213"/>
         <source>Save File</source>
         <translation>Enregistrer le fichier</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="249"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="252"/>
         <source>Download directory ({0}) couldn&apos;t be created.</source>
         <translation>Le répertoire de téléchargement ({0}) ne peut être créé.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="439"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="442"/>
         <source>?</source>
         <translation>?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="452"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="455"/>
         <source>{0} of {1} - Stopped</source>
         <translation>{0} sur {1} - Arrêté</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="193"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="196"/>
         <source>VirusTotal scan scheduled: {0}</source>
         <translation>Scan VirusTotal planifié : {0}</translation>
     </message>
@@ -9770,7 +9770,7 @@
         <translation>Cliquer pour mettre en pause le téléchargement</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="448"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="451"/>
         <source>{0} downloaded</source>
         <translation>{0} téléchargé</translation>
     </message>
@@ -9780,7 +9780,7 @@
         <translation>Date et heure</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="437"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="440"/>
         <source>{0} of {1} ({2}/sec) {3}</source>
         <translation>{0} sur {1} ({2}/sec) {3}</translation>
     </message>
@@ -9793,7 +9793,7 @@
         <translation>Cliquer pour nettoyer la liste des téléchargements</translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="168"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="169"/>
         <source>There are %n downloads in progress.
 Do you want to quit anyway?</source>
         <translation>
@@ -9814,67 +9814,67 @@
         <translation type="obsolete">Réessayer</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="107"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="108"/>
         <source>Open</source>
         <translation>Ouvrir</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="111"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="112"/>
         <source>Cancel</source>
         <translation>Annuler</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="115"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="116"/>
         <source>Open Containing Folder</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="119"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="120"/>
         <source>Go to Download Page</source>
         <translation>Aller à la page de téléchargement</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="122"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="123"/>
         <source>Copy Download Link</source>
         <translation>Copier le lien de téléchargement</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="126"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="127"/>
         <source>Select All</source>
         <translation>Tout sélectionner</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="135"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="136"/>
         <source>Remove From List</source>
         <translation>Retirer de la liste</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="257"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="258"/>
         <source>Suspicuous URL detected</source>
         <translation>URL suspecte détectée</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="257"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="258"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="588"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="589"/>
         <source>Download Manager</source>
         <translation>Gestionnaire de téléchargements</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="500"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="501"/>
         <source>Downloads finished</source>
         <translation>Téléchargements terminés</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="500"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="501"/>
         <source>All files have been downloaded.</source>
         <translation>Tous les fichiers ont été téléchargés.</translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="622"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="623"/>
         <source>{0}% of %n file(s) ({1}) {2}</source>
         <translation>
             <numerusform>{0}% sur %n fichier ({1}) {2}</numerusform>
@@ -9882,7 +9882,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="629"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="630"/>
         <source>{0}% - Download Manager</source>
         <translation>{0}% - Gestionnaire de téléchargement</translation>
     </message>
@@ -10014,27 +10014,27 @@
 <context>
     <name>E5GoogleMail</name>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="159"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="160"/>
         <source>The client secrets file is not present. Has the Gmail API been enabled?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="196"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="197"/>
         <source>OAuth2 Authorization Code</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="196"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="197"/>
         <source>Enter the OAuth2 authorization code:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="240"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="241"/>
         <source>No authorized session available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="258"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="259"/>
         <source>Message #{0} sent.</source>
         <translation>Message #{0} envoyé.</translation>
     </message>
@@ -10042,7 +10042,7 @@
 <context>
     <name>E5GraphicsView</name>
     <message>
-        <location filename="../E5Graphics/E5GraphicsView.py" line="57"/>
+        <location filename="../E5Graphics/E5GraphicsView.py" line="59"/>
         <source>&lt;b&gt;Graphics View&lt;/b&gt;
 &lt;p&gt;This graphics view is used to show a diagram. 
 There are various actions available to manipulate the 
@@ -10069,7 +10069,7 @@
 </translation>
     </message>
     <message>
-        <location filename="../E5Graphics/E5GraphicsView.py" line="415"/>
+        <location filename="../E5Graphics/E5GraphicsView.py" line="417"/>
         <source>{0}, Page {1}</source>
         <translation>{0}, Page {1}</translation>
     </message>
@@ -10543,7 +10543,7 @@
 <context>
     <name>E5NetworkProxyFactory</name>
     <message>
-        <location filename="../E5Network/E5NetworkProxyFactory.py" line="227"/>
+        <location filename="../E5Network/E5NetworkProxyFactory.py" line="229"/>
         <source>Proxy Configuration Error</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10553,7 +10553,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5NetworkProxyFactory.py" line="227"/>
+        <location filename="../E5Network/E5NetworkProxyFactory.py" line="229"/>
         <source>Proxy usage was activated but no proxy host for protocol &apos;{0}&apos; configured.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10561,32 +10561,32 @@
 <context>
     <name>E5PathPickerBase</name>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="161"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="162"/>
         <source>Enter Path Name</source>
         <translation>Entrer le nom du chemin</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="158"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="159"/>
         <source>Enter Path Names separated by &apos;;&apos;</source>
         <translation>Entrer les noms de chemin séparés par &apos;;&apos;</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="499"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="500"/>
         <source>Choose a file to open</source>
         <translation>Choisir un fichier à ouvrir</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="501"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="502"/>
         <source>Choose files to open</source>
         <translation>Choisir les fichiers à ouvrir</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="506"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="507"/>
         <source>Choose a file to save</source>
         <translation>Choisir un fichier à enregistrer</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="508"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="509"/>
         <source>Choose a directory</source>
         <translation>Choisir un répertoire</translation>
     </message>
@@ -10652,32 +10652,32 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="107"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="117"/>
         <source>Process canceled.</source>
         <translation>Processus annulé.</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="121"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="134"/>
         <source>Process finished successfully.</source>
         <translation>Processus terminé avec succès.</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="123"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="136"/>
         <source>Process crashed.</source>
         <translation>Crash du processus.</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="125"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="138"/>
         <source>Process finished with exit code {0}</source>
         <translation>Processus terminé avec le code de sortie {0}</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="179"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="192"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="179"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="192"/>
         <source>&lt;p&gt;The process &lt;b&gt;{0}&lt;/b&gt; could not be started.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le processus &lt;b&gt;{0}&lt;/b&gt; n&apos;a pu être démarré.&lt;/p&gt;</translation>
     </message>
@@ -10741,12 +10741,12 @@
         <translation>&amp;Voir...</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="80"/>
+        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="82"/>
         <source>(Unknown)</source>
         <translation>(Inconnu)</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="82"/>
+        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="84"/>
         <source>(Unknown common name)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10834,72 +10834,72 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="300"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="305"/>
         <source>(Unknown)</source>
         <translation>(Inconnu)</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="302"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="307"/>
         <source>(Unknown common name)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="150"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="152"/>
         <source>Delete Server Certificate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="150"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="152"/>
         <source>&lt;p&gt;Shall the server certificate really be deleted?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;&lt;p&gt;If the server certificate is deleted, the normal security checks will be reinstantiated and the server has to present a valid certificate.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="489"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="495"/>
         <source>Import Certificate</source>
         <translation>Importer un certificat</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="399"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="405"/>
         <source>&lt;p&gt;The certificate &lt;b&gt;{0}&lt;/b&gt; already exists. Skipping.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le certificat &lt;b&gt;{0}&lt;/b&gt; existe déjà. Passez.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="354"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="359"/>
         <source>Delete CA Certificate</source>
         <translation>Supprimer certificat CA</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="354"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="359"/>
         <source>&lt;p&gt;Shall the CA certificate really be deleted?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;&lt;p&gt;If the CA certificate is deleted, the browser will not trust any certificate issued by this CA.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="499"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="505"/>
         <source>Export Certificate</source>
         <translation>Exporter le certificat</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="440"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="446"/>
         <source>Certificate File (PEM) (*.pem);;Certificate File (DER) (*.der)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="456"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="462"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="467"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="473"/>
         <source>&lt;p&gt;The certificate could not be written to file &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="489"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="495"/>
         <source>Certificate Files (*.pem *.crt *.der *.cer *.ca);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="499"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="505"/>
         <source>&lt;p&gt;The certificate could not be read from file &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10995,7 +10995,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesInfoWidget.py" line="151"/>
+        <location filename="../E5Network/E5SslCertificatesInfoWidget.py" line="156"/>
         <source>&lt;not part of the certificate&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11003,42 +11003,42 @@
 <context>
     <name>E5SslErrorHandler</name>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="141"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="142"/>
         <source>SSL Errors</source>
         <translation>Erreurs SSL</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="141"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="142"/>
         <source>&lt;p&gt;SSL Errors for &lt;br /&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Do you want to ignore these errors?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Erreurs SSL pour &lt;br /&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Voulez-vous ignorer ces erreurs ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="156"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="157"/>
         <source>Certificates</source>
         <translation>Certificats</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="156"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="157"/>
         <source>&lt;p&gt;Certificates:&lt;br/&gt;{0}&lt;br/&gt;Do you want to accept all these certificates?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Certificats:&lt;br/&gt;{0}&lt;br/&gt;Voulez-vous accepter tous ces certificats?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="210"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="212"/>
         <source>Name: {0}</source>
         <translation>Nom : {0}</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="220"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="223"/>
         <source>&lt;br/&gt;Organization: {0}</source>
         <translation>&lt;br/&gt;Organisation: {0}</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="230"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="234"/>
         <source>&lt;br/&gt;Issuer: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="239"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="244"/>
         <source>&lt;br/&gt;Not valid before: {0}&lt;br/&gt;Valid Until: {1}</source>
         <translation>&lt;br/&gt;Non valide avant : {0}&lt;br/&gt;Valide jusqu&apos;à : {1}</translation>
     </message>
@@ -11046,61 +11046,61 @@
 <context>
     <name>E5SslInfoWidget</name>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="55"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="56"/>
         <source>Identity</source>
         <translation>Identité</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="65"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="66"/>
         <source>Warning: this site is NOT carrying a certificate.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="73"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="74"/>
         <source>The certificate for this site is valid and has been verified by:
 {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="89"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="90"/>
         <source>Certificate Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="104"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="105"/>
         <source>Encryption</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="115"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="116"/>
         <source>Your connection to &quot;{0}&quot; is NOT encrypted.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="124"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="125"/>
         <source>Your connection to &quot;{0}&quot; is encrypted.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="143"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="144"/>
         <source>unknown</source>
         <translation>inconnu</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="166"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="167"/>
         <source>It uses protocol: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="173"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="174"/>
         <source>It is encrypted using {0} at {1} bits, with {2} for message authentication and {3} as key exchange mechanism.
 
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="80"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="81"/>
         <source>The certificate for this site is NOT valid.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11143,12 +11143,12 @@
         <translation>Tout supp&amp;rimer</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5StringListEditWidget.py" line="99"/>
+        <location filename="../E5Gui/E5StringListEditWidget.py" line="100"/>
         <source>Add Entry</source>
         <translation>Ajouter une entrée</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5StringListEditWidget.py" line="99"/>
+        <location filename="../E5Gui/E5StringListEditWidget.py" line="100"/>
         <source>Enter the entry to add to the list:</source>
         <translation>Entrer l&apos;entrée à ajouter à la liste :</translation>
     </message>
@@ -11166,32 +11166,32 @@
 <context>
     <name>E5TextEditSearchWidget</name>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="81"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="83"/>
         <source>Find:</source>
         <translation>Rechercher :</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="104"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="107"/>
         <source>Match case</source>
         <translation>Tenir compte de la casse</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="109"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="112"/>
         <source>Whole word</source>
         <translation>Mots complets</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="119"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="122"/>
         <source>Press to find the previous occurrence</source>
         <translation>Cliquer pour rechercher l&apos;occurence précédente</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="126"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="129"/>
         <source>Press to find the next occurrence</source>
         <translation>Cliquer pour rechercher l&apos;occurence suivante</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="341"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="347"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation>&apos;{0}&apos;  n&apos;a pas été trouvé.</translation>
     </message>
@@ -11307,42 +11307,42 @@
         <translation>Cliquer pour déplacer l&apos;action vers le bas.</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="84"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="85"/>
         <source>--Separator--</source>
         <translation>--Séparateur--</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="145"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="151"/>
         <source>New Toolbar</source>
         <translation>Nouvelle barre d&apos;outils</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="137"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="143"/>
         <source>Toolbar Name:</source>
         <translation>Nom de la barre :</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="208"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="214"/>
         <source>A toolbar with the name &lt;b&gt;{0}&lt;/b&gt; already exists.</source>
         <translation>Une barre d&apos;outils avec le nom &lt;b&gt;{0}&lt;/b&gt; existe déjà.</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="170"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="176"/>
         <source>Remove Toolbar</source>
         <translation>Suppression de la barre d&apos;outils</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="170"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="176"/>
         <source>Should the toolbar &lt;b&gt;{0}&lt;/b&gt; really be removed?</source>
         <translation>Faut-il vraiment supprimer la barre d&apos;outils &lt;b&gt;{0}&lt;/b&gt; ?</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="208"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="214"/>
         <source>Rename Toolbar</source>
         <translation>Renommer la barre d&apos;outils</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="197"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="203"/>
         <source>New Toolbar Name:</source>
         <translation>Nouveau nom :</translation>
     </message>
@@ -11350,7 +11350,7 @@
 <context>
     <name>E5XmlRpcClient</name>
     <message>
-        <location filename="../E5Network/E5XmlRpcClient.py" line="108"/>
+        <location filename="../E5Network/E5XmlRpcClient.py" line="111"/>
         <source>SSL Error</source>
         <translation>Erreur SSL</translation>
     </message>
@@ -11446,7 +11446,7 @@
         <translation>Activé</translation>
     </message>
     <message>
-        <location filename="../Debugger/EditBreakpointDialog.py" line="86"/>
+        <location filename="../Debugger/EditBreakpointDialog.py" line="87"/>
         <source>Add Breakpoint</source>
         <translation>Ajouter un point d&apos;arrêt</translation>
     </message>
@@ -11527,812 +11527,812 @@
 <context>
     <name>Editor</name>
     <message>
-        <location filename="../QScintilla/Editor.py" line="795"/>
+        <location filename="../QScintilla/Editor.py" line="797"/>
         <source>Undo</source>
         <translation>Défaire</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="798"/>
+        <location filename="../QScintilla/Editor.py" line="800"/>
         <source>Redo</source>
         <translation>Refaire</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="801"/>
+        <location filename="../QScintilla/Editor.py" line="803"/>
         <source>Revert to last saved state</source>
         <translation>Ecraser avec le dernier état enregistré</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="805"/>
+        <location filename="../QScintilla/Editor.py" line="807"/>
         <source>Cut</source>
         <translation>Couper</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="808"/>
+        <location filename="../QScintilla/Editor.py" line="810"/>
         <source>Copy</source>
         <translation>Copier</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="811"/>
+        <location filename="../QScintilla/Editor.py" line="813"/>
         <source>Paste</source>
         <translation>Coller</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="819"/>
+        <location filename="../QScintilla/Editor.py" line="821"/>
         <source>Indent</source>
         <translation>Indenter</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="822"/>
+        <location filename="../QScintilla/Editor.py" line="824"/>
         <source>Unindent</source>
         <translation>Désindenter</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="825"/>
+        <location filename="../QScintilla/Editor.py" line="827"/>
         <source>Comment</source>
         <translation>Commenter</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="828"/>
+        <location filename="../QScintilla/Editor.py" line="830"/>
         <source>Uncomment</source>
         <translation>Décommenter</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="831"/>
+        <location filename="../QScintilla/Editor.py" line="833"/>
         <source>Stream Comment</source>
         <translation>Commentaire type &quot;Stream&quot;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="834"/>
+        <location filename="../QScintilla/Editor.py" line="836"/>
         <source>Box Comment</source>
         <translation>Commentaire type &quot;Bloc&quot;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="842"/>
-        <source>Select to brace</source>
-        <translation>Sélection parenthèses</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="844"/>
+        <source>Select to brace</source>
+        <translation>Sélection parenthèses</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="846"/>
         <source>Select all</source>
         <translation>Tout sélectionner</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="845"/>
+        <location filename="../QScintilla/Editor.py" line="847"/>
         <source>Deselect all</source>
         <translation>Tout déselectionner</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="863"/>
+        <location filename="../QScintilla/Editor.py" line="865"/>
         <source>Shorten empty lines</source>
         <translation>Raccourcir les lignes vides</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1060"/>
+        <location filename="../QScintilla/Editor.py" line="1062"/>
         <source>Languages</source>
         <translation>Langages</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="870"/>
+        <location filename="../QScintilla/Editor.py" line="872"/>
         <source>Use Monospaced Font</source>
         <translation>Utiliser une police monospacée</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="990"/>
+        <location filename="../QScintilla/Editor.py" line="992"/>
         <source>Check</source>
         <translation>Vérification</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1010"/>
-        <source>Show</source>
-        <translation>Afficher</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="918"/>
-        <source>Close</source>
-        <translation>Fermer</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="924"/>
-        <source>Save</source>
-        <translation>Enregistrer</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="927"/>
-        <source>Save As...</source>
-        <translation>Enregistrer sous...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="943"/>
-        <source>Print</source>
-        <translation>Imprimer</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1012"/>
+        <source>Show</source>
+        <translation>Afficher</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="920"/>
+        <source>Close</source>
+        <translation>Fermer</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="926"/>
+        <source>Save</source>
+        <translation>Enregistrer</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="929"/>
+        <source>Save As...</source>
+        <translation>Enregistrer sous...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="945"/>
+        <source>Print</source>
+        <translation>Imprimer</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1014"/>
         <source>Code metrics...</source>
         <translation>Statistiques du code...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1013"/>
-        <source>Code coverage...</source>
-        <translation>Code coverage...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1021"/>
-        <source>Profile data...</source>
-        <translation>Profiler les données...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1240"/>
-        <source>Toggle bookmark</source>
-        <translation>Placer/supprimer un signet</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1242"/>
-        <source>Next bookmark</source>
-        <translation>Signet suivant</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1244"/>
-        <source>Previous bookmark</source>
-        <translation>Signet précédent</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1246"/>
-        <source>Clear all bookmarks</source>
-        <translation>Effacer tous les signets</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1255"/>
-        <source>Toggle breakpoint</source>
-        <translation>Placer/supprimer un point d&apos;arrêt</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1260"/>
-        <source>Edit breakpoint...</source>
-        <translation>Éditer le point d&apos;arrêt...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="5656"/>
-        <source>Enable breakpoint</source>
-        <translation>Activer le point d&apos;arrêt</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1265"/>
-        <source>Next breakpoint</source>
-        <translation>Point d&apos;arrêt suivant</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1267"/>
-        <source>Previous breakpoint</source>
-        <translation>Point d&apos;arrêt précédent</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1272"/>
-        <source>Clear all breakpoints</source>
-        <translation>Effacer tous les points d&apos;arrêts</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1989"/>
-        <source>Modification of Read Only file</source>
-        <translation>Modification de la lecture seule</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1989"/>
-        <source>You are attempting to change a read only file. Please save to a different file first.</source>
-        <translation>Le fichier est en lecture seule. Sauvez d&apos;abord votre fichier sous un autre nom.</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="2711"/>
-        <source>Printing...</source>
-        <translation>Impression....</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="2728"/>
-        <source>Printing completed</source>
-        <translation>Impression terminée</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="2730"/>
-        <source>Error while printing</source>
-        <translation>Erreur durant l&apos;impression</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="2733"/>
-        <source>Printing aborted</source>
-        <translation>Impression abandonnée</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="3146"/>
-        <source>Open File</source>
-        <translation>Ouvrir Fichier</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="3333"/>
-        <source>Save File</source>
-        <translation>Enregistrer Fichier</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="3088"/>
-        <source>File Modified</source>
-        <translation>Fichier Modifié</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="4811"/>
-        <source>Autocompletion</source>
-        <translation>Autocompletion</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="4811"/>
-        <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="5659"/>
-        <source>Disable breakpoint</source>
-        <translation>Désactiver le point d&apos;arrêt</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6034"/>
-        <source>Code Coverage</source>
-        <translation>Code Coverage</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6034"/>
-        <source>Please select a coverage file</source>
-        <translation>Sélectionner un fichier coverage</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6214"/>
-        <source>Profile Data</source>
-        <translation>Profiler de données</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6214"/>
-        <source>Please select a profile file</source>
-        <translation>Sélectionner un fichier profile</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
-        <source>Macro Name</source>
-        <translation>Nom de la macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
-        <source>Select a macro name:</source>
-        <translation>Sélectionner un nom de macro:</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6835"/>
-        <source>Macro files (*.macro)</source>
-        <translation>Fichier Macro (*.macro)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6793"/>
-        <source>Load macro file</source>
-        <translation>Charger un fichier macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6815"/>
-        <source>Error loading macro</source>
-        <translation>Erreur lors du chargement de la macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6835"/>
-        <source>Save macro file</source>
-        <translation>Enregistrer le fichier macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6852"/>
-        <source>Save macro</source>
-        <translation>Enregistrer la macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6867"/>
-        <source>Error saving macro</source>
-        <translation>Erreur lors de l&apos;enregistrement de la macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6880"/>
-        <source>Start Macro Recording</source>
-        <translation>Démarrer l&apos;enregistrement de la macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6906"/>
-        <source>Macro Recording</source>
-        <translation>Enregistrement de macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6906"/>
-        <source>Enter name of the macro:</source>
-        <translation>Entrer le nom de la macro:</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7076"/>
-        <source>File changed</source>
-        <translation>Fichier modifié</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="875"/>
-        <source>Autosave enabled</source>
-        <translation>Sauvegarde automatique activée</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1320"/>
-        <source>Goto syntax error</source>
-        <translation>Aller à l&apos;erreur de syntaxe suivante</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1329"/>
-        <source>Clear syntax error</source>
-        <translation>Supprimer les flags d&apos;erreurs de syntaxe</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7408"/>
-        <source>Drop Error</source>
-        <translation>Erreur de suppression</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1324"/>
-        <source>Show syntax error message</source>
-        <translation>Afficher le message d&apos;erreur de syntaxe</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6376"/>
-        <source>Syntax Error</source>
-        <translation>Erreur de syntaxe</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6376"/>
-        <source>No syntax error message available.</source>
-        <translation>Aucun message d&apos;erreur de syntaxe..</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1257"/>
-        <source>Toggle temporary breakpoint</source>
-        <translation>Placer/Supprimer un point d&apos;arret temporaire</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1015"/>
+        <source>Code coverage...</source>
+        <translation>Code coverage...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1023"/>
+        <source>Profile data...</source>
+        <translation>Profiler les données...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1242"/>
+        <source>Toggle bookmark</source>
+        <translation>Placer/supprimer un signet</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1244"/>
+        <source>Next bookmark</source>
+        <translation>Signet suivant</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1246"/>
+        <source>Previous bookmark</source>
+        <translation>Signet précédent</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1248"/>
+        <source>Clear all bookmarks</source>
+        <translation>Effacer tous les signets</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1257"/>
+        <source>Toggle breakpoint</source>
+        <translation>Placer/supprimer un point d&apos;arrêt</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1262"/>
+        <source>Edit breakpoint...</source>
+        <translation>Éditer le point d&apos;arrêt...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="5696"/>
+        <source>Enable breakpoint</source>
+        <translation>Activer le point d&apos;arrêt</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1267"/>
+        <source>Next breakpoint</source>
+        <translation>Point d&apos;arrêt suivant</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1269"/>
+        <source>Previous breakpoint</source>
+        <translation>Point d&apos;arrêt précédent</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1274"/>
+        <source>Clear all breakpoints</source>
+        <translation>Effacer tous les points d&apos;arrêts</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1991"/>
+        <source>Modification of Read Only file</source>
+        <translation>Modification de la lecture seule</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1991"/>
+        <source>You are attempting to change a read only file. Please save to a different file first.</source>
+        <translation>Le fichier est en lecture seule. Sauvez d&apos;abord votre fichier sous un autre nom.</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="2715"/>
+        <source>Printing...</source>
+        <translation>Impression....</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="2735"/>
+        <source>Printing completed</source>
+        <translation>Impression terminée</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="2737"/>
+        <source>Error while printing</source>
+        <translation>Erreur durant l&apos;impression</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="2740"/>
+        <source>Printing aborted</source>
+        <translation>Impression abandonnée</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="3153"/>
+        <source>Open File</source>
+        <translation>Ouvrir Fichier</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="3340"/>
+        <source>Save File</source>
+        <translation>Enregistrer Fichier</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="3095"/>
+        <source>File Modified</source>
+        <translation>Fichier Modifié</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="4838"/>
+        <source>Autocompletion</source>
+        <translation>Autocompletion</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="4838"/>
+        <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="5699"/>
+        <source>Disable breakpoint</source>
+        <translation>Désactiver le point d&apos;arrêt</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6074"/>
+        <source>Code Coverage</source>
+        <translation>Code Coverage</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6074"/>
+        <source>Please select a coverage file</source>
+        <translation>Sélectionner un fichier coverage</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6254"/>
+        <source>Profile Data</source>
+        <translation>Profiler de données</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6254"/>
+        <source>Please select a profile file</source>
+        <translation>Sélectionner un fichier profile</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
+        <source>Macro Name</source>
+        <translation>Nom de la macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
+        <source>Select a macro name:</source>
+        <translation>Sélectionner un nom de macro:</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6875"/>
+        <source>Macro files (*.macro)</source>
+        <translation>Fichier Macro (*.macro)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6833"/>
+        <source>Load macro file</source>
+        <translation>Charger un fichier macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6855"/>
+        <source>Error loading macro</source>
+        <translation>Erreur lors du chargement de la macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6875"/>
+        <source>Save macro file</source>
+        <translation>Enregistrer le fichier macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6892"/>
+        <source>Save macro</source>
+        <translation>Enregistrer la macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6907"/>
+        <source>Error saving macro</source>
+        <translation>Erreur lors de l&apos;enregistrement de la macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6920"/>
+        <source>Start Macro Recording</source>
+        <translation>Démarrer l&apos;enregistrement de la macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6946"/>
+        <source>Macro Recording</source>
+        <translation>Enregistrement de macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6946"/>
+        <source>Enter name of the macro:</source>
+        <translation>Entrer le nom de la macro:</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7116"/>
+        <source>File changed</source>
+        <translation>Fichier modifié</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="877"/>
+        <source>Autosave enabled</source>
+        <translation>Sauvegarde automatique activée</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1322"/>
+        <source>Goto syntax error</source>
+        <translation>Aller à l&apos;erreur de syntaxe suivante</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1331"/>
+        <source>Clear syntax error</source>
+        <translation>Supprimer les flags d&apos;erreurs de syntaxe</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7451"/>
+        <source>Drop Error</source>
+        <translation>Erreur de suppression</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1326"/>
+        <source>Show syntax error message</source>
+        <translation>Afficher le message d&apos;erreur de syntaxe</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6416"/>
+        <source>Syntax Error</source>
+        <translation>Erreur de syntaxe</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6416"/>
+        <source>No syntax error message available.</source>
+        <translation>Aucun message d&apos;erreur de syntaxe..</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1259"/>
+        <source>Toggle temporary breakpoint</source>
+        <translation>Placer/Supprimer un point d&apos;arret temporaire</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1017"/>
         <source>Show code coverage annotations</source>
         <translation>Afficher les annotations de code coverage</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1018"/>
+        <location filename="../QScintilla/Editor.py" line="1020"/>
         <source>Hide code coverage annotations</source>
         <translation>Masquer les annotations de code coverage</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1351"/>
+        <location filename="../QScintilla/Editor.py" line="1353"/>
         <source>Next uncovered line</source>
         <translation>Ligne non executée suivante</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1355"/>
+        <location filename="../QScintilla/Editor.py" line="1357"/>
         <source>Previous uncovered line</source>
         <translation>Ligne non executée précédente</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6097"/>
+        <location filename="../QScintilla/Editor.py" line="6137"/>
         <source>Show Code Coverage Annotations</source>
         <translation>Afficher les annotations de Code Coverage</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6090"/>
+        <location filename="../QScintilla/Editor.py" line="6130"/>
         <source>All lines have been covered.</source>
         <translation>Toutes les lignes ont été executées.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6097"/>
+        <location filename="../QScintilla/Editor.py" line="6137"/>
         <source>There is no coverage file available.</source>
         <translation>Impossible de trouver le fichier de coverage.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1034"/>
-        <source>Diagrams</source>
-        <translation>Diagrammes</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1036"/>
-        <source>Class Diagram...</source>
-        <translation>Diagramme des classes...</translation>
+        <source>Diagrams</source>
+        <translation>Diagrammes</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1038"/>
-        <source>Package Diagram...</source>
-        <translation>Diagramme des packages...</translation>
+        <source>Class Diagram...</source>
+        <translation>Diagramme des classes...</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1040"/>
-        <source>Imports Diagram...</source>
-        <translation>Diagramme des modules...</translation>
+        <source>Package Diagram...</source>
+        <translation>Diagramme des packages...</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1042"/>
+        <source>Imports Diagram...</source>
+        <translation>Diagramme des modules...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1044"/>
         <source>Application Diagram...</source>
         <translation>Diagramme de l&apos;application...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1193"/>
+        <location filename="../QScintilla/Editor.py" line="1195"/>
         <source>No Language</source>
         <translation>Pas de langage</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7429"/>
+        <location filename="../QScintilla/Editor.py" line="7472"/>
         <source>Resources</source>
         <translation>Ressources</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7431"/>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
         <source>Add file...</source>
         <translation>Ajouter un fichier...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7433"/>
+        <location filename="../QScintilla/Editor.py" line="7476"/>
         <source>Add files...</source>
         <translation>Ajouter des fichiers...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7435"/>
+        <location filename="../QScintilla/Editor.py" line="7478"/>
         <source>Add aliased file...</source>
         <translation>Ajouter un fichier alias...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7438"/>
+        <location filename="../QScintilla/Editor.py" line="7481"/>
         <source>Add localized resource...</source>
         <translation>Ajouter une ressource localisée...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7461"/>
-        <source>Add file resource</source>
-        <translation>Ajoute un fichier ressource</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7477"/>
-        <source>Add file resources</source>
-        <translation>Ajoute des fichiers ressources</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="7504"/>
+        <source>Add file resource</source>
+        <translation>Ajoute un fichier ressource</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7520"/>
+        <source>Add file resources</source>
+        <translation>Ajoute des fichiers ressources</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7547"/>
         <source>Add aliased file resource</source>
         <translation>Ajoute un alias de fichier ressource</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7570"/>
+        <location filename="../QScintilla/Editor.py" line="7613"/>
         <source>Package Diagram</source>
         <translation>Diagramme de package</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7570"/>
+        <location filename="../QScintilla/Editor.py" line="7613"/>
         <source>Include class attributes?</source>
         <translation>Inclure les attributs de classes ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7606"/>
+        <location filename="../QScintilla/Editor.py" line="7649"/>
         <source>Application Diagram</source>
         <translation>Diagramme de l&apos;application</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7606"/>
+        <location filename="../QScintilla/Editor.py" line="7649"/>
         <source>Include module names?</source>
         <translation>Inclure les noms de modules ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7442"/>
+        <location filename="../QScintilla/Editor.py" line="7485"/>
         <source>Add resource frame</source>
         <translation>Ajouter un cadre ressource</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6880"/>
+        <location filename="../QScintilla/Editor.py" line="6920"/>
         <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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="972"/>
-        <source>Complete from Document</source>
-        <translation>à partir du document</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="974"/>
-        <source>Complete from APIs</source>
-        <translation>à partir des fichiers API</translation>
+        <source>Complete from Document</source>
+        <translation>à partir du document</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="976"/>
+        <source>Complete from APIs</source>
+        <translation>à partir des fichiers API</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="978"/>
         <source>Complete from Document and APIs</source>
         <translation>à partir du document et des fichiers API</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1360"/>
+        <location filename="../QScintilla/Editor.py" line="1362"/>
         <source>Next task</source>
         <translation>Tâche suivante</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1364"/>
+        <location filename="../QScintilla/Editor.py" line="1366"/>
         <source>Previous task</source>
         <translation>Tâche précédente</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1218"/>
+        <location filename="../QScintilla/Editor.py" line="1220"/>
         <source>Export as</source>
         <translation>Exporter en tant que</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1414"/>
+        <location filename="../QScintilla/Editor.py" line="1416"/>
         <source>Export source</source>
         <translation>Exportation de source</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1414"/>
+        <location filename="../QScintilla/Editor.py" line="1416"/>
         <source>No export format given. Aborting...</source>
         <translation>Aucun format d&apos;exportation indiqué. Abandon...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7592"/>
+        <location filename="../QScintilla/Editor.py" line="7635"/>
         <source>Imports Diagram</source>
         <translation>Diagramme des modules</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7592"/>
+        <location filename="../QScintilla/Editor.py" line="7635"/>
         <source>Include imports from external modules?</source>
         <translation>Inclure l&apos;importation de modules externes?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="894"/>
+        <location filename="../QScintilla/Editor.py" line="896"/>
         <source>Calltip</source>
         <translation>Calltip</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="940"/>
+        <location filename="../QScintilla/Editor.py" line="942"/>
         <source>Print Preview</source>
         <translation>Aperçu avant impression</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="478"/>
+        <location filename="../QScintilla/Editor.py" line="480"/>
         <source>&lt;b&gt;A Source Editor Window&lt;/b&gt;&lt;p&gt;This window is used to display and edit a source file.  You can open as many of these as you like. The name of the file is displayed in the window&apos;s titlebar.&lt;/p&gt;&lt;p&gt;In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.&lt;/p&gt;&lt;p&gt;In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.&lt;/p&gt;&lt;p&gt;These actions can be reversed via the context menu.&lt;/p&gt;&lt;p&gt;Ctrl clicking on a syntax error marker shows some info about this error.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Fenêtre d&apos;édition&lt;/b&gt;&lt;p&gt;Cette fenêtre est utilisée pour afficher et éditer les codes sources. Vous pouvez en ouvrir autant que vous le souhaitez. Le nom du fichier ouvert est inscrit dans la barre principale.&lt;/p&gt;&lt;p&gt;Vous pouvez définir des points d&apos;arrêt en cliquant sur la marge de gauche, entre les numéros de lignes et les marques de pliage de code. Les points d&apos;arrêt peuvent être édités via le menu contextuel (en cliquant droit sur le point).&lt;/p&gt;&lt;p&gt;De manière similaire, vous pouvez définir des signets avec Shift+Click dans la marge.&lt;/p&gt;&lt;p&gt;Pour ces deux types de points, le menu contextuel (click droit) permet de défaire l&apos;action.&lt;/p&gt;&lt;p&gt;Le Ctrl+Click sur une marque d&apos;erreur de sytaxe permet de visualiser les informations sur l&apos;erreur.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="879"/>
+        <location filename="../QScintilla/Editor.py" line="881"/>
         <source>Typing aids enabled</source>
         <translation>Aide à la frappe activée</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1150"/>
+        <location filename="../QScintilla/Editor.py" line="1152"/>
         <source>End-of-Line Type</source>
         <translation>Type de fin de ligne</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1154"/>
+        <location filename="../QScintilla/Editor.py" line="1156"/>
         <source>Unix</source>
         <translation>Unix</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1161"/>
+        <location filename="../QScintilla/Editor.py" line="1163"/>
         <source>Windows</source>
         <translation>Windows</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1168"/>
+        <location filename="../QScintilla/Editor.py" line="1170"/>
         <source>Macintosh</source>
         <translation>Macintosh</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1109"/>
+        <location filename="../QScintilla/Editor.py" line="1111"/>
         <source>Encodings</source>
         <translation>Encodings</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1089"/>
+        <location filename="../QScintilla/Editor.py" line="1091"/>
         <source>Guessed</source>
         <translation>Suggestion</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
+        <location filename="../QScintilla/Editor.py" line="1431"/>
         <source>Alternatives</source>
         <translation>Alternatives</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1445"/>
+        <location filename="../QScintilla/Editor.py" line="1447"/>
         <source>Pygments Lexer</source>
         <translation>Analyseur Pygments</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1445"/>
+        <location filename="../QScintilla/Editor.py" line="1447"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>Sélectionne l&apos;analyseur Pygments à appliquer.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7935"/>
+        <location filename="../QScintilla/Editor.py" line="7978"/>
         <source>Check spelling...</source>
         <translation>Correction orthographique...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="853"/>
+        <location filename="../QScintilla/Editor.py" line="855"/>
         <source>Check spelling of selection...</source>
         <translation>Correction orthographique de la sélection...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7938"/>
+        <location filename="../QScintilla/Editor.py" line="7981"/>
         <source>Add to dictionary</source>
         <translation>Ajouter au dictionnaire</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7940"/>
+        <location filename="../QScintilla/Editor.py" line="7983"/>
         <source>Ignore All</source>
         <translation>Tout ignorer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="857"/>
+        <location filename="../QScintilla/Editor.py" line="859"/>
         <source>Remove from dictionary</source>
         <translation>Supprimer du dictionnaire</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="389"/>
+        <location filename="../QScintilla/Editor.py" line="391"/>
         <source>&lt;p&gt;The size of the file &lt;b&gt;{0}&lt;/b&gt; is &lt;b&gt;{1} KB&lt;/b&gt;. Do you really want to load it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1406"/>
+        <location filename="../QScintilla/Editor.py" line="1408"/>
         <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1425"/>
+        <location filename="../QScintilla/Editor.py" line="1427"/>
         <source>Alternatives ({0})</source>
         <translation type="unfinished">Alternatives ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3088"/>
+        <location filename="../QScintilla/Editor.py" line="3095"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; a des modifications non enregistrées.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3146"/>
+        <location filename="../QScintilla/Editor.py" line="3153"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; ne peut être ouvert.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3270"/>
+        <location filename="../QScintilla/Editor.py" line="3277"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; ne peut être enregistré.&lt;br/&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6806"/>
+        <location filename="../QScintilla/Editor.py" line="6846"/>
         <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="6815"/>
+        <location filename="../QScintilla/Editor.py" line="6855"/>
         <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="6867"/>
+        <location filename="../QScintilla/Editor.py" line="6907"/>
         <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="7267"/>
+        <location filename="../QScintilla/Editor.py" line="7310"/>
         <source>{0} (ro)</source>
         <translation type="unfinished">{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7408"/>
+        <location filename="../QScintilla/Editor.py" line="7451"/>
         <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="7504"/>
+        <location filename="../QScintilla/Editor.py" line="7547"/>
         <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1334"/>
+        <location filename="../QScintilla/Editor.py" line="1336"/>
         <source>Next warning</source>
         <translation>Alerte suivante</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1338"/>
+        <location filename="../QScintilla/Editor.py" line="1340"/>
         <source>Previous warning</source>
         <translation>Alerte précédente</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1342"/>
+        <location filename="../QScintilla/Editor.py" line="1344"/>
         <source>Show warning message</source>
         <translation>Afficher les messages d&apos;alerte</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1346"/>
+        <location filename="../QScintilla/Editor.py" line="1348"/>
         <source>Clear warnings</source>
         <translation>Effacer les alertes</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3333"/>
+        <location filename="../QScintilla/Editor.py" line="3340"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6852"/>
+        <location filename="../QScintilla/Editor.py" line="6892"/>
         <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="6653"/>
+        <location filename="../QScintilla/Editor.py" line="6693"/>
         <source>Warning: {0}</source>
         <translation>Alerte : {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6660"/>
+        <location filename="../QScintilla/Editor.py" line="6700"/>
         <source>Error: {0}</source>
         <translation>Erreur : {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7072"/>
+        <location filename="../QScintilla/Editor.py" line="7112"/>
         <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
         <translation>&lt;br&gt;&lt;b&gt;Alerte :&lt;/b&gt; Vous allez perdre vos modifications à la réouverture.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="936"/>
+        <location filename="../QScintilla/Editor.py" line="938"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1046"/>
+        <location filename="../QScintilla/Editor.py" line="1048"/>
         <source>Load Diagram...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1369"/>
+        <location filename="../QScintilla/Editor.py" line="1371"/>
         <source>Next change</source>
         <translation>Modification suivante</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1373"/>
+        <location filename="../QScintilla/Editor.py" line="1375"/>
         <source>Previous change</source>
         <translation>Modification précédente</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8356"/>
+        <location filename="../QScintilla/Editor.py" line="8399"/>
         <source>Sort Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8356"/>
+        <location filename="../QScintilla/Editor.py" line="8399"/>
         <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="6588"/>
+        <location filename="../QScintilla/Editor.py" line="6628"/>
         <source>Warning</source>
         <translation>Warning</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6588"/>
+        <location filename="../QScintilla/Editor.py" line="6628"/>
         <source>No warning messages available.</source>
         <translation>Pas de message d&apos;alerte disponible.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6650"/>
+        <location filename="../QScintilla/Editor.py" line="6690"/>
         <source>Style: {0}</source>
         <translation>Style : {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="910"/>
+        <location filename="../QScintilla/Editor.py" line="912"/>
         <source>New Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="913"/>
+        <location filename="../QScintilla/Editor.py" line="915"/>
         <source>New Document View (with new split)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1000"/>
+        <location filename="../QScintilla/Editor.py" line="1002"/>
         <source>Tools</source>
         <translation>Outils</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1131"/>
+        <location filename="../QScintilla/Editor.py" line="1133"/>
         <source>Re-Open With Encoding</source>
         <translation>Réouvrir avec encodage</translation>
     </message>
@@ -12342,122 +12342,122 @@
         <translation type="obsolete">&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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="886"/>
+        <location filename="../QScintilla/Editor.py" line="888"/>
         <source>Automatic Completion enabled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="966"/>
+        <location filename="../QScintilla/Editor.py" line="968"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4943"/>
+        <location filename="../QScintilla/Editor.py" line="4980"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4943"/>
+        <location filename="../QScintilla/Editor.py" line="4980"/>
         <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="5222"/>
+        <location filename="../QScintilla/Editor.py" line="5262"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5222"/>
+        <location filename="../QScintilla/Editor.py" line="5262"/>
         <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="8445"/>
+        <location filename="../QScintilla/Editor.py" line="8488"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8445"/>
+        <location filename="../QScintilla/Editor.py" line="8488"/>
         <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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="930"/>
+        <location filename="../QScintilla/Editor.py" line="932"/>
         <source>Save Copy...</source>
         <translation>Enregistrer une copie...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="969"/>
+        <location filename="../QScintilla/Editor.py" line="971"/>
         <source>Clear Completions Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="896"/>
+        <location filename="../QScintilla/Editor.py" line="898"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1377"/>
+        <location filename="../QScintilla/Editor.py" line="1379"/>
         <source>Clear changes</source>
         <translation>Effacer les modifications</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="815"/>
+        <location filename="../QScintilla/Editor.py" line="817"/>
         <source>Execute Selection In Console</source>
         <translation>Exécuter la sélection en console</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8566"/>
+        <location filename="../QScintilla/Editor.py" line="8609"/>
         <source>EditorConfig Properties</source>
         <translation>Propriétés d&apos;EditorConfig</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8566"/>
+        <location filename="../QScintilla/Editor.py" line="8609"/>
         <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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1281"/>
+        <location filename="../QScintilla/Editor.py" line="1283"/>
         <source>Toggle all folds</source>
         <translation>Contracte/Déploie tout le code</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1286"/>
+        <location filename="../QScintilla/Editor.py" line="1288"/>
         <source>Toggle all folds (including children)</source>
         <translation>Contracte/Déploie tout le code (sous-niveaux inclus)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1291"/>
+        <location filename="../QScintilla/Editor.py" line="1293"/>
         <source>Toggle current fold</source>
         <translation>Contracte/Déploie le paragraphe courant</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1297"/>
+        <location filename="../QScintilla/Editor.py" line="1299"/>
         <source>Expand (including children)</source>
         <translation>Déploie (sous-niveaux inclus)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1302"/>
+        <location filename="../QScintilla/Editor.py" line="1304"/>
         <source>Collapse (including children)</source>
         <translation>Contracte (sous-niveaux inclus)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1308"/>
+        <location filename="../QScintilla/Editor.py" line="1310"/>
         <source>Clear all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1189"/>
+        <location filename="../QScintilla/Editor.py" line="1191"/>
         <source>Spell Check Languages</source>
         <translation>Correction orthographique</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7106"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8760"/>
+        <location filename="../QScintilla/Editor.py" line="8803"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12849,82 +12849,82 @@
 <context>
     <name>EditorButtonsWidget</name>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="174"/>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="176"/>
         <source>Bold</source>
         <translation>Gras</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="176"/>
-        <source>Italic</source>
-        <translation>Italique</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="178"/>
+        <source>Italic</source>
+        <translation>Italique</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="180"/>
         <source>Strike Through</source>
         <translation>Barré</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="181"/>
-        <source>Header 1</source>
-        <translation>Titre 1</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="183"/>
-        <source>Header 2</source>
-        <translation>Titre 2</translation>
+        <source>Header 1</source>
+        <translation>Titre 1</translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="185"/>
-        <source>Header 3</source>
-        <translation>Titre 3</translation>
+        <source>Header 2</source>
+        <translation>Titre 2</translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="187"/>
+        <source>Header 3</source>
+        <translation>Titre 3</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="189"/>
         <source>Header</source>
         <translation>Titre</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="192"/>
-        <source>Inline Code</source>
-        <translation>Code en ligne</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="194"/>
-        <source>Code Block</source>
-        <translation>Block de code</translation>
+        <source>Inline Code</source>
+        <translation>Code en ligne</translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="196"/>
+        <source>Code Block</source>
+        <translation>Block de code</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="198"/>
         <source>Quote</source>
         <translation>Citation</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="199"/>
-        <source>Add Hyperlink</source>
-        <translation>Ajouter hyperlien</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="201"/>
-        <source>Add Horizontal Line</source>
-        <translation>Ajouter une ligne horizontale</translation>
+        <source>Add Hyperlink</source>
+        <translation>Ajouter hyperlien</translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="203"/>
+        <source>Add Horizontal Line</source>
+        <translation>Ajouter une ligne horizontale</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="205"/>
         <source>Add Image</source>
         <translation>Ajouter une image</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="206"/>
-        <source>Add Bulleted List</source>
-        <translation>Ajouter une liste à puce</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="208"/>
+        <source>Add Bulleted List</source>
+        <translation>Ajouter une liste à puce</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="210"/>
         <source>Add Numbered List</source>
         <translation>Ajouter une liste numérotée</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="274"/>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="276"/>
         <source>Level {0}</source>
         <translation>Niveau {0}</translation>
     </message>
@@ -13886,12 +13886,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="243"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="244"/>
         <source>Tab and Indent Override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="243"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="244"/>
         <source>Shall the selected entries really be removed?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -14057,7 +14057,7 @@
         <translation>Cocher pour appliquer le style jusqu&apos;en fin de ligne.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="426"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="427"/>
         <source>Fill to end of line</source>
         <translation>Appliquer jusqu&apos;à la fin de ligne</translation>
     </message>
@@ -14132,17 +14132,17 @@
         <translation>Tout appliquer jusqu&apos;aux fins de lignes</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="424"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="425"/>
         <source>Enabled</source>
         <translation>Activé</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="425"/>
-        <source>Disabled</source>
-        <translation>Désactivé</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="426"/>
+        <source>Disabled</source>
+        <translation>Désactivé</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="427"/>
         <source>Select fill to end of line for all styles</source>
         <translation>Sélectionner pour appliquer tous les styles jusqu&apos;en fin de lignes</translation>
     </message>
@@ -14202,12 +14202,12 @@
         <translation>Exporter tous les styles</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="591"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="592"/>
         <source>Export Highlighting Styles</source>
         <translation>Exportation des styles</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="642"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="643"/>
         <source>Import Highlighting Styles</source>
         <translation>Importation des styles</translation>
     </message>
@@ -14267,27 +14267,27 @@
         <translation>Cliquer pour copier le sous-style sélectionné</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="783"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="784"/>
         <source>Delete Sub-Style</source>
         <translation>Supprimer le sous-style</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="783"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="784"/>
         <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="823"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="824"/>
         <source>{0} - Copy</source>
         <translation>{0} - Copie</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="851"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="852"/>
         <source>Reset Sub-Styles to Default</source>
         <translation>Réinitialiser les sous-styles</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="851"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="852"/>
         <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>
@@ -14337,27 +14337,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="548"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="549"/>
         <source>Highlighting Styles File (*.ehj);;XML Highlighting Styles File (*.e6h)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="567"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="568"/>
         <source>&lt;p&gt;The highlighting styles file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="591"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="592"/>
         <source>&lt;p&gt;The highlighting styles 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="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="610"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="611"/>
         <source>Highlighting Styles File (*.ehj);;XML Highlighting Styles File (*.e6h *.e4h)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="642"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="643"/>
         <source>&lt;p&gt;The highlighting styles 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>
@@ -14573,47 +14573,47 @@
 <context>
     <name>EditorOutlineView</name>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="268"/>
+        <location filename="../QScintilla/EditorOutline.py" line="269"/>
         <source>Goto</source>
         <translation type="unfinished">Aller à</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="310"/>
+        <location filename="../QScintilla/EditorOutline.py" line="311"/>
         <source>Refresh</source>
         <translation type="unfinished">Rafraichir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="314"/>
+        <location filename="../QScintilla/EditorOutline.py" line="315"/>
         <source>Copy Path to Clipboard</source>
         <translation type="unfinished">Copier chemin dans le Presse-Papiers</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="319"/>
+        <location filename="../QScintilla/EditorOutline.py" line="320"/>
         <source>Expand All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="323"/>
+        <location filename="../QScintilla/EditorOutline.py" line="324"/>
         <source>Collapse All</source>
         <translation type="unfinished">Tout contracter</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="328"/>
+        <location filename="../QScintilla/EditorOutline.py" line="329"/>
         <source>Increment Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="332"/>
+        <location filename="../QScintilla/EditorOutline.py" line="333"/>
         <source>Decrement Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="390"/>
+        <location filename="../QScintilla/EditorOutline.py" line="391"/>
         <source>Line {0}</source>
         <translation type="unfinished">Ligne {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="336"/>
+        <location filename="../QScintilla/EditorOutline.py" line="337"/>
         <source>Set Default Width</source>
         <translation type="unfinished"></translation>
     </message>
@@ -16162,32 +16162,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="59"/>
         <source>Word Boundary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="60"/>
-        <source>Character Boundary</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="62"/>
+        <source>Character Boundary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="65"/>
         <source>No Indicator</source>
         <translation>Sans indicateur</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="64"/>
-        <source>Indicator by Text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="66"/>
-        <source>Indicator by Margin</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="68"/>
+        <source>Indicator by Text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="71"/>
+        <source>Indicator by Margin</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="74"/>
         <source>Indicator in Line Number Margin</source>
         <translation type="unfinished"></translation>
     </message>
@@ -16428,22 +16428,22 @@
         <translation> caractères</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="72"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="78"/>
         <source>Fixed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="74"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="80"/>
         <source>Aligned</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="76"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="82"/>
         <source>Aligned plus One</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="79"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="85"/>
         <source>Aligned plus Two</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17055,17 +17055,17 @@
         <translation>Envoyer un rapport de bug</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="423"/>
+        <location filename="../UI/EmailDialog.py" line="424"/>
         <source>Attach file</source>
         <translation>Pièce jointe</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="321"/>
+        <location filename="../UI/EmailDialog.py" line="322"/>
         <source>Mail Server Password</source>
         <translation>Mot de masse du serveur mail</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="321"/>
+        <location filename="../UI/EmailDialog.py" line="322"/>
         <source>Enter your mail server password</source>
         <translation>Entrer votre mot de passe pour le serveur mail</translation>
     </message>
@@ -17125,12 +17125,12 @@
         <translation>Envoyer</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="133"/>
+        <location filename="../UI/EmailDialog.py" line="134"/>
         <source>Close dialog</source>
         <translation>Fermer la fenêtre</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="133"/>
+        <location filename="../UI/EmailDialog.py" line="134"/>
         <source>Do you really want to close the dialog?</source>
         <translation>Voulez-vous réellement fermer cette fenêtre?</translation>
     </message>
@@ -17160,12 +17160,12 @@
         <translation>Envoyer la demande d&apos;amélioration</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="341"/>
+        <location filename="../UI/EmailDialog.py" line="342"/>
         <source>&lt;p&gt;Authentication failed.&lt;br&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Échec d&apos;authentification.&lt;br&gt;Raison : {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="410"/>
+        <location filename="../UI/EmailDialog.py" line="411"/>
         <source>&lt;p&gt;Message could not be sent.&lt;br&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le message n&apos;a pu être envoyé.&lt;br&gt;Raison : {0}&lt;/p&gt;</translation>
     </message>
@@ -17175,22 +17175,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="157"/>
+        <location filename="../UI/EmailDialog.py" line="158"/>
         <source>Gmail API Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="366"/>
+        <location filename="../UI/EmailDialog.py" line="367"/>
         <source>Send Message</source>
         <translation>Envoyer un message</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="151"/>
+        <location filename="../UI/EmailDialog.py" line="152"/>
         <source>&lt;p&gt;The Google Mail Client API is not installed. Use &lt;code&gt;{0}&lt;/code&gt; to install it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="410"/>
+        <location filename="../UI/EmailDialog.py" line="411"/>
         <source>Send Message via Gmail</source>
         <translation>Envoyer un message via Gmail</translation>
     </message>
@@ -17713,7 +17713,7 @@
         <translation>&lt;b&gt;Execution d&apos;Ericapi&lt;/b&gt;&lt;p&gt;Affiche les erreurs du générateur d&apos;API Ericapi.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="89"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
@@ -17728,17 +17728,17 @@
         <translation>Erreurs</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="82"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="84"/>
         <source>{0} - {1}</source>
         <translation>{0} - {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="89"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="128"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="137"/>
         <source>
 {0} finished.
 </source>
@@ -18078,7 +18078,7 @@
         <translation>Générer la collection de fichiers QtHelp</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="62"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="63"/>
         <source>&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot;&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;&lt;html&gt;&lt;head&gt;&lt;title&gt;&lt;/title&gt;&lt;/head&gt;&lt;body style=&quot;background-color:{BodyBgColor};color:{BodyColor}&quot;&gt;&lt;h1 style=&quot;background-color:{Level1HeaderBgColor};color:{Level1HeaderColor}&quot;&gt;Level 1 Header&lt;/h1&gt;&lt;h3 style=&quot;background-color:{Level2HeaderBgColor};color:{Level2HeaderColor}&quot;&gt;Level 2 Header&lt;/h3&gt;&lt;h2 style=&quot;background-color:{CFBgColor};color:{CFColor}&quot;&gt;Class and Function Header&lt;/h2&gt;Standard body text with &lt;a style=&quot;color:{LinkColor}&quot;&gt;some links&lt;/a&gt; embedded.&lt;/body&gt;&lt;/html&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18164,7 +18164,7 @@
 &lt;p&gt;Affiche les messages d&apos;erreurs du générateur de documentation Ericdoc.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="89"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
@@ -18179,17 +18179,17 @@
         <translation>Erreurs</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="82"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="84"/>
         <source>{0} - {1}</source>
         <translation>{0} - {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="89"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="129"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="138"/>
         <source>
 {0} finished.
 </source>
@@ -18198,7 +18198,7 @@
 </translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="120"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="126"/>
         <source>
 {0} crashed.
 </source>
@@ -18286,17 +18286,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/ErrorLogDialog.py" line="44"/>
+        <location filename="../UI/ErrorLogDialog.py" line="45"/>
         <source>Delete</source>
         <translation>Supprimer</translation>
     </message>
     <message>
-        <location filename="../UI/ErrorLogDialog.py" line="45"/>
-        <source>Close</source>
-        <translation>Fermer</translation>
-    </message>
-    <message>
         <location filename="../UI/ErrorLogDialog.py" line="46"/>
+        <source>Close</source>
+        <translation>Fermer</translation>
+    </message>
+    <message>
+        <location filename="../UI/ErrorLogDialog.py" line="47"/>
         <source>Error Log</source>
         <translation>Historique d&apos;erreurs</translation>
     </message>
@@ -18824,22 +18824,22 @@
         <translation>{0} souhaite utiliser votre position.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="110"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="111"/>
         <source>Allow</source>
         <translation>Autoriser</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="111"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="112"/>
         <source>Deny</source>
         <translation>Refuser</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="133"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="134"/>
         <source>{0} wants to use an unknown feature.</source>
         <translation>{0} souhaite utiliser une fonction inconnue.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="108"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="109"/>
         <source>Remember</source>
         <translation>Se rappeler</translation>
     </message>
@@ -18887,12 +18887,12 @@
         <translation>Notifications</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="161"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="165"/>
         <source>Host</source>
         <translation type="unfinished">Hôte</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="162"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="166"/>
         <source>Permission</source>
         <translation>Permission</translation>
     </message>
@@ -18902,17 +18902,17 @@
         <translation type="obsolete">Supprimer</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="68"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="69"/>
         <source>Geolocation</source>
         <translation>Géolocalisation</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="186"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="191"/>
         <source>Allow</source>
         <translation>Autoriser</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="187"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="193"/>
         <source>Deny</source>
         <translation>Refuser</translation>
     </message>
@@ -18927,32 +18927,32 @@
         <translation>&amp;Supprimer tout</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="83"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="85"/>
         <source>Microphone</source>
         <translation>Microphone</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="98"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="101"/>
         <source>Camera</source>
         <translation>Caméra</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="113"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="117"/>
         <source>Microphone &amp;&amp; Camera</source>
         <translation>Microphone &amp;&amp; Caméra</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="129"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="133"/>
         <source>Mouse Lock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="147"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="151"/>
         <source>Desktop Video</source>
         <translation>Vidéo du bureau</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="163"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="167"/>
         <source>Desktop Audio &amp;&amp; Video</source>
         <translation>Audio &amp;&amp; vidéo du bureau</translation>
     </message>
@@ -19008,17 +19008,17 @@
         <translation>Ajouter</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="86"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="87"/>
         <source>Add RSS Feed</source>
         <translation>Ajouter flux RSS</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="81"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="82"/>
         <source>The feed was added successfully.</source>
         <translation>Le flux a été ajouter avec succès.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="86"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="87"/>
         <source>The feed was already added before.</source>
         <translation>Le flux a déjà été ajouté auparavant.</translation>
     </message>
@@ -19076,67 +19076,67 @@
         <translation>&amp;Supprimer le flux</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="182"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="183"/>
         <source>Duplicate Feed URL</source>
         <translation>Dupliquer l&apos;URL du flux</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="182"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="183"/>
         <source>A feed with the URL {0} exists already. Aborting...</source>
         <translation>Un flux avec l&apos;URL {0} existe déjà. Annulation...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="204"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="205"/>
         <source>Delete Feed</source>
         <translation>Supprimer le flux</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="204"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="205"/>
         <source>&lt;p&gt;Do you really want to delete the feed &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Voulez-vous vraiment supprimer le flux &lt;b&gt;{0}&lt;/b&gt; ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="316"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="317"/>
         <source>Error fetching feed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="346"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="347"/>
         <source>&amp;Open</source>
         <translation>&amp;Ouvrir</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="348"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="349"/>
         <source>Open in New &amp;Tab</source>
         <translation>Ouvrir dans un nouvel &amp;onglet</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="359"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="360"/>
         <source>&amp;Copy URL to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="366"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="367"/>
         <source>&amp;Show error data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="483"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="490"/>
         <source>Error loading feed</source>
         <translation>Erreur lors du chargement du flux</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="350"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="351"/>
         <source>Open in New &amp;Background Tab</source>
         <translation>&amp;Ouvrir dans un Nouvel Onglet de fond</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="353"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="354"/>
         <source>Open in New &amp;Window</source>
         <translation>&amp;Ouvrir dans une nouvelle fenêtre</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="355"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="356"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation>&amp;Ouvrir dans une nouvelle fenêtre privée</translation>
     </message>
@@ -19786,7 +19786,7 @@
         <translation>Remplacer</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="740"/>
+        <location filename="../UI/FindFileDialog.py" line="744"/>
         <source>Replace in Files</source>
         <translation>Remplacer dans les fichiers</translation>
     </message>
@@ -19801,37 +19801,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="767"/>
+        <location filename="../UI/FindFileDialog.py" line="771"/>
         <source>Open</source>
         <translation>Ouvrir</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="768"/>
+        <location filename="../UI/FindFileDialog.py" line="772"/>
         <source>Copy Path to Clipboard</source>
         <translation>Copier chemin dans le Presse-Papiers</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="450"/>
+        <location filename="../UI/FindFileDialog.py" line="453"/>
         <source>Invalid search expression</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="450"/>
+        <location filename="../UI/FindFileDialog.py" line="453"/>
         <source>&lt;p&gt;The search expression is not valid.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="699"/>
+        <location filename="../UI/FindFileDialog.py" line="703"/>
         <source>&lt;p&gt;Could not read the file &lt;b&gt;{0}&lt;/b&gt;. Skipping it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="740"/>
+        <location filename="../UI/FindFileDialog.py" line="744"/>
         <source>&lt;p&gt;Could not save the file &lt;b&gt;{0}&lt;/b&gt;. Skipping it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="714"/>
+        <location filename="../UI/FindFileDialog.py" line="718"/>
         <source>&lt;p&gt;The current and the original hash of the file &lt;b&gt;{0}&lt;/b&gt; are different. Skipping it.&lt;/p&gt;&lt;p&gt;Hash 1: {1}&lt;/p&gt;&lt;p&gt;Hash 2: {2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19841,13 +19841,13 @@
         <translation>Fichiers %v/%m</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="573"/>
+        <location filename="../UI/FindFileDialog.py" line="576"/>
         <source>{0} / {1}</source>
         <comment>occurrences / files</comment>
         <translation>{0} / {1}</translation>
     </message>
     <message numerus="yes">
-        <location filename="../UI/FindFileDialog.py" line="574"/>
+        <location filename="../UI/FindFileDialog.py" line="577"/>
         <source>%n occurrence(s)</source>
         <translation>
             <numerusform>%n occurrence</numerusform>
@@ -19855,7 +19855,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../UI/FindFileDialog.py" line="574"/>
+        <location filename="../UI/FindFileDialog.py" line="577"/>
         <source>%n file(s)</source>
         <translation>
             <numerusform>%n fichier</numerusform>
@@ -19966,7 +19966,7 @@
         <translation>Chemin</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileNameDialog.py" line="58"/>
+        <location filename="../UI/FindFileNameDialog.py" line="59"/>
         <source>Opens the selected file</source>
         <translation>Ouvre le fichier sélectionné</translation>
     </message>
@@ -21092,7 +21092,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitArchiveDataDialog.py" line="83"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitArchiveDataDialog.py" line="85"/>
         <source>Select Archive File</source>
         <translation>Sélectionner le fichier archive</translation>
     </message>
@@ -21170,22 +21170,22 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="52"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="54"/>
         <source>&amp;Refresh</source>
         <translation>&amp;Rafraichir</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="54"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="56"/>
         <source>Press to refresh the list of commits</source>
         <translation>Cliquer pour rafraichir la liste des commits</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="173"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="173"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
@@ -21306,12 +21306,12 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
@@ -21525,7 +21525,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBranchPushDialog.py" line="34"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBranchPushDialog.py" line="35"/>
         <source>&lt;all branches&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -21839,7 +21839,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitCopyDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitCopyDialog.py" line="90"/>
         <source>Select target</source>
         <translation>Sélectionner la cible</translation>
     </message>
@@ -21907,12 +21907,12 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="115"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="115"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
@@ -21975,37 +21975,37 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="82"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="88"/>
         <source>Additional Output</source>
         <translation>Sortie additionnelle</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="110"/>
         <source>Process canceled.</source>
         <translation>Processus annulé.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="112"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="125"/>
         <source>Process finished successfully.</source>
         <translation>Processus terminé avec succès.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="127"/>
         <source>Process crashed.</source>
         <translation type="unfinished">Crash du processus.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="129"/>
         <source>Process finished with exit code {0}</source>
         <translation>Processus terminé avec le core de sortie {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="182"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="182"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
@@ -22048,82 +22048,82 @@
         <translation>Cliquer pour rafraichir l&apos;affichage</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="90"/>
         <source>Working Tree to Staging Area</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="89"/>
-        <source>Staging Area to HEAD Commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="90"/>
-        <source>Working Tree to HEAD Commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="91"/>
-        <source>Working to Staging (top) and Staging to HEAD (bottom)</source>
+        <source>Staging Area to HEAD Commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="92"/>
+        <source>Working Tree to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="93"/>
+        <source>Working to Staging (top) and Staging to HEAD (bottom)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="95"/>
         <source>Stash Contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="96"/>
         <source>Stash Contents of {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="166"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="168"/>
         <source>Difference ({0})</source>
         <translation>Différence ({0})</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="174"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="174"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="198"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="200"/>
         <source>There is no difference.</source>
         <translation>Aucune différence.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="219"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="225"/>
         <source>&lt;Start&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="220"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="226"/>
         <source>&lt;End&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="355"/>
         <source>Save Diff</source>
         <translation>Enregistrer Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="314"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="322"/>
         <source>Patch Files (*.diff)</source>
         <translation>Fichiers Patch (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="331"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="339"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier patch &lt;b&gt;{0}&lt;/b&gt; existe déjà. L&apos;écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="355"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier patch &lt;b&gt;{0}&lt;/b&gt; ne peut être enregistré.&lt;br&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
@@ -22282,12 +22282,12 @@
         <translation>Graphique</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="110"/>
         <source>Commit ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="111"/>
         <source>Author</source>
         <translation>Auteur</translation>
     </message>
@@ -22297,7 +22297,7 @@
         <translation>Date</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="112"/>
         <source>Committer</source>
         <translation type="unfinished"></translation>
     </message>
@@ -22307,7 +22307,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="110"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="113"/>
         <source>Subject</source>
         <translation>Sujet</translation>
     </message>
@@ -22382,7 +22382,7 @@
         <translation>Copie depuis</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2095"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2113"/>
         <source>Differences</source>
         <translation>Différences</translation>
     </message>
@@ -22442,328 +22442,328 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="97"/>
         <source>&amp;Refresh</source>
         <translation>&amp;Rafraichir</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="96"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="99"/>
         <source>Press to refresh the list of commits</source>
         <translation>Cliquer pour rafraichir la liste des commits</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
         <source>Find</source>
         <translation>Trouver</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="108"/>
         <source>Filter</source>
         <translation>Filtrer</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="111"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="114"/>
         <source>File</source>
         <translation>Fichier</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="131"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit ID&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2} &amp;lt;{3}&amp;gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5} &amp;lt;{6}&amp;gt;&lt;/td&gt;&lt;/tr&gt;{7}&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;{9}&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="140"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="143"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Children&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation type="unfinished"></translation>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="146"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Children&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="149"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Étiquettes&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="152"/>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Étiquettes&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="155"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Message&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;Message&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="203"/>
-        <source>Added</source>
-        <translation>Ajouté</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="204"/>
-        <source>Deleted</source>
-        <translation>Supprimé</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="205"/>
-        <source>Modified</source>
-        <translation>Modifié</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="206"/>
-        <source>Copied</source>
-        <translation>Copié</translation>
+        <source>Added</source>
+        <translation>Ajouté</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="207"/>
-        <source>Renamed</source>
-        <translation>Renommé</translation>
+        <source>Deleted</source>
+        <translation>Supprimé</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="208"/>
-        <source>Type changed</source>
-        <translation type="unfinished"></translation>
+        <source>Modified</source>
+        <translation>Modifié</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="209"/>
-        <source>Unmerged</source>
-        <translation type="unfinished"></translation>
+        <source>Copied</source>
+        <translation>Copié</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="210"/>
+        <source>Renamed</source>
+        <translation>Renommé</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="211"/>
+        <source>Type changed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="212"/>
+        <source>Unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="213"/>
         <source>Unknown</source>
         <translation>Inconnu</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="246"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="249"/>
         <source>Show Commit ID Column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="248"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="251"/>
         <source>Press to show the commit ID column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="256"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="259"/>
         <source>Show Author Columns</source>
         <translation>Montrer la colonne Auteur</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="258"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="261"/>
         <source>Press to show the author columns</source>
         <translation>Cliquer pour afficher la colonne auteur</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="266"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="269"/>
         <source>Show Committer Columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="268"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="271"/>
         <source>Press to show the committer columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="276"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="279"/>
         <source>Show Branches Column</source>
         <translation>Montrer la colonne Branches</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="278"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="281"/>
         <source>Press to show the branches column</source>
         <translation>Cliquer pour afficher la colonne Branche</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="286"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="289"/>
         <source>Show Tags Column</source>
         <translation>Montrer la colonne des étiquettes</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="291"/>
         <source>Press to show the Tags column</source>
         <translation>Cliquer pour affichier la colonne des étiquettes</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="315"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="318"/>
         <source>Copy Commits</source>
         <translation>Copier les commits</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="317"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="320"/>
         <source>Cherry-pick the selected commits to the current branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="322"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="325"/>
         <source>Tag</source>
         <translation>Étiquettes</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="324"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="327"/>
         <source>Tag the selected commit</source>
         <translation>Étiquetter le commit sélectionné</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1789"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1807"/>
         <source>Branch</source>
         <translation>Branche</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="328"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="331"/>
         <source>Create a new branch at the selected commit.</source>
         <translation>Créer une nouvelle branche au commit sélectionné.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="330"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="333"/>
         <source>Branch &amp;&amp; Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="332"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="335"/>
         <source>Create a new branch at the selected commit and switch the work tree to it.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1859"/>
         <source>Switch</source>
         <translation>Basculer de version</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="338"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="341"/>
         <source>Switch the working directory to the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1867"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1885"/>
         <source>Show Short Log</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="344"/>
-        <source>Show a dialog with a log output for release notes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="347"/>
+        <source>Show a dialog with a log output for release notes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="350"/>
         <source>Describe</source>
         <translation>Décrire</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="349"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="352"/>
         <source>Show the most recent tag reachable from a commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="634"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="639"/>
         <source>The git process did not finish within 30s.</source>
         <translation>Le processus git n&apos;a pas terminé dans les 30s.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="637"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="642"/>
         <source>Could not start the git executable.</source>
         <translation>Ne peut démarrer le processus git.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="640"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="645"/>
         <source>Git Error</source>
         <translation>Erreur Git</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="756"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="761"/>
         <source>{0} ({1}%)</source>
         <comment>action, confidence</comment>
         <translation>{0} ({1}%)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="819"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="827"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="819"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="827"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1262"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1280"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1274"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1292"/>
         <source>&lt;a href=&quot;sbsdiff:{0}_{1}&quot;&gt;Side-by-Side Compare&lt;/a&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1721"/>
         <source>Copy Changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1859"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1867"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1885"/>
         <source>Select a branch</source>
         <translation>Choisir une branche</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1820"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1838"/>
         <source>Select a default branch</source>
         <translation>Choisir la branche par défaut</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1820"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1838"/>
         <source>Branch &amp; Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2049"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2067"/>
         <source>Find Commit</source>
         <translation>Trouver le commit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2049"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2067"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation>&apos;{0}&apos; n&apos;a pas été trouvé.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2127"/>
         <source>Differences to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2124"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2142"/>
         <source>Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2150"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2168"/>
         <source>There is no difference.</source>
         <translation>Aucune différence.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2312"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2330"/>
         <source>Save Diff</source>
         <translation>Enregistrer Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2279"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2297"/>
         <source>Patch Files (*.diff)</source>
         <translation>Fichiers Patch (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2296"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2314"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier patch &lt;b&gt;{0}&lt;/b&gt; existe déjà. L&apos;écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2312"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2330"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier patch &lt;b&gt;{0}&lt;/b&gt; ne peut être enregistrer.&lt;br&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
@@ -22945,12 +22945,12 @@
 depuis le référentiel vers ce répertoire.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="87"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="88"/>
         <source>Select Repository-Directory</source>
         <translation>Sélection du répertoire dépot</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="102"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="103"/>
         <source>Select Project Directory</source>
         <translation>Selection d&apos;un répertoire projet</translation>
     </message>
@@ -23106,7 +23106,7 @@
 <context>
     <name>GitPatchFilesDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="82"/>
         <source>Patch Files</source>
         <translation>Fichiers patch</translation>
     </message>
@@ -23161,7 +23161,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="82"/>
         <source>Patch Files (*.diff *.patch);;All Files (*)</source>
         <translation>Fichier Patch (*.diff *.patch);;Tous les fichiers (*)</translation>
     </message>
@@ -23199,12 +23199,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
@@ -25229,22 +25229,22 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="54"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="56"/>
         <source>&amp;Refresh</source>
         <translation>&amp;Rafraichir</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="56"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="58"/>
         <source>Press to refresh the list of commits</source>
         <translation>Cliquer pour rafraichir la liste de commits</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="198"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="198"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
@@ -25436,12 +25436,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="144"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="148"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="144"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="148"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
@@ -25740,57 +25740,57 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="60"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="63"/>
         <source>&amp;Refresh</source>
         <translation>&amp;Rafraichir</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="62"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="65"/>
         <source>Press to refresh the list of stashes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="77"/>
-        <source>Show</source>
-        <translation>Montrer</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="80"/>
+        <source>Show</source>
+        <translation>Montrer</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="83"/>
         <source>Restore &amp;&amp; Keep</source>
         <translation>Restorer &amp;&amp; Conserver</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="82"/>
-        <source>Restore &amp;&amp; Delete</source>
-        <translation>Restorer &amp;&amp; Supprimer</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="85"/>
-        <source>Create Branch</source>
-        <translation>Créer une branche</translation>
+        <source>Restore &amp;&amp; Delete</source>
+        <translation>Restorer &amp;&amp; Supprimer</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="88"/>
+        <source>Create Branch</source>
+        <translation>Créer une branche</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="91"/>
         <source>Delete</source>
         <translation>Supprimer</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="93"/>
         <source>Delete All</source>
         <translation>Tous supprimer</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="176"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="183"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="176"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="183"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="363"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="377"/>
         <source>%n file(s) changed</source>
         <translation>
             <numerusform>%n fichier modifié</numerusform>
@@ -25798,7 +25798,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="365"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="379"/>
         <source>%n line(s) inserted</source>
         <translation>
             <numerusform>%n ligne insérée</numerusform>
@@ -25806,7 +25806,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="367"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="381"/>
         <source>%n line(s) deleted</source>
         <translation>
             <numerusform>%n ligne supprimée</numerusform>
@@ -25875,7 +25875,7 @@
 <context>
     <name>GitStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="379"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="386"/>
         <source>Git Status</source>
         <translation>Statut Git</translation>
     </message>
@@ -25901,7 +25901,7 @@
         <translation>Choisir le statut des entrées à afficher</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="647"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="665"/>
         <source>Commit</source>
         <translation>Commit</translation>
     </message>
@@ -25986,312 +25986,312 @@
         <translation>Cliquer pour rafraichir l&apos;affichage</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="102"/>
         <source>Stage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="106"/>
         <source>Revert Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="110"/>
         <source>Stage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="112"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="114"/>
         <source>Revert Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="120"/>
         <source>Unstage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="122"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="124"/>
         <source>Unstage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="163"/>
-        <source>added</source>
-        <translation>ajouté</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="164"/>
-        <source>copied</source>
-        <translation>copié</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="165"/>
-        <source>deleted</source>
-        <translation>effacé</translation>
+        <source>added</source>
+        <translation>ajouté</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="166"/>
-        <source>modified</source>
-        <translation>modifié</translation>
+        <source>copied</source>
+        <translation>copié</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="167"/>
-        <source>renamed</source>
-        <translation>renommé</translation>
+        <source>deleted</source>
+        <translation>effacé</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="168"/>
+        <source>modified</source>
+        <translation>modifié</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="169"/>
+        <source>renamed</source>
+        <translation>renommé</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="171"/>
         <source>not tracked</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="168"/>
-        <source>unmerged</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="162"/>
-        <source>unmodified</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
+        <source>unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="164"/>
+        <source>unmodified</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="172"/>
         <source>ignored</source>
         <translation>ignoré</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="188"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="190"/>
         <source>Commit the selected changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="189"/>
-        <source>Amend</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="191"/>
-        <source>Amend the latest commit with the selected changes</source>
+        <source>Amend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="193"/>
-        <source>Select all for commit</source>
-        <translation type="unfinished">Tout sélectionner pour comitter</translation>
+        <source>Amend the latest commit with the selected changes</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="195"/>
+        <source>Select all for commit</source>
+        <translation type="unfinished">Tout sélectionner pour comitter</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="197"/>
         <source>Unselect all from commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="688"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="706"/>
         <source>Add</source>
         <translation>Ajouter</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="201"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="203"/>
         <source>Add the selected files</source>
         <translation>Ajouter les fichiers sélectionnés</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="202"/>
-        <source>Stage changes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="204"/>
-        <source>Stages all changes of the selected files</source>
+        <source>Stage changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="206"/>
-        <source>Unstage changes</source>
+        <source>Stages all changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="208"/>
+        <source>Unstage changes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210"/>
         <source>Unstages all changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="824"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="842"/>
         <source>Differences</source>
         <translation>Différences</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="215"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="217"/>
         <source>Shows the differences of the selected entry in a separate dialog</source>
         <translation type="unfinished">Montre les différences de l&apos;entrée sélectionnée dans une fenêtre séparée</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="218"/>
-        <source>Differences Side-By-Side</source>
-        <translation type="unfinished">Différences côte à côte</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="220"/>
+        <source>Differences Side-By-Side</source>
+        <translation type="unfinished">Différences côte à côte</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="222"/>
         <source>Shows the differences of the selected entry side-by-side in a separate dialog</source>
         <translation type="unfinished">Affiche les différences côte à côte de l&apos;entrée sélectionnée dans une fenêtre séparée</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789"/>
         <source>Revert</source>
         <translation>Recouvrir</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="228"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="230"/>
         <source>Reverts the changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="233"/>
-        <source>Forget missing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="235"/>
-        <source>Forgets about the selected missing files</source>
+        <source>Forget missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="237"/>
-        <source>Restore missing</source>
-        <translation type="unfinished">Restorer les manquants</translation>
+        <source>Forgets about the selected missing files</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="239"/>
+        <source>Restore missing</source>
+        <translation type="unfinished">Restorer les manquants</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="241"/>
         <source>Restores the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244"/>
-        <source>Edit file</source>
-        <translation>Éditer le fichier</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="246"/>
+        <source>Edit file</source>
+        <translation>Éditer le fichier</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="248"/>
         <source>Edit the selected conflicting file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="251"/>
-        <source>Adjust column sizes</source>
-        <translation>Ajuster la largeur des colonnes</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253"/>
+        <source>Adjust column sizes</source>
+        <translation>Ajuster la largeur des colonnes</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="255"/>
         <source>Adjusts the width of all columns to their contents</source>
         <translation>Ajuster la largeur de toutes les colonnes à leurs contenus</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="414"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="414"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="581"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="599"/>
         <source>all</source>
         <translation>tout</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="647"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="665"/>
         <source>There are no entries selected to be committed.</source>
         <translation type="unfinished">Il n&apos;y a pas d&apos;entrée sélectionnée à committer.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="688"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="706"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation>Aucune entrée &quot;non-versionnée&quot; disponible/sélectionnée.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="710"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="728"/>
         <source>Stage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="710"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="728"/>
         <source>There are no stageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="732"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="750"/>
         <source>Unstage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="732"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="750"/>
         <source>There are no unstageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="754"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="772"/>
         <source>Forget Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="795"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="813"/>
         <source>There are no missing entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789"/>
         <source>There are no uncommitted, unstaged changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="795"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="813"/>
         <source>Restore Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="824"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="842"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation>Il n&apos;y a pas de modification non commitée disponible/sélectionnée.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="876"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
         <source>Working Tree to Staging Area</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="855"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="873"/>
         <source>Staging Area to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="877"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="895"/>
         <source>Working Tree to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="879"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="897"/>
         <source>Side-by-Side Difference</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="879"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="897"/>
         <source>Select the compare method.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1188"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1212"/>
         <source>Revert selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1190"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1214"/>
         <source>Revert hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1191"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1215"/>
         <source>Are you sure you want to revert the selected changes?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26388,12 +26388,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="103"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="105"/>
         <source>Select Submodule Repository Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="129"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="131"/>
         <source>Select Submodule Directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26779,12 +26779,12 @@
 &lt;p&gt;Cette fenêtre affiche la liste des étiquettes ou branches du projet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="95"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="97"/>
         <source>Commit</source>
         <translation>Commit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="95"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="97"/>
         <source>Name</source>
         <translation>Nom</translation>
     </message>
@@ -26834,22 +26834,22 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="92"/>
         <source>Annotation Message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="96"/>
         <source>Git Branches List</source>
         <translation>Liste des branches Git</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="133"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="133"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
@@ -27635,7 +27635,7 @@
 <context>
     <name>HelpDocsInstaller</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpDocsInstaller.py" line="239"/>
+        <location filename="../WebBrowser/QtHelp/HelpDocsInstaller.py" line="241"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be registered. &lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -27816,22 +27816,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="205"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="211"/>
         <source>Open Link</source>
         <translation>Ouvrir le lien</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="206"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="212"/>
         <source>Open Link in New Tab</source>
         <translation>Ouvrir le lien dans un nouvel onglet</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="207"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="213"/>
         <source>Open Link in Background Tab</source>
         <translation>Ouvrir le lien dans un onglet en arrière plan</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="209"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="215"/>
         <source>Open Link in New Window</source>
         <translation>Ouvrir le lien dans une nouvelle fenêtre</translation>
     </message>
@@ -27905,22 +27905,22 @@
 <context>
     <name>HelpSearchWidget</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="145"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="150"/>
         <source>Open Link</source>
         <translation>Ouvrir le lien</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="146"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="151"/>
         <source>Open Link in New Tab</source>
         <translation>Ouvrir le lien dans un nouvel onglet</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="147"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="152"/>
         <source>Open Link in Background Tab</source>
         <translation>Ourvrir le lien dans un onglet en arrière plan</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="149"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="154"/>
         <source>Open Link in New Window</source>
         <translation>Ouvrir le lien dans une nouvelle fenêtre</translation>
     </message>
@@ -27996,22 +27996,22 @@
 <context>
     <name>HelpTocWidget</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="158"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="164"/>
         <source>Open Link</source>
         <translation>Ouvrir le lien</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="159"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="165"/>
         <source>Open Link in New Tab</source>
         <translation>Ouvrir le lien dans un nouvel onglet</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="160"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="166"/>
         <source>Open Link in Background Tab</source>
         <translation>Ouvrir le lien dans un onglet en arrière plan</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="162"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="168"/>
         <source>Open Link in New Window</source>
         <translation>Ouvrir le lien dans une nouvelle fenêtre</translation>
     </message>
@@ -29868,12 +29868,12 @@
         <translation>Aide</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="798"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="801"/>
         <source>&lt;p&gt;This part of the status bar displays the edit mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="806"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="810"/>
         <source>&lt;p&gt;This part of the status bar displays the read only mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -29883,111 +29883,111 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="790"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="792"/>
         <source>&lt;p&gt;This part of the status bar displays the size of the binary data.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="862"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="867"/>
         <source>ro</source>
         <translation>ro</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="862"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="867"/>
         <source>rw</source>
         <translation>rw</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="880"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="885"/>
         <source>Overwrite</source>
         <translation type="unfinished">Écraser</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="880"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="885"/>
         <source>Insert</source>
         <translation>Insérer</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="942"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="947"/>
         <source>Open binary file in new window</source>
         <translation>Ouvrir le fichier binaire dans une nouvelle fenêtre</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1061"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1066"/>
         <source>All Files (*)</source>
         <translation>Tous fichiers (*)</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="963"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="968"/>
         <source>The loaded file has unsaved changes.</source>
         <translation>Le fichier chargé a des modifications non enregistrées.</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="981"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="986"/>
         <source>The file &apos;{0}&apos; does not exist.</source>
         <translation>Le fichier &apos;{0}&apos; n&apos;existe pas.</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="988"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="993"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation>Ne peut lire le fichier &apos;{0}:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1014"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1019"/>
         <source>Open binary file</source>
         <translation>Ouvrir le fichier binaire</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1071"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1076"/>
         <source>Save binary file</source>
         <translation>Enregistrer le fichier binaire</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1156"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1161"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1181"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1186"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation>Ne peut écrire le fichier &apos;{0}:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1187"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1192"/>
         <source>File saved</source>
         <translation>Fichier enregistré</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1156"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1161"/>
         <source>Save to readable file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1140"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1145"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation>Fichiers texte (*.txt);;Tous les fichiers (*)</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1140"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1145"/>
         <source>Text Files (*.txt)</source>
         <translation>Fichiers texte (*.txt)</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1223"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1228"/>
         <source>Untitled</source>
         <translation>SansTitre</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1227"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1232"/>
         <source>{0}[*] - {1}</source>
         <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1227"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1232"/>
         <source>Hex Editor</source>
         <translation type="unfinished">Hex Editor</translation>
     </message>
@@ -30007,12 +30007,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="782"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="783"/>
         <source>&lt;p&gt;This part of the status bar displays some selection information.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="851"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="856"/>
         <source>Selection: -</source>
         <comment>no selection available</comment>
         <translation>Sélection : -</translation>
@@ -30033,18 +30033,18 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="826"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="831"/>
         <source>Address: {0}</source>
         <translation>Adresse : {0}</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="845"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="850"/>
         <source>Selection: {0} - {1} ({2} Bytes)</source>
         <comment>0: start, 1: end, 2: selection length</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="899"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="904"/>
         <source>Size: {0}</source>
         <translation>Taille : {0}</translation>
     </message>
@@ -30054,22 +30054,22 @@
         <translation>Ouvrir un fichier &amp;récent</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1431"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1436"/>
         <source>&amp;Clear</source>
         <translation>&amp;Effacer</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1181"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1186"/>
         <source>eric Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1284"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1289"/>
         <source>About eric Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1284"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1289"/>
         <source>The eric Hex Editor is a simple editor component to edit binary files.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -31201,7 +31201,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBackoutDialog.py" line="174"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBackoutDialog.py" line="176"/>
         <source>Backed out changeset &lt;{0}&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -31229,7 +31229,7 @@
 <context>
     <name>HgBookmarkDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="46"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="47"/>
         <source>Define Bookmark</source>
         <translation>Déinir un signet</translation>
     </message>
@@ -31334,7 +31334,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="43"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="44"/>
         <source>Move Bookmark</source>
         <translation>Déplacer le signet</translation>
     </message>
@@ -31422,12 +31422,12 @@
         <translation type="obsolete">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="46"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="48"/>
         <source>Mercurial Incoming Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="48"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="50"/>
         <source>Mercurial Outgoing Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
@@ -31442,7 +31442,7 @@
         <translation type="obsolete">Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="121"/>
         <source>no bookmarks found</source>
         <translation>pas de signet trouvé</translation>
     </message>
@@ -31529,7 +31529,7 @@
         <translation type="obsolete">Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="125"/>
         <source>no bookmarks defined</source>
         <translation>pas de signet défini</translation>
     </message>
@@ -31544,67 +31544,67 @@
         <translation>Cliquer pour rafraichir l&apos;affichage des signets</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="247"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="258"/>
         <source>Switch to</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="251"/>
-        <source>Delete</source>
-        <translation>Supprimer</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="254"/>
-        <source>Rename</source>
-        <translation>Renommer</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="258"/>
-        <source>Pull</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="262"/>
+        <source>Delete</source>
+        <translation>Supprimer</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="265"/>
+        <source>Rename</source>
+        <translation>Renommer</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="269"/>
+        <source>Pull</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="273"/>
         <source>Push</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="299"/>
         <source>Switch</source>
         <translation>Basculer de version</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="299"/>
         <source>The project should be reread. Do this now?</source>
         <translation>Le projet devrai être relu. Le faire maintenant ?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="318"/>
         <source>Delete Bookmark</source>
         <translation>Supprimer le signet</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="318"/>
         <source>&lt;p&gt;Shall the bookmark &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Faut-il vraiment supprimer le signet &lt;b&gt;{0}&lt;/b&gt; ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="323"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="334"/>
         <source>Rename Bookmark</source>
         <translation>Renommer le signet</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="323"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="334"/>
         <source>&lt;p&gt;Enter the new name for bookmark &lt;b&gt;{0}&lt;/b&gt;:&lt;/p&gt;</source>
         <translation>&lt;p&gt;Entrer le nouveau nom pour le signet &lt;b&gt;{0}&lt;/b&gt;:&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="267"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="278"/>
         <source>Push Current</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="272"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="283"/>
         <source>Push All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32024,7 +32024,7 @@
         <translation>Cliquer pour marquer l&apos;entrée sélectionnée comme &apos;resolved&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="173"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="183"/>
         <source>Resolved</source>
         <translation>Résolu</translation>
     </message>
@@ -32034,7 +32034,7 @@
         <translation>Cliquer pour marquer l&apos;entrée comme &apos;unresolved&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="171"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="181"/>
         <source>Unresolved</source>
         <translation>Non-résolu</translation>
     </message>
@@ -32089,12 +32089,12 @@
         <translation type="obsolete">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="51"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="54"/>
         <source>&amp;Refresh</source>
         <translation>&amp;Rafraichir</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="53"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="56"/>
         <source>Press to refresh the list of conflicts</source>
         <translation>Cliquer pour rafraichir la liste des conflits</translation>
     </message>
@@ -32109,7 +32109,7 @@
         <translation type="obsolete">Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="175"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="185"/>
         <source>Unknown Status</source>
         <translation>Statut inconnu</translation>
     </message>
@@ -32271,52 +32271,52 @@
         <translation>Erreurs</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="101"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="101"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="120"/>
         <source>There is no difference.</source>
         <translation>Aucune différence.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="245"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="254"/>
         <source>Save Diff</source>
         <translation>Enregistrer Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="213"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="222"/>
         <source>Patch Files (*.diff)</source>
         <translation>Fichiers Patch (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="245"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="254"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier patch &lt;b&gt;{0}&lt;/b&gt; ne peut être enregistrer.&lt;br&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="230"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="239"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier patch &lt;b&gt;{0}&lt;/b&gt; existe déjà. L&quot;écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="91"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="93"/>
         <source>Patch Contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="137"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="143"/>
         <source>&lt;Start&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="138"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="144"/>
         <source>&lt;End&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32602,7 +32602,7 @@
         <translation>Sélectionner la catégore pour appliquer le filtre</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="218"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="228"/>
         <source>Revision</source>
         <translation>Révision</translation>
     </message>
@@ -32672,7 +32672,7 @@
         <translation type="obsolete">Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="95"/>
         <source>no signatures found</source>
         <translation type="unfinished"></translation>
     </message>
@@ -33150,17 +33150,17 @@
         <translation>Sélectionner le champ à filtrer</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="131"/>
         <source>Revision</source>
         <translation>Révision</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="129"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="132"/>
         <source>Author</source>
         <translation>Auteur</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="130"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="133"/>
         <source>Message</source>
         <translation>Message</translation>
     </message>
@@ -33255,17 +33255,17 @@
         <translation type="obsolete">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="208"/>
         <source>Added</source>
         <translation>Ajouté</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="206"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="209"/>
         <source>Deleted</source>
         <translation>Supprimé</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="207"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="210"/>
         <source>Modified</source>
         <translation>Modifié</translation>
     </message>
@@ -33280,7 +33280,7 @@
         <translation type="obsolete">Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="842"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="847"/>
         <source>Mercurial Error</source>
         <translation>Erreur Mercurial</translation>
     </message>
@@ -33300,7 +33300,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="190"/>
         <source>All</source>
         <translation>Tous</translation>
     </message>
@@ -33315,48 +33315,48 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="222"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="225"/>
         <source>Bookmarks</source>
         <translation>Signets</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="117"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="120"/>
         <source>Press to refresh the list of changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="118"/>
         <source>&amp;Refresh</source>
         <translation>&amp;Rafraichir</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="132"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="135"/>
         <source>Phase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="274"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="277"/>
         <source>Change the phase of the selected revisions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="276"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="279"/>
         <source>&lt;b&gt;Change Phase&lt;/b&gt;
 &lt;p&gt;This changes the phase of the selected revisions. The selected revisions have to have the same current phase.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="272"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="275"/>
         <source>Change Phase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1997"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2016"/>
         <source>Copy Changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2302"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2321"/>
         <source>The project should be reread. Do this now?</source>
         <translation>Le projet devrai être relu. Le faire maintenant ?</translation>
     </message>
@@ -33366,42 +33366,42 @@
         <translation>Sélectionner l&apos;action à partir du menu</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="266"/>
         <source>Copy the selected changesets to the current branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="281"/>
-        <source>Tag</source>
-        <translation>Étiquette</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="284"/>
+        <source>Tag</source>
+        <translation>Étiquette</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="287"/>
         <source>Tag the selected revision</source>
         <translation>Étiquetter la révision sélectionnée</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2068"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2087"/>
         <source>Switch</source>
         <translation>Basculer de version</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="294"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="297"/>
         <source>Switch the working directory to the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="317"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="320"/>
         <source>Pull Large Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="319"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="322"/>
         <source>Pull large files for selected revisions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1135"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1146"/>
         <source>{0} (large file)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -33426,137 +33426,137 @@
         <translation>Cliquer pour rechercher l&apos;occurence suivante</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="128"/>
         <source>Find</source>
         <translation>Chercher</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="126"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="129"/>
         <source>Filter</source>
         <translation>Filtrer</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="172"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Étiquettes&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="175"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="178"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Signets&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2443"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2462"/>
         <source>Find Commit</source>
         <translation>Chercher le commit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2443"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2462"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation>&apos;{0}&apos; n&apos;a pas été trouvé.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="134"/>
         <source>File</source>
         <translation>Fichier</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="211"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="214"/>
         <source>Draft</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="212"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="215"/>
         <source>Public</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="213"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="216"/>
         <source>Secret</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2165"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2184"/>
         <source>Pull Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="315"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="318"/>
         <source>Pull changes from a remote repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="324"/>
-        <source>Push Selected Changes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="327"/>
-        <source>Push changes of the selected changeset and its ancestors to a remote repository</source>
+        <source>Push Selected Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="330"/>
-        <source>Push All Changes</source>
+        <source>Push changes of the selected changeset and its ancestors to a remote repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="333"/>
+        <source>Push All Changes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="336"/>
         <source>Push all changes to a remote repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2211"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2230"/>
         <source>Strip Changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="376"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="379"/>
         <source>Strip changesets from a repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="299"/>
-        <source>Define Bookmark...</source>
-        <translation>Définir un signet...</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="302"/>
+        <source>Define Bookmark...</source>
+        <translation>Définir un signet...</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="305"/>
         <source>Bookmark the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="304"/>
-        <source>Move Bookmark...</source>
-        <translation>Déplacer le signet...</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="307"/>
+        <source>Move Bookmark...</source>
+        <translation>Déplacer le signet...</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="310"/>
         <source>Move bookmark to the selected revision</source>
         <translation>Déplacer le signet vers la révision sélectionnée</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2091"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2110"/>
         <source>Define Bookmark</source>
         <translation>Définir un signet</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2091"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2110"/>
         <source>Enter bookmark name for changeset &quot;{0}&quot;:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2134"/>
         <source>Move Bookmark</source>
         <translation>Déplacer un signet</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2134"/>
         <source>Select the bookmark to be moved  to changeset &quot;{0}&quot;:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2054"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2073"/>
         <source>Select bookmark to switch to (leave empty to use revision):</source>
         <translation type="unfinished"></translation>
     </message>
@@ -33571,143 +33571,143 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="175"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Latest Tag&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;Dernière étiquette&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="156"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branch&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;{4}&lt;tr&gt;&lt;td&gt;&lt;b&gt;Message&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation>&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Révision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Auteur&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branche&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;{4}&lt;tr&gt;&lt;td&gt;&lt;b&gt;Message&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="163"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="166"/>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="169"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Children&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="266"/>
-        <source>Merge with Changeset</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="269"/>
+        <source>Merge with Changeset</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="272"/>
         <source>Merge the working directory with the selected changeset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="338"/>
-        <source>Create Changegroup</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="341"/>
+        <source>Create Changegroup</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="344"/>
         <source>Create a changegroup file containing the selected changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="343"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="346"/>
         <source>&lt;b&gt;Create Changegroup&lt;/b&gt;
 &lt;p&gt;This creates a changegroup file containing the selected revisions. If no revisions are selected, all changesets will be bundled. If one revision is selected, it will be interpreted as the base revision. Otherwise the lowest revision will be used as the base revision and all other revision will be bundled. If the dialog is showing outgoing changesets, all selected changesets will be bundled.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2302"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2321"/>
         <source>Apply Changegroup</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="355"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="358"/>
         <source>Apply the currently viewed changegroup file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="360"/>
-        <source>Sign Revisions</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="363"/>
+        <source>Sign Revisions</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="366"/>
         <source>Add a signature for the selected revisions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="365"/>
-        <source>Verify Signatures</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="368"/>
+        <source>Verify Signatures</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="371"/>
         <source>Verify all signatures there may be for the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="381"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="384"/>
         <source>Select All Entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="383"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="386"/>
         <source>Deselect All Entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1376"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1392"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1387"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1403"/>
         <source>&lt;a href=&quot;sbsdiff:{0}_{1}&quot;&gt;Side-by-Side Compare&lt;/a&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1523"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1539"/>
         <source>Pull Selected Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2487"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2506"/>
         <source>Differences</source>
         <translation>Différences</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2497"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2516"/>
         <source>Differences to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2513"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2532"/>
         <source>Diff to Parent {0}{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2538"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2557"/>
         <source>There is no difference.</source>
         <translation>Aucune différence.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2680"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2699"/>
         <source>Save Diff</source>
         <translation>Enregistrer Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2648"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2667"/>
         <source>Patch Files (*.diff)</source>
         <translation>Fichiers Patch (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2665"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2684"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier patch &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2680"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2699"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier patch &lt;b&gt;{0}&lt;/b&gt; ne peut être enregistré.&lt;br&gt;Rasion : {1}&lt;/p&gt;</translation>
     </message>
@@ -33717,7 +33717,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2486"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2505"/>
         <source>Generating differences ...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -33727,12 +33727,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="286"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="289"/>
         <source>Close Heads</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="289"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="292"/>
         <source>Close the selected heads</source>
         <translation type="unfinished"></translation>
     </message>
@@ -35769,22 +35769,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="206"/>
         <source>Remove Guards</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="206"/>
         <source>Do you really want to remove the selected guards?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="253"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="258"/>
         <source>Apply Guard Definitions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="253"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="258"/>
         <source>&lt;p&gt;The defined guards could not be applied.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -35845,7 +35845,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesGuardsSelectionDialog.py" line="44"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesGuardsSelectionDialog.py" line="46"/>
         <source>Active Guards</source>
         <translation type="unfinished"></translation>
     </message>
@@ -35868,7 +35868,7 @@
         <translation type="obsolete">Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py" line="118"/>
         <source>Error: </source>
         <translation>Erreur : </translation>
     </message>
@@ -35973,32 +35973,32 @@
         <translation type="obsolete">Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="138"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="145"/>
         <source>no patches found</source>
         <translation>pas de patch trouvé</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="43"/>
-        <source>applied</source>
-        <translation>appliqué</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="45"/>
-        <source>guarded</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="46"/>
+        <source>applied</source>
+        <translation>appliqué</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="48"/>
+        <source>guarded</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="49"/>
         <source>missing</source>
         <translation>manquant</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="193"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="205"/>
         <source>unknown</source>
         <translation>inconnu</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="44"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="47"/>
         <source>not applied</source>
         <translation>non appliqué</translation>
     </message>
@@ -36152,12 +36152,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="67"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="68"/>
         <source>Refresh</source>
         <translation>Rafraichir</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="69"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="70"/>
         <source>Press to refresh the queues list</source>
         <translation type="unfinished"></translation>
     </message>
@@ -36901,27 +36901,27 @@
         <translation type="obsolete">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="49"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="52"/>
         <source>&amp;Refresh</source>
         <translation>&amp;Rafraichir</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="51"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="54"/>
         <source>Press to refresh the list of shelves</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="60"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="63"/>
         <source>Restore selected shelve</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="62"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="65"/>
         <source>Delete selected shelves</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="64"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="67"/>
         <source>Delete all shelves</source>
         <translation type="unfinished"></translation>
     </message>
@@ -36936,7 +36936,7 @@
         <translation type="obsolete">Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="266"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="280"/>
         <source>%n file(s) changed</source>
         <translation>
             <numerusform>%n fichier modifié</numerusform>
@@ -36944,7 +36944,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="268"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="282"/>
         <source>%n line(s) inserted</source>
         <translation>
             <numerusform>%n ligne insérée</numerusform>
@@ -36952,7 +36952,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="270"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="284"/>
         <source>%n line(s) deleted</source>
         <translation>
             <numerusform>%n ligne supprimée</numerusform>
@@ -37034,7 +37034,7 @@
 <context>
     <name>HgStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="310"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="314"/>
         <source>Mercurial Status</source>
         <translation>Statut Mercurial</translation>
     </message>
@@ -37096,47 +37096,47 @@
         <translation>Cliquer pour rafraichir l&apos;affichage</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="124"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="126"/>
         <source>Commit the selected changes</source>
         <translation>Committer les modifications sélectionnées</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="190"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="192"/>
         <source>Adjust column sizes</source>
         <translation>Ajuster la largeur des colonnes</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="96"/>
         <source>added</source>
         <translation>ajouté</translation>
     </message>
     <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="99"/>
+        <source>modified</source>
+        <translation>modifié</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="100"/>
+        <source>removed</source>
+        <translation>supprimé</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="101"/>
+        <source>not tracked</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="97"/>
-        <source>modified</source>
-        <translation>modifié</translation>
+        <source>normal</source>
+        <translation>normal</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="98"/>
-        <source>removed</source>
-        <translation>supprimé</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="99"/>
-        <source>not tracked</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="95"/>
-        <source>normal</source>
-        <translation>normal</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="96"/>
         <source>ignored</source>
         <translation>ignoré</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="102"/>
         <source>missing</source>
         <translation>manquant</translation>
     </message>
@@ -37151,37 +37151,37 @@
         <translation type="obsolete">Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="494"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="506"/>
         <source>Commit</source>
         <translation>Commit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="660"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="672"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation>Il n&apos;y a pas de modification non commitée disponible/sélectionnée.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="558"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="570"/>
         <source>Add</source>
         <translation>Ajouter</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="558"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="570"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation>Aucune entrée &quot;non-versionnée&quot; disponible/sélectionnée.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="622"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="634"/>
         <source>Revert</source>
         <translation>Recouvrir</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="581"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="593"/>
         <source>Remove</source>
         <translation>Supprimer</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="622"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="634"/>
         <source>There are no missing entries available/selected.</source>
         <translation>Aucune entrée manquante disponible/sélectionnée.</translation>
     </message>
@@ -37196,102 +37196,102 @@
         <translation>Sélectionner le statut des entrées à afficher</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="174"/>
         <source>Restore missing</source>
         <translation type="unfinished">Restorer les manquants</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="416"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="428"/>
         <source>all</source>
         <translation>tout</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="640"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="652"/>
         <source>Differences</source>
         <translation>Différences</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="494"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="506"/>
         <source>There are no entries selected to be committed.</source>
         <translation>Il n&apos;y a pas d&apos;entrée sélectionnée à committer.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="125"/>
-        <source>Select all for commit</source>
-        <translation>Tout sélectionner pour comitter</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="307"/>
-        <source>Mercurial Queue Repository Status</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="667"/>
-        <source>Side-by-Side Diff</source>
-        <translation type="unfinished">Diff côte à côte</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="667"/>
-        <source>Only one file with uncommitted changes must be selected.</source>
-        <translation type="unfinished">Uniquement un fichier avec des modifications non commitées doit être sélectionné.</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="135"/>
-        <source>Add as Large Files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="140"/>
-        <source>Add as Normal Files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="168"/>
-        <source>Forget missing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="127"/>
-        <source>Unselect all from commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="134"/>
-        <source>Add the selected files</source>
-        <translation>Ajouter les fichiers sélectionnés</translation>
+        <source>Select all for commit</source>
+        <translation>Tout sélectionner pour comitter</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="311"/>
+        <source>Mercurial Queue Repository Status</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="679"/>
+        <source>Side-by-Side Diff</source>
+        <translation type="unfinished">Diff côte à côte</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="679"/>
+        <source>Only one file with uncommitted changes must be selected.</source>
+        <translation type="unfinished">Uniquement un fichier avec des modifications non commitées doit être sélectionné.</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="137"/>
-        <source>Add the selected files as a large files using the &apos;Large Files&apos; extension</source>
+        <source>Add as Large Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="142"/>
-        <source>Add the selected files as a normal files using the &apos;Large Files&apos; extension</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="150"/>
-        <source>Shows the differences of the selected entry in a separate dialog</source>
-        <translation>Montre les différences de l&apos;entrée sélectionnée dans une fenêtre séparée</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="153"/>
-        <source>Differences Side-By-Side</source>
-        <translation>Différences côte à côte</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="155"/>
-        <source>Shows the differences of the selected entry side-by-side in a separate dialog</source>
-        <translation>Affiche les différences côte à côte de l&apos;entrée sélectionnée dans une fenêtre séparée</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="163"/>
-        <source>Reverts the changes of the selected files</source>
+        <source>Add as Normal Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="170"/>
+        <source>Forget missing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="129"/>
+        <source>Unselect all from commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="136"/>
+        <source>Add the selected files</source>
+        <translation>Ajouter les fichiers sélectionnés</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="139"/>
+        <source>Add the selected files as a large files using the &apos;Large Files&apos; extension</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="144"/>
+        <source>Add the selected files as a normal files using the &apos;Large Files&apos; extension</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="152"/>
+        <source>Shows the differences of the selected entry in a separate dialog</source>
+        <translation>Montre les différences de l&apos;entrée sélectionnée dans une fenêtre séparée</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="155"/>
+        <source>Differences Side-By-Side</source>
+        <translation>Différences côte à côte</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="157"/>
+        <source>Shows the differences of the selected entry side-by-side in a separate dialog</source>
+        <translation>Affiche les différences côte à côte de l&apos;entrée sélectionnée dans une fenêtre séparée</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="165"/>
+        <source>Reverts the changes of the selected files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="172"/>
         <source>Forgets about the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
@@ -37301,37 +37301,37 @@
         <translation>Sélectionner une action du menu</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="174"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="176"/>
         <source>Restores the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="194"/>
         <source>Adjusts the width of all columns to their contents</source>
         <translation>Ajuster la largeur des colonnes à leurs contenus</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="179"/>
-        <source>Commit Merge</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="181"/>
-        <source>Commit all the merged changes.</source>
+        <source>Commit Merge</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="183"/>
-        <source>Abort Merge</source>
+        <source>Commit all the merged changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="185"/>
+        <source>Abort Merge</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="187"/>
         <source>Abort an uncommitted merge and lose all changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="761"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="779"/>
         <source>Merge</source>
         <translation>Fusionner</translation>
     </message>
@@ -37496,152 +37496,152 @@
         <translation type="obsolete">Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="234"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="236"/>
         <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>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="238"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="240"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Étiquettes&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="242"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="244"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Message&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;Message de commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="248"/>
-        <source>empty repository</source>
-        <translation>dépot vide</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="250"/>
+        <source>empty repository</source>
+        <translation>dépot vide</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="252"/>
         <source>no revision checked out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="251"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="253"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Remarks&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;Remarques&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="255"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="257"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branch&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;Branche&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="265"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Signets&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="270"/>
-        <source>{0} modified</source>
-        <translation>{0} modifié</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="272"/>
-        <source>{0} added</source>
-        <translation>{0} ajouté</translation>
+        <source>{0} modified</source>
+        <translation>{0} modifié</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="274"/>
-        <source>{0} removed</source>
-        <translation>{0} retiré</translation>
+        <source>{0} added</source>
+        <translation>{0} ajouté</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="276"/>
-        <source>{0} renamed</source>
-        <translation>{0} renommer</translation>
+        <source>{0} removed</source>
+        <translation>{0} retiré</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="278"/>
-        <source>{0} copied</source>
-        <translation>{0} copier</translation>
+        <source>{0} renamed</source>
+        <translation>{0} renommer</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="280"/>
-        <source>{0} deleted</source>
-        <translation>{0} supprimer</translation>
+        <source>{0} copied</source>
+        <translation>{0} copier</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="282"/>
-        <source>{0} unknown</source>
-        <translation>{0} inconnu</translation>
+        <source>{0} deleted</source>
+        <translation>{0} supprimer</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="284"/>
-        <source>{0} ignored</source>
-        <translation>{0} ignoré</translation>
+        <source>{0} unknown</source>
+        <translation>{0} inconnu</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="286"/>
+        <source>{0} ignored</source>
+        <translation>{0} ignoré</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="288"/>
         <source>{0} unresolved</source>
         <translation>{0} non résolu</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="289"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="291"/>
         <source>{0} subrepos</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="292"/>
-        <source>Merge needed</source>
-        <translation>Fusion nécessaire</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="294"/>
-        <source>New Branch</source>
-        <translation>Nouvelle branche</translation>
+        <source>Merge needed</source>
+        <translation>Fusion nécessaire</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="296"/>
-        <source>Head is closed</source>
-        <translation type="unfinished"></translation>
+        <source>New Branch</source>
+        <translation>Nouvelle branche</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="298"/>
-        <source>No commit required</source>
-        <translation>Pas de commit nécessaire</translation>
+        <source>Head is closed</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="300"/>
+        <source>No commit required</source>
+        <translation>Pas de commit nécessaire</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="302"/>
         <source>New Branch Head</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="301"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="303"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Status&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;Statut de commit&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="306"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="308"/>
         <source>current</source>
         <translation>courant</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="321"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="323"/>
         <source>unknown status</source>
         <translation>statut inconnu</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="322"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="324"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Update Status&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;Mise à jour de statut&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="327"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="329"/>
         <source>synched</source>
         <translation>synchronisé</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="331"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="333"/>
         <source>1 or more incoming changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="335"/>
         <source>%n outgoing changeset(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -37649,42 +37649,42 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="342"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="344"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Remote Status&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;Statut distant&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="349"/>
         <source>empty queue</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="351"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="353"/>
         <source>{0} applied</source>
         <translation>{0} appliqué</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="354"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="356"/>
         <source>{0} unapplied</source>
         <translation>{0} non appliqué</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="357"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="359"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Queues Status&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="371"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="373"/>
         <source>&lt;p&gt;No status information available.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Information de statut non disponible.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="230"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="232"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="308"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="310"/>
         <source>%n new changeset(s)&lt;br/&gt;Update required</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -37692,7 +37692,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="312"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="314"/>
         <source>%n new changeset(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -37700,7 +37700,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="314"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="316"/>
         <source>%n branch head(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -37708,13 +37708,13 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="316"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="318"/>
         <source>{0}&lt;br/&gt;{1}&lt;br/&gt;Merge required</source>
         <comment>0 is changesets, 1 is branch heads</comment>
         <translation>{0}&lt;br/&gt;{1}&lt;br/&gt;Fusion nécessaire</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="336"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="338"/>
         <source>%n incoming bookmark(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -37722,7 +37722,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="339"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="341"/>
         <source>%n outgoing bookmark(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -37730,12 +37730,12 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="362"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="364"/>
         <source>No files to upload</source>
         <translation>Pas de fichier à téléverser</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="364"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="366"/>
         <source>%n file(s) to upload</source>
         <translation>
             <numerusform>%n fichier à téléverser</numerusform>
@@ -37743,7 +37743,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="368"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Large Files&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;Gros fichiers&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
@@ -37820,12 +37820,12 @@
         <translation type="obsolete">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="90"/>
         <source>Mercurial Branches List</source>
         <translation>Liste des branches Mercurial</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="91"/>
         <source>Status</source>
         <translation>Etat (status)</translation>
     </message>
@@ -37840,62 +37840,62 @@
         <translation type="obsolete">Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="200"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="211"/>
         <source>active</source>
         <translation>active</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="216"/>
         <source>yes</source>
         <translation>oui</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="42"/>
-        <source>&amp;Refresh</source>
-        <translation>&amp;Rafraichir</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="44"/>
+        <source>&amp;Refresh</source>
+        <translation>&amp;Rafraichir</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="46"/>
         <source>Press to refresh the list</source>
         <translation>Cliquer pour réfraîchir la liste</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="278"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="292"/>
         <source>Switch to</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="347"/>
         <source>Close Branch</source>
         <translation>Fermer la branche</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="321"/>
         <source>Switch</source>
         <translation>Basculer de version</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="321"/>
         <source>The project should be reread. Do this now?</source>
         <translation>Le projet devrait être relu. Le faire maintenant ?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="326"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="340"/>
         <source>The branch &quot;default&quot; cannot be closed. Aborting...</source>
         <translation>La branche &quot;default&quot; ne peut être fermée. Annulation...</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="347"/>
         <source>&lt;p&gt;Shall the branch &lt;b&gt;{0}&lt;/b&gt; really be closed?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Faut-il vraiment fermer la branche &lt;b&gt;{0}&lt;/b&gt; ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="380"/>
         <source>Close Branches</source>
         <translation>Fermer les branches</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="380"/>
         <source>Do you really want to close all listed branches?</source>
         <translation>Voulez-vous vraiment fermer toutes les branches listées ?</translation>
     </message>
@@ -38666,7 +38666,7 @@
         <translation>Cliquer pour supprimer les entrées sélectionnées</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="122"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="123"/>
         <source>&amp;Remove</source>
         <translation>Supp&amp;rimer</translation>
     </message>
@@ -38681,32 +38681,32 @@
         <translation>Supprimer tou&amp;t</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="105"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="106"/>
         <source>&amp;Open</source>
         <translation>&amp;Ouvrir</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="108"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="109"/>
         <source>Open in New &amp;Tab</source>
         <translation>Ouvrir dans un nouvel &amp;onglet</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="121"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="122"/>
         <source>&amp;Copy</source>
         <translation>&amp;Copier</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="111"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="112"/>
         <source>Open in New &amp;Background Tab</source>
         <translation>&amp;Ouvrir dans un nouvel onglet en arrière plan</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="114"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="115"/>
         <source>Open in New &amp;Window</source>
         <translation>&amp;Ouvrir dans une nouvelle fenêtre</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="117"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="118"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation>&amp;Ouvrir dans une nouvelle fenêtre privée</translation>
     </message>
@@ -38772,12 +38772,12 @@
         <translation>Onglets fermés</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryMenu.py" line="447"/>
+        <location filename="../WebBrowser/History/HistoryMenu.py" line="448"/>
         <source>Restore All Closed Tabs</source>
         <translation>Restorer tous les onglets fermés</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryMenu.py" line="450"/>
+        <location filename="../WebBrowser/History/HistoryMenu.py" line="451"/>
         <source>Clear List</source>
         <translation>Effacer la liste</translation>
     </message>
@@ -38803,12 +38803,12 @@
 <context>
     <name>HistoryTreeModel</name>
     <message>
-        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="64"/>
+        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="65"/>
         <source>Earlier Today</source>
         <translation>Plus tôt aujourd&apos;hui</translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="67"/>
+        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="68"/>
         <source>%n item(s)</source>
         <translation>
             <numerusform>%n item</numerusform>
@@ -38931,7 +38931,7 @@
         <translation type="obsolete">Pas de traduction disponible.</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="251"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
         <source>Error Getting Available Translations</source>
         <translation>Erreur pour l&apos;obtention de traductions disponibles</translation>
     </message>
@@ -38943,7 +38943,7 @@
 Erreur : {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="251"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
         <source>IBM Watson: No translation available.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -38958,12 +38958,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="243"/>
+        <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="231"/>
+        <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>
@@ -38972,102 +38972,102 @@
 <context>
     <name>IconEditorGrid</name>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="208"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="211"/>
         <source>Set Pixel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="209"/>
-        <source>Erase Pixel</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="210"/>
-        <source>Draw Line</source>
-        <translation>Dessiner une ligne</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="211"/>
-        <source>Draw Rectangle</source>
-        <translation>Dessiner un rectangle</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="212"/>
-        <source>Draw Filled Rectangle</source>
-        <translation>Dessiner un rectangle plein</translation>
+        <source>Erase Pixel</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="213"/>
-        <source>Draw Circle</source>
-        <translation>Dessiner un cercle</translation>
+        <source>Draw Line</source>
+        <translation>Dessiner une ligne</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="214"/>
-        <source>Draw Filled Circle</source>
-        <translation>Dessiner un cercle plein</translation>
+        <source>Draw Rectangle</source>
+        <translation>Dessiner un rectangle</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="215"/>
-        <source>Draw Ellipse</source>
-        <translation>Dessiner une ellipse</translation>
+        <source>Draw Filled Rectangle</source>
+        <translation>Dessiner un rectangle plein</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="216"/>
-        <source>Draw Filled Ellipse</source>
-        <translation>Dessiner une ellipse pleine</translation>
+        <source>Draw Circle</source>
+        <translation>Dessiner un cercle</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="217"/>
+        <source>Draw Filled Circle</source>
+        <translation>Dessiner un cercle plein</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="218"/>
+        <source>Draw Ellipse</source>
+        <translation>Dessiner une ellipse</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="219"/>
+        <source>Draw Filled Ellipse</source>
+        <translation>Dessiner une ellipse pleine</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="220"/>
         <source>Fill Region</source>
         <translation>Remplir la zone</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="846"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="853"/>
         <source>Cut Selection</source>
         <translation>Couper la sélection</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="905"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="912"/>
         <source>Paste</source>
         <translation>Coller</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="905"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="912"/>
         <source>&lt;p&gt;The clipboard image is larger than the current image.&lt;br/&gt;Paste as new image?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="918"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="925"/>
         <source>Paste Clipboard</source>
         <translation>Coller le presse-papier</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="936"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="943"/>
         <source>Pasting Image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="936"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="943"/>
         <source>Invalid image data in clipboard.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="947"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="954"/>
         <source>Paste Clipboard as New Image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="976"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="983"/>
         <source>Clear Image</source>
         <translation>Effacer l&apos;image</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="996"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="1003"/>
         <source>Resize Image</source>
         <translation>Redimensionner l&apos;image</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="1023"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="1030"/>
         <source>Convert to Grayscale</source>
         <translation type="unfinished"></translation>
     </message>
@@ -39075,57 +39075,57 @@
 <context>
     <name>IconEditorPalette</name>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="48"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="49"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This is a 1:1 preview of the current icon.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aperçu&lt;/b&gt;&lt;p&gt;Ceci est un apreçu échelle 1 de l&apos;icone.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="58"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="60"/>
         <source>&lt;b&gt;Current Color&lt;/b&gt;&lt;p&gt;This is the currently selected color used for drawing.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Couleur courante&lt;/b&gt;&lt;p&gt;Ceci est la couleur sélectionnée pour dessiner.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="66"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="69"/>
         <source>&lt;b&gt;Current Color Value&lt;/b&gt;&lt;p&gt;This is the currently selected color value used for drawing.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Valeur de la couleur courante&lt;/b&gt;&lt;p&gt;Ceci est la valeur de la couleur sélectionnée pour dessiner.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="73"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="76"/>
         <source>Select Color</source>
         <translation>Sélectionner la couleur</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="74"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="77"/>
         <source>&lt;b&gt;Select Color&lt;/b&gt;&lt;p&gt;Select the current drawing color via a color selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="84"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="87"/>
         <source>&lt;b&gt;Select alpha channel value&lt;/b&gt;&lt;p&gt;Select the value for the alpha channel of the current color.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="92"/>
-        <source>Compositing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorPalette.py" line="95"/>
+        <source>Compositing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorPalette.py" line="98"/>
         <source>Replace</source>
         <translation>Remplacer</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="97"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="100"/>
         <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Replace the existing pixel with a new color.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="103"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="106"/>
         <source>Blend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="105"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="108"/>
         <source>&lt;b&gt;Blend&lt;/b&gt;&lt;p&gt;Blend the new color over the existing pixel.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -39133,1037 +39133,1037 @@
 <context>
     <name>IconEditorWindow</name>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="125"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="126"/>
         <source>Windows Bitmap File (*.bmp)</source>
         <translation>Ficher Windows Bitmap (*.bmp)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="128"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="129"/>
         <source>Graphic Interchange Format File (*.gif)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="130"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="131"/>
         <source>Windows Icon File (*.ico)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="132"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="133"/>
         <source>JPEG File (*.jpg)</source>
         <translation>Fichier JPEG (*.jpg)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="135"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="136"/>
         <source>Portable Bitmap File (*.pbm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="137"/>
-        <source>Portable Graymap File (*.pgm)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="138"/>
-        <source>Portable Network Graphics File (*.png)</source>
+        <source>Portable Graymap File (*.pgm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="139"/>
+        <source>Portable Network Graphics File (*.png)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="140"/>
         <source>Portable Pixmap File (*.ppm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="141"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="142"/>
         <source>Scalable Vector Graphics File (*.svg)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="145"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="146"/>
         <source>TIFF File (*.tif)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="149"/>
-        <source>X11 Bitmap File (*.xbm)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="150"/>
+        <source>X11 Bitmap File (*.xbm)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="151"/>
         <source>X11 Pixmap File (*.xpm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="161"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="162"/>
         <source>All Files (*)</source>
         <translation>Tous les fichiers (*)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
         <source>New</source>
         <translation>Nouveau</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
         <source>&amp;New</source>
         <translation>&amp;Nouveau</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="199"/>
-        <source>Create a new icon</source>
-        <translation>Créer un nouvel icone</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="200"/>
+        <source>Create a new icon</source>
+        <translation>Créer un nouvel icone</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="201"/>
         <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;This creates a new icon.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nouveau&lt;/b&gt;&lt;p&gt;Ceci créé une nouvelle icone.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="207"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="208"/>
         <source>New Window</source>
         <translation>Nouvelle fenêtre</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="207"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="208"/>
         <source>New &amp;Window</source>
         <translation>&amp;Nouvelle fenêtre</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="212"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="213"/>
         <source>Open a new icon editor window</source>
         <translation>Ouvrir dans une nouvelle fenêtre d&apos;édition d&apos;icone</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="214"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="215"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new icon editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nouvelle fenêtre&lt;/b&gt;&lt;p&gt;Ceci ouvre une nouvelle fenêtre d&apos;édition d&apos;icone.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
         <source>Open</source>
         <translation>Ouvrir</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
         <source>&amp;Open...</source>
         <translation>&amp;Ouvrir...</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="227"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="228"/>
         <source>Open an icon file for editing</source>
         <translation>Ouvrir un icone pour édition</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="228"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="229"/>
         <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new icon file for editing. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
         <source>Save</source>
         <translation>Enregistrer</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
         <source>&amp;Save</source>
         <translation>&amp;Enregistrer</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation>Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="242"/>
-        <source>Save the current icon</source>
-        <translation>Enregistrer l&apos;icone courant</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="243"/>
+        <source>Save the current icon</source>
+        <translation>Enregistrer l&apos;icone courant</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="244"/>
         <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of the icon editor window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
         <source>Save As</source>
         <translation>Enregistrer sous</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
         <source>Save &amp;As...</source>
         <translation>&amp;Enregistrer sous...</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="256"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="257"/>
         <source>Save the current icon to a new file</source>
         <translation>Enregistrer l&apos;icone courant dans un nouveau fichier</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="258"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="259"/>
         <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current icon to a new file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Enregistrer sous...&lt;/b&gt;&lt;p&gt;Enregistre l&apos;icone courant dans un nouveau fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
         <source>Close</source>
         <translation>Fermer</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
         <source>&amp;Close</source>
         <translation>&amp;Fermer</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="271"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="272"/>
         <source>Close the current icon editor window</source>
         <translation>Fermer la fenêtre d&apos;édition de l&apos;icone courant</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="273"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="274"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current icon editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Fermer&lt;/b&gt;&lt;p&gt;Ferme la fenêtre d&apos;édition de l&apos;icone courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="280"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="281"/>
         <source>Close All</source>
         <translation>Tout fermer</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="280"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="281"/>
         <source>Close &amp;All</source>
         <translation>&amp;Tout fermer</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="284"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="285"/>
         <source>Close all icon editor windows</source>
         <translation>Fermer tous les fenêtre d&apos;édition d&apos;icone</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="286"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="287"/>
         <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all icon editor windows except the first one.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tout fermer&lt;/b&gt;&lt;p&gt;Ferme toutes les fenêtres d&apos;édition d&apos;icone sauf la première.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
         <source>Quit</source>
         <translation>Quitter</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
         <source>&amp;Quit</source>
         <translation>&amp;Quitter</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="312"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="313"/>
         <source>Quit the icon editor</source>
         <translation>Quitter l&apos;éditeur d&apos;icone</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="313"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="314"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the icon editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Quitter&lt;/b&gt;&lt;p&gt;Quitter l&apos;éditeur d&apos;icone.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>Undo</source>
         <translation>Défaire</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>&amp;Undo</source>
         <translation>&amp;Défaire</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="332"/>
-        <source>Undo the last change</source>
-        <translation>Annule la dernière modification</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="333"/>
+        <source>Undo the last change</source>
+        <translation>Annule la dernière modification</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="334"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Défaire&lt;/b&gt;&lt;p&gt;Annule la dernière modification.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
         <source>Redo</source>
         <translation>Refaire</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
         <source>&amp;Redo</source>
         <translation>&amp;Refaire</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="346"/>
-        <source>Redo the last change</source>
-        <translation>Recharge la dernière modification</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="347"/>
+        <source>Redo the last change</source>
+        <translation>Recharge la dernière modification</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="348"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Refaire&lt;/b&gt;&lt;p&gt;Recharge la dernière modification.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Cut</source>
         <translation>Couper</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Cu&amp;t</source>
         <translation>Cou&amp;per</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="361"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="362"/>
         <source>Cut the selection</source>
         <translation>Coupe la sélection</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="362"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="363"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>Copy</source>
         <translation>Copier</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>&amp;Copy</source>
         <translation>&amp;Copier</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="376"/>
-        <source>Copy the selection</source>
-        <translation>Copie la sélection</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="377"/>
+        <source>Copy the selection</source>
+        <translation>Copie la sélection</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="378"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>Paste</source>
         <translation>Coller</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>&amp;Paste</source>
         <translation>Col&amp;ler</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="391"/>
-        <source>Paste the clipboard image</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="392"/>
+        <source>Paste the clipboard image</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="393"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="399"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
         <source>Paste as New</source>
         <translation>Coller comme nouveau</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="399"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
         <source>Paste as &amp;New</source>
         <translation>Coller comme &amp;nouveau</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="403"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="404"/>
         <source>Paste the clipboard image replacing the current one</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="405"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="406"/>
         <source>&lt;b&gt;Paste as New&lt;/b&gt;&lt;p&gt;Paste the clipboard image replacing the current one.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
         <source>Clear</source>
         <translation>Effacer</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
         <source>Cl&amp;ear</source>
         <translation>Ef&amp;facer</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="419"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="420"/>
         <source>Clear the icon image</source>
         <translation>Effacer l&apos;icone</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="420"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="421"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Clear the icon image and set it to be completely transparent.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
         <source>Select All</source>
         <translation>Tout sélectionner</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
         <source>&amp;Select All</source>
         <translation>Tout &amp;sélectionner</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation>Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="434"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="435"/>
         <source>Select the complete icon image</source>
         <translation>Sélectionner l&apos;icone entier</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="436"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="437"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Selects the complete icon image.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tout sélectionner&lt;/b&gt;&lt;p&gt;Sélectionne l&apos;icone entier.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="444"/>
         <source>Change Size</source>
         <translation>Redimensionner</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="444"/>
         <source>Change Si&amp;ze...</source>
         <translation>&amp;Redimmensionner...</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="449"/>
-        <source>Change the icon size</source>
-        <translation>Redimensionner l&apos;icone</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="450"/>
+        <source>Change the icon size</source>
+        <translation>Redimensionner l&apos;icone</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="451"/>
         <source>&lt;b&gt;Change Size...&lt;/b&gt;&lt;p&gt;Changes the icon size.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Redimensionner...&lt;/b&gt;&lt;p&gt;Redimensionne l&apos;icone.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="457"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="458"/>
         <source>Grayscale</source>
         <translation>Niveau de gris</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="457"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="458"/>
         <source>&amp;Grayscale</source>
         <translation>Niveau de &amp;gris</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="463"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="464"/>
         <source>Change the icon to grayscale</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="465"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="466"/>
         <source>&lt;b&gt;Grayscale&lt;/b&gt;&lt;p&gt;Changes the icon to grayscale.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
         <source>Zoom in</source>
         <translation>Zoom avant</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
         <source>Zoom &amp;in</source>
         <translation>Zoom a&amp;vant</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="500"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="501"/>
         <source>Zoom in on the icon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="501"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="502"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the icon. This makes the grid bigger.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
         <source>Zoom out</source>
         <translation>Zoom arrière</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
         <source>Zoom &amp;out</source>
         <translation>Zoom a&amp;rrière</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="514"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="515"/>
         <source>Zoom out on the icon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="515"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="516"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the icon. This makes the grid smaller.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
         <source>Zoom reset</source>
         <translation>Annulation du zoom</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
         <source>Zoom &amp;reset</source>
         <translation>Annulation du &amp;zoom</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="538"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="539"/>
         <source>Show Grid</source>
         <translation>Montrer la grille</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="538"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="539"/>
         <source>Show &amp;Grid</source>
         <translation>Montrer la &amp;grille</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="544"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="545"/>
         <source>Toggle the display of the grid</source>
         <translation>Basculer l&apos;affichage de la grille</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="546"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="547"/>
         <source>&lt;b&gt;Show Grid&lt;/b&gt;&lt;p&gt;Toggle the display of the grid.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Montrer la grille&lt;/b&gt;&lt;p&gt;Basculer l&apos;affichage de la grille.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="565"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
         <source>Freehand</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="565"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
         <source>&amp;Freehand</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="571"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="572"/>
         <source>&lt;b&gt;Free hand&lt;/b&gt;&lt;p&gt;Draws non linear lines.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="580"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="581"/>
         <source>Color Picker</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="580"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="581"/>
         <source>&amp;Color Picker</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="586"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="587"/>
         <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="597"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
         <source>Rectangle</source>
         <translation>Rectangle</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="597"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
         <source>&amp;Rectangle</source>
         <translation>&amp;Rectangle</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="603"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="604"/>
         <source>&lt;b&gt;Rectangle&lt;/b&gt;&lt;p&gt;Draw a rectangle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rectangle&lt;/b&gt;&lt;p&gt;Dessiner un rectangle.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="612"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="613"/>
         <source>Filled Rectangle</source>
         <translation>Rectangle plein</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="612"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="613"/>
         <source>F&amp;illed Rectangle</source>
         <translation>Rectangle ple&amp;in</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="618"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="619"/>
         <source>&lt;b&gt;Filled Rectangle&lt;/b&gt;&lt;p&gt;Draw a filled rectangle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rectangle plein&lt;/b&gt;&lt;p&gt;Dessiner un rectangle plein.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="628"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
         <source>Circle</source>
         <translation>Cercle</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="634"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="635"/>
         <source>&lt;b&gt;Circle&lt;/b&gt;&lt;p&gt;Draw a circle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cercle&lt;/b&gt;&lt;p&gt;Dessiner un cercle.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="643"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="644"/>
         <source>Filled Circle</source>
         <translation>Cercle plein</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="643"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="644"/>
         <source>Fille&amp;d Circle</source>
         <translation>Cercle ple&amp;in</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="649"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="650"/>
         <source>&lt;b&gt;Filled Circle&lt;/b&gt;&lt;p&gt;Draw a filled circle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cercle plein&lt;/b&gt;&lt;p&gt;Dessiner un cercle plein.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="659"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
         <source>Ellipse</source>
         <translation>Ellipse</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="659"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
         <source>&amp;Ellipse</source>
         <translation>&amp;Ellipse</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="665"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="666"/>
         <source>&lt;b&gt;Ellipse&lt;/b&gt;&lt;p&gt;Draw an ellipse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ellipse&lt;/b&gt;&lt;p&gt;Dessiner une  ellipse.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="674"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="675"/>
         <source>Filled Ellipse</source>
         <translation>Ellipse pleine</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="674"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="675"/>
         <source>Fille&amp;d Elli&amp;pse</source>
         <translation>Ellipse &amp;pleine</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="680"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="681"/>
         <source>&lt;b&gt;Filled Ellipse&lt;/b&gt;&lt;p&gt;Draw a filled ellipse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ellipse pleine&lt;/b&gt;&lt;p&gt;Dessiner une ellipse pleine.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="690"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="691"/>
         <source>Flood Fill</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="690"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="691"/>
         <source>Fl&amp;ood Fill</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="696"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="697"/>
         <source>&lt;b&gt;Flood Fill&lt;/b&gt;&lt;p&gt;Fill adjoining pixels with the same color with the current color.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="706"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
         <source>Line</source>
         <translation>Ligne</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="706"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
         <source>&amp;Line</source>
         <translation>&amp;Ligne</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="712"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="713"/>
         <source>&lt;b&gt;Line&lt;/b&gt;&lt;p&gt;Draw a line.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ligne&lt;/b&gt;&lt;p&gt;Dessiner une ligne.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="721"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
         <source>Eraser (Transparent)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="721"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
         <source>Eraser (&amp;Transparent)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="727"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="728"/>
         <source>&lt;b&gt;Eraser (Transparent)&lt;/b&gt;&lt;p&gt;Erase pixels by setting them to transparent.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="736"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="737"/>
         <source>Rectangular Selection</source>
         <translation>Sélection rectangulaire</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="753"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="754"/>
         <source>Rect&amp;angular Selection</source>
         <translation>Sélection rect&amp;angulaire</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="742"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="743"/>
         <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sélection rectangulaire&lt;/b&gt;&lt;p&gt;Sélectionner une zone rectangulaire de l&apos;icone avec la souris.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="753"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="754"/>
         <source>Circular Selection</source>
         <translation>Sélection circulaire</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="759"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="760"/>
         <source>&lt;b&gt;Circular Selection&lt;/b&gt;&lt;p&gt;Select a circular section of the icon using the mouse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sélection circulaire&lt;/b&gt;&lt;p&gt;Sélectionner une zone circulaire de l&apos;icone avec la souris.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="776"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
         <source>About</source>
         <translation>À propos</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="776"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
         <source>&amp;About</source>
         <translation>&amp;À propos</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="780"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="781"/>
         <source>Display information about this software</source>
         <translation>Affiche les informations concernant le logiciel</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="782"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="783"/>
         <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="../IconEditor/IconEditorWindow.py" line="788"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
         <source>About Qt</source>
         <translation>À propos de Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="788"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
         <source>About &amp;Qt</source>
         <translation>À propos de &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="792"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="793"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Affiche les informations concernant Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="794"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="795"/>
         <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="../IconEditor/IconEditorWindow.py" line="801"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
         <source>What&apos;s This?</source>
         <translation>Qu&apos;est-ce que c&apos;est ?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="801"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Qu&apos;est-ce que c&apos;est?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="801"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="807"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="808"/>
         <source>Context sensitive help</source>
         <translation>Aide contextuelle</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="808"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="809"/>
         <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="../IconEditor/IconEditorWindow.py" line="825"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="826"/>
         <source>&amp;File</source>
         <translation>&amp;Fichier</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="842"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="843"/>
         <source>&amp;Edit</source>
         <translation>&amp;Edition</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="858"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="859"/>
         <source>&amp;View</source>
         <translation>&amp;Affichage</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="866"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="867"/>
         <source>&amp;Tools</source>
         <translation>&amp;Outils</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="885"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="886"/>
         <source>&amp;Help</source>
         <translation>A&amp;ide</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="895"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="896"/>
         <source>File</source>
         <translation>Fichier</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="909"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="910"/>
         <source>Edit</source>
         <translation>Édition</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="922"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="923"/>
         <source>View</source>
         <translation>Affichage</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="927"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="928"/>
         <source>Tools</source>
         <translation>Outils</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="945"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="946"/>
         <source>Help</source>
         <translation>Aide</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="959"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="960"/>
         <source>&lt;p&gt;This part of the status bar displays the icon size.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Cette zone de la bar de statut affiche la taille d&apos;icone.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="966"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="967"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Cette zone de la bar de statut affiche la position de la souris.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1062"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1069"/>
         <source>Open icon file</source>
         <translation>Ouvrir le fichier icone</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1112"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1119"/>
         <source>Save icon file</source>
         <translation>Enregistrer le fichier icone</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1201"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1208"/>
         <source>Icon saved</source>
         <translation>Icone enregistré</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1216"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1223"/>
         <source>Untitled</source>
         <translation>SansTitre</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1227"/>
         <source>Icon Editor</source>
         <translation>Éditeur d&apos;icone</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="134"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="135"/>
         <source>Multiple-Image Network Graphics File (*.mng)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="528"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="529"/>
         <source>Reset the zoom of the icon</source>
         <translation>Réinitialiser le zoom de l&apos;icone</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="530"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="531"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the icon. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="136"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="137"/>
         <source>Paintbrush Bitmap File (*.pcx)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="140"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="141"/>
         <source>Silicon Graphics Image File (*.sgi)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="144"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="145"/>
         <source>Targa Graphic File (*.tga)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1148"/>
-        <source>The file &apos;{0}&apos; does not exist.</source>
-        <translation>Le fichier &apos;{0}&apos; n&apos;existe pas.</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="1155"/>
+        <source>The file &apos;{0}&apos; does not exist.</source>
+        <translation>Le fichier &apos;{0}&apos; n&apos;existe pas.</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1162"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation>Ne peut lire le fichier&apos;{0}:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1189"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1196"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation>Ne peut écrire le fichier &apos;{0}:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1227"/>
         <source>{0}[*] - {1}</source>
         <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1112"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1119"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1241"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1248"/>
         <source>The icon image has unsaved changes.</source>
         <translation>Le fichier icone a des modifications non enregistrées.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="133"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="134"/>
         <source>JPEG File (*.jpeg)</source>
         <translation>Fichiers JPEG  (*.jpeg)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="142"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="143"/>
         <source>Compressed Scalable Vector Graphics File (*.svgz)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="146"/>
-        <source>TIFF File (*.tiff)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="147"/>
+        <source>TIFF File (*.tiff)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="148"/>
         <source>WAP Bitmap File (*.wbmp)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -40178,57 +40178,57 @@
         <translation type="obsolete">À propose de l&apos;éditeur d&apos;icone eric6</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="293"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="294"/>
         <source>Close Others</source>
         <translation>Fermer les autres</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="297"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="298"/>
         <source>Close all other icon editor windows</source>
         <translation>Ferme toutes les autres fenêtres d&apos;édition d&apos;icone</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="299"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="300"/>
         <source>&lt;b&gt;Close Others&lt;/b&gt;&lt;p&gt;Closes all other icon editor windows.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Fermer les autres&lt;/b&gt;&lt;p&gt;Ferme toutes les autres fenêtres d&apos;édition d&apos;icone.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="148"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="149"/>
         <source>WebP Image File (*.webp)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="126"/>
-        <source>Windows Cursor File (*.cur)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="127"/>
+        <source>Windows Cursor File (*.cur)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="128"/>
         <source>DirectDraw-Surface File (*.dds)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="129"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="130"/>
         <source>Apple Icon File (*.icns)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="131"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="132"/>
         <source>JPEG2000 File (*.jp2)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1241"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1248"/>
         <source>eric Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1331"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1338"/>
         <source>About eric Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1331"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1338"/>
         <source>The eric Icon Editor is a simple editor component to perform icon drawing tasks.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -40498,22 +40498,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="175"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="176"/>
         <source>Include Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="175"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="176"/>
         <source>Select Include Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="388"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="391"/>
         <source>Undefine Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="388"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="391"/>
         <source>Enter a variable name to be undefined:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -41024,52 +41024,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="70"/>
+        <location filename="../UI/InstallInfoDialog.py" line="71"/>
         <source>Yes</source>
         <translation type="unfinished">Oui</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="70"/>
+        <location filename="../UI/InstallInfoDialog.py" line="71"/>
         <source>No</source>
         <translation type="unfinished">Non</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="74"/>
+        <location filename="../UI/InstallInfoDialog.py" line="75"/>
         <source>&apos;eric-ide&apos; was installed from PyPI using the pip command.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="80"/>
+        <location filename="../UI/InstallInfoDialog.py" line="81"/>
         <source>The information shown in this dialog was guessed at the first start of eric.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="98"/>
+        <location filename="../UI/InstallInfoDialog.py" line="99"/>
         <source>Load Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="98"/>
+        <location filename="../UI/InstallInfoDialog.py" line="99"/>
         <source>&lt;p&gt;The file containing the install information could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="150"/>
+        <location filename="../UI/InstallInfoDialog.py" line="151"/>
         <source>Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="150"/>
+        <location filename="../UI/InstallInfoDialog.py" line="151"/>
         <source>The install information was edited. Unsaved changes will be lost. Save first?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="187"/>
+        <location filename="../UI/InstallInfoDialog.py" line="188"/>
         <source>Save Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="187"/>
+        <location filename="../UI/InstallInfoDialog.py" line="188"/>
         <source>&lt;p&gt;The file containing the install information could not be written.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -41079,17 +41079,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="60"/>
+        <location filename="../UI/InstallInfoDialog.py" line="61"/>
         <source>Installed as Administrator:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="62"/>
+        <location filename="../UI/InstallInfoDialog.py" line="63"/>
         <source>Installed with sudo:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="92"/>
+        <location filename="../UI/InstallInfoDialog.py" line="93"/>
         <source>unknown</source>
         <translation type="unfinished">inconnu</translation>
     </message>
@@ -41099,7 +41099,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="86"/>
+        <location filename="../UI/InstallInfoDialog.py" line="87"/>
         <source>The installation information was provided by the user.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -41109,22 +41109,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="254"/>
+        <location filename="../UI/InstallInfoDialog.py" line="255"/>
         <source>Upgrade Instructions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="200"/>
+        <location filename="../UI/InstallInfoDialog.py" line="201"/>
         <source>Delete Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="200"/>
+        <location filename="../UI/InstallInfoDialog.py" line="201"/>
         <source>Do you really want to delete the installation information? It will be recreated at the next start.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="227"/>
+        <location filename="../UI/InstallInfoDialog.py" line="228"/>
         <source>Perform the following step(s) with Administrator privileges.
 </source>
         <translation type="unfinished"></translation>
@@ -42370,72 +42370,72 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="189"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="191"/>
         <source>Edit Identity</source>
         <translation>Éditer l&apos;identité</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="172"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="174"/>
         <source>The identity must contain at least one nick name.</source>
         <translation>L&apos;identité doit contenir au moins un surnom.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="189"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="191"/>
         <source>The identity must have a real name.</source>
         <translation>L&apos;identité doit avoir un nom réel.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="237"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="239"/>
         <source>Add Identity</source>
         <translation>Ajouter une identité</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="287"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="289"/>
         <source>Identity Name:</source>
         <translation>Nom de l&apos;identité :</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="297"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="299"/>
         <source>An identity named &lt;b&gt;{0}&lt;/b&gt; already exists. You must provide a different name.</source>
         <translation>Une identité nommée &lt;b&gt;{0}&lt;/b&gt; existe déjà. Vous devez choisir un autre nom.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="312"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="314"/>
         <source>The identity has to have a name.</source>
         <translation>L&apos;identité doit avoir un nom.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="312"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="314"/>
         <source>Copy Identity</source>
         <translation>Copier l&apos;identité</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="297"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="299"/>
         <source>Rename Identity</source>
         <translation>Renommer l&apos;identité</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="336"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="338"/>
         <source>This identity is in use. If you remove it, the network settings using it will fall back to the default identity. Should it be deleted anyway?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="341"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="343"/>
         <source>Do you really want to delete all information for this identity?</source>
         <translation>Voulez-vous vraiment supprimer toutes les informations pour cette identité ?</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="344"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="346"/>
         <source>Delete Identity</source>
         <translation>Supprimer l&apos;identité</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="477"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="480"/>
         <source>Press to show the password</source>
         <translation>Cliquer pour afficher le mot de passe</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="471"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="474"/>
         <source>Press to hide the password</source>
         <translation>Cliquer pour cacher le mot de passe</translation>
     </message>
@@ -42536,22 +42536,22 @@
         <translation>Affiche le nom du serveur</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="254"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="258"/>
         <source>Yes</source>
         <translation>Oui</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="256"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="260"/>
         <source>No</source>
         <translation>Non</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="185"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="189"/>
         <source>Delete Channel</source>
         <translation>Supprimer le salon</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="185"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="189"/>
         <source>Do you really want to delete channel &lt;b&gt;{0}&lt;/b&gt;?</source>
         <translation>Voulez-vous vraiment supprimer le salon &lt;b&gt;{0}&lt;/b&gt; ?</translation>
     </message>
@@ -42667,7 +42667,7 @@
         <translation>Sélectionner le réseau où se connecter</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="346"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="348"/>
         <source>Press to connect to the selected network</source>
         <translation>Cliquer pour se connecter au réseau sélectionné</translation>
     </message>
@@ -42697,57 +42697,57 @@
         <translation>Cliquer pour rejoindre le salon</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="434"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="436"/>
         <source>Save Messages</source>
         <translation>Enregistrer les messages</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="417"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="419"/>
         <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source>
         <translation>Fichiers HTML (*.{0});;Text Files (*.txt);;Tous les fichiers (*)</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="434"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="436"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="452"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="454"/>
         <source>Error saving Messages</source>
         <translation>Erreur à l&apos;enregistrement des messages</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="452"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="454"/>
         <source>&lt;p&gt;The messages contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le contenu des messages n&apos;a pu être écrit vers &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="465"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="467"/>
         <source>Copy</source>
         <translation>Copier</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="469"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="471"/>
         <source>Cut all</source>
         <translation>Couper tous</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="472"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="474"/>
         <source>Copy all</source>
         <translation>Copier tous</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="476"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="478"/>
         <source>Clear</source>
         <translation>Effacer</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="480"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="482"/>
         <source>Save</source>
         <translation>Enregistrer</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="341"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="343"/>
         <source>Press to disconnect from the network</source>
         <translation>Cliquer pour se déconnecter du réseau</translation>
     </message>
@@ -43207,298 +43207,298 @@
         <translation>Cliquer pour quitter le salon courant</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="244"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="245"/>
         <source>Disconnect from Server</source>
         <translation>Se déconnecter du serveur</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="244"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="245"/>
         <source>&lt;p&gt;Do you really want to disconnect from &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;&lt;p&gt;All channels will be closed.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Voulez-vous vraiment vous déconnecter de &lt;b&gt;{0}&lt;/b&gt; ?&lt;/p&gt;&lt;p&gt;Tous les salons seront fermés.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="186"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="187"/>
         <source>SSL Connection</source>
         <translation>Connection SSL</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="186"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="187"/>
         <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="564"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="565"/>
         <source>Info</source>
         <translation>Infos</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="219"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="220"/>
         <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="230"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="231"/>
         <source>Looking for server {0} (port {1})...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="253"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="254"/>
         <source>Disconnecting from server {0}...</source>
         <translation>Déconnection en cours du serveur {0}...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="519"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="520"/>
         <source>Server found,connecting...</source>
         <translation>Serveur trouvé, connectioin en cours...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="528"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="529"/>
         <source>Connected,logging in...</source>
         <translation>Conecté, login en cours...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="564"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="565"/>
         <source>Server disconnected.</source>
         <translation>Serveur déconnecté.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="611"/>
         <source>Message Error</source>
         <translation>Message d&apos;erreur</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="611"/>
         <source>Unknown message received from server:&lt;br/&gt;{0}</source>
         <translation>Message inconnu reçu du serveur :&lt;br/&gt;{0}</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="676"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="677"/>
         <source>Notice</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="687"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="688"/>
         <source>You have set your personal modes to &lt;b&gt;[{0}]&lt;/b&gt;.</source>
         <translation>Vous avez mis votre mode personnel à &lt;b&gt;[{0}]&lt;/b&gt;.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="691"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="692"/>
         <source>{0} has changed your personal modes to &lt;b&gt;[{1}]&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="694"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="695"/>
         <source>Mode</source>
         <translation>Mode</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="701"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="702"/>
         <source>You have left channel {0}.</source>
         <translation>Vous avez quitté le salon {0}.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="712"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="713"/>
         <source>You are now known as {0}.</source>
         <translation>Vous êtes maintenant connu en tant que {0}.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="717"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="718"/>
         <source>User {0} is now known as {1}.</source>
         <translation>L&apos;utilisateur {0} est maintenant connu en tant que {1}.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="727"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="728"/>
         <source>Server Error</source>
         <translation>Erreur du serveur</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="763"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="764"/>
         <source>Error</source>
         <translation>Erreur</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="778"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="779"/>
         <source>Welcome</source>
         <translation>Bienvenu</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="780"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="781"/>
         <source>Support</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="782"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="783"/>
         <source>User</source>
         <translation>Utilisateur</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="784"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="785"/>
         <source>MOTD</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="786"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="787"/>
         <source>Away</source>
         <translation>Absent</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="788"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="789"/>
         <source>Info ({0})</source>
         <translation>Infos ({0})</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="792"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="793"/>
         <source>Message of the day</source>
         <translation>Message du jour</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="794"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="795"/>
         <source>End of message of the day</source>
         <translation>Fin du message du jour</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="797"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="798"/>
         <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="803"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="804"/>
         <source>Current users on {0}: {1}, max. {2}</source>
         <translation>Utilisateurs actuels sur {0}: {1}, max. {2}</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="808"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="809"/>
         <source>Current users on the network: {0}, max. {1}</source>
         <translation>Utilisateurs actuels sur le réseau : {0}, max. {1}</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="812"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="813"/>
         <source>You are no longer marked as being away.</source>
         <translation>Vous n&apos;êtes plus considéré comme absent.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="814"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="815"/>
         <source>You have been marked as being away.</source>
         <translation>Vous êtes considéré comme absent.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="934"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
         <source>SSL Error</source>
         <translation>Erreur SSL</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="876"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="877"/>
         <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="907"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
         <source>Socket Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="884"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="885"/>
         <source>The host was not found. Please check the host name and port settings.</source>
         <translation>L&apos;hôte n&apos;a pas été trouvé. Veuillez vérifier le nom d&apos;hôte et la configuration du port.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="890"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="891"/>
         <source>The connection was refused by the peer. Please check the host name and port settings.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="896"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="897"/>
         <source>The SSL handshake failed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="901"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="902"/>
         <source>The following network error occurred:&lt;br/&gt;{0}</source>
         <translation>L&apos;erreur réseau suivante est apparue :&lt;br/&gt;{0}</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="907"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
         <source>A network error occurred.</source>
         <translation>Une erreur réseau est apparue.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1015"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1016"/>
         <source>CTCP</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="992"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="993"/>
         <source>Received Version request from {0}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="998"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="999"/>
         <source>Received CTCP-PING request from {0}, sending answer.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1006"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1007"/>
         <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1015"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1016"/>
         <source>Received unknown CTCP-{0} request from {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1030"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1031"/>
         <source>{0} ({1})</source>
         <comment>channel name, users count</comment>
         <translation>{0}({1})</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1071"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1072"/>
         <source>Critical</source>
         <translation>Critique</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1052"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1053"/>
         <source>No nickname acceptable to the server configured for &lt;b&gt;{0}&lt;/b&gt;. Disconnecting...</source>
         <translation>Pas de surnom acceptable pour le serveur configuré pour &lt;b&gt;{0}&lt;/b&gt;. Déconnection en cours...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1071"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1072"/>
         <source>The given nickname is already in use.</source>
         <translation>Le surnom donné est déjà utilisé.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="920"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="921"/>
         <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="934"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
         <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="258"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="259"/>
         <source>Disconnecting from network {0}...</source>
         <translation>Déconnection en cours du réseau {0}...</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="263"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="264"/>
         <source>Disconnecting from server.</source>
         <translation>Déconnection en cours du serveur.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="643"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="644"/>
         <source>Received CTCP-PING response from {0} with latency of {1} ms.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="649"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="650"/>
         <source>Received unknown CTCP-{0} response from {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="723"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="724"/>
         <source>Received PONG from {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -45664,57 +45664,57 @@
 <context>
     <name>Listspace</name>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="257"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="258"/>
         <source>Close</source>
         <translation>Fermer</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="264"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="265"/>
         <source>Close All</source>
         <translation>Tout fermer</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="267"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="268"/>
         <source>Save</source>
         <translation>Enregistrer</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="270"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="271"/>
         <source>Save As...</source>
         <translation>Enregistrer sous...</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="273"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="274"/>
         <source>Save All</source>
         <translation>Tout enregistrer</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="281"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="282"/>
         <source>Print</source>
         <translation>Imprimer</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="440"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="441"/>
         <source>Untitled {0}</source>
         <translation>SansTitre {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="581"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="582"/>
         <source>{0} (ro)</source>
         <translation type="unfinished">{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="277"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="278"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="285"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="286"/>
         <source>Copy Path to Clipboard</source>
         <translation>Copier chemin dans le Presse-Papiers</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="260"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="261"/>
         <source>Close Others</source>
         <translation>Fermer les autres</translation>
     </message>
@@ -45941,12 +45941,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="57"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="58"/>
         <source>Uninstall Selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="60"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="62"/>
         <source>Cancel</source>
         <translation>Annuler</translation>
     </message>
@@ -45966,57 +45966,57 @@
         <translation type="obsolete">L&apos;ordinateur est hors-ligne.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="177"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="180"/>
         <source>Error downloading dictionaries list</source>
         <translation>Erreur lors du téléchargement de la liste des dictionnaire</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="177"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="180"/>
         <source>&lt;p&gt;Could not download the dictionaries list from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Ne peut télécharger la liste des dictionnaires depuis {0}.&lt;/p&gt;&lt;p&gt;Erreur : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="200"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="203"/>
         <source>Dictionaries URL Changed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="200"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="203"/>
         <source>The URL of the spell check dictionaries has changed. Select the &quot;Refresh&quot; button to get the new dictionaries list.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="212"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="215"/>
         <source>Error installing dictionaries</source>
         <translation>Erreur lors de l&apos;installation des dictionnaires</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="212"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="215"/>
         <source>&lt;p&gt;None of the dictionary locations is writable by you. Please download required dictionaries manually and install them as administrator.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="263"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="266"/>
         <source>{0} ({1})</source>
         <translation>{0} ({1})</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="372"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="376"/>
         <source>Error downloading dictionary</source>
         <translation>Erreur lors du téléchargement du dictionnaire</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="357"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="361"/>
         <source>&lt;p&gt;Could not download the requested dictionary file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="357"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="361"/>
         <source>Error downloading dictionary file</source>
         <translation>Erreur lors du téléchargement du fichier du dictionnaire</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="372"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="376"/>
         <source>&lt;p&gt;The downloaded dictionary archive is invalid. Skipping it.&lt;/p&gt;</source>
         <translation>&lt;p&gt;L&apos;archive de dictionnaire téléchargée est non valide. Passer.&lt;/p&gt;</translation>
     </message>
@@ -46087,22 +46087,22 @@
         <translation>(non défini pour l&apos;instant)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="50"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="51"/>
         <source>Wrong password entered.</source>
         <translation>Mauvais mot de passe entré.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="54"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="55"/>
         <source>New password must not be empty.</source>
         <translation>Le nouveau mot de passe ne doit pas être vide.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="61"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="62"/>
         <source>Repeated password is wrong.</source>
         <translation>La répétition de mot de passe est fausse.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="66"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="67"/>
         <source>Old and new password must not be the same.</source>
         <translation>L&apos;ancien et le nouveau mot de passe doivent être différent.</translation>
     </message>
@@ -46586,7 +46586,7 @@
 <context>
     <name>MicroPythonCommandsInterface</name>
     <message>
-        <location filename="../MicroPython/MicroPythonCommandsInterface.py" line="284"/>
+        <location filename="../MicroPython/MicroPythonCommandsInterface.py" line="285"/>
         <source>Detected an error without indications.</source>
         <translation>Supprimer une erreur sans indications.</translation>
     </message>
@@ -46918,22 +46918,22 @@
         <translation>Cliquer pour enregistrer les données brutes</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="72"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="73"/>
         <source>max. X:</source>
         <translation>max. X:</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="81"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="83"/>
         <source>Enter the maximum number of data points to be plotted.</source>
         <translation>Entrer le nombre maximum de points à afficher.</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="330"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="332"/>
         <source>Save Chart Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="330"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="332"/>
         <source>&lt;p&gt;The chart data could not be saved into file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47016,7 +47016,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="69"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="77"/>
         <source>All Files (*)</source>
         <translation>Tous les fichiers (*)</translation>
     </message>
@@ -47096,37 +47096,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="48"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="49"/>
         <source>Dark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="50"/>
-        <source>Blue Cerulean</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="52"/>
+        <source>Blue Cerulean</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="55"/>
         <source>Brown Sand</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="54"/>
-        <source>Blue NCS</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="56"/>
-        <source>High Contrast</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="58"/>
+        <source>Blue NCS</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="61"/>
+        <source>High Contrast</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="64"/>
         <source>Blue Icy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="60"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="67"/>
         <source>Qt</source>
         <translation>Qt</translation>
     </message>
@@ -47262,17 +47262,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="562"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="566"/>
         <source>Press to connect the selected device</source>
         <translation>Cliquer pour se connecter au matériel sélectionné</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="276"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="278"/>
         <source>&lt;h3&gt;The QtSerialPort package is not available.&lt;br/&gt;MicroPython support is deactivated.&lt;/h3&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../MicroPython/MicroPythonWidget.py" line="318"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="320"/>
         <source>%n supported device(s) detected.</source>
         <translation>
             <numerusform>%n matériel supporté détecté.</numerusform>
@@ -47280,37 +47280,37 @@
         </translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="340"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="342"/>
         <source>No supported devices detected.</source>
         <translation>Pas de matériel supporté détecté.</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="532"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="536"/>
         <source>Clear</source>
         <translation>Effacer</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="534"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="538"/>
         <source>Copy</source>
         <translation>Copier</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="535"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="539"/>
         <source>Paste</source>
         <translation>Coller</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="557"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="561"/>
         <source>Press to disconnect the current device</source>
         <translation>Cliquer pour déconnecter le matériel courant</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="578"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="582"/>
         <source>No device attached</source>
         <translation>Pas de matériel relié</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="578"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="582"/>
         <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -47319,212 +47319,212 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="605"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="609"/>
         <source>Start REPL</source>
         <translation>Démarrer REPL</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="605"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="609"/>
         <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;REPL ne peut être démarré.&lt;/p&gt;&lt;p&gt;Raison : {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1054"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1068"/>
         <source>Serial Device Connect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1054"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1068"/>
         <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Ne peut connecter un matériel sur le port série&lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1099"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1113"/>
         <source>Run Script</source>
         <translation>Lancer le script</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1082"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1096"/>
         <source>There is no editor open. Abort...</source>
         <translation>Il n&apos;y a pas d&apos;éditeur ouvert. Annulation...</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1090"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1104"/>
         <source>The current editor does not contain a script. Abort...</source>
         <translation>L&apos;éditeur courant ne contient pas de script. Annulation...</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1099"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1113"/>
         <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Ne peut lancer le script.&lt;/p&gt;&lt;p&gt;Raison : {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1123"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1137"/>
         <source>Open Python File</source>
         <translation>Ouvrir un fichier Python</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1123"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1137"/>
         <source>Python3 Files (*.py);;All Files (*)</source>
         <translation>Fichiers Python3 (*.py);;Tous les fichiers (*)</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1168"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1182"/>
         <source>Start Chart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1168"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1182"/>
         <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1197"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1211"/>
         <source>Unsaved Chart Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1197"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1211"/>
         <source>The chart contains unsaved data.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1248"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1262"/>
         <source>Start File Manager</source>
         <translation>Démarrer le gestionnaire de fichier</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1248"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1262"/>
         <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le gestionnaire de fichier ne peut démarrer.&lt;/p&gt;&lt;p&gt;Raison : {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1322"/>
-        <source>Show Version</source>
-        <translation>Montrer la version</translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1325"/>
-        <source>Show Implementation</source>
-        <translation>Montrer l&apos;implémentation</translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1452"/>
-        <source>Synchronize Time</source>
-        <translation>Synchroniser le temps</translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1333"/>
-        <source>Show Device Time</source>
-        <translation>Montrer l&apos;horloge matériel</translation>
-    </message>
-    <message>
         <location filename="../MicroPython/MicroPythonWidget.py" line="1336"/>
+        <source>Show Version</source>
+        <translation>Montrer la version</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1339"/>
+        <source>Show Implementation</source>
+        <translation>Montrer l&apos;implémentation</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1466"/>
+        <source>Synchronize Time</source>
+        <translation>Synchroniser le temps</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1347"/>
+        <source>Show Device Time</source>
+        <translation>Montrer l&apos;horloge matériel</translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1350"/>
         <source>Show Local Time</source>
         <translation>Montrer l&apos;horloge locale</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1673"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1687"/>
         <source>Compile Python File</source>
         <translation>Compilier le fichier Python</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1693"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1707"/>
         <source>Compile Current Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1388"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1402"/>
         <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1397"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1411"/>
         <source>No version information available.</source>
         <translation>Pas d&apos;information de version disponible.</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1399"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1413"/>
         <source>Device Version Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1422"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1436"/>
         <source>unknown</source>
         <translation>inconnu</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1426"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1440"/>
         <source>Device Implementation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1426"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1440"/>
         <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1452"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1466"/>
         <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
         <translation>&lt;p&gt;L&apos;horloge du matériel connecté a été synchronisée à l&apos;horloge locale.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1475"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1489"/>
         <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation>&lt;h3&gt;Date et heure matériel&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Heure&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1483"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1497"/>
         <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;h3&gt;Date et heure matériel&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1500"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1514"/>
         <source>Device Date and Time</source>
         <translation>Date et heure matériel</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1513"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1527"/>
         <source>Local Date and Time</source>
         <translation>Date et heure locales</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1513"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1527"/>
         <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation>&lt;h3&gt;Date et heure locales&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Heure&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1581"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1595"/>
         <source>Error handling device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1581"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1595"/>
         <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il y a eu une erreur de communication avec le matériel connecté.&lt;/p&gt;&lt;p&gt;Méthode : {0}&lt;/p&gt;&lt;p&gt;Message : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1621"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1635"/>
         <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1643"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1657"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation>Fichiers Python (*.py);;Tous les fichiers (*)</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1653"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1667"/>
         <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
         <translation>Le fichier Python &lt;b&gt;{0}&lt;/b&gt; n&apos;existe pas. Annulation...</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1663"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1677"/>
         <source>&apos;mpy-cross&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1686"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1700"/>
         <source>The current editor does not contain a Python file. Aborting...</source>
         <translation>L&apos;éditeur courant ne contient pas un fichier Python. Annulation...</translation>
     </message>
@@ -47539,52 +47539,52 @@
         <translation>Cliquer pour ouvrir un gestionnaire de fichier sur le matériel sélectionné</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1181"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1195"/>
         <source>&#xc2;&#xb5;Py Chart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1264"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1278"/>
         <source>&#xc2;&#xb5;Py Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1365"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1379"/>
         <source>Show Documentation</source>
         <translation>Montrer la documentation</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1378"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1392"/>
         <source>Configure</source>
         <translation>Configuration</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1339"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1353"/>
         <source>Show Time</source>
         <translation>Montrer l&apos;horloge</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1358"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1372"/>
         <source>Download Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1556"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1570"/>
         <source>Date and Time</source>
         <translation>Date et heure</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1539"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1553"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{0}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Date et heure locales&lt;/th&gt;&lt;th&gt;Date et heure matériel&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{0}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Heure&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1556"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1570"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align=&apos;center&apos;&gt;{0} {1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Date et heure locales&lt;/th&gt;&lt;th&gt;Date et heure matériel&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align=&apos;center&apos;&gt;{0} {1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="410"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="412"/>
         <source>Unknown MicroPython Device</source>
         <translation>Matériel MicroPython inconnu</translation>
     </message>
@@ -47594,64 +47594,64 @@
         <translation type="obsolete">{0} ({1:04x}/{2:04x})</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1375"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1389"/>
         <source>Ignored Serial Devices</source>
         <translation>Matériels séries ignorés</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1304"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1318"/>
         <source>Downloads</source>
         <translation type="unfinished">Téléchargements</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="323"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="325"/>
         <source>{0} - {1} ({2})</source>
         <comment>board name, description, port name</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="382"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="384"/>
         <source>&lt;p&gt;Detected these unknown serial devices&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please report them together with the board name and a short description to &lt;a href=&quot;mailto:{1}&quot;&gt; the eric bug reporting address&lt;/a&gt; if it is a MicroPython board.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="382"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="384"/>
         <source>{0} (0x{1:04x}/0x{2:04x})</source>
         <comment>description, VId, PId</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="410"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="412"/>
         <source>Would you like to add them to the list of manually configured devices?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1373"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1387"/>
         <source>Manage Unknown Devices</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1778"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1792"/>
         <source>Add Unknown Devices</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1778"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1792"/>
         <source>Select the devices to be added:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1370"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1384"/>
         <source>Flash UF2 Device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="350"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="352"/>
         <source>Manual Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../MicroPython/MicroPythonWidget.py" line="344"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="346"/>
         <source>
 %n unknown device(s) for manual selection.</source>
         <translation type="unfinished">
@@ -47862,599 +47862,599 @@
 <context>
     <name>MiniEditor</name>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>New</source>
         <translation>Nouveau</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>&amp;New</source>
         <translation>&amp;Nouveau</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="551"/>
-        <source>Open an empty editor window</source>
-        <translation>Ouvre une nouvelle page vide</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="552"/>
+        <source>Open an empty editor window</source>
+        <translation>Ouvre une nouvelle page vide</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="553"/>
         <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="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>Open</source>
         <translation>Ouvrir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>&amp;Open...</source>
         <translation>&amp;Ouvrir...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="565"/>
-        <source>Open a file</source>
-        <translation>Ouvrir un Fichier</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="566"/>
+        <source>Open a file</source>
+        <translation>Ouvrir un Fichier</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="567"/>
         <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;Ouvrir un fichier&lt;/b&gt;&lt;p&gt;Permet de saisir le nom d&apos;un fichier à ouvrir&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>Save</source>
         <translation>Enregistrer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>&amp;Save</source>
         <translation>&amp;Enregistrer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation>Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="579"/>
-        <source>Save the current file</source>
-        <translation>Enregistre le fichier courant</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="580"/>
+        <source>Save the current file</source>
+        <translation>Enregistre le fichier courant</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="581"/>
         <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="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Save as</source>
         <translation>Enregistrer sous</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Save &amp;as...</source>
         <translation>&amp;Enregistrer sous...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="593"/>
+        <location filename="../QScintilla/MiniEditor.py" line="594"/>
         <source>Save the current file to a new one</source>
         <translation>Enregistre dans un nouveau fichier</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="595"/>
+        <location filename="../QScintilla/MiniEditor.py" line="596"/>
         <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="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>Close</source>
         <translation>Fermer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>&amp;Close</source>
         <translation>&amp;Fermer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="624"/>
-        <source>Close the editor window</source>
-        <translation>Ferme la fenêtre de l&apos;éditeur</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="625"/>
+        <source>Close the editor window</source>
+        <translation>Ferme la fenêtre de l&apos;éditeur</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="626"/>
         <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="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Undo</source>
         <translation>Défaire</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>&amp;Undo</source>
         <translation>&amp;Défaire</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="671"/>
+        <location filename="../QScintilla/MiniEditor.py" line="672"/>
         <source>Undo the last change</source>
         <translation>Annule la dernière modification</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="672"/>
+        <location filename="../QScintilla/MiniEditor.py" line="673"/>
         <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="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>Redo</source>
         <translation>Refaire</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>&amp;Redo</source>
         <translation>&amp;Refaire</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="685"/>
-        <source>Redo the last change</source>
-        <translation>Recharge la dernière modification</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="686"/>
+        <source>Redo the last change</source>
+        <translation>Recharge la dernière modification</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="687"/>
         <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="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Cut</source>
         <translation>Couper</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Cu&amp;t</source>
         <translation>Cou&amp;per</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="700"/>
-        <source>Cut the selection</source>
-        <translation>Coupe la sélection</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="701"/>
+        <source>Cut the selection</source>
+        <translation>Coupe la sélection</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="702"/>
         <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="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Copy</source>
         <translation>Copier</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>&amp;Copy</source>
         <translation>&amp;Copier</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="716"/>
+        <location filename="../QScintilla/MiniEditor.py" line="717"/>
         <source>Copy the selection</source>
         <translation>Copie la sélection</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="717"/>
+        <location filename="../QScintilla/MiniEditor.py" line="718"/>
         <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="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Paste</source>
         <translation>Coller</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>&amp;Paste</source>
         <translation>Col&amp;ler</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="732"/>
+        <location filename="../QScintilla/MiniEditor.py" line="733"/>
         <source>Paste the last cut/copied text</source>
         <translation>Colle le dernier texte copié/coupé</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="734"/>
+        <location filename="../QScintilla/MiniEditor.py" line="735"/>
         <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="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Clear</source>
         <translation>Effacer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Cl&amp;ear</source>
         <translation>Ef&amp;facer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="749"/>
-        <source>Clear all text</source>
-        <translation>Efface tout le texte</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="750"/>
+        <source>Clear all text</source>
+        <translation>Efface tout le texte</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="751"/>
         <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="../QScintilla/MiniEditor.py" line="2353"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2354"/>
         <source>About</source>
         <translation>À propos de</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2353"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2354"/>
         <source>&amp;About</source>
         <translation>&amp;À propos de </translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2358"/>
         <source>Display information about this software</source>
         <translation>Affiche les informations concernant le logiciel</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2359"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2360"/>
         <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="2365"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2366"/>
         <source>About Qt</source>
         <translation>À propos de Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2365"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2366"/>
         <source>About &amp;Qt</source>
         <translation>À propos de &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2369"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2370"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Affiche les informations concernant Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2371"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2372"/>
         <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="2401"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2402"/>
         <source>&amp;File</source>
         <translation>&amp;Fichier</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2413"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2414"/>
         <source>&amp;Edit</source>
         <translation>&amp;Edition</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2439"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2440"/>
         <source>&amp;Help</source>
         <translation>A&amp;ide</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2516"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2517"/>
         <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="2523"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2524"/>
         <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="2540"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2541"/>
         <source>Ready</source>
         <translation>Prêt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2622"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2623"/>
         <source>File loaded</source>
         <translation>Fichier chargé</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3055"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3066"/>
         <source>Untitled</source>
         <translation>SansTitre</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2737"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2738"/>
         <source>Mini Editor</source>
         <translation>Mini éditeur</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3096"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3107"/>
         <source>Select all</source>
         <translation>Tout sélectionner</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3097"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3108"/>
         <source>Deselect all</source>
         <translation>Tout déselectionner</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3111"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3122"/>
         <source>Languages</source>
         <translation>Langages</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3114"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3125"/>
         <source>No Language</source>
         <translation>Pas de langage</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2594"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2595"/>
         <source>Open File</source>
         <translation>Ouvrir Fichier</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2708"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2709"/>
         <source>File saved</source>
         <translation>Fichier enregistré</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2509"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2510"/>
         <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="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>What&apos;s This?</source>
         <translation>Qu&apos;est-ce que c&apos;est ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <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="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2384"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
         <source>Context sensitive help</source>
         <translation>Aide contextuelle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
         <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="2451"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2452"/>
         <source>File</source>
         <translation>Fichier</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2464"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2465"/>
         <source>Edit</source>
         <translation>Editer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2474"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2475"/>
         <source>Find</source>
         <translation>Rechercher</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2488"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2489"/>
         <source>Help</source>
         <translation>Aide</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>Print</source>
         <translation>Imprimer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>&amp;Print</source>
         <translation>&amp;Imprimer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation>Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="638"/>
-        <source>Print the current file</source>
-        <translation>Imprime le fichier courant</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3018"/>
-        <source>Printing...</source>
-        <translation>Impression....</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3036"/>
-        <source>Printing completed</source>
-        <translation>Impression terminée</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3038"/>
-        <source>Error while printing</source>
-        <translation>Erreur durant l&apos;impression</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3041"/>
-        <source>Printing aborted</source>
-        <translation>Impression abandonnée</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="639"/>
+        <source>Print the current file</source>
+        <translation>Imprime le fichier courant</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3026"/>
+        <source>Printing...</source>
+        <translation>Impression....</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3047"/>
+        <source>Printing completed</source>
+        <translation>Impression terminée</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3049"/>
+        <source>Error while printing</source>
+        <translation>Erreur durant l&apos;impression</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3052"/>
+        <source>Printing aborted</source>
+        <translation>Impression abandonnée</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="640"/>
         <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;Imprimer le fichier&lt;/b&gt;&lt;p&gt;Imprime le fichier courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="646"/>
+        <location filename="../QScintilla/MiniEditor.py" line="647"/>
         <source>Print Preview</source>
         <translation>Aperçu avant impression</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="651"/>
+        <location filename="../QScintilla/MiniEditor.py" line="652"/>
         <source>Print preview of the current file</source>
         <translation>Aperçu avant impression du fichier courant</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="653"/>
+        <location filename="../QScintilla/MiniEditor.py" line="654"/>
         <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;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="3138"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3149"/>
         <source>Guessed</source>
         <translation>Suggestion</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3160"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3171"/>
         <source>Alternatives</source>
         <translation>Alternatives</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3184"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3195"/>
         <source>Pygments Lexer</source>
         <translation>Analyseur Pygments</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3184"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3195"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>Sélectionne l&apos;analyseur Pygments à appliquer.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="467"/>
+        <location filename="../QScintilla/MiniEditor.py" line="468"/>
         <source>Line: {0:5}</source>
         <translation>Ligne : {0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="471"/>
+        <location filename="../QScintilla/MiniEditor.py" line="472"/>
         <source>Pos: {0:5}</source>
         <translation>Position : {0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2594"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2595"/>
         <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="2701"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2702"/>
         <source>Save File</source>
         <translation>Enregistrer le fichier</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2701"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2702"/>
         <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="2737"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2738"/>
         <source>{0}[*] - {1}</source>
         <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3156"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3167"/>
         <source>Alternatives ({0})</source>
         <translation>Alternatives ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2567"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2568"/>
         <source>The document has unsaved changes.</source>
         <translation>Le document a des modifications non enregistrées.</translation>
     </message>
@@ -48474,57 +48474,57 @@
         <translation type="obsolete">Mini-éditeur eric6</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save Copy</source>
         <translation>Enregistrer une copie</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save &amp;Copy...</source>
         <translation>Enregistrer une &amp;copie...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="608"/>
+        <location filename="../QScintilla/MiniEditor.py" line="609"/>
         <source>Save a copy of the current file</source>
         <translation>Enregistrer une copie du fichier courant</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="610"/>
+        <location filename="../QScintilla/MiniEditor.py" line="611"/>
         <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;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="3698"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3709"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished">Propriétés d&apos;EditorConfig</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3698"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3709"/>
         <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="2720"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2721"/>
         <source>[*] - {0}</source>
         <translation>[*] - {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="486"/>
+        <location filename="../QScintilla/MiniEditor.py" line="487"/>
         <source>Language: {0}</source>
         <translation type="unfinished">Langage : {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2431"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2432"/>
         <source>&amp;View</source>
         <translation type="unfinished">&amp;Affichage</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2481"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2482"/>
         <source>View</source>
         <translation type="unfinished">Affichage</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2501"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2502"/>
         <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48534,22 +48534,22 @@
         <translation type="obsolete">&lt;p&gt;Cette zone de la barre d&apos;état permet de zoomer l&apos;éditeur courant ou le shell.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2534"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2535"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="397"/>
+        <location filename="../QScintilla/MiniEditor.py" line="398"/>
         <source>About eric Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="397"/>
+        <location filename="../QScintilla/MiniEditor.py" line="398"/>
         <source>The eric 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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2567"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2568"/>
         <source>eric Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49044,12 +49044,12 @@
 <context>
     <name>MouseUtilities</name>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="29"/>
+        <location filename="../Utilities/MouseUtilities.py" line="31"/>
         <source>Shift</source>
         <translation>Shift</translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="31"/>
+        <location filename="../Utilities/MouseUtilities.py" line="33"/>
         <source>Alt</source>
         <translation>Alt</translation>
     </message>
@@ -49059,37 +49059,37 @@
         <translation>Cmd</translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="33"/>
+        <location filename="../Utilities/MouseUtilities.py" line="35"/>
         <source>Ctrl</source>
         <translation>Ctrl</translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="35"/>
+        <location filename="../Utilities/MouseUtilities.py" line="37"/>
         <source>Meta</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="43"/>
-        <source>Left Button</source>
-        <translation>Clic gauche</translation>
-    </message>
-    <message>
-        <location filename="../Utilities/MouseUtilities.py" line="45"/>
-        <source>Right Button</source>
-        <translation>Clic droit</translation>
-    </message>
-    <message>
         <location filename="../Utilities/MouseUtilities.py" line="47"/>
-        <source>Middle Button</source>
-        <translation>Clic milieu</translation>
+        <source>Left Button</source>
+        <translation>Clic gauche</translation>
     </message>
     <message>
         <location filename="../Utilities/MouseUtilities.py" line="49"/>
-        <source>Extra Button 1</source>
-        <translation type="unfinished"></translation>
+        <source>Right Button</source>
+        <translation>Clic droit</translation>
     </message>
     <message>
         <location filename="../Utilities/MouseUtilities.py" line="51"/>
+        <source>Middle Button</source>
+        <translation>Clic milieu</translation>
+    </message>
+    <message>
+        <location filename="../Utilities/MouseUtilities.py" line="53"/>
+        <source>Extra Button 1</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Utilities/MouseUtilities.py" line="55"/>
         <source>Extra Button 2</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49630,32 +49630,32 @@
 <context>
     <name>NavigationBar</name>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="55"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="56"/>
         <source>Move one screen backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="65"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="67"/>
         <source>Move one screen forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="83"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="86"/>
         <source>Move to the initial screen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="95"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="99"/>
         <source>Exit Fullscreen</source>
         <translation>Quitter le plein écran</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="273"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="281"/>
         <source>Clear History</source>
         <translation>Effacer l&apos;historique</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="108"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="113"/>
         <source>Main Menu</source>
         <translation>Menu principale</translation>
     </message>
@@ -49693,12 +49693,12 @@
         <translation>&lt;b&gt;Entrer nom d&apos;utilisateur et mot de passe pour &apos;{0}&apos;&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/NetworkManager.py" line="336"/>
+        <location filename="../WebBrowser/Network/NetworkManager.py" line="338"/>
         <source>Authentication required</source>
         <translation>Authentification nécessaire</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/NetworkManager.py" line="337"/>
+        <location filename="../WebBrowser/Network/NetworkManager.py" line="339"/>
         <source>Authentication is required to access:</source>
         <translation>Une authentification est nécessaire pour l&apos;accès :</translation>
     </message>
@@ -50371,27 +50371,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="184"/>
+        <location filename="../UI/NumbersWidget.py" line="194"/>
         <source>Auto</source>
         <translation>Auto</translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="185"/>
+        <location filename="../UI/NumbersWidget.py" line="195"/>
         <source>Dec</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="186"/>
+        <location filename="../UI/NumbersWidget.py" line="196"/>
         <source>Hex</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="187"/>
+        <location filename="../UI/NumbersWidget.py" line="197"/>
         <source>Oct</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="188"/>
+        <location filename="../UI/NumbersWidget.py" line="198"/>
         <source>Bin</source>
         <translation type="unfinished"></translation>
     </message>
@@ -50538,7 +50538,7 @@
 <context>
     <name>OpenSearchEngineModel</name>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="141"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="148"/>
         <source>&lt;strong&gt;Provides contextual suggestions&lt;/strong&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -50553,12 +50553,12 @@
         <translation>Mots-clefs</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="149"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="156"/>
         <source>Comma-separated list of keywords that may be entered in the location bar followed by search terms to search with this engine</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="136"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="143"/>
         <source>&lt;strong&gt;Description:&lt;/strong&gt; {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -50566,7 +50566,7 @@
 <context>
     <name>OpenSearchManager</name>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchManager.py" line="462"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchManager.py" line="463"/>
         <source>&lt;p&gt;Do you want to add the following engine to your list of search engines?&lt;br/&gt;&lt;br/&gt;Name: {0}&lt;br/&gt;Searches on: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51188,12 +51188,12 @@
         <translation>Erreurs</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="146"/>
+        <location filename="../PipInterface/PipDialog.py" line="156"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="146"/>
+        <location filename="../PipInterface/PipDialog.py" line="156"/>
         <source>The process {0} could not be started.</source>
         <translation>Le processus {0} ne peut être démarré.</translation>
     </message>
@@ -51269,7 +51269,7 @@
 <context>
     <name>PipFreezeDialog</name>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="225"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="227"/>
         <source>Generate Requirements</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51354,27 +51354,27 @@
         <translation>&amp;Rafraichir</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="225"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="227"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation>Fichiers texte (*.txt);;Tous les fichiers (*)</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="114"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="116"/>
         <source>The requirements were changed. Do you want to overwrite these changes?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="156"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="158"/>
         <source>No output generated by &apos;pip freeze&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="193"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="195"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; already exists. Do you want to overwrite it?</source>
         <translation>Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="205"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="207"/>
         <source>&lt;p&gt;The requirements could not be written to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51610,32 +51610,32 @@
         <translation>Archive</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="190"/>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="193"/>
         <source>any</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="229"/>
-        <source>B</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PipInterface/PipPackageDetailsDialog.py" line="232"/>
-        <source>KB</source>
+        <source>B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackageDetailsDialog.py" line="235"/>
-        <source>MB</source>
-        <translation>Mo</translation>
+        <source>KB</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackageDetailsDialog.py" line="238"/>
+        <source>MB</source>
+        <translation>Mo</translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="241"/>
         <source>GB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="239"/>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="242"/>
         <source>{0:.1f} {1}</source>
         <comment>value, unit</comment>
         <translation type="unfinished"></translation>
@@ -51777,7 +51777,7 @@
         <translation>Montrer/cacher la fenêtre de recherche</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="189"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="192"/>
         <source>Name:</source>
         <translation>Nom :</translation>
     </message>
@@ -51792,7 +51792,7 @@
         <translation>Entrer le terme de recherche</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="193"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="196"/>
         <source>Summary:</source>
         <translation>Bilan :</translation>
     </message>
@@ -51822,77 +51822,77 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="190"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="193"/>
         <source>Version:</source>
         <translation>Version :</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="191"/>
-        <source>Location:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="192"/>
-        <source>Requires:</source>
-        <translation>Nécessite :</translation>
-    </message>
-    <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="194"/>
-        <source>Homepage:</source>
-        <translation>Page d&apos;accueil :</translation>
+        <source>Location:</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="195"/>
-        <source>Author:</source>
-        <translation>Auteur :</translation>
-    </message>
-    <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="196"/>
-        <source>Author Email:</source>
-        <translation>Courreil de l&apos;auteur :</translation>
+        <source>Requires:</source>
+        <translation>Nécessite :</translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="197"/>
-        <source>License:</source>
-        <translation>Licence :</translation>
+        <source>Homepage:</source>
+        <translation>Page d&apos;accueil :</translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="198"/>
-        <source>Metadata Version:</source>
-        <translation type="unfinished"></translation>
+        <source>Author:</source>
+        <translation>Auteur :</translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="199"/>
-        <source>Installer:</source>
-        <translation type="unfinished"></translation>
+        <source>Author Email:</source>
+        <translation>Courreil de l&apos;auteur :</translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="200"/>
-        <source>Classifiers:</source>
-        <translation type="unfinished"></translation>
+        <source>License:</source>
+        <translation>Licence :</translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="201"/>
-        <source>Entry Points:</source>
+        <source>Metadata Version:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="202"/>
+        <source>Installer:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="203"/>
+        <source>Classifiers:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="204"/>
+        <source>Entry Points:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="205"/>
         <source>Files:</source>
         <translation>Fichiers :</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="351"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="360"/>
         <source>Getting installed packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="366"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="375"/>
         <source>Getting outdated packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../PipInterface/PipPackagesWidget.py" line="776"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="791"/>
         <source>%n package(s) found.</source>
         <translation>
             <numerusform>%n package trouvé.</numerusform>
@@ -51900,7 +51900,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
         <source>Search PyPI</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51930,92 +51930,92 @@
         <translation type="obsolete">Sélectionner la version du package :</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
         <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="960"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="975"/>
         <source>Install Pip</source>
         <translation>Installer pip</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="963"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="978"/>
         <source>Install Pip to User-Site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="966"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="981"/>
         <source>Repair Pip</source>
         <translation>Réparer Pip</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1083"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1098"/>
         <source>Install Packages</source>
         <translation>Installer des packages</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="973"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="988"/>
         <source>Install Local Package</source>
         <translation>Installer un package local</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="977"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="992"/>
         <source>Install Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="980"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="995"/>
         <source>Uninstall Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="983"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="998"/>
         <source>Generate Requirements...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1001"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1016"/>
         <source>Edit User Configuration...</source>
         <translation>Éditer la configuration utilisateur...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1004"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1019"/>
         <source>Edit Environment Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1009"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1024"/>
         <source>Configure...</source>
         <translation>Configuration...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1194"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1209"/>
         <source>Edit Configuration</source>
         <translation>Éditer la configuration</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1194"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1209"/>
         <source>No valid configuration path determined. Aborting</source>
         <translation>Pas de chemin de configuration déterminé. Annulation</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="987"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1002"/>
         <source>Show Cache Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="990"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1005"/>
         <source>Show Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="993"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1008"/>
         <source>Remove Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="996"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1011"/>
         <source>Purge Cache...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52025,17 +52025,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="759"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="774"/>
         <source>&lt;p&gt;Received an error while searching for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="778"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="793"/>
         <source>Showing first 20 packages found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="785"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="800"/>
         <source>&lt;p&gt;There were no results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52248,12 +52248,12 @@
         <translation>Description</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInfoDialog.py" line="101"/>
+        <location filename="../PluginManager/PluginInfoDialog.py" line="105"/>
         <source>Yes</source>
         <translation>Oui</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInfoDialog.py" line="77"/>
+        <location filename="../PluginManager/PluginInfoDialog.py" line="78"/>
         <source>No</source>
         <translation>Non</translation>
     </message>
@@ -52303,7 +52303,7 @@
         <translation>Version</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInfoDialog.py" line="76"/>
+        <location filename="../PluginManager/PluginInfoDialog.py" line="77"/>
         <source>On-Demand</source>
         <translation>À la demande</translation>
     </message>
@@ -52379,42 +52379,42 @@
         <translation>Suivant &gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="75"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="77"/>
         <source>User plugins directory</source>
         <translation>Répertoire utilisateur pour les plugins</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="81"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="83"/>
         <source>Global plugins directory</source>
         <translation>Répertoire global pour les plugins</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="162"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="164"/>
         <source>Select plugin ZIP-archives</source>
         <translation>Sélectionner des plugins au format ZIP</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="162"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="164"/>
         <source>Plugin archive (*.zip)</source>
         <translation>Plugin ZIP (*.zip)</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="236"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="238"/>
         <source>  ok</source>
         <translation>  ok</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="243"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="245"/>
         <source>The plugins were installed successfully.</source>
         <translation>Les plugins ont été installés avec succès.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="246"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="248"/>
         <source>Some plugins could not be installed.</source>
         <translation>Certains plugins n&apos;ont pu être installés.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="505"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="507"/>
         <source>Unspecific exception installing plugin.</source>
         <translation>Erreur inexpliquée lors de l&apos;installation du plugin.</translation>
     </message>
@@ -52424,7 +52424,7 @@
         <translation>Installer</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="145"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="147"/>
         <source>Plugin ZIP-Archives:
 {0}
 
@@ -52433,47 +52433,47 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="231"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="233"/>
         <source>Installing {0} ...</source>
         <translation>Installation en cours {0} ...</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="274"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="276"/>
         <source>&lt;p&gt;The archive file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier archive &lt;b&gt;{0}&lt;/b&gt; n&apos;existe pas. Annulation...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="315"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="317"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not a valid plugin ZIP-archive. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;n&apos;est pas une archive plugin ZIP valide. Annulation...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="294"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="296"/>
         <source>&lt;p&gt;The destination directory &lt;b&gt;{0}&lt;/b&gt; is not writeable. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le répertoire de destination &lt;b&gt;{0}&lt;/b&gt; n&apos;est pas accssible en écriture. Annulation...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="364"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="366"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; does not contain a &apos;packageName&apos; attribute. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="374"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="376"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; does not conform with the PyQt v2 API. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="389"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="391"/>
         <source>&lt;p&gt;The plugin package &lt;b&gt;{0}&lt;/b&gt; exists. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le package plugin &lt;b&gt;{0}&lt;/b&gt; existe. Annulation...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="402"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="404"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; exists. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le module plugin &lt;b&gt;{0}&lt;/b&gt; existe. Annulation...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="496"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="498"/>
         <source>Error installing plugin. Reason: {0}</source>
         <translation>Erreur lors de l&apos;installation du plugin. Raison : {0}</translation>
     </message>
@@ -52521,22 +52521,22 @@
         <translation>&lt;p&gt;Le répertoire de téléchargement de plugin&lt;b&gt;{0}&lt;/b&gt; n&apos;a pas pu être créé. Veuillez le reconfigurer.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1292"/>
+        <location filename="../PluginManager/PluginManager.py" line="1293"/>
         <source>Error downloading file</source>
         <translation>Erreur de téléchargement du fichier</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1292"/>
+        <location filename="../PluginManager/PluginManager.py" line="1293"/>
         <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Ne peut télécharger le fichier demandé depuis {0}.&lt;/p&gt;&lt;p&gt;Erreur : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1329"/>
+        <location filename="../PluginManager/PluginManager.py" line="1330"/>
         <source>New plugin versions available</source>
         <translation>Nouvelle version de plugin disponible</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1329"/>
+        <location filename="../PluginManager/PluginManager.py" line="1330"/>
         <source>&lt;p&gt;There are new plug-ins or plug-in updates available. Use the plug-in repository dialog to get them.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52810,54 +52810,54 @@
         <translation>Fermer &amp;&amp; Installer</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="359"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="362"/>
         <source>Download Plugin Files</source>
         <translation>Téléchargement des plugins</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="359"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="362"/>
         <source>The requested plugins were downloaded.</source>
         <translation>Les plugins sélectionnés ont été téléchargés.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="415"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="418"/>
         <source>Read plugins repository file</source>
         <translation>Lecture du référentiel de plugins</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="423"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="426"/>
         <source>No plugin repository file available.
 Select Update.</source>
         <translation>Pas de fichier listing disponible.
 Cliquer sur &quot;Mise à jour&quot; pour récupérer la liste des plugins.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="484"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="491"/>
         <source>Error downloading file</source>
         <translation>Erreur de téléchargement</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="568"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="575"/>
         <source>Stable</source>
         <translation>Stable</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="574"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="581"/>
         <source>Unstable</source>
         <translation>Instable</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="586"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="593"/>
         <source>Unknown</source>
         <translation>Inconnu</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="415"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="418"/>
         <source>&lt;p&gt;The plugins repository file &lt;b&gt;{0}&lt;/b&gt; could not be read. Select Update&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="484"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="491"/>
         <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Ne peut télécharger le fichier demandé depuis {0}.&lt;/p&gt;&lt;p&gt;Erreur : {1}&lt;/p&gt;</translation>
     </message>
@@ -52867,62 +52867,62 @@
         <translation>Télécharger &amp;&amp; Installer</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="407"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="410"/>
         <source>Plugins Repository URL Changed</source>
         <translation>L&apos;URL du dépot de plugins a changé</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="407"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="410"/>
         <source>The URL of the Plugins Repository has changed. Select the &quot;Update&quot; button to get the new repository file.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="117"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="120"/>
         <source>Hide</source>
         <translation>Cacher</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="119"/>
-        <source>Hide Selected</source>
-        <translation>Cacher la sélection</translation>
-    </message>
-    <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="122"/>
-        <source>Show All</source>
-        <translation>Montrer tout</translation>
+        <source>Hide Selected</source>
+        <translation>Cacher la sélection</translation>
     </message>
     <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="125"/>
+        <source>Show All</source>
+        <translation>Montrer tout</translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="128"/>
         <source>Cleanup Downloads</source>
         <translation>Nettoyer les téléchargements</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="600"/>
-        <source>up-to-date</source>
-        <translation>à jour</translation>
-    </message>
-    <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="603"/>
-        <source>new download available</source>
-        <translation>nouveau téléchargement disponible</translation>
-    </message>
-    <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="607"/>
+        <source>up-to-date</source>
+        <translation>à jour</translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="610"/>
+        <source>new download available</source>
+        <translation>nouveau téléchargement disponible</translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="614"/>
         <source>update installable</source>
         <translation>mise à jour installable</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="611"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="618"/>
         <source>updated download available</source>
         <translation>téléchargement à jour disponible</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="979"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="986"/>
         <source>Cleanup of Plugin Downloads</source>
         <translation>Nettoyer les téléchargements de plugin</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="979"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="986"/>
         <source>&lt;p&gt;The plugin download &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le téléchargement de plugin&lt;b&gt;{0}&lt;/b&gt; ne peut être supprimé.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
@@ -52942,27 +52942,27 @@
         <translation type="obsolete">L&apos;ordinateur est hors ligne.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="430"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="433"/>
         <source>New: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation>Nouveau : &lt;b&gt;{0}&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="432"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="435"/>
         <source>Local Updates: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation>Mises à jour locales : &lt;b&gt;{0}&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="434"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="437"/>
         <source>Remote Updates: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation>Mises à jour distantes: &lt;b&gt;{0}&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="580"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="587"/>
         <source>Obsolete</source>
         <translation>Obsolète</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="615"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="622"/>
         <source>error determining status</source>
         <translation>erreur lors de la détermination du statu</translation>
     </message>
@@ -52970,17 +52970,17 @@
 <context>
     <name>PluginRepositoryWindow</name>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>OK</source>
         <translation>OK</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>&lt;p&gt;Could not start the process.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Ne peut démarrer le processus.&lt;br&gt;Vérifier qu&apos;il est disponible en tant que&lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
@@ -53332,17 +53332,17 @@
 <context>
     <name>Preferences</name>
     <message>
-        <location filename="../Preferences/__init__.py" line="1640"/>
+        <location filename="../Preferences/__init__.py" line="1649"/>
         <source>Export Preferences</source>
         <translation>Export des préférences</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1668"/>
+        <location filename="../Preferences/__init__.py" line="1677"/>
         <source>Import Preferences</source>
         <translation>Import des préférences</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1668"/>
+        <location filename="../Preferences/__init__.py" line="1677"/>
         <source>Properties File (*.ini);;All Files (*)</source>
         <translation>Fichier propriétés (*.ini);;Tous les fichiers (*)</translation>
     </message>
@@ -53363,7 +53363,7 @@
 <context>
     <name>PreviewModel</name>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="432"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="434"/>
         <source>Variable Name</source>
         <translation>Nom de variable</translation>
     </message>
@@ -53371,27 +53371,27 @@
 <context>
     <name>PreviewProcessingThread</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="463"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="466"/>
         <source>&lt;p&gt;No preview available for this type of file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Pas d&apos;aperçu disponible pour ce type de fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="632"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="635"/>
         <source>&lt;p&gt;ReStructuredText preview requires the &lt;b&gt;python-docutils&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager, &apos;pip install docutils&apos; or see &lt;a href=&quot;http://pypi.python.org/pypi/docutils&quot;&gt;this page.&lt;/a&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="572"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="575"/>
         <source>&lt;p&gt;ReStructuredText preview requires the &lt;b&gt;sphinx&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager,&apos;pip install Sphinx&apos; or see &lt;a href=&quot;http://pypi.python.org/pypi/Sphinx&quot;&gt;this page.&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Alternatively you may disable Sphinx usage on the Editor, Filehandling configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="675"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="678"/>
         <source>&lt;p&gt;Markdown preview requires the &lt;b&gt;Markdown&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager, &apos;pip install Markdown&apos; or see &lt;a href=&quot;http://pythonhosted.org/Markdown/install.html&quot;&gt;installation instructions.&lt;/a&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="647"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="650"/>
         <source>&lt;p&gt;Docutils returned an error:&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Docutils a renvoyé une erreur:&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
@@ -53399,37 +53399,37 @@
 <context>
     <name>PreviewerHTML</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="75"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="78"/>
         <source>Select to enable JavaScript for HTML previews</source>
         <translation>Cocher pour activer JavaScript pour l&apos;aperçu HTML</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="74"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="77"/>
         <source>Enable JavaScript</source>
         <translation>Activer JavaScript</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="81"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="84"/>
         <source>Select to enable support for Server Side Includes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="79"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="82"/>
         <source>Enable Server Side Includes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="194"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="197"/>
         <source>&lt;p&gt;No preview available for this type of file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Pas d&apos;aperçu disponible pour ce type de fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="253"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="256"/>
         <source>Preview - {0}</source>
         <translation>Aperçu - {0}</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="255"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="258"/>
         <source>Preview</source>
         <translation>Aperçu</translation>
     </message>
@@ -53439,7 +53439,7 @@
         <translation type="obsolete">&lt;b&gt;Aperçu HTML non disponible !&lt;br/&gt;Installer QtWebEngine.&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="57"/>
+        <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 type="unfinished"></translation>
     </message>
@@ -53490,17 +53490,17 @@
         <translation>Fichiers PDF (*.pdf);;Tous les fichiers (*)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="76"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="80"/>
         <source>Portrait</source>
         <translation>Portrait</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="78"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="82"/>
         <source>Landscape</source>
         <translation>Paysage</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="79"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="83"/>
         <source>{0}, {1}</source>
         <comment>page size, page orientation</comment>
         <translation>{0}, {1}</translation>
@@ -53705,17 +53705,17 @@
         <translation>(non configuré)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="436"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="437"/>
         <source>(not executable)</source>
         <translation>(non executable)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="479"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="481"/>
         <source>(not found)</source>
         <translation>(non trouvé)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="433"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="434"/>
         <source>(unknown)</source>
         <translation>(inconnu)</translation>
     </message>
@@ -53775,7 +53775,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="398"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="399"/>
         <source>(module not found)</source>
         <translation>(module non trouvé)</translation>
     </message>
@@ -55220,32 +55220,32 @@
 <context>
     <name>ProjectBaseBrowser</name>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="128"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="132"/>
         <source>Open</source>
         <translation>Ouvrir</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="496"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="503"/>
         <source>local</source>
         <translation>local</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="537"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="544"/>
         <source>Select entries</source>
         <translation>Sélection des entrées</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="537"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="544"/>
         <source>There were no matching entries found.</source>
         <translation>Aucune entrée correspondante n&apos;a été trouvée.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="294"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="300"/>
         <source>Delete directories</source>
         <translation>Supprimer les répertoires</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="294"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="300"/>
         <source>Do you really want to delete these directories from the project?</source>
         <translation>Voulez-vous vraiment supprimer ces répertoires du projet ?</translation>
     </message>
@@ -55306,7 +55306,7 @@
         <translation>VCS Status</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBrowserModel.py" line="797"/>
+        <location filename="../Project/ProjectBrowserModel.py" line="803"/>
         <source>local</source>
         <translation>local</translation>
     </message>
@@ -55505,7 +55505,7 @@
 <context>
     <name>ProjectFormsBrowser</name>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1009"/>
         <source>Forms</source>
         <translation>Feuilles du projet</translation>
     </message>
@@ -55590,32 +55590,32 @@
         <translation>Sélectionner un type de feuille:</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="784"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="788"/>
         <source>Form Compilation</source>
         <translation>Compilation</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="768"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="772"/>
         <source>The compilation of the form file was successful.</source>
         <translation>La compilation de la feuille a réussi.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="784"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="788"/>
         <source>The compilation of the form file failed.</source>
         <translation>La compilation de la feuille a échoué.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="870"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="874"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="962"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="966"/>
         <source>Compiling forms...</source>
         <translation>Compilation des feuilles...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>Abort</source>
         <translation>Abandon</translation>
     </message>
@@ -55670,12 +55670,12 @@
         <translation>Boite de dialogue avec boutons (Bas-Centre)</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>Determining changed forms...</source>
         <translation>Détermination des feuilles modifiées...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1031"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1035"/>
         <source>Compiling changed forms...</source>
         <translation>Compilation des feuilles modifiées...</translation>
     </message>
@@ -55725,12 +55725,12 @@
         <translation>&lt;p&gt;Le nouveau fichier formulaire &lt;b&gt;{0}&lt;/b&gt; ne peut être créé.&lt;br&gt;Problème : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="775"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="779"/>
         <source>&lt;p&gt;The compilation of the form file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="870"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="874"/>
         <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
         <translation>Ne peut démarré {0}.&lt;br&gt;Vérifier qu&apos;il est dans le chemin de recherche.</translation>
     </message>
@@ -55785,7 +55785,7 @@
         <translation>QStackedWidget</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>%v/%m Forms</source>
         <translation>Formulaires %v/%m</translation>
     </message>
@@ -56440,7 +56440,7 @@
 <context>
     <name>ProjectResourcesBrowser</name>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="861"/>
         <source>Resources</source>
         <translation>Ressources</translation>
     </message>
@@ -56530,42 +56530,42 @@
         <translation>Voulez-vous réellement supprimer ces fichiers ressources du projet?</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="624"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="628"/>
         <source>Resource Compilation</source>
         <translation>Compilation des fichiers ressources</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="610"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="614"/>
         <source>The compilation of the resource file was successful.</source>
         <translation>La compilation des fichiers ressources a réussi.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="624"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="628"/>
         <source>The compilation of the resource file failed.</source>
         <translation>La compilation du fichier ressource a échoué.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="713"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="717"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="779"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="783"/>
         <source>Compiling resources...</source>
         <translation>Compilation des ressources...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>Abort</source>
         <translation>Abandonner</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>Determining changed resources...</source>
         <translation>Détermination des fichiers ressource modifiés...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="889"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="893"/>
         <source>Compiling changed resources...</source>
         <translation>Compilation des fichiers ressource modifiés...</translation>
     </message>
@@ -56590,17 +56590,17 @@
         <translation>&lt;p&gt;Le nouveau fichier ressource &lt;b&gt;{0}&lt;/b&gt; ne peut être créé.&lt;br&gt;Problème : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="617"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="621"/>
         <source>&lt;p&gt;The compilation of the resource file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;La compilation du fichier ressource a échoué.&lt;/p&gt;&lt;p&gt;Raison : {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="713"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="717"/>
         <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
         <translation>Ne peut démarré {0}.&lt;br&gt;Vérifier qu&apos;il est dans le chemin de recherche.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>%v/%m Resources</source>
         <translation>Ressources %v/%m</translation>
     </message>
@@ -57618,32 +57618,32 @@
 <context>
     <name>PyCoverageDialog</name>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="61"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="63"/>
         <source>Annotate</source>
         <translation>Annoter</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="63"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="65"/>
         <source>Annotate all</source>
         <translation>Annoter tous</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="64"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="66"/>
         <source>Delete annotated files</source>
         <translation>Supprimer les fichiers annotés</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="67"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="69"/>
         <source>Erase Coverage Info</source>
         <translation>Supprimer les infos de Coverage</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>Annotating files...</source>
         <translation>Annotation des fichiers....</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>Abort</source>
         <translation>Annuler</translation>
     </message>
@@ -57709,7 +57709,7 @@
         <translation>Executées</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="349"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="361"/>
         <source>Coverage</source>
         <translation>Coverage</translation>
     </message>
@@ -57741,17 +57741,17 @@
         <translation>Affiche l&apos;état de progression du coverage de code</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="58"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="60"/>
         <source>Open</source>
         <translation>Ouvrir</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="243"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="246"/>
         <source>Parse Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../DataViews/PyCoverageDialog.py" line="243"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="246"/>
         <source>%n file(s) could not be parsed. Coverage info for these is not available.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -57759,7 +57759,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>%v/%m Files</source>
         <translation>Fichiers %v/%m</translation>
     </message>
@@ -57767,52 +57767,52 @@
 <context>
     <name>PyProfileDialog</name>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="337"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="354"/>
         <source>Exclude Python Library</source>
         <translation>Exlure les librairies Python</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="89"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="92"/>
         <source>Erase Profiling Info</source>
         <translation>Effacer les information de profiling</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="91"/>
-        <source>Erase Timing Info</source>
-        <translation>Effacer le chronometrage</translation>
-    </message>
-    <message>
         <location filename="../DataViews/PyProfileDialog.py" line="94"/>
+        <source>Erase Timing Info</source>
+        <translation>Effacer le chronometrage</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="97"/>
         <source>Erase All Infos</source>
         <translation>Effacer toutes les infos</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="234"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="239"/>
         <source>Profile Results</source>
         <translation>Résultats du profiling</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="246"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="251"/>
         <source>Loading Profiling Data</source>
         <translation>Chargement des données de profiling</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="215"/>
-        <source>function calls</source>
-        <translation>appels de fonctions</translation>
-    </message>
-    <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="218"/>
-        <source>primitive calls</source>
-        <translation>appels de primitives</translation>
-    </message>
-    <message>
         <location filename="../DataViews/PyProfileDialog.py" line="220"/>
+        <source>function calls</source>
+        <translation>appels de fonctions</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="223"/>
+        <source>primitive calls</source>
+        <translation>appels de primitives</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="225"/>
         <source>CPU seconds</source>
         <translation>secondes CPU</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="333"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="350"/>
         <source>Include Python Library</source>
         <translation>Inclure les librairies Python</translation>
     </message>
@@ -57893,12 +57893,12 @@
         <translation>Affiche l&apos;état d&apos;avancement du calcul de profile</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="234"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="239"/>
         <source>&lt;p&gt;There is no profiling data available for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="246"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="251"/>
         <source>&lt;p&gt;The profiling data could not be read from file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -58516,107 +58516,107 @@
         <translation>Affiche la capture suivante de l&apos;expression régulière</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="102"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="103"/>
         <source>Copy</source>
         <translation>Copier</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="104"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="105"/>
         <source>Copy the regular expression to the clipboard</source>
         <translation>Copie l&apos;expression régulière dans le presse-papier</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="188"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="190"/>
         <source>Named reference</source>
         <translation>Référence nommée</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="182"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="184"/>
         <source>No named groups have been defined yet.</source>
         <translation>Aucun groupe nommé n&apos;a encore été défini.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="188"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="190"/>
         <source>Select group name:</source>
         <translation>Sélection d&apos;un groupe:</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="372"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="374"/>
         <source>Save regular expression</source>
         <translation>Enregistre l&apos;expression régulière</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="360"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="362"/>
         <source>RegExp Files (*.rx);;All Files (*)</source>
         <translation>Fichiers RegExp (*.rx);;Tous fichiers (*)</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="360"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="362"/>
         <source>Load regular expression</source>
         <translation>Charge une expression régulière</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="414"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="416"/>
         <source>The regular expression is valid.</source>
         <translation>L&apos;expression régulière est valide.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="578"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="581"/>
         <source>Error</source>
         <translation>Erreur</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="571"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="574"/>
         <source>Invalid regular expression: missing group name</source>
         <translation>Expression régulière incorrecte: il manque le nom du groupe</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="433"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="435"/>
         <source>A regular expression must be given.</source>
         <translation>Une expression régulière doit être indiquée.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="478"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="480"/>
         <source>Regexp</source>
         <translation>Expression régulière</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="488"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="490"/>
         <source>Offset</source>
         <translation>Offset</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="496"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="498"/>
         <source>Captures</source>
         <translation>Captures</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="503"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="505"/>
         <source>Text</source>
         <translation>Texte</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="506"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="508"/>
         <source>Characters</source>
         <translation>Caractères</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="511"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="513"/>
         <source>Match</source>
         <translation>Match</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="546"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="549"/>
         <source>No more matches</source>
         <translation>Plus de capture</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="550"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="553"/>
         <source>No matches</source>
         <translation>Aucun résultat</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="578"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="581"/>
         <source>A regular expression and a text must be given.</source>
         <translation>Une expression régulière doit être indiquée.</translation>
     </message>
@@ -58626,27 +58626,27 @@
         <translation type="obsolete">Unicode</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="372"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="374"/>
         <source>&lt;p&gt;The regular expression could not be saved.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;L&apos;expression régulière ne peut être enregistrée.&lt;/p&gt;&lt;p&gt;Raison : {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="564"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="567"/>
         <source>Invalid regular expression: {0}</source>
         <translation>Expression régulière invalide : {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="526"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="528"/>
         <source>Capture #{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="334"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="336"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="414"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="416"/>
         <source>Validation</source>
         <translation>Validation</translation>
     </message>
@@ -59232,37 +59232,37 @@
         <translation type="obsolete">L&apos;éditeur de texte courant ne contient pas de source Python.</translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="247"/>
+        <location filename="../UI/PythonAstViewer.py" line="249"/>
         <source>Module</source>
         <translation>Module</translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="279"/>
+        <location filename="../UI/PythonAstViewer.py" line="281"/>
         <source>{0}: {1}</source>
         <translation>{0}: {1}</translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="300"/>
+        <location filename="../UI/PythonAstViewer.py" line="302"/>
         <source>{0},{1}</source>
         <translation>{0},{1}</translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="307"/>
+        <location filename="../UI/PythonAstViewer.py" line="309"/>
         <source>{0}  -  {1}</source>
         <translation>{0}  -  {1}</translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="211"/>
+        <location filename="../UI/PythonAstViewer.py" line="213"/>
         <source>No editor has been opened.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="222"/>
+        <location filename="../UI/PythonAstViewer.py" line="224"/>
         <source>The current editor does not contain any source code.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="228"/>
+        <location filename="../UI/PythonAstViewer.py" line="230"/>
         <source>The current editor does not contain Python source code.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59320,7 +59320,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="695"/>
+        <location filename="../UI/PythonDisViewer.py" line="698"/>
         <source>Code Object &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59375,72 +59375,72 @@
         <translation type="unfinished">Cacher</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="810"/>
+        <location filename="../UI/PythonDisViewer.py" line="813"/>
         <source>Name</source>
         <translation type="unfinished">Nom</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="812"/>
+        <location filename="../UI/PythonDisViewer.py" line="815"/>
         <source>Filename</source>
         <translation type="unfinished">Nom de fichier</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="814"/>
+        <location filename="../UI/PythonDisViewer.py" line="817"/>
         <source>First Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="816"/>
+        <location filename="../UI/PythonDisViewer.py" line="819"/>
         <source>Argument Count</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="818"/>
+        <location filename="../UI/PythonDisViewer.py" line="821"/>
         <source>Positional-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../UI/PythonDisViewer.py" line="827"/>
+        <source>Number of Locals</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="829"/>
+        <source>Stack Size</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="831"/>
+        <source>Flags</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="834"/>
+        <source>Constants</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="837"/>
+        <source>Names</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="840"/>
+        <source>Variable Names</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="843"/>
+        <source>Free Variables</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="846"/>
+        <source>Cell Variables</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/PythonDisViewer.py" line="824"/>
-        <source>Number of Locals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="826"/>
-        <source>Stack Size</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="828"/>
-        <source>Flags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="831"/>
-        <source>Constants</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="834"/>
-        <source>Names</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="837"/>
-        <source>Variable Names</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="840"/>
-        <source>Free Variables</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="843"/>
-        <source>Cell Variables</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="821"/>
         <source>Keyword-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
@@ -61653,197 +61653,197 @@
 <context>
     <name>QRegularExpressionWizardWidget</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="96"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="97"/>
         <source>Save</source>
         <translation>Enregistrer</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="98"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="99"/>
         <source>Save the regular expression to a file</source>
         <translation>Enregistrer l&apos;expression régulière dans un fichier</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="100"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="101"/>
         <source>Load</source>
         <translation>Charger</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="102"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="103"/>
         <source>Load a regular expression from a file</source>
         <translation>Charger une expression régulière à partir d&apos;un fichier</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="105"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="106"/>
         <source>Validate</source>
         <translation>Valider</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="107"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="108"/>
         <source>Validate the regular expression</source>
         <translation>Valide la syntaxe de l&apos;expression régulière</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="109"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="110"/>
         <source>Execute</source>
         <translation>Exécuter</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="111"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="112"/>
         <source>Execute the regular expression</source>
         <translation>Teste l&apos;expression régulière sur texte saisi</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="113"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="114"/>
         <source>Next match</source>
         <translation>Capture suivante</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="115"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="116"/>
         <source>Show the next match of the regular expression</source>
         <translation>Affiche la capture suivante de l&apos;expression régulière</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="128"/>
-        <source>Copy</source>
-        <translation>Copier</translation>
-    </message>
-    <message>
         <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="130"/>
+        <source>Copy</source>
+        <translation>Copier</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="132"/>
         <source>Copy the regular expression to the clipboard</source>
         <translation>Copie l&apos;expression régulière dans le presse-papier</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="292"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="295"/>
         <source>Named reference</source>
         <translation>Référence nommée</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="286"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="289"/>
         <source>No named groups have been defined yet.</source>
         <translation>Aucun groupe nommé n&apos;a encore été défini.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="292"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="295"/>
         <source>Select group name:</source>
         <translation>Sélection d&apos;un groupe:</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="454"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="457"/>
         <source>Save regular expression</source>
         <translation>Enregistre l&apos;expression régulière</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="416"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="419"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="454"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="457"/>
         <source>&lt;p&gt;The regular expression could not be saved.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;L&apos;expression régulière ne peut être enregistrer.&lt;/p&gt;&lt;p&gt;Raison : {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="442"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="445"/>
         <source>Load regular expression</source>
         <translation>Charge une expression régulière</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="507"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="510"/>
         <source>Validation</source>
         <translation>Validation</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="507"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="510"/>
         <source>The regular expression is valid.</source>
         <translation>L&apos;expression régulière est valide.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="708"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="712"/>
         <source>Error</source>
         <translation>Erreur</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="582"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="585"/>
         <source>Invalid regular expression: {0}</source>
         <translation>Expression régulière invalide: {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="538"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="541"/>
         <source>A regular expression must be given.</source>
         <translation>Une expression régulière doit être indiquée.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="602"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="605"/>
         <source>Regexp</source>
         <translation>Expression régulière</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="613"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="616"/>
         <source>Offset</source>
         <translation>Offset</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="621"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="624"/>
         <source>Captures</source>
         <translation>Captures</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="629"/>
-        <source>Text</source>
-        <translation>Texte</translation>
-    </message>
-    <message>
         <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="632"/>
+        <source>Text</source>
+        <translation>Texte</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="635"/>
         <source>Characters</source>
         <translation>Caractères</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="637"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="640"/>
         <source>Match</source>
         <translation>Match</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="652"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="655"/>
         <source>Capture #{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="676"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="680"/>
         <source>No more matches</source>
         <translation>Plus de capture</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="681"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="685"/>
         <source>No matches</source>
         <translation>Aucun résultat</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="708"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="712"/>
         <source>A regular expression and a text must be given.</source>
         <translation>Une expression régulière doit être indiquée.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="442"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="445"/>
         <source>RegExp Files (*.rx);;All Files (*)</source>
         <translation>Fichiers RegExp (*.rx);;Tous fichiers (*)</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="702"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="706"/>
         <source>Communication Error</source>
         <translation>Erreur de communication</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="169"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="172"/>
         <source>&lt;p&gt;The PyQt5 backend reported an error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="696"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="700"/>
         <source>Invalid response received from PyQt5 backend.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="702"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="706"/>
         <source>Communication with PyQt5 backend failed.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -61871,7 +61871,7 @@
         <translation>Supprimer</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="174"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="176"/>
         <source>Add Documentation</source>
         <translation>Ajouter Documentation</translation>
     </message>
@@ -61881,7 +61881,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="211"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="213"/>
         <source>Remove Documentation</source>
         <translation>Supprimer Documentation</translation>
     </message>
@@ -61896,7 +61896,7 @@
         <translation>Cliquer pour supprimer les éléments sélectionnés de la base de données</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="196"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="198"/>
         <source>Do you really want to remove the selected documentation sets from the database?</source>
         <translation>Voulez vous vraiment supprimer le jeu de documentation sélectionné de la base de données ?</translation>
     </message>
@@ -61906,12 +61906,12 @@
         <translation>Le fichier &lt;b&gt;{0}&lt;/b&gt; n&apos;est pas un fichier Qt Help valide.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="174"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="176"/>
         <source>The namespace &lt;b&gt;{0}&lt;/b&gt; is already registered.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="211"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="213"/>
         <source>Some documents currently opened reference the documentation you are attempting to remove. Removing the documentation will close those documents. Remove anyway?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -61971,7 +61971,7 @@
         <translation>Cliquer pour supprimer les filtres sélectionnés</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="406"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="410"/>
         <source>Remove Filters</source>
         <translation>Supprimer les filtres</translation>
     </message>
@@ -61981,7 +61981,7 @@
         <translation>Cliquer pour supprimer les attributs sélectionnés</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="434"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="438"/>
         <source>Remove Attributes</source>
         <translation>Supprimer les attributs</translation>
     </message>
@@ -62026,22 +62026,22 @@
         <translation>La page contient des modifications non enregistrées. Faut-il les enregistrer ?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="385"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="389"/>
         <source>Add Filter</source>
         <translation>Ajouter un filtre</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="385"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="389"/>
         <source>Filter name:</source>
         <translation>Nom de filtre :</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="406"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="410"/>
         <source>Do you really want to remove the selected filters from the database?</source>
         <translation>Voulez-vous vraiment supprimer les filtres sélectionnés de la base de données ?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="434"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="438"/>
         <source>Do you really want to remove the selected attributes from the database?</source>
         <translation>Voulez-vous vraiment supprimer les attributs sélectionnés de la base de données ?</translation>
     </message>
@@ -62059,27 +62059,27 @@
         <translation>Sélectionner les fichiers documentation à installer :</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="139"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="142"/>
         <source>Delete Documentation Sets</source>
         <translation>Supprimer les jeux de documentation</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="86"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="89"/>
         <source>Shall the selected documentation sets really be deleted?</source>
         <translation>Faut-il vraiment supprimer les jeux de documentations sélectionnés ?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="102"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="105"/>
         <source>&lt;p&gt;The documentation set &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le jeu de documentation &lt;b&gt;{0}&lt;/b&gt; ne peut être supprimé.&lt;/p&gt;&lt;p&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="121"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="124"/>
         <source>Shall the selected documentation set categories really be deleted?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="139"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="142"/>
         <source>Shall all documentation sets really be deleted?</source>
         <translation>Faut-il supprimer tous les jeux de documentation ?</translation>
     </message>
@@ -63576,87 +63576,87 @@
 <context>
     <name>SafeBrowsingAPI</name>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="391"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="400"/>
         <source>&lt;h3&gt;Malware Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to install harmful programs on your computer in order to steal or destroy your data.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="398"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="407"/>
         <source>&lt;h3&gt;Phishing Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to trick you into doing something dangerous online, such as revealing passwords or personal information, usually through a fake website.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="406"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="415"/>
         <source>&lt;h3&gt;Unwanted Software Warning&lt;/h3&gt;&lt;p&gt;The software you are about to download may negatively affect your browsing or computing experience.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="412"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="421"/>
         <source>&lt;h3&gt;Potentially Harmful Application&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to trick you into installing applications, that may negatively affect your browsing experience.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="426"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="435"/>
         <source>&lt;h3&gt;Unknown Threat Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit was found in the Safe Browsing Database but was not classified yet.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="446"/>
-        <source>Malware</source>
-        <translation>Malware</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="449"/>
-        <source>Phishing</source>
-        <translation>Hameçonnage</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="452"/>
-        <source>Unwanted Software</source>
-        <translation>Logiciel indésiré</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="455"/>
-        <source>Harmful Application</source>
-        <translation>Application dangereuse</translation>
+        <source>Malware</source>
+        <translation>Malware</translation>
     </message>
     <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="458"/>
-        <source>Malicious Binary</source>
-        <translation>Binaire malicieux</translation>
+        <source>Phishing</source>
+        <translation>Hameçonnage</translation>
     </message>
     <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="461"/>
+        <source>Unwanted Software</source>
+        <translation>Logiciel indésiré</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="464"/>
+        <source>Harmful Application</source>
+        <translation>Application dangereuse</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="467"/>
+        <source>Malicious Binary</source>
+        <translation>Binaire malicieux</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="470"/>
         <source>Unknown Threat</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="532"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="541"/>
         <source>any defined platform</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="535"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="544"/>
         <source>all defined platforms</source>
         <translation>toutes les plateformes définies</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="538"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="547"/>
         <source>unknown platform</source>
         <translation>plateforme inconnue</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="492"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="501"/>
         <source>executable program</source>
         <translation>programme exécutable</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="495"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="504"/>
         <source>unknown type</source>
         <translation>type inconnu</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="419"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="428"/>
         <source>&lt;h3&gt;Malicious Binary Warning&lt;/h3&gt;&lt;p&gt;The software you are about to download may be harmful to your computer.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63664,7 +63664,7 @@
 <context>
     <name>SafeBrowsingDialog</name>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="171"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="173"/>
         <source>Safe Browsing Management</source>
         <translation>Gestion de navigation sécurisée</translation>
     </message>
@@ -63754,52 +63754,52 @@
         <translation>Cliquer pour vérifier l&apos;URL entrée</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="312"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="314"/>
         <source>Check URL</source>
         <translation>Vérifier l&apos;URL</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="171"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="173"/>
         <source>The dialog contains unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="213"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="215"/>
         <source>Update Safe Browsing Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="196"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="198"/>
         <source>Updating the Safe Browsing cache might be a lengthy operation. Please be patient!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="207"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="209"/>
         <source>&lt;p&gt;Updating the Safe Browsing cache failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="213"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="215"/>
         <source>&lt;p&gt;Updating the Safe Browsing cache failed.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="224"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="226"/>
         <source>Clear Safe Browsing Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="224"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="226"/>
         <source>Do you really want to clear the Safe Browsing cache? Re-populating it might take some time.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="304"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="306"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing Database.&lt;/p&gt;{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="312"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="314"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was not found in the Safe Browsing Database and may be considered safe.&lt;/p&gt;</source>
         <translation>&lt;p&gt;L&apos;URL &lt;b&gt;{0}&lt;/b&gt; n&apos;a pas été trouvée dans la base de données de navigation sécurisée et peut être considérée comme sécurisée.&lt;/p&gt;</translation>
     </message>
@@ -63829,17 +63829,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="339"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="341"/>
         <source>The next automatic threat list update will be done now.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="342"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="344"/>
         <source>&lt;p&gt;The next automatic threat list update will be done at &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="346"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="348"/>
         <source>Update Time</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63859,7 +63859,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="296"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="298"/>
         <source>&lt;p&gt;The Google Safe Browsing Server reported an error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63928,17 +63928,17 @@
 <context>
     <name>SearchReplaceWidget</name>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="982"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="984"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation>&apos;{0}&apos; n&apos;a pas été trouvé.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="1128"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="1130"/>
         <source>Replaced {0} occurrences.</source>
         <translation>{0} occurrences remplacées.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="1133"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="1135"/>
         <source>Nothing replaced because &apos;{0}&apos; was not found.</source>
         <translation>Rien de remplacé car &apos;{0}&apos; n&apos;a pas été trouvé.</translation>
     </message>
@@ -63948,7 +63948,7 @@
         <translation>Suivant</translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="173"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="174"/>
         <source>Find Prev</source>
         <translation>Précédent</translation>
     </message>
@@ -63972,17 +63972,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="181"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="183"/>
         <source>Replace and Search</source>
         <translation>Remplacer et Chercher</translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="191"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="193"/>
         <source>Replace Occurrence</source>
         <translation>Remplacer l&apos;occurence</translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="201"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="203"/>
         <source>Replace All</source>
         <translation>Remplacer tout</translation>
     </message>
@@ -64079,12 +64079,12 @@
         <translation>Expression régulière</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SearchWidget.py" line="98"/>
+        <location filename="../WebBrowser/SearchWidget.py" line="100"/>
         <source>Expression was not found.</source>
         <translation>L&apos;expression n&apos;a pas été trouvée.</translation>
     </message>
     <message>
-        <location filename="../UI/SearchWidget.py" line="208"/>
+        <location filename="../UI/SearchWidget.py" line="210"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation>&apos;{0}&apos; n&apos;a pas été trouvé.</translation>
     </message>
@@ -64556,7 +64556,7 @@
 <context>
     <name>SendRefererWhitelistDialog</name>
     <message>
-        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="50"/>
+        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="51"/>
         <source>Send Referer Whitelist</source>
         <translation type="unfinished"></translation>
     </message>
@@ -64596,7 +64596,7 @@
         <translation>Tout supprim&amp;er</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="50"/>
+        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="51"/>
         <source>Enter host name to add to the whitelist:</source>
         <translation>Entrer le nom à ajouter à la liste blanche :</translation>
     </message>
@@ -64727,7 +64727,7 @@
         <translation>Veuillez sélectionner la session de démarrage :</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Session/SessionManager.py" line="710"/>
+        <location filename="../WebBrowser/Session/SessionManager.py" line="712"/>
         <source>{0} (last session)</source>
         <translation>{0} (dernière session)</translation>
     </message>
@@ -65241,57 +65241,57 @@
         <translation>setuptools</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="153"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="155"/>
         <source>Reading Trove Classifiers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="153"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="155"/>
         <source>&lt;p&gt;The Trove Classifiers 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="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="544"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="549"/>
         <source>Package Directory</source>
         <translation>Répertoire du package</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="576"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="581"/>
         <source>Packages Root Directory</source>
         <translation>Racine du répertoire des packages</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="615"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="620"/>
         <source>Add Package</source>
         <translation>Ajouter package</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="615"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="620"/>
         <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; is not a Python package.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le répertoire &lt;b&gt;{0}&lt;/b&gt; n&apos;est pas un package python.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="671"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="676"/>
         <source>Add Scripts</source>
         <translation>Ajouter scripts</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="671"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="676"/>
         <source>Python Files (*.py);;All Files(*)</source>
         <translation>Fichiers Python (*.py);;Tous les fichiers (*)</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="710"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="715"/>
         <source>Add Python Modules</source>
         <translation>Ajouter module Python</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="710"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="715"/>
         <source>Python Files (*.py)</source>
         <translation>Fichiers Python (*.py)</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="789"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="796"/>
         <source>Source Directory</source>
         <translation>Répertoire source</translation>
     </message>
@@ -65319,84 +65319,84 @@
         <translation>Shell</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="248"/>
+        <location filename="../QScintilla/Shell.py" line="249"/>
         <source>Passive &gt;&gt;&gt; </source>
         <translation>Passif &gt;&gt;&gt; </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="304"/>
-        <source>Copy</source>
-        <translation>Copier</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="305"/>
+        <source>Copy</source>
+        <translation>Copier</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="306"/>
         <source>Paste</source>
         <translation>Coller</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="311"/>
+        <location filename="../QScintilla/Shell.py" line="312"/>
         <source>Clear</source>
         <translation>Effacer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2178"/>
+        <location filename="../QScintilla/Shell.py" line="2199"/>
         <source>Drop Error</source>
         <translation>Erreur de suppression</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="843"/>
+        <location filename="../QScintilla/Shell.py" line="851"/>
         <source>No.</source>
         <translation>Non.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="291"/>
+        <location filename="../QScintilla/Shell.py" line="292"/>
         <source>Start</source>
         <translation>Lancer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="839"/>
+        <location filename="../QScintilla/Shell.py" line="847"/>
         <source>Passive Debug Mode</source>
         <translation>Mode débogueur passif</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="296"/>
-        <source>History</source>
-        <translation>Historique</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="297"/>
-        <source>Select entry</source>
-        <translation>Sélection d&apos;une entrée</translation>
+        <source>History</source>
+        <translation>Historique</translation>
     </message>
     <message>
         <location filename="../QScintilla/Shell.py" line="298"/>
+        <source>Select entry</source>
+        <translation>Sélection d&apos;une entrée</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="299"/>
         <source>Show</source>
         <translation>Afficher</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="773"/>
+        <location filename="../QScintilla/Shell.py" line="781"/>
         <source>Select History</source>
         <translation>Historique</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="773"/>
+        <location filename="../QScintilla/Shell.py" line="781"/>
         <source>Select the history entry to execute (most recent shown last).</source>
         <translation>Sélectionner une entrée à executer (la plus récente est à la fin).</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="840"/>
+        <location filename="../QScintilla/Shell.py" line="848"/>
         <source>
 Not connected</source>
         <translation>
 Non connexté</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="319"/>
+        <location filename="../QScintilla/Shell.py" line="320"/>
         <source>Configure...</source>
         <translation>Configuration...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="303"/>
+        <location filename="../QScintilla/Shell.py" line="304"/>
         <source>Cut</source>
         <translation>Couper</translation>
     </message>
@@ -65406,27 +65406,27 @@
         <translation type="obsolete">{0} sur {1}, {2}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1033"/>
+        <location filename="../QScintilla/Shell.py" line="1041"/>
         <source>StdOut: {0}</source>
         <translation>StdOut: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1041"/>
+        <location filename="../QScintilla/Shell.py" line="1049"/>
         <source>StdErr: {0}</source>
         <translation>StdErr: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2178"/>
+        <location filename="../QScintilla/Shell.py" line="2199"/>
         <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/Shell.py" line="309"/>
+        <location filename="../QScintilla/Shell.py" line="310"/>
         <source>Find</source>
         <translation>Chercher</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="891"/>
+        <location filename="../QScintilla/Shell.py" line="899"/>
         <source>Exception &quot;{0}&quot;
 {1}
 File: {2}, Line: {3}
@@ -65437,14 +65437,14 @@
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="926"/>
+        <location filename="../QScintilla/Shell.py" line="934"/>
         <source>Unspecified syntax error.
 </source>
         <translation>Erreur de syntaxe non spécifié.
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="901"/>
+        <location filename="../QScintilla/Shell.py" line="909"/>
         <source>Exception &quot;{0}&quot;
 {1}
 </source>
@@ -65453,51 +65453,41 @@
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="928"/>
+        <location filename="../QScintilla/Shell.py" line="936"/>
         <source>Syntax error &quot;{1}&quot; in file {0} at line {2}, character {3}.
 </source>
         <translation>Erreur de syntaxe&quot;{1}&quot; dans le fichier {0} à la ligne {2}, caractère {3}.
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="951"/>
+        <location filename="../QScintilla/Shell.py" line="959"/>
         <source>Signal &quot;{0}&quot; generated in file {1} at line {2}.
 Function: {3}({4})</source>
         <translation>Signal &quot;{0}&quot; généré dans le fichier {1} à la ligne {2}.
 Fonction : {3}({4})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2035"/>
+        <location filename="../QScintilla/Shell.py" line="2056"/>
         <source>Project</source>
         <translation>Projet</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="159"/>
-        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;restart&apos; kills the shell and starts a new one. &apos;clear&apos; clears the display of the shell window. &apos;start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;envs&apos; or &apos;environments&apos; commands. The active virtual environment can be questioned by the &apos;which&apos; command. &apos;quit&apos; or &apos;exit&apos; is used to exit the application. These commands (except environments&apos;, &apos;envs&apos; and &apos;which&apos;) are available through the window menus as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="186"/>
-        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.&lt;/p&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;restart&apos; kills the shell and starts a new one. &apos;clear&apos; clears the display of the shell window. &apos;start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;envs&apos; or &apos;environments&apos; commands. The active virtual environment can be questioned by the &apos;which&apos; command. These commands (except environments&apos; and &apos;envs&apos;) are available through the context menu as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;&lt;p&gt;In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="312"/>
-        <source>Restart</source>
-        <translation>Redémarrer</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="313"/>
+        <source>Restart</source>
+        <translation>Redémarrer</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="314"/>
         <source>Restart and Clear</source>
         <translation>Redémarrer et effacer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="317"/>
+        <location filename="../QScintilla/Shell.py" line="318"/>
         <source>Active Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1850"/>
+        <location filename="../QScintilla/Shell.py" line="1867"/>
         <source>Available Virtual Environments:
 {0}
 </source>
@@ -65506,22 +65496,32 @@
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1896"/>
+        <location filename="../QScintilla/Shell.py" line="1917"/>
         <source>Current Virtual Environment: &apos;{0}&apos;
 </source>
         <translation>Environment virtuel actuel : &apos;{0}&apos;
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="845"/>
+        <location filename="../QScintilla/Shell.py" line="853"/>
         <source>{0} on {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1067"/>
+        <location filename="../QScintilla/Shell.py" line="1075"/>
         <source>&lt;{0}&gt; {1}</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="159"/>
+        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;%restart&apos; kills the shell and starts a new one. &apos;%clear&apos; clears the display of the shell window. &apos;%start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. &apos;%start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;%envs&apos; or &apos;%environments&apos; commands. The active virtual environment can be questioned by the &apos;%which&apos; command. &apos;%quit&apos; or &apos;%exit&apos; is used to exit the application. These commands (except &apos;%environments&apos;, &apos;%envs&apos; and &apos;%which&apos;) are available through the window menus as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="187"/>
+        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.&lt;/p&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;%restart&apos; kills the shell and starts a new one. &apos;%clear&apos; clears the display of the shell window. &apos;%start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. &apos;%start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;%envs&apos; or &apos;%environments&apos; commands. The active virtual environment can be questioned by the &apos;%which&apos; command. These commands (except &apos;%environments&apos; and &apos;%envs&apos;) are available through the context menu as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;&lt;p&gt;In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ShellHistoryDialog</name>
@@ -66395,62 +66395,62 @@
 <context>
     <name>ShortcutsDialog</name>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="131"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="132"/>
         <source>Project</source>
         <translation>Projet</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="135"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="136"/>
         <source>General</source>
         <translation>Général</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="145"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="146"/>
         <source>Debug</source>
         <translation>Débogueur</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="139"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="140"/>
         <source>Wizards</source>
         <translation>Assistants</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="149"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="150"/>
         <source>Edit</source>
         <translation>Édition</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="153"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="154"/>
         <source>File</source>
         <translation>Fichier</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="157"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="158"/>
         <source>Search</source>
         <translation>Rechercher</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="161"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="162"/>
         <source>View</source>
         <translation>Affichage</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="165"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="166"/>
         <source>Macro</source>
         <translation>Macro</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="169"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="170"/>
         <source>Bookmarks</source>
         <translation>Signets</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="181"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="182"/>
         <source>Window</source>
         <translation>Fenêtre</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="364"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="365"/>
         <source>Edit shortcuts</source>
         <translation>Edition de raccourcis</translation>
     </message>
@@ -66522,22 +66522,22 @@
         <translation>Sélectionner pour appliquer le filtre sur les raccourcis ou les raccourcis alternatifs</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="174"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="175"/>
         <source>Spelling</source>
         <translation>Orthographe</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="327"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="328"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has already been allocated to the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="347"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="348"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; hides the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="364"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="365"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is hidden by the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -66547,7 +66547,7 @@
         <translation type="obsolete">Navigateur web eric6</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="197"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="198"/>
         <source>eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
@@ -66651,32 +66651,32 @@
         <translation>&lt;b&gt;Aperçu&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="263"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="264"/>
         <source>Preview not available.</source>
         <translation>Aperçu non disponible.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="290"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="291"/>
         <source>Copy Image Location to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="293"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="294"/>
         <source>Copy Image Name to Clipboard</source>
         <translation>Copier le nom d&apos;image dans le presse papier</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="357"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="358"/>
         <source>Save Image</source>
         <translation>Enregistrer l&apos;image</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="346"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="347"/>
         <source>All Files (*)</source>
         <translation>Tous les fichiers (*)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="357"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="358"/>
         <source>&lt;p&gt;Cannot write to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Ne peut écrire sur le fichier &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
@@ -66686,12 +66686,12 @@
         <translation type="obsolete">Nom:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="276"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="277"/>
         <source>Loading...</source>
         <translation>Chargement en cours...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="334"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="335"/>
         <source>&lt;p&gt;This preview is not available.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Cette aperçu n&apos;est pas disponible.&lt;/p&gt;</translation>
     </message>
@@ -66729,62 +66729,62 @@
         <translation>&lt;b&gt;Site {0}&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="68"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="70"/>
         <source>Your connection to this site is &lt;b&gt;secure&lt;/b&gt;.</source>
         <translation>Votre connection au site est &lt;b&gt;securisée&lt;/b&gt;.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="73"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="75"/>
         <source>Your connection to this site is &lt;b&gt;not secure&lt;/b&gt;.</source>
         <translation>Votre connection au site est &lt;b&gt;non sécurisée&lt;/b&gt;.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="88"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="90"/>
         <source>This is your &lt;b&gt;{0}.&lt;/b&gt; visit of this site.</source>
         <translation>Ceci est votre &lt;b&gt;{0}.&lt;/b&gt; visite de ce site.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="94"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="96"/>
         <source>You have &lt;b&gt;never&lt;/b&gt; visited this site before.</source>
         <translation>Vous n&apos;avez &lt;b&gt;jamais&lt;/b&gt; visité ce site auparavant.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="103"/>
-        <source>first</source>
-        <translation>première</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="105"/>
-        <source>second</source>
-        <translation>deuxième</translation>
+        <source>first</source>
+        <translation>première</translation>
     </message>
     <message>
         <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="107"/>
+        <source>second</source>
+        <translation>deuxième</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="109"/>
         <source>third</source>
         <translation>troisième</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="108"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="110"/>
         <source>This is your &lt;b&gt;{0}&lt;/b&gt; visit of this site.</source>
         <translation>Ceci est votre &lt;b&gt;{0}&lt;/b&gt; visite de ce site.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="129"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="131"/>
         <source>Register as &lt;b&gt;{0}&lt;/b&gt; links handler.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="136"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="138"/>
         <source>Register</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="153"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="156"/>
         <source>More...</source>
         <translation>Plus...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="62"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="64"/>
         <source>Your connection to this site &lt;b&gt;may not be secure&lt;/b&gt;.</source>
         <translation>Votre connection à ce site &lt;b&gt;peut ne pas être sécurisée&lt;/b&gt;.</translation>
     </message>
@@ -66922,17 +66922,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="252"/>
+        <location filename="../Snapshot/SnapWidget.py" line="253"/>
         <source>Save Snapshot</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="231"/>
+        <location filename="../Snapshot/SnapWidget.py" line="232"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="252"/>
+        <location filename="../Snapshot/SnapWidget.py" line="253"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation>Ne peut écrire le fichier &apos;{0}:
@@ -66979,7 +66979,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="389"/>
+        <location filename="../Snapshot/SnapWidget.py" line="390"/>
         <source>The application contains an unsaved snapshot.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -66994,7 +66994,7 @@
         <translation>Copier A&amp;perçu</translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="355"/>
+        <location filename="../Snapshot/SnapWidget.py" line="356"/>
         <source>Preview of the snapshot image ({0} x {1})</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67034,7 +67034,7 @@
         <translation>Sélectionner la fenêtre</translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="419"/>
+        <location filename="../Snapshot/SnapWidget.py" line="420"/>
         <source>eric Snapshot</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67042,7 +67042,7 @@
 <context>
     <name>SnapshotFreehandGrabber</name>
     <message>
-        <location filename="../Snapshot/SnapshotFreehandGrabber.py" line="72"/>
+        <location filename="../Snapshot/SnapshotFreehandGrabber.py" line="76"/>
         <source>Select a region using the mouse. To take the snapshot, press the Enter key or double click. Press Esc to quit.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67050,7 +67050,7 @@
 <context>
     <name>SnapshotRegionGrabber</name>
     <message>
-        <location filename="../Snapshot/SnapshotRegionGrabber.py" line="104"/>
+        <location filename="../Snapshot/SnapshotRegionGrabber.py" line="107"/>
         <source>Select a region using the mouse. To take the snapshot, press the Enter key or double click. Press Esc to quit.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67058,7 +67058,7 @@
 <context>
     <name>SnapshotTimer</name>
     <message numerus="yes">
-        <location filename="../Snapshot/SnapshotTimer.py" line="104"/>
+        <location filename="../Snapshot/SnapshotTimer.py" line="110"/>
         <source>Snapshot will be taken in %n seconds</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -67180,27 +67180,27 @@
 <context>
     <name>SpeedDial</name>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="401"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="402"/>
         <source>Unable to load</source>
         <translation>Incapable de charger</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="207"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="208"/>
         <source>Saving Speed Dial data</source>
         <translation>Enregistrement des données de numérotation rapide</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="207"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="208"/>
         <source>&lt;p&gt;Speed Dial data could not be saved to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;Les données de numérotation rapide n&apos;ont pas pu être enregistrées &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="220"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="221"/>
         <source>Reset Speed Dials</source>
         <translation>Réinitialiser la numérotation automatique</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="220"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="221"/>
         <source>Are you sure you want to reset the speed dials to the default pages?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67594,22 +67594,22 @@
         <translation>Prêt</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="162"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="163"/>
         <source>Unable to open database</source>
         <translation>Incapable d&apos;ouvrir la base de données</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="304"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="307"/>
         <source>Query OK.</source>
         <translation>Requête OK.</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="162"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="163"/>
         <source>An error occurred while opening the connection.</source>
         <translation>Une erreur est apparu à l&apos;ouverture de la connexion.</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="306"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="309"/>
         <source>Query OK, number of affected rows: {0}</source>
         <translation>Requête OK, nombre de lignes affectées : {0}</translation>
     </message>
@@ -67778,62 +67778,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="52"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="53"/>
         <source>Revocation information for the certificate is not available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="55"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="56"/>
         <source>The certificate has been revoked.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="57"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="58"/>
         <source>The certificate is invalid.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="59"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="60"/>
         <source>The certificate is signed using a weak signature algorithm.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="62"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="63"/>
         <source>The host name specified in the certificate is not unique.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="65"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="66"/>
         <source>The certificate contains a weak key.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="67"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="69"/>
         <source>The certificate claimed DNS names that are in violation of name constraints.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="98"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="101"/>
         <source>No error description available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="129"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="132"/>
         <source>Remove Selected</source>
         <translation>Supprimer la sélection</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="134"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="137"/>
         <source>Remove All</source>
         <translation>Tout supprimer</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="73"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="75"/>
         <source>The certificate has a validity period that is too long.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="82"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="85"/>
         <source>Certificate Transparency was required for this connection, but the server did not provide information that complied with the policy.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67868,12 +67868,12 @@
         <translation>Répertoire de travail :</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="215"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="218"/>
         <source>Select this to erase the collected coverage information</source>
         <translation>Cocher pour effacer les informations de coverage collectées</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="218"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="221"/>
         <source>&lt;b&gt;Erase coverage information&lt;/b&gt;
 &lt;p&gt;Select this to erase the collected coverage information before the next coverage run.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Effacer les informations de coverage&lt;/b&gt;
@@ -67892,7 +67892,7 @@
 &lt;p&gt;Entrer le nom du répertoire de travail de l&apos;application à déboguer. Laisser vide pour que le répertoire de travail soit le répertoire des executables.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="151"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="154"/>
         <source>Environment Variables:</source>
         <translation>Variables d&apos;environnement :</translation>
     </message>
@@ -67902,49 +67902,49 @@
         <translation>Entrer les variables d&apos;environnement à définir.</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="165"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="168"/>
         <source>Uncheck to disable exception reporting</source>
         <translation>Décocher pour désactiver le rapport d&apos;exceptions</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="168"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="171"/>
         <source>&lt;b&gt;Report exceptions&lt;/b&gt;
 &lt;p&gt;Uncheck this in order to disable exception reporting.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rapport d&apos;exceptions&lt;/b&gt;
 &lt;p&gt;Décocher pour désactiver le rapport d&apos;exceptions.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="172"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="175"/>
         <source>Report exceptions</source>
         <translation>Rapport d&apos;exceptions</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="175"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="178"/>
         <source>Alt+E</source>
         <translation>Alt+E</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="222"/>
-        <source>Erase coverage information</source>
-        <translation>Effacer les statistiques de coverage</translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="225"/>
+        <source>Erase coverage information</source>
+        <translation>Effacer les statistiques de coverage</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="228"/>
         <source>Alt+C</source>
         <translation>Alt+C</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="185"/>
-        <source>Select to clear the display of the interpreter window</source>
-        <translation>Cocher pour effacer l&apos;affichage de l&apos;interpréteur</translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="188"/>
-        <source>&lt;b&gt;Clear interpreter window&lt;/b&gt;&lt;p&gt;This clears the display of the interpreter window before starting the debug client.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Effacer la fenêtre de l&apos;interpréteur&lt;/b&gt;&lt;p&gt;Efface l&apos;interpréteur avant de lancer le débogueur.&lt;/p&gt;</translation>
+        <source>Select to clear the display of the interpreter window</source>
+        <translation>Cocher pour effacer l&apos;affichage de l&apos;interpréteur</translation>
     </message>
     <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="191"/>
+        <source>&lt;b&gt;Clear interpreter window&lt;/b&gt;&lt;p&gt;This clears the display of the interpreter window before starting the debug client.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Effacer la fenêtre de l&apos;interpréteur&lt;/b&gt;&lt;p&gt;Efface l&apos;interpréteur avant de lancer le débogueur.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="194"/>
         <source>Clear interpreter window</source>
         <translation>Effacer l&apos;interpréteur</translation>
     </message>
@@ -67958,18 +67958,18 @@
 &lt;p&gt;Exemple: var1=1 var2=&quot;bonjour le monde&quot; var3+=&quot;:/tmp&quot;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="201"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="204"/>
         <source>Select to start the debugger in a console window</source>
         <translation>Cocher pour démarrer le débuggeur dans une console</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="204"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="207"/>
         <source>&lt;b&gt;Start in console&lt;/b&gt;
 &lt;p&gt;Select to start the debugger in a console window. The console command has to be configured on the Debugger-&amp;gt;General page&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="208"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="211"/>
         <source>Start in console</source>
         <translation>Démarrer dans une console</translation>
     </message>
@@ -67979,7 +67979,7 @@
         <translation>Sélectionner l&apos;environnement virtuel à utiliser</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="141"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="144"/>
         <source>Virtual Environment:</source>
         <translation>Environnement virtuel :</translation>
     </message>
@@ -68195,42 +68195,42 @@
 <context>
     <name>StartDialog</name>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="108"/>
+        <location filename="../Debugger/StartDialog.py" line="109"/>
         <source>Clear Histories</source>
         <translation>Effacer les historiques</translation>
     </message>
     <message>
+        <location filename="../Debugger/StartDialog.py" line="281"/>
+        <source>Edit History</source>
+        <translation>Modifier l&apos;historique</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="268"/>
+        <source>Command Line</source>
+        <translation>Ligne de commande</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="269"/>
+        <source>Working Directory</source>
+        <translation>Répertoire de travail</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="270"/>
+        <source>Environment</source>
+        <translation>Environment</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="281"/>
+        <source>Select the history list to be edited:</source>
+        <translation>Sélectionner la liste d&apos;historique à modifier :</translation>
+    </message>
+    <message>
         <location filename="../Debugger/StartDialog.py" line="279"/>
-        <source>Edit History</source>
-        <translation>Modifier l&apos;historique</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="266"/>
-        <source>Command Line</source>
-        <translation>Ligne de commande</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="267"/>
-        <source>Working Directory</source>
-        <translation>Répertoire de travail</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="268"/>
-        <source>Environment</source>
-        <translation>Environment</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="279"/>
-        <source>Select the history list to be edited:</source>
-        <translation>Sélectionner la liste d&apos;historique à modifier :</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="277"/>
         <source>No Debug Programs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="142"/>
+        <location filename="../Debugger/StartDialog.py" line="143"/>
         <source>Enter the list of programs or program patterns not to be debugged separated by &apos;{0}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -68923,12 +68923,12 @@
         <translation>Propriété supprimée.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2244"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2245"/>
         <source>Subversion Lock</source>
         <translation>Verrou Subversion</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2244"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2245"/>
         <source>Enter lock comment</source>
         <translation>Entrer un commentaire pour le verrou</translation>
     </message>
@@ -69303,32 +69303,32 @@
         <translation>Visualiseur SVG</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="91"/>
+        <location filename="../Graphics/SvgDiagram.py" line="92"/>
         <source>Close</source>
         <translation>Fermer</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="96"/>
+        <location filename="../Graphics/SvgDiagram.py" line="97"/>
         <source>Print</source>
         <translation>Imprimer</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="131"/>
+        <location filename="../Graphics/SvgDiagram.py" line="132"/>
         <source>Window</source>
         <translation>Fenêtre</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="135"/>
+        <location filename="../Graphics/SvgDiagram.py" line="136"/>
         <source>Graphics</source>
         <translation>Graphiques</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="101"/>
+        <location filename="../Graphics/SvgDiagram.py" line="102"/>
         <source>Print Preview</source>
         <translation>Aperçu avant impression</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="362"/>
+        <location filename="../Graphics/SvgDiagram.py" line="363"/>
         <source>Diagram: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -69401,12 +69401,12 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="102"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="102"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
@@ -69481,22 +69481,22 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="83"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="85"/>
         <source>Files (relative to {0}):</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="152"/>
         <source>No changelists found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
@@ -69680,7 +69680,7 @@
 <context>
     <name>SvnDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="169"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
@@ -69740,24 +69740,24 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="82"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="84"/>
         <source> (binary)</source>
         <translation> (binaire)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="169"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="75"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="77"/>
         <source>Revision {0}.
 </source>
         <translation>Révision {0}.
 </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="86"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="88"/>
         <source>{0} {1}{2}
 </source>
         <translation>{0} {1}{2}
@@ -69795,22 +69795,22 @@
 <context>
     <name>SvnDiffDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="175"/>
         <source>Subversion Diff</source>
         <translation>Subversion Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="207"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="209"/>
         <source>There is no difference.</source>
         <translation>Aucune différence.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="367"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="377"/>
         <source>Patch Files (*.diff)</source>
         <translation>Fichiers Patch (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="399"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="409"/>
         <source>Save Diff</source>
         <translation>Enregistrer Diff</translation>
     </message>
@@ -69870,44 +69870,44 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="189"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="175"/>
         <source>There is no temporary directory available.</source>
         <translation>Il n&apos;y a aucun répertoire temporaire disponible.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="189"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="399"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="409"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier patch &lt;b&gt;{0}&lt;/b&gt; ne peut être enregistrer.&lt;br&gt;Raison : {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="211"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="219"/>
         <source>Processing file &apos;{0}&apos;...
 </source>
         <translation>Traitement du fichier &apos;{0}&apos;...
 </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="384"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="394"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier patch &lt;b&gt;{0}&lt;/b&gt; existe déjà. L&apos;écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="220"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="226"/>
         <source>&lt;Start&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="221"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="227"/>
         <source>&lt;End&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -70073,12 +70073,12 @@
         <translation>Log Subversion</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="664"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="679"/>
         <source>Revision</source>
         <translation>Révision</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="661"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="676"/>
         <source>Author</source>
         <translation>Auteur</translation>
     </message>
@@ -70088,7 +70088,7 @@
         <translation>Date</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="164"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="167"/>
         <source>Message</source>
         <translation>Message</translation>
     </message>
@@ -70198,27 +70198,27 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="93"/>
         <source>Added</source>
         <translation>Ajouté</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="91"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="94"/>
         <source>Deleted</source>
         <translation>Effacer</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="92"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="95"/>
         <source>Modified</source>
         <translation>Modifié</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="519"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="535"/>
         <source>Subversion Error</source>
         <translation>Erreur Subversion</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="309"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="317"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
@@ -70263,12 +70263,12 @@
         <translation>Arrêt lors de copie/déplacement</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="309"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="317"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="93"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="96"/>
         <source>Replaced</source>
         <translation>Remplacé</translation>
     </message>
@@ -70440,7 +70440,7 @@
         <translation>&amp;Protocole:</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="129"/>
         <source>&amp;URL:</source>
         <translation>&amp;URL:</translation>
     </message>
@@ -70489,7 +70489,7 @@
         <translation>&lt;b&gt;URL&lt;/b&gt;&lt;p&gt;Entrer l&apos;URL du module. Pour un référentiel ayant une structure standard, le chemin ne doit contenir ni le tronc, ni les tags ni les branches&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="121"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="122"/>
         <source>Pat&amp;h:</source>
         <translation>&amp;Chemin :</translation>
     </message>
@@ -71375,12 +71375,12 @@
 &lt;p&gt;Affiche les erreurs possibles de la commande &quot;proplist&quot; de Subversion&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="154"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnPropListDialog.py" line="145"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnPropListDialog.py" line="152"/>
         <source>None</source>
         <translation>Aucun</translation>
     </message>
@@ -71390,7 +71390,7 @@
         <translation>Erreurs</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="154"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
@@ -71594,22 +71594,22 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="281"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="288"/>
         <source>Subversion Error</source>
         <translation>Erreur Subversion</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="267"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="204"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="208"/>
         <source>The installed version of PySvn should be 1.4.0 or better.</source>
         <translation>PySvn installé doit être de version 1.4.0 ou supérieur.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="267"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
@@ -71725,152 +71725,152 @@
 <context>
     <name>SvnStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="173"/>
         <source>normal</source>
         <translation>normal</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="158"/>
-        <source>added</source>
-        <translation>ajouté</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="160"/>
-        <source>deleted</source>
-        <translation>effacé</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="171"/>
-        <source>modified</source>
-        <translation>modifié</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="172"/>
-        <source>conflict</source>
-        <translation>conflit</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="165"/>
-        <source>unversioned</source>
-        <translation>sans version</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="166"/>
-        <source>missing</source>
-        <translation>manquant</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="167"/>
-        <source>type error</source>
-        <translation>erreur de type</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="196"/>
-        <source>no</source>
-        <translation>non</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="195"/>
-        <source>yes</source>
-        <translation>oui</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="185"/>
-        <source>external</source>
-        <translation>exterieur</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="161"/>
+        <source>added</source>
+        <translation>ajouté</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="163"/>
+        <source>deleted</source>
+        <translation>effacé</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="174"/>
+        <source>modified</source>
+        <translation>modifié</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="175"/>
+        <source>conflict</source>
+        <translation>conflit</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="168"/>
+        <source>unversioned</source>
+        <translation>sans version</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="169"/>
+        <source>missing</source>
+        <translation>manquant</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="170"/>
+        <source>type error</source>
+        <translation>erreur de type</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="199"/>
+        <source>no</source>
+        <translation>non</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="198"/>
+        <source>yes</source>
+        <translation>oui</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="188"/>
+        <source>external</source>
+        <translation>exterieur</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="164"/>
         <source>ignored</source>
         <translation>ignoré</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="400"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="406"/>
         <source>Subversion Status</source>
         <translation>Status Subversion</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="83"/>
         <source>Commit changes to repository...</source>
         <translation>Commit des changements dans le référentiel...</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="742"/>
         <source>Commit</source>
         <translation>Commit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="850"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="867"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation>Il n&apos;y a pas de modification non commitée disponible/sélectionnée.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="873"/>
-        <source>Lock</source>
-        <translation>Verrouillage</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890"/>
+        <source>Lock</source>
+        <translation>Verrouillage</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="907"/>
         <source>Unlock</source>
         <translation>Déverrouillage</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="111"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="113"/>
         <source>Break lock</source>
         <translation>Casser le verrouillage d&apos;un autre utilisateur</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="116"/>
         <source>Steal lock</source>
         <translation>Reverrouiller à son nom</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="189"/>
-        <source>locked</source>
-        <translation>verrouillé</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="190"/>
-        <source>other lock</source>
-        <translation>autre verrou</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="191"/>
-        <source>stolen lock</source>
-        <translation>verrou volé</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="192"/>
+        <source>locked</source>
+        <translation>verrouillé</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="193"/>
+        <source>other lock</source>
+        <translation>autre verrou</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="194"/>
+        <source>stolen lock</source>
+        <translation>verrou volé</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="195"/>
         <source>broken lock</source>
         <translation>verrou cassé</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="188"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="191"/>
         <source>not locked</source>
         <translation>non verrouilé</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="163"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="166"/>
         <source>replaced</source>
         <translation>remplacé</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="873"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890"/>
         <source>There are no unlocked files available/selected.</source>
         <translation>Il n&apos;y a aucun fichier déverrouilé disponible/sélectionné.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="926"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="943"/>
         <source>There are no locked files available/selected.</source>
         <translation>Il n&apos;y a aucun fichier verrouilé disponible/sélectionné.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="908"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="925"/>
         <source>Break Lock</source>
         <translation>Casser le verrouillage d&apos;un autre utilisateur</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="926"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="943"/>
         <source>Steal Lock</source>
         <translation>Voler le verrou</translation>
     </message>
@@ -71987,12 +71987,12 @@
         <translation>Cliquer pour rafraichir l&apos;affichage</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="120"/>
         <source>Adjust column sizes</source>
         <translation>Ajuster la largeur des colonnes</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="413"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
@@ -72002,27 +72002,27 @@
         <translation>Rafraichir</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="90"/>
         <source>Add to repository</source>
         <translation>Ajouter au référentiel</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="96"/>
         <source>Revert changes</source>
         <translation>Revenir avant les modifications</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="765"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="782"/>
         <source>Add</source>
         <translation>Ajouter</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="765"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="782"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation>Aucune entrée &quot;non-versionnée&quot; disponible/sélectionnée.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="811"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="828"/>
         <source>Revert</source>
         <translation>Recouvrir</translation>
     </message>
@@ -72032,27 +72032,27 @@
         <translation>Liste des modifications</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="102"/>
         <source>Add to Changelist</source>
         <translation>Ajouter à la liste des modifications</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979"/>
         <source>Remove from Changelist</source>
         <translation>Supprimer de la liste des modifications</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="943"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="960"/>
         <source>There are no files available/selected not belonging to a changelist.</source>
         <translation>Il n&apos;y a pas de fichiers disponibles ou sélectionnés n&apos;appartenant pas à une liste.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979"/>
         <source>There are no files available/selected belonging to a changelist.</source>
         <translation>Il n&apos;y a pas de fichiers disponibles ou sélectionnés appartenant à une liste.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="413"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
@@ -72117,42 +72117,42 @@
         <translation>&amp;Restorer</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="92"/>
         <source>Show differences</source>
         <translation>Montrer les différences</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="96"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="98"/>
         <source>Restore missing</source>
         <translation>Restorer les manquants</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="637"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="654"/>
         <source>all</source>
         <translation>tout</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="829"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="846"/>
         <source>Differences</source>
         <translation>Différences</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="742"/>
         <source>There are no entries selected to be committed.</source>
         <translation>Il n&apos;y a pas d&apos;entrée sélectionnée à committer.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="811"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="828"/>
         <source>There are no missing entries available/selected.</source>
         <translation>Il n&apos;y a pas d&apos;entrées manquantes disponibles/sélectionnées.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="83"/>
-        <source>Select all for commit</source>
-        <translation type="unfinished">Tout sélectionner pour comitter</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="85"/>
+        <source>Select all for commit</source>
+        <translation type="unfinished">Tout sélectionner pour comitter</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="87"/>
         <source>Deselect all from commit</source>
         <translation type="unfinished"></translation>
     </message>
@@ -72167,17 +72167,17 @@
         <translation>&amp;Diff côte à côte</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="92"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="94"/>
         <source>Show differences side-by-side</source>
         <translation>Montrer les différences côte à côte</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="857"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="874"/>
         <source>Side-by-Side Diff</source>
         <translation>Diff côte à côte</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="857"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="874"/>
         <source>Only one file with uncommitted changes must be selected.</source>
         <translation>Uniquement un fichier avec des modifications non commitées doit être sélectionné.</translation>
     </message>
@@ -72269,37 +72269,37 @@
 <context>
     <name>SvnTagBranchListDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="96"/>
         <source>Subversion Branches List</source>
         <translation>Liste des branches Subversion</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="127"/>
         <source>Subversion Error</source>
         <translation>Erreur Subversion</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="107"/>
         <source>The URL of the project repository could not be retrieved from the working copy. The list operation will be aborted</source>
         <translation>Impossible d&apos;atteindre l&apos;URL du référentiel du projet depuis la copie locale. Abandon de l&apos;opération</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="127"/>
         <source>The URL of the project repository has an invalid format. The list operation will be aborted</source>
         <translation>Le format de l&apos;URL du référentiel n&apos;est pas valide. Abandon de l&apos;opération</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="155"/>
         <source>Subversion List</source>
         <translation>Liste Subversion</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="142"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="144"/>
         <source>Enter the repository URL containing the tags or branches</source>
         <translation>Entrer l&apos;URL du référentiel avec les étiquettes ou les branches</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="155"/>
         <source>The repository URL is empty. Aborting...</source>
         <translation>L&apos;URL du référentiel est vide. Abandon...</translation>
     </message>
@@ -72388,17 +72388,17 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="172"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="160"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="162"/>
         <source>The installed version of PySvn should be 1.4.0 or better.</source>
         <translation>PySvn installé doit être de version 1.4.0 ou supérieur.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="172"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Impossible de lancer le processus {0}. Assurez-vous qu&apos;il est bien dans le chemin de recherche.</translation>
     </message>
@@ -74349,7 +74349,7 @@
         <translation>Cliquer pour afficher tous les fichiers contenant une issue</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="397"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="409"/>
         <source>No issues found.</source>
         <translation>Pas d&apos;issue trouvée.</translation>
     </message>
@@ -74374,7 +74374,7 @@
         <translation>Démarrer</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="288"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="297"/>
         <source>Error: {0}</source>
         <translation>Erreur : {0}</translation>
     </message>
@@ -74384,17 +74384,17 @@
         <translation>Fichiers %v/%m</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="274"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="283"/>
         <source>Preparing files...</source>
         <translation>Préparation des fichiers en cours...</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="98"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="101"/>
         <source>Errors</source>
         <translation>Erreurs</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="298"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="307"/>
         <source>Transferring data...</source>
         <translation>Transfert en cours des données...</translation>
     </message>
@@ -74680,72 +74680,72 @@
 <context>
     <name>TabManagerWidget</name>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="73"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="74"/>
         <source>Tab Manager</source>
         <translation>Gestionnaire d&apos;onglet</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="127"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="128"/>
         <source>Saved Tabs</source>
         <translation>Onglets enregistrés</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="171"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="172"/>
         <source>Local File System:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="173"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="174"/>
         <source>eric Web Browser:</source>
         <translation>Navigateur web eric :</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="175"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="176"/>
         <source> [FTP]:</source>
         <translation> [FTP] :</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="314"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="317"/>
         <source>Window {0}</source>
         <translation>Fenêtre {0}</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="315"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="318"/>
         <source>Double click to switch</source>
         <translation>Double clic pour basculer</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="506"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="509"/>
         <source>Group by</source>
         <translation>Grouper par</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="507"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="510"/>
         <source>&amp;Window</source>
         <translation>&amp;Fenêtre</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="512"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="515"/>
         <source>&amp;Domain</source>
         <translation>&amp;Domaine</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="517"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="520"/>
         <source>&amp;Host</source>
         <translation>&amp;Hôte</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="528"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="531"/>
         <source>&amp;Bookmark checked tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="533"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="536"/>
         <source>&amp;Close checked tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="567"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="570"/>
         <source>Show Tab Manager</source>
         <translation>Montrer le gestionnaire d&apos;onglet</translation>
     </message>
@@ -74753,42 +74753,42 @@
 <context>
     <name>TabWidget</name>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="256"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="262"/>
         <source>Close</source>
         <translation>Fermer</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="262"/>
-        <source>Close All</source>
-        <translation>Tout fermer</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="265"/>
-        <source>Save</source>
-        <translation>Enregistrer</translation>
-    </message>
-    <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="268"/>
-        <source>Save As...</source>
-        <translation>Enregistrer sous...</translation>
+        <source>Close All</source>
+        <translation>Tout fermer</translation>
     </message>
     <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="271"/>
+        <source>Save</source>
+        <translation>Enregistrer</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="274"/>
+        <source>Save As...</source>
+        <translation>Enregistrer sous...</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="277"/>
         <source>Save All</source>
         <translation>Tout enregistrer</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="279"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="285"/>
         <source>Print</source>
         <translation>Imprimer</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="243"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="249"/>
         <source>Move Left</source>
         <translation>Déplacer vers la gauche</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="246"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="252"/>
         <source>Move Right</source>
         <translation>Déplacer vers la droite</translation>
     </message>
@@ -74798,37 +74798,37 @@
         <translation type="obsolete">Ferme l&apos;éditeur courant</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="249"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="255"/>
         <source>Move First</source>
         <translation>Déplacer en premier</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="252"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="258"/>
         <source>Move Last</source>
         <translation>Déplacer en dernier</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="212"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="216"/>
         <source>Show a navigation menu</source>
         <translation>Montrer un menu de navigation</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="259"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="265"/>
         <source>Close Others</source>
         <translation>Fermer les autres</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="437"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="443"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="283"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="289"/>
         <source>Copy Path to Clipboard</source>
         <translation>Copier chemin dans le Presse-Papiers</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="275"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="281"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74948,12 +74948,12 @@
 <context>
     <name>Tabview</name>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1002"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1008"/>
         <source>Untitled {0}</source>
         <translation>SansTitre {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1406"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1412"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
@@ -75506,17 +75506,17 @@
 <context>
     <name>TemplateMultipleVariablesDialog</name>
     <message>
-        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="105"/>
+        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="106"/>
         <source>Enter Template Variables</source>
         <translation>Saisie des variables du gabarit</translation>
     </message>
     <message>
-        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="106"/>
-        <source>&amp;OK</source>
-        <translation>&amp;OK</translation>
-    </message>
-    <message>
         <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="107"/>
+        <source>&amp;OK</source>
+        <translation>&amp;OK</translation>
+    </message>
+    <message>
+        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="108"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Annuler</translation>
     </message>
@@ -76508,12 +76508,12 @@
         <translation>Liste des chemins ou fichiers à exclure de la traduction</translation>
     </message>
     <message>
-        <location filename="../Project/TranslationPropertiesDialog.py" line="148"/>
+        <location filename="../Project/TranslationPropertiesDialog.py" line="149"/>
         <source>Exempt file from translation</source>
         <translation>Exclure le fichier de la traduction</translation>
     </message>
     <message>
-        <location filename="../Project/TranslationPropertiesDialog.py" line="161"/>
+        <location filename="../Project/TranslationPropertiesDialog.py" line="162"/>
         <source>Exempt directory from translation</source>
         <translation>Exclure le répertoire de la traduction</translation>
     </message>
@@ -77978,97 +77978,97 @@
 <context>
     <name>UMLGraphicsView</name>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="78"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="79"/>
         <source>Delete shapes</source>
         <translation>Effacer les entités</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="111"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="112"/>
         <source>Set size</source>
         <translation>Redimensionnement</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="121"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="122"/>
         <source>Re-Layout</source>
         <translation>Remise en page</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="208"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="215"/>
         <source>Graphics</source>
         <translation>Graphiques</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="357"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="364"/>
         <source>Save Diagram</source>
         <translation>Enregistrer le diagramme</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="126"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="127"/>
         <source>Align Left</source>
         <translation>Aligner à gauche</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="132"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="134"/>
         <source>Align Center Horizontal</source>
         <translation>Centrer horizontalement</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="138"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="141"/>
         <source>Align Right</source>
         <translation>Aligner à droite</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="144"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="148"/>
         <source>Align Top</source>
         <translation>Aligner en haut</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="150"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="155"/>
         <source>Align Center Vertical</source>
         <translation>Centrer verticalement</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="156"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="162"/>
         <source>Align Bottom</source>
         <translation>Aligner en bas</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="330"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="337"/>
         <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source>
         <translation>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="83"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="84"/>
         <source>Increase width by {0} points</source>
         <translation>Augmenter la largeur de {0} points</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="90"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="91"/>
         <source>Increase height by {0} points</source>
         <translation>Augmenter la hauteur de {0} points</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="97"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="98"/>
         <source>Decrease width by {0} points</source>
         <translation>Réduire la largeur de {0} points</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="104"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="105"/>
         <source>Decrease height by {0} points</source>
         <translation>Réduire la largeur de {0} points</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="357"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="364"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; n&apos;a pas pu être enregistré.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="345"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="352"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt;existe déjà. Écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="116"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="117"/>
         <source>Re-Scan</source>
         <translation>Re-scanner</translation>
     </message>
@@ -78152,17 +78152,17 @@
 <context>
     <name>UnittestDialog</name>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="903"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="906"/>
         <source>Unittest</source>
         <translation>Tests unitaires</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="166"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="168"/>
         <source>^Failure: </source>
         <translation>^Echec: </translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="167"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="169"/>
         <source>^Error: </source>
         <translation>^Erreur : </translation>
     </message>
@@ -78172,12 +78172,12 @@
         <translation type="obsolete">Vous devez entrer un fichier test correct.</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="699"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="702"/>
         <source>Preparing Testsuite</source>
         <translation>Préparation de Testsuite</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="985"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="988"/>
         <source>Running</source>
         <translation>En cours d&apos;execution</translation>
     </message>
@@ -78312,12 +78312,12 @@
 Double-cliquer sur une entrée pour afficher la trace de l&apos;erreur.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="98"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="100"/>
         <source>Start the selected testsuite</source>
         <translation>Lancer la suite de tests</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="113"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="115"/>
         <source>Stop the running unittest</source>
         <translation>Stoppe le test unitest en cours</translation>
     </message>
@@ -78327,42 +78327,42 @@
         <translation>Idle</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="96"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="98"/>
         <source>Start</source>
         <translation>Lancer</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="100"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="102"/>
         <source>&lt;b&gt;Start Test&lt;/b&gt;&lt;p&gt;This button starts the selected testsuite.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Lancer les tests&lt;/b&gt;&lt;p&gt;Ce bouton lance la suite de tests sélectionnée.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="111"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="113"/>
         <source>Stop</source>
         <translation>Arrêt</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="114"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="116"/>
         <source>&lt;b&gt;Stop Test&lt;/b&gt;&lt;p&gt;This button stops a running unittest.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Stopper le test&lt;/b&gt;&lt;p&gt;Stoppe le test unittest en cours.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1158"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1161"/>
         <source>Show Source</source>
         <translation>Afficher les sources</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="304"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="306"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation>Fichiers Python (*.py);;Tous les fichiers (*)</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1029"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1032"/>
         <source>Failure: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1044"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1047"/>
         <source>Error: {0}</source>
         <translation>Erreur : {0}</translation>
     </message>
@@ -78397,32 +78397,32 @@
         <translation>Nombre de tests avec des succès inattendus</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1059"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1062"/>
         <source>    Skipped: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1077"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1080"/>
         <source>    Expected Failure</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1094"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1097"/>
         <source>    Unexpected Success</source>
         <translation>    Succès inattendus</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="103"/>
-        <source>Rerun Failed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PyUnit/UnittestDialog.py" line="105"/>
-        <source>Reruns failed tests of the selected testsuite</source>
+        <source>Rerun Failed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PyUnit/UnittestDialog.py" line="107"/>
+        <source>Reruns failed tests of the selected testsuite</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PyUnit/UnittestDialog.py" line="109"/>
         <source>&lt;b&gt;Rerun Failed&lt;/b&gt;&lt;p&gt;This button reruns all failed tests of the selected testsuite.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -78509,17 +78509,17 @@
         <translation>Résultats</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="703"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="706"/>
         <source>Unittest with auto-discovery</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="787"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="790"/>
         <source>You must enter a start directory for auto-discovery.</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../PyUnit/UnittestDialog.py" line="1009"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1012"/>
         <source>Ran %n test(s) in {0:.3f}s</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -78532,27 +78532,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="89"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="91"/>
         <source>Discover</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="91"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="93"/>
         <source>Discover tests</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="382"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="384"/>
         <source>Discovering Tests</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="447"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="449"/>
         <source>&lt;p&gt;Unable to discover tests.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../PyUnit/UnittestDialog.py" line="619"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="622"/>
         <source>Discovered %n Test(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -78560,27 +78560,27 @@
         </translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="624"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="627"/>
         <source>&lt;p&gt;Unable to discover tests.&lt;/p&gt;&lt;p&gt;{0}&lt;br/&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="690"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="693"/>
         <source>You must select auto-discovery or enter a test suite file or a dotted test name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="712"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="715"/>
         <source>&lt;Unnamed Test&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="903"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="906"/>
         <source>&lt;p&gt;Unable to run test &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;br/&gt;{2}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Incapable de lancer le test&lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;br/&gt;{2}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="93"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="95"/>
         <source>&lt;b&gt;Discover&lt;/b&gt;&lt;p&gt;This button starts a discovery of available tests.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -78605,12 +78605,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="720"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="723"/>
         <source>No test case has been selected. Shall all test cases be run?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="300"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="302"/>
         <source>Python3 Files ({0});;All Files (*)</source>
         <translation>Fichiers Python3({0});; Tous les fichiers (*)</translation>
     </message>
@@ -78723,7 +78723,7 @@
 <context>
     <name>UrlBar</name>
     <message>
-        <location filename="../WebBrowser/UrlBar/UrlBar.py" line="454"/>
+        <location filename="../WebBrowser/UrlBar/UrlBar.py" line="465"/>
         <source>Unknown</source>
         <translation type="unfinished">Inconnu</translation>
     </message>
@@ -78857,7 +78857,7 @@
         <translation>Création de l&apos;interface utilisateur...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
         <source>Log-Viewer</source>
         <translation>Fenêtre de log</translation>
     </message>
@@ -78892,237 +78892,237 @@
         <translation>Initialisation des outils...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
+        <location filename="../UI/UserInterface.py" line="1642"/>
         <source>Quit</source>
         <translation>Quitter</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
+        <location filename="../UI/UserInterface.py" line="1642"/>
         <source>&amp;Quit</source>
         <translation>&amp;Quitter</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1638"/>
+        <location filename="../UI/UserInterface.py" line="1648"/>
         <source>Quit the IDE</source>
         <translation>Quitter l&apos;IDE</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1639"/>
+        <location filename="../UI/UserInterface.py" line="1649"/>
         <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Quitter l&apos;IDE&lt;/b&gt;&lt;p&gt;Cette commande fait quitter l&apos;IDE. Toutes les modifications non-enregistrées devraient d&apos;abord être enregistrées. Tous les programmes Python débogués seront stoppés et les préférences seront écrites sur le disque.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>What&apos;s This?</source>
         <translation>Qu&apos;est-ce que c&apos;est ?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Qu&apos;est-ce que c&apos;est?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2122"/>
+        <location filename="../UI/UserInterface.py" line="2132"/>
         <source>Context sensitive help</source>
         <translation>Aide contextuelle</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2123"/>
+        <location filename="../UI/UserInterface.py" line="2133"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Affiche l&apos;aide contextuelle&lt;/b&gt;&lt;p&gt;Dans le mode &quot;Qu&apos;est-ce que c&apos;est?&quot;, la souris est affichée avec un point d&apos;interrogation, et on peut cliquer sur les éléments de  l&apos;interface pour obtenir une courte description de l&apos;élément. Cette fonction peut être obtenue avec le bouton d&apos;aide contextuelle de la barre principale.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>Helpviewer</source>
         <translation>Visionneur d&apos;aide</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>&amp;Helpviewer...</source>
         <translation>Visionneur d&apos;&amp;aide...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2140"/>
+        <location filename="../UI/UserInterface.py" line="2150"/>
         <source>Open the helpviewer window</source>
         <translation>Ouvre le visualiseur d&apos;aide</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2160"/>
+        <location filename="../UI/UserInterface.py" line="2170"/>
         <source>Show Versions</source>
         <translation>Afficher les versions</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2160"/>
+        <location filename="../UI/UserInterface.py" line="2170"/>
         <source>Show &amp;Versions</source>
         <translation>Afficher les &amp;versions</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2164"/>
+        <location filename="../UI/UserInterface.py" line="2174"/>
         <source>Display version information</source>
         <translation>Affiche les informations sur les versions</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2166"/>
+        <location filename="../UI/UserInterface.py" line="2176"/>
         <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Afficher les versions&lt;/b&gt;&lt;p&gt;Affiche les informations sur les versions.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3818"/>
+        <location filename="../UI/UserInterface.py" line="3828"/>
         <source>Report Bug</source>
         <translation>Rapport de bogue</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2225"/>
+        <location filename="../UI/UserInterface.py" line="2235"/>
         <source>Report &amp;Bug...</source>
         <translation>Rapport de &amp;bogue...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2229"/>
+        <location filename="../UI/UserInterface.py" line="2239"/>
         <source>Report a bug</source>
         <translation>Envoyer un rapport de bogue</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2230"/>
+        <location filename="../UI/UserInterface.py" line="2240"/>
         <source>&lt;b&gt;Report Bug...&lt;/b&gt;&lt;p&gt;Opens a dialog to report a bug.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rapport de bogue...&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre pour envoyer un rapport de bogue.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3361"/>
+        <location filename="../UI/UserInterface.py" line="3371"/>
         <source>Unittest</source>
         <translation>Tests unitaires</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2252"/>
+        <location filename="../UI/UserInterface.py" line="2262"/>
         <source>&amp;Unittest...</source>
         <translation>&amp;Tests unitaires...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2257"/>
+        <location filename="../UI/UserInterface.py" line="2267"/>
         <source>Start unittest dialog</source>
         <translation>Ouvre la fenêtre Unitest</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2517"/>
+        <location filename="../UI/UserInterface.py" line="2527"/>
         <source>Preferences</source>
         <translation>Préférences</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2517"/>
+        <location filename="../UI/UserInterface.py" line="2527"/>
         <source>&amp;Preferences...</source>
         <translation>&amp;Préférences...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2522"/>
+        <location filename="../UI/UserInterface.py" line="2532"/>
         <source>Set the prefered configuration</source>
         <translation>Édition des préférences</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2524"/>
+        <location filename="../UI/UserInterface.py" line="2534"/>
         <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Préférences&lt;/b&gt;&lt;p&gt;Edite les valeurs souhaitées pour la configuration du logiciel.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2622"/>
+        <location filename="../UI/UserInterface.py" line="2632"/>
         <source>Keyboard Shortcuts</source>
         <translation>Raccourcis clavier</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2622"/>
+        <location filename="../UI/UserInterface.py" line="2632"/>
         <source>Keyboard &amp;Shortcuts...</source>
         <translation>&amp;Raccourcis claviers...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2627"/>
-        <source>Set the keyboard shortcuts</source>
-        <translation>Définition des raccourcis clavier</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2629"/>
-        <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Raccourcis claviers&lt;/b&gt;&lt;p&gt;Edite les raccourcis claviers pour l&apos;application.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6313"/>
-        <source>Export Keyboard Shortcuts</source>
-        <translation>Exporter les raccourcis clavier</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2637"/>
+        <source>Set the keyboard shortcuts</source>
+        <translation>Définition des raccourcis clavier</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2639"/>
+        <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Raccourcis claviers&lt;/b&gt;&lt;p&gt;Edite les raccourcis claviers pour l&apos;application.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6333"/>
+        <source>Export Keyboard Shortcuts</source>
+        <translation>Exporter les raccourcis clavier</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2647"/>
         <source>&amp;Export Keyboard Shortcuts...</source>
         <translation>&amp;Exporter les raccourcis claviers...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2642"/>
+        <location filename="../UI/UserInterface.py" line="2652"/>
         <source>Export the keyboard shortcuts</source>
         <translation>Exporte les raccourcis claviers</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2644"/>
+        <location filename="../UI/UserInterface.py" line="2654"/>
         <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Exporter les raccourcis clavier&lt;/b&gt;&lt;p&gt;Exporte les raccourcis claviers de l&apos;application.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6329"/>
+        <location filename="../UI/UserInterface.py" line="6349"/>
         <source>Import Keyboard Shortcuts</source>
         <translation>Importer des raccourcis clavier</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2651"/>
+        <location filename="../UI/UserInterface.py" line="2661"/>
         <source>&amp;Import Keyboard Shortcuts...</source>
         <translation>&amp;Importer des raccourcis clavier...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2656"/>
+        <location filename="../UI/UserInterface.py" line="2666"/>
         <source>Import the keyboard shortcuts</source>
         <translation>Importe des raccourcis clavier</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2658"/>
+        <location filename="../UI/UserInterface.py" line="2668"/>
         <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Importer des raccourcis clavier&lt;/b&gt;&lt;p&gt;Importe des raccourcis claviers de l&apos;application.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3098"/>
+        <location filename="../UI/UserInterface.py" line="3108"/>
         <source>E&amp;xtras</source>
         <translation>E&amp;xtras</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3212"/>
+        <location filename="../UI/UserInterface.py" line="3222"/>
         <source>&amp;Window</source>
         <translation>&amp;Fenêtre</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3287"/>
+        <location filename="../UI/UserInterface.py" line="3297"/>
         <source>&amp;Help</source>
         <translation>A&amp;ide</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3360"/>
+        <location filename="../UI/UserInterface.py" line="3370"/>
         <source>Tools</source>
         <translation>Outils</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5220"/>
+        <location filename="../UI/UserInterface.py" line="5237"/>
         <source>Help</source>
         <translation>Aide</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3362"/>
+        <location filename="../UI/UserInterface.py" line="3372"/>
         <source>Settings</source>
         <translation>Configuration</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3273"/>
+        <location filename="../UI/UserInterface.py" line="3283"/>
         <source>&amp;Toolbars</source>
         <translation>&amp;Barres d&apos;Outils</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5348"/>
+        <location filename="../UI/UserInterface.py" line="5365"/>
         <source>Problem</source>
         <translation>Problème</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5543"/>
+        <location filename="../UI/UserInterface.py" line="5560"/>
         <source>Process Generation Error</source>
         <translation>Erreur du processus</translation>
     </message>
@@ -79132,103 +79132,103 @@
         <translation>Initialisation du serveur d&apos;application...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2258"/>
+        <location filename="../UI/UserInterface.py" line="2268"/>
         <source>&lt;b&gt;Unittest&lt;/b&gt;&lt;p&gt;Perform unit tests. The dialog gives you the ability to select and run a unittest suite.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tests unitaires&lt;/b&gt;&lt;p&gt;Effectue les tests d&apos;unitaires. Cette fenêtre permet de sélectionner et de lancer une suite de tests unitaires.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2266"/>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>Unittest Restart</source>
         <translation>Relancer les tests unitaires</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2266"/>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>&amp;Restart Unittest...</source>
         <translation>&amp;Relancer les tests unitaires...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2271"/>
+        <location filename="../UI/UserInterface.py" line="2281"/>
         <source>Restart last unittest</source>
         <translation>Relancer le dernier test unitaire</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2272"/>
+        <location filename="../UI/UserInterface.py" line="2282"/>
         <source>&lt;b&gt;Restart Unittest&lt;/b&gt;&lt;p&gt;Restart the unittest performed last.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Relancer le dernier test unitaire&lt;/b&gt;
 &lt;p&gt;Relance le dernier test unitaire effectué.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2296"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Unittest Script</source>
         <translation>Script de tests unitaires</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2296"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Unittest &amp;Script...</source>
         <translation>&amp;Script de tests unitaires...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2301"/>
-        <source>Run unittest with current script</source>
-        <translation>Lance les tests unitaires sur le script courant</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2303"/>
-        <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Script de tests unitaires&lt;/b&gt;&lt;p&gt;Lance les tests unitaires sur le script en cours.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2311"/>
+        <source>Run unittest with current script</source>
+        <translation>Lance les tests unitaires sur le script courant</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2313"/>
+        <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Script de tests unitaires&lt;/b&gt;&lt;p&gt;Lance les tests unitaires sur le script en cours.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2321"/>
         <source>Unittest Project</source>
         <translation>Projet de tests unitaires</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2311"/>
+        <location filename="../UI/UserInterface.py" line="2321"/>
         <source>Unittest &amp;Project...</source>
         <translation>&amp;Projet de tests unitaires...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2316"/>
+        <location filename="../UI/UserInterface.py" line="2326"/>
         <source>Run unittest with current project</source>
         <translation>Lance les tests unitaires sur le projet courant</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2318"/>
+        <location filename="../UI/UserInterface.py" line="2328"/>
         <source>&lt;b&gt;Unittest Project&lt;/b&gt;&lt;p&gt;Run unittest with current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Projet de tests unitaires&lt;/b&gt;&lt;p&gt;Lance les tests unitaires sur le projet en cours.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2406"/>
+        <location filename="../UI/UserInterface.py" line="2416"/>
         <source>Compare Files</source>
         <translation>Comparaison de fichiers</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2406"/>
+        <location filename="../UI/UserInterface.py" line="2416"/>
         <source>&amp;Compare Files...</source>
         <translation>&amp;Comparaison de fichiers...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2424"/>
+        <location filename="../UI/UserInterface.py" line="2434"/>
         <source>Compare two files</source>
         <translation>Compare deux fichiers</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2412"/>
+        <location filename="../UI/UserInterface.py" line="2422"/>
         <source>&lt;b&gt;Compare Files&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Comparaison de Fichiers&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre pour comparer deux fichiers.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2419"/>
+        <location filename="../UI/UserInterface.py" line="2429"/>
         <source>Compare Files side by side</source>
         <translation>Comparaison de fichiers côte à côte</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2425"/>
+        <location filename="../UI/UserInterface.py" line="2435"/>
         <source>&lt;b&gt;Compare Files side by side&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files and show the result side by side.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Comparaison de fichiers côte à côte&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre pour comparer deux fichiers et affiche les différences côte à côte.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3154"/>
+        <location filename="../UI/UserInterface.py" line="3164"/>
         <source>&amp;Unittest</source>
         <translation>Tests &amp;unitaires</translation>
     </message>
@@ -79238,137 +79238,137 @@
         <translation type="obsolete">Il n&apos;y a pas de script principal défini dans le projet en cours. Abandon</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6897"/>
+        <location filename="../UI/UserInterface.py" line="6917"/>
         <source>Drop Error</source>
         <translation>Erreur de suppression</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
+        <location filename="../UI/UserInterface.py" line="1824"/>
         <source>File-Browser</source>
         <translation>Navigateur de fichiers</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1710"/>
+        <location filename="../UI/UserInterface.py" line="1720"/>
         <source>Edit Profile</source>
         <translation>Profil d&apos;Edition</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1716"/>
+        <location filename="../UI/UserInterface.py" line="1726"/>
         <source>Activate the edit view profile</source>
         <translation>Active la fenêtre d&apos;édition des profils Edition/Débogage</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1718"/>
+        <location filename="../UI/UserInterface.py" line="1728"/>
         <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Edition des profils&lt;/b&gt;&lt;p&gt;Active la fenêtre d&apos;édition des profils Edition/Débogage. On peut y configurer les différentes fenêtres devant apparaitre en mode Edition ou Débogage.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1727"/>
+        <location filename="../UI/UserInterface.py" line="1737"/>
         <source>Debug Profile</source>
         <translation>Profil Débogage</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1733"/>
+        <location filename="../UI/UserInterface.py" line="1743"/>
         <source>Activate the debug view profile</source>
         <translation>Active le profil Débogage</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1735"/>
+        <location filename="../UI/UserInterface.py" line="1745"/>
         <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Profil Debogage&lt;/b&gt;&lt;p&gt;Active le profil Bébogage. La fenêtre affichée dans ce mode peut être configurée avec la fenêtre &quot;Edition des profils&quot;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2590"/>
+        <location filename="../UI/UserInterface.py" line="2600"/>
         <source>View Profiles</source>
         <translation>Profils de visualisation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2590"/>
+        <location filename="../UI/UserInterface.py" line="2600"/>
         <source>&amp;View Profiles...</source>
         <translation>Profils de &amp;Visualisation...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2595"/>
+        <location filename="../UI/UserInterface.py" line="2605"/>
         <source>Configure view profiles</source>
         <translation>Configuration des profils de visualisation</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2597"/>
+        <location filename="../UI/UserInterface.py" line="2607"/>
         <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Profils de Visualisation&lt;/b&gt;&lt;p&gt;Configure les modes de visualisation de l&apos;éditeur  (modes Edition/Débogage). Avec cet fenêtre de configuration, on peut sélectionner les sous-fenêtres actives par défaut pour chacun des mode de visualisation.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2379"/>
+        <location filename="../UI/UserInterface.py" line="2389"/>
         <source>UI Previewer</source>
         <translation>Visionneur d&apos;UI</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2379"/>
+        <location filename="../UI/UserInterface.py" line="2389"/>
         <source>&amp;UI Previewer...</source>
         <translation>Visionneur d&apos;&amp;UI...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2384"/>
+        <location filename="../UI/UserInterface.py" line="2394"/>
         <source>Start the UI Previewer</source>
         <translation>Démarre le Visionneur d&apos;UI</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2385"/>
+        <location filename="../UI/UserInterface.py" line="2395"/>
         <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Visulaiseur d&apos;UI&lt;/b&gt;&lt;p&gt;Démarre le visualiseur d&apos;UI.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2392"/>
+        <location filename="../UI/UserInterface.py" line="2402"/>
         <source>Translations Previewer</source>
         <translation>Visionneur de traductions</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2392"/>
+        <location filename="../UI/UserInterface.py" line="2402"/>
         <source>&amp;Translations Previewer...</source>
         <translation>Visionneur de &amp;Traductions...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2397"/>
+        <location filename="../UI/UserInterface.py" line="2407"/>
         <source>Start the Translations Previewer</source>
         <translation>Démarre le visionneur de traductions</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2399"/>
+        <location filename="../UI/UserInterface.py" line="2409"/>
         <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Visionneur de traductions&lt;/b&gt;&lt;p&gt;Démarre le visionneur de traductions.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>Shell</source>
         <translation>Shell</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>&amp;Shell</source>
         <translation>&amp;Shell</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2561"/>
+        <location filename="../UI/UserInterface.py" line="2571"/>
         <source>Reload APIs</source>
         <translation>Recharger les APIs</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2561"/>
+        <location filename="../UI/UserInterface.py" line="2571"/>
         <source>Reload &amp;APIs</source>
         <translation>Recharger les &amp;APIs</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2565"/>
+        <location filename="../UI/UserInterface.py" line="2575"/>
         <source>Reload the API information</source>
         <translation>Recharger les informations des API</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2567"/>
+        <location filename="../UI/UserInterface.py" line="2577"/>
         <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Recharger les APIs&lt;/b&gt;&lt;p&gt;Recharger les informations des API.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1849"/>
+        <location filename="../UI/UserInterface.py" line="1859"/>
         <source>Task-Viewer</source>
         <translation>Visualisueur de tâches</translation>
     </message>
@@ -79383,77 +79383,77 @@
         <translation type="obsolete">Lecture des tâches</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5220"/>
+        <location filename="../UI/UserInterface.py" line="5237"/>
         <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
         <translation>Aucun visualiseur personalisé n&apos;est sélectionné. Prière d&apos;en spécifier un dans les préférences.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5883"/>
+        <location filename="../UI/UserInterface.py" line="5900"/>
         <source>Documentation Missing</source>
         <translation>Documentation Manquante</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3818"/>
+        <location filename="../UI/UserInterface.py" line="3828"/>
         <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
         <translation>L&apos;adresse mail ou l&apos;adresse du serveur mail est vide. Veuillez configurer vos paramètres mails dans la fenêtre des Préférences.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
+        <location filename="../UI/UserInterface.py" line="1878"/>
         <source>Template-Viewer</source>
         <translation>Gestionnaire de gabarits</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
+        <location filename="../UI/UserInterface.py" line="1754"/>
         <source>Alt+Shift+P</source>
         <translation>Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
+        <location filename="../UI/UserInterface.py" line="1789"/>
         <source>Alt+Shift+D</source>
         <translation>Alt+Shift+D</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>Alt+Shift+S</source>
         <translation>Alt+Shift+S</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
+        <location filename="../UI/UserInterface.py" line="1824"/>
         <source>Alt+Shift+F</source>
         <translation>Alt+Shift+F</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1849"/>
+        <location filename="../UI/UserInterface.py" line="1859"/>
         <source>Alt+Shift+T</source>
         <translation>Alt+Shift+T</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
+        <location filename="../UI/UserInterface.py" line="1771"/>
         <source>Alt+Shift+M</source>
         <translation>Alt+Shift+M</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2716"/>
-        <source>Activate current editor</source>
-        <translation>Activer l&apos;éditeur courant</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2716"/>
-        <source>Alt+Shift+E</source>
-        <translation>Alt+Shift+E</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2726"/>
+        <source>Activate current editor</source>
+        <translation>Activer l&apos;éditeur courant</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2726"/>
+        <source>Alt+Shift+E</source>
+        <translation>Alt+Shift+E</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2736"/>
         <source>Ctrl+Alt+Tab</source>
         <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2735"/>
+        <location filename="../UI/UserInterface.py" line="2745"/>
         <source>Shift+Ctrl+Alt+Tab</source>
         <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
         <source>Alt+Shift+G</source>
         <translation>Alt+Shift+G</translation>
     </message>
@@ -79473,7 +79473,7 @@
         <translation type="obsolete">Lance la Documentation Qt4</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2949"/>
+        <location filename="../UI/UserInterface.py" line="2959"/>
         <source>Eric API Documentation</source>
         <translation>Documentation pour les API Eric</translation>
     </message>
@@ -79483,12 +79483,12 @@
         <translation type="obsolete">Documentation pour les API &amp;Eric</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2953"/>
+        <location filename="../UI/UserInterface.py" line="2963"/>
         <source>Open Eric API Documentation</source>
         <translation>Ouvre la documentation sur les APIs Eric</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5254"/>
+        <location filename="../UI/UserInterface.py" line="5271"/>
         <source>&lt;p&gt;Could not start the help viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Impossible de démarrer le visualiseur d&apos;aide.&lt;br&gt;Assurez-vous qu&apos;il est bien ici &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
@@ -79498,43 +79498,43 @@
         <translation>Enregistrement des objets...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
+        <location filename="../UI/UserInterface.py" line="1754"/>
         <source>Project-Viewer</source>
         <translation>Gestionnaire de projet</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
+        <location filename="../UI/UserInterface.py" line="1789"/>
         <source>Debug-Viewer</source>
         <translation>Gestionnaire de débogage</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
+        <location filename="../UI/UserInterface.py" line="1642"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
+        <location filename="../UI/UserInterface.py" line="1754"/>
         <source>&amp;Project-Viewer</source>
         <translation>Gestionnaire de &amp;projet</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>Shift+F1</source>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>F1</source>
         <translation>F1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2176"/>
+        <location filename="../UI/UserInterface.py" line="2186"/>
         <source>Check for Updates</source>
         <translation>Rechercher des mises à jour</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2173"/>
+        <location filename="../UI/UserInterface.py" line="2183"/>
         <source>Check for &amp;Updates...</source>
         <translation>Rechercher des &amp;mises à jour...</translation>
     </message>
@@ -79549,27 +79549,27 @@
         <translation type="obsolete">Lance la documentation PyQt4</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3171"/>
+        <location filename="../UI/UserInterface.py" line="3181"/>
         <source>Select Tool Group</source>
         <translation>Sélection d&apos;un groupe d&apos;outils</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3182"/>
+        <location filename="../UI/UserInterface.py" line="3192"/>
         <source>Se&amp;ttings</source>
         <translation>&amp;Configuration</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3364"/>
+        <location filename="../UI/UserInterface.py" line="3374"/>
         <source>Profiles</source>
         <translation>Profils</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4174"/>
+        <location filename="../UI/UserInterface.py" line="4184"/>
         <source>&amp;Builtin Tools</source>
         <translation>Outils &amp;internes</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5866"/>
+        <location filename="../UI/UserInterface.py" line="5883"/>
         <source>Documentation</source>
         <translation>Documentation</translation>
     </message>
@@ -79579,12 +79579,12 @@
         <translation type="obsolete">&lt;p&gt;L&apos;emplacement de la documentation PyQt4 n&apos;a pas été configuré.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7240"/>
+        <location filename="../UI/UserInterface.py" line="7261"/>
         <source>Error during updates check</source>
         <translation>Erreur durant la recherche de mises à jour</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7221"/>
+        <location filename="../UI/UserInterface.py" line="7242"/>
         <source>Update available</source>
         <translation>Mise à jour disponible</translation>
     </message>
@@ -79594,52 +79594,52 @@
         <translation type="obsolete">&lt;h3&gt;Numéros de version&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7279"/>
+        <location filename="../UI/UserInterface.py" line="7300"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6086"/>
+        <location filename="../UI/UserInterface.py" line="6103"/>
         <source>Open Browser</source>
         <translation>Ouverture du navigateur</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6086"/>
+        <location filename="../UI/UserInterface.py" line="6103"/>
         <source>Could not start a web browser</source>
         <translation>Impossible de lancer le navigateur web</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4219"/>
+        <location filename="../UI/UserInterface.py" line="4229"/>
         <source>Configure Tool Groups ...</source>
         <translation>Configuration des groupes d&apos;outils...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4223"/>
+        <location filename="../UI/UserInterface.py" line="4233"/>
         <source>Configure current Tool Group ...</source>
         <translation>Configuration du groupe d&apos;outils courant...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2579"/>
+        <location filename="../UI/UserInterface.py" line="2589"/>
         <source>Show external tools</source>
         <translation>Afficher les outils externes</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2574"/>
+        <location filename="../UI/UserInterface.py" line="2584"/>
         <source>Show external &amp;tools</source>
         <translation>Afficher les &amp;outils externes</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7062"/>
+        <location filename="../UI/UserInterface.py" line="7082"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Annuler</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7240"/>
+        <location filename="../UI/UserInterface.py" line="7261"/>
         <source>Could not perform updates check.</source>
         <translation>Impossible de vérifier les mises à jour.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7316"/>
+        <location filename="../UI/UserInterface.py" line="7337"/>
         <source>First time usage</source>
         <translation>Première utilisation</translation>
     </message>
@@ -79649,52 +79649,52 @@
         <translation>Initialisation du gestionnaire de plugins...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3135"/>
+        <location filename="../UI/UserInterface.py" line="3145"/>
         <source>P&amp;lugins</source>
         <translation>P&amp;lugins</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3365"/>
+        <location filename="../UI/UserInterface.py" line="3375"/>
         <source>Plugins</source>
         <translation>Plugins</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2753"/>
+        <location filename="../UI/UserInterface.py" line="2763"/>
         <source>Plugin Infos</source>
         <translation>Infos Plugins</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2757"/>
+        <location filename="../UI/UserInterface.py" line="2767"/>
         <source>Show Plugin Infos</source>
         <translation>Affiche les infos sur les plugins</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2758"/>
+        <location filename="../UI/UserInterface.py" line="2768"/>
         <source>&lt;b&gt;Plugin Infos...&lt;/b&gt;&lt;p&gt;This opens a dialog, that show some information about loaded plugins.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Infos Plugins...&lt;/b&gt;&lt;p&gt;Affiche une fenêtre donnant des informations sur les plugins chargés.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2753"/>
+        <location filename="../UI/UserInterface.py" line="2763"/>
         <source>&amp;Plugin Infos...</source>
         <translation>Infos &amp;Plugins...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4191"/>
+        <location filename="../UI/UserInterface.py" line="4201"/>
         <source>&amp;Plugin Tools</source>
         <translation>Outils &amp;plugins</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2784"/>
+        <location filename="../UI/UserInterface.py" line="2794"/>
         <source>Uninstall Plugin</source>
         <translation>Désinstaller un plugin</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2779"/>
+        <location filename="../UI/UserInterface.py" line="2789"/>
         <source>&amp;Uninstall Plugin...</source>
         <translation>&amp;Désinstaller un plugin...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2785"/>
+        <location filename="../UI/UserInterface.py" line="2795"/>
         <source>&lt;b&gt;Uninstall Plugin...&lt;/b&gt;&lt;p&gt;This opens a dialog to uninstall a plugin.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Désinstaller un plugin...&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre pour désinstaller un plugin.&lt;/p&gt;</translation>
     </message>
@@ -79704,107 +79704,107 @@
         <translation>Activation des plugins...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3108"/>
+        <location filename="../UI/UserInterface.py" line="3118"/>
         <source>Wi&amp;zards</source>
         <translation>As&amp;sistants</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4340"/>
+        <location filename="../UI/UserInterface.py" line="4350"/>
         <source>&amp;Show all</source>
         <translation>Tout &amp;afficher</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4342"/>
+        <location filename="../UI/UserInterface.py" line="4352"/>
         <source>&amp;Hide all</source>
         <translation>Tout &amp;masquer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2184"/>
+        <location filename="../UI/UserInterface.py" line="2194"/>
         <source>Show downloadable versions</source>
         <translation>Afficher les versions téléchargeables</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2184"/>
+        <location filename="../UI/UserInterface.py" line="2194"/>
         <source>Show &amp;downloadable versions...</source>
         <translation>Afficher les versions &amp;téléchargeables...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2188"/>
+        <location filename="../UI/UserInterface.py" line="2198"/>
         <source>Show the versions available for download</source>
         <translation>Affiche les versions disponibles pour le téléchargement</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7264"/>
+        <location filename="../UI/UserInterface.py" line="7285"/>
         <source>&lt;h3&gt;Available versions&lt;/h3&gt;&lt;table&gt;</source>
         <translation>&lt;h3&gt;Versions disponibles&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2792"/>
+        <location filename="../UI/UserInterface.py" line="2802"/>
         <source>Plugin Repository</source>
         <translation>Référentiel de plugins</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2792"/>
+        <location filename="../UI/UserInterface.py" line="2802"/>
         <source>Plugin &amp;Repository...</source>
         <translation>&amp;Référentiel de plugins...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2797"/>
+        <location filename="../UI/UserInterface.py" line="2807"/>
         <source>Show Plugins available for download</source>
         <translation>Affiche les plugins disponibles au téléchargement</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2799"/>
+        <location filename="../UI/UserInterface.py" line="2809"/>
         <source>&lt;b&gt;Plugin Repository...&lt;/b&gt;&lt;p&gt;This opens a dialog, that shows a list of plugins available on the Internet.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Référentiel de plugins...&lt;/b&gt;&lt;p&gt;Affiche une fenêtre donnant la liste des plugins disponibles sur internet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2771"/>
+        <location filename="../UI/UserInterface.py" line="2781"/>
         <source>Install Plugins</source>
         <translation>Installation de plugins</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2766"/>
+        <location filename="../UI/UserInterface.py" line="2776"/>
         <source>&amp;Install Plugins...</source>
         <translation>&amp;Installation de plugins...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2772"/>
+        <location filename="../UI/UserInterface.py" line="2782"/>
         <source>&lt;b&gt;Install Plugins...&lt;/b&gt;&lt;p&gt;This opens a dialog to install or update plugins.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Installation de plugins...&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre pour installer ou mettre à jour des plugins.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2451"/>
+        <location filename="../UI/UserInterface.py" line="2461"/>
         <source>Mini Editor</source>
         <translation>Mini-éditeur</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2446"/>
+        <location filename="../UI/UserInterface.py" line="2456"/>
         <source>Mini &amp;Editor...</source>
         <translation>Mini édit&amp;eur...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2452"/>
+        <location filename="../UI/UserInterface.py" line="2462"/>
         <source>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Open a dialog with a simplified editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mini Editeur&lt;/b&gt;&lt;p&gt;ouvre une fenêtre avec un éditeur simplifié.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2607"/>
+        <location filename="../UI/UserInterface.py" line="2617"/>
         <source>Toolbars</source>
         <translation>Barres d&apos;outils</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2607"/>
+        <location filename="../UI/UserInterface.py" line="2617"/>
         <source>Tool&amp;bars...</source>
         <translation>&amp;Barres d&apos;outils...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2612"/>
+        <location filename="../UI/UserInterface.py" line="2622"/>
         <source>Configure toolbars</source>
         <translation>Configuration des barres d&apos;outils</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2613"/>
+        <location filename="../UI/UserInterface.py" line="2623"/>
         <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Barres d&apos;outils&lt;/b&gt;&lt;p&gt;Configuration des barres d&apos;outils. Avec cette fenêtre vous pouvez modifier les actions des différentes barres affichées et créer  vos propres barres d&apos;outils&lt;/p&gt;</translation>
     </message>
@@ -79814,345 +79814,345 @@
         <translation>Restauration des barres d&apos;outils...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
+        <location filename="../UI/UserInterface.py" line="1771"/>
         <source>Multiproject-Viewer</source>
         <translation>Gestionnaire de multi-projets</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
+        <location filename="../UI/UserInterface.py" line="1771"/>
         <source>&amp;Multiproject-Viewer</source>
         <translation>Gestionnaire de &amp;multi-projet</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5488"/>
+        <location filename="../UI/UserInterface.py" line="5505"/>
         <source>External Tools</source>
         <translation>Outils externes</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1669"/>
+        <location filename="../UI/UserInterface.py" line="1679"/>
         <source>Save session</source>
         <translation>Enregistrer la session</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6611"/>
+        <location filename="../UI/UserInterface.py" line="6631"/>
         <source>Read session</source>
         <translation>Chargement de session</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3537"/>
+        <location filename="../UI/UserInterface.py" line="3547"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Cette partie de la barre d&apos;état affiche l&apos;encodage des éditeurs.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3551"/>
+        <location filename="../UI/UserInterface.py" line="3561"/>
         <source>&lt;p&gt;This part of the status bar displays an indication of the current editors files writability.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Cette partie de la barre d&apos;état affiche les droits d&apos;écriture des fichiers en cours.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
+        <location filename="../UI/UserInterface.py" line="2247"/>
         <source>Request Feature</source>
         <translation>Suggestion d&apos;amélioration</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
+        <location filename="../UI/UserInterface.py" line="2247"/>
         <source>Request &amp;Feature...</source>
         <translation>Suggestion d&apos;&amp;amélioration...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2241"/>
+        <location filename="../UI/UserInterface.py" line="2251"/>
         <source>Send a feature request</source>
         <translation>Envoyer une suggestion d&apos;amélioration</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2243"/>
+        <location filename="../UI/UserInterface.py" line="2253"/>
         <source>&lt;b&gt;Request Feature...&lt;/b&gt;&lt;p&gt;Opens a dialog to send a feature request.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Demande d&apos;amélioration...&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre permettant d&apos;envoyer une demande d&apos;amélioration.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3530"/>
+        <location filename="../UI/UserInterface.py" line="3540"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Cette zone de la barre d&apos;état affiche le langage de l&apos;éditeur actif.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3558"/>
+        <location filename="../UI/UserInterface.py" line="3568"/>
         <source>&lt;p&gt;This part of the status bar displays the line number of the current editor.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Cette zone de la barre d&apos;état affiche le numéro de ligne de l&apos;éditeur actif.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3565"/>
+        <location filename="../UI/UserInterface.py" line="3575"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position of the current editor.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Cette zone de la barre d&apos;état affiche la position du curseur.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1911"/>
+        <location filename="../UI/UserInterface.py" line="1921"/>
         <source>Horizontal Toolbox</source>
         <translation>Barre horizontale</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
+        <location filename="../UI/UserInterface.py" line="1878"/>
         <source>Alt+Shift+A</source>
         <translation>Alt+Shift+A</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1911"/>
+        <location filename="../UI/UserInterface.py" line="1921"/>
         <source>&amp;Horizontal Toolbox</source>
         <translation>Barre &amp;horizontale</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1915"/>
-        <source>Toggle the Horizontal Toolbox window</source>
-        <translation>Afficher/Masquer la barre d&apos;outils horizontale</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1917"/>
-        <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Afficher/Masquer la barre d&apos;outils horizontale&lt;/b&gt;&lt;p&gt;Affiche ou masque la barre d&apos;outils horizontale, selon.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4138"/>
-        <source>Restart application</source>
-        <translation>Redémarrage de l&apos;application</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4138"/>
-        <source>The application needs to be restarted. Do it now?</source>
-        <translation>L&apos;application a bersoin d&apos;être relancée. Relancer maintenant ?</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3144"/>
-        <source>Configure...</source>
-        <translation>Configuration...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3544"/>
-        <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Cette zone de la barre d&apos;état affiche le type de fin de lignes utilisé pour les éditeurs.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2744"/>
-        <source>Switch between tabs</source>
-        <translation>Intervertir les onglets</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2744"/>
-        <source>Ctrl+1</source>
-        <translation>Ctrl+1</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2533"/>
-        <source>Export Preferences</source>
-        <translation>Exporte les préférences</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2533"/>
-        <source>E&amp;xport Preferences...</source>
-        <translation>E&amp;xporter les préférences...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2538"/>
-        <source>Export the current configuration</source>
-        <translation>Exporte la configuration courante</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2540"/>
-        <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Exporter les préférences&lt;/b&gt;&lt;p&gt;Export la configuration courante dans un fichier.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2547"/>
-        <source>Import Preferences</source>
-        <translation>Importe les préférences</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2547"/>
-        <source>I&amp;mport Preferences...</source>
-        <translation>I&amp;mporter les préférences...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2552"/>
-        <source>Import a previously exported configuration</source>
-        <translation>Importe les préférences d&apos;un fichier précédemment exporté</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2554"/>
-        <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Importer les préférences&lt;/b&gt;&lt;p&gt;Importe les préférences d&apos;un fichier précédemment exporté.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2726"/>
-        <source>Show next</source>
-        <translation>Afficher le suivant</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2735"/>
-        <source>Show previous</source>
-        <translation>Afficher le précédent</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1925"/>
+        <source>Toggle the Horizontal Toolbox window</source>
+        <translation>Afficher/Masquer la barre d&apos;outils horizontale</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1927"/>
+        <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Afficher/Masquer la barre d&apos;outils horizontale&lt;/b&gt;&lt;p&gt;Affiche ou masque la barre d&apos;outils horizontale, selon.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4148"/>
+        <source>Restart application</source>
+        <translation>Redémarrage de l&apos;application</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4148"/>
+        <source>The application needs to be restarted. Do it now?</source>
+        <translation>L&apos;application a bersoin d&apos;être relancée. Relancer maintenant ?</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3154"/>
+        <source>Configure...</source>
+        <translation>Configuration...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3554"/>
+        <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Cette zone de la barre d&apos;état affiche le type de fin de lignes utilisé pour les éditeurs.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2754"/>
+        <source>Switch between tabs</source>
+        <translation>Intervertir les onglets</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2754"/>
+        <source>Ctrl+1</source>
+        <translation>Ctrl+1</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2543"/>
+        <source>Export Preferences</source>
+        <translation>Exporte les préférences</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2543"/>
+        <source>E&amp;xport Preferences...</source>
+        <translation>E&amp;xporter les préférences...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2548"/>
+        <source>Export the current configuration</source>
+        <translation>Exporte la configuration courante</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2550"/>
+        <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Exporter les préférences&lt;/b&gt;&lt;p&gt;Export la configuration courante dans un fichier.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2557"/>
+        <source>Import Preferences</source>
+        <translation>Importe les préférences</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2557"/>
+        <source>I&amp;mport Preferences...</source>
+        <translation>I&amp;mporter les préférences...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2562"/>
+        <source>Import a previously exported configuration</source>
+        <translation>Importe les préférences d&apos;un fichier précédemment exporté</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2564"/>
+        <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Importer les préférences&lt;/b&gt;&lt;p&gt;Importe les préférences d&apos;un fichier précédemment exporté.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2736"/>
+        <source>Show next</source>
+        <translation>Afficher le suivant</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2745"/>
+        <source>Show previous</source>
+        <translation>Afficher le précédent</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <source>Left Sidebar</source>
         <translation>Barre latérale de gauche</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1925"/>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <source>&amp;Left Sidebar</source>
         <translation>Barre latérale de &amp;gauche</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1929"/>
+        <location filename="../UI/UserInterface.py" line="1939"/>
         <source>Toggle the left sidebar window</source>
         <translation>Affiche/Masque la barre latérale de gauche</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1930"/>
+        <location filename="../UI/UserInterface.py" line="1940"/>
         <source>&lt;b&gt;Toggle the left sidebar window&lt;/b&gt;&lt;p&gt;If the left sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Affiche/masque la barre latérale de gauche&lt;/b&gt;&lt;p&gt;Affiche ou maque la barre latérale de gauche.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1952"/>
+        <location filename="../UI/UserInterface.py" line="1962"/>
         <source>Bottom Sidebar</source>
         <translation>Barre du bas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1952"/>
+        <location filename="../UI/UserInterface.py" line="1962"/>
         <source>&amp;Bottom Sidebar</source>
         <translation>&amp;Barre du bas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1956"/>
+        <location filename="../UI/UserInterface.py" line="1966"/>
         <source>Toggle the bottom sidebar window</source>
         <translation>Affiche/Masque la barre du bas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1958"/>
+        <location filename="../UI/UserInterface.py" line="1968"/>
         <source>&lt;b&gt;Toggle the bottom sidebar window&lt;/b&gt;&lt;p&gt;If the bottom sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation>&lt;b&gt;A/ffiche/Masque la barre du bas&lt;/b&gt;&lt;p&gt;Affiche ou masque la barre du bas&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
+        <location filename="../UI/UserInterface.py" line="1789"/>
         <source>&amp;Debug-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2433"/>
+        <location filename="../UI/UserInterface.py" line="2443"/>
         <source>SQL Browser</source>
         <translation>Navigateur SQL</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2433"/>
+        <location filename="../UI/UserInterface.py" line="2443"/>
         <source>SQL &amp;Browser...</source>
         <translation>&amp;Navigateur SQL...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2438"/>
+        <location filename="../UI/UserInterface.py" line="2448"/>
         <source>Browse a SQL database</source>
         <translation>Parcourir une base de données SQL</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2439"/>
+        <location filename="../UI/UserInterface.py" line="2449"/>
         <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Navigateur SQL&lt;/b&gt;&lt;p&gt;Parcourir une base de données SQL.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2488"/>
+        <location filename="../UI/UserInterface.py" line="2498"/>
         <source>Icon Editor</source>
         <translation>Éditeur d&apos;icone</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2488"/>
+        <location filename="../UI/UserInterface.py" line="2498"/>
         <source>&amp;Icon Editor...</source>
         <translation>Éditeur d&apos;&amp;icone...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1598"/>
+        <location filename="../UI/UserInterface.py" line="1608"/>
         <source>{0} - Passive Mode</source>
         <translation>{0} - Mode passif</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1605"/>
+        <location filename="../UI/UserInterface.py" line="1615"/>
         <source>{0} - {1} - Passive Mode</source>
         <translation>{0} - {1} - Mode Passif</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1609"/>
+        <location filename="../UI/UserInterface.py" line="1619"/>
         <source>{0} - {1} - {2} - Passive Mode</source>
         <translation>{0} - {1} - {2} - Mode Passif</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3636"/>
+        <location filename="../UI/UserInterface.py" line="3646"/>
         <source>External Tools/{0}</source>
         <translation>Outils externe/{0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5348"/>
+        <location filename="../UI/UserInterface.py" line="5365"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist or is zero length.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; n&apos;existe pas ou est de longeur nulle.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5073"/>
+        <location filename="../UI/UserInterface.py" line="5090"/>
         <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Ne peut lancer Qt-Designer.&lt;br&gt;Vérifier qu&apos;il est disponible en tant que &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5143"/>
+        <location filename="../UI/UserInterface.py" line="5160"/>
         <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Ne peut lancer Qt-Linguist.&lt;br&gt;Vérifier qu&apos;il est disponible en tant que &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5187"/>
+        <location filename="../UI/UserInterface.py" line="5204"/>
         <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Ne peut lancer Qt-Assistant.&lt;br&gt;Vérifier qu&apos;il est disponible en tant que &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5234"/>
+        <location filename="../UI/UserInterface.py" line="5251"/>
         <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5304"/>
+        <location filename="../UI/UserInterface.py" line="5321"/>
         <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5361"/>
+        <location filename="../UI/UserInterface.py" line="5378"/>
         <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5384"/>
+        <location filename="../UI/UserInterface.py" line="5401"/>
         <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Ne peut lancer le navigateur SQL.&lt;br&gt;Vérifier qu&apos;il est disponible en tant que &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5479"/>
+        <location filename="../UI/UserInterface.py" line="5496"/>
         <source>No tool entry found for external tool &apos;{0}&apos; in tool group &apos;{1}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5488"/>
+        <location filename="../UI/UserInterface.py" line="5505"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5527"/>
+        <location filename="../UI/UserInterface.py" line="5544"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation>Démarrage du processus &apos;{0} {1}&apos;.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5543"/>
+        <location filename="../UI/UserInterface.py" line="5560"/>
         <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5621"/>
+        <location filename="../UI/UserInterface.py" line="5638"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5883"/>
+        <location filename="../UI/UserInterface.py" line="5900"/>
         <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; could not be found.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80162,62 +80162,62 @@
         <translation type="obsolete">&lt;p&gt;Le fichier tâche &lt;b&gt;{0}&lt;/b&gt; ne peut être écrit.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6518"/>
+        <location filename="../UI/UserInterface.py" line="6538"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier tâche &lt;b&gt;{0}&lt;/b&gt; ne peut être lu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6556"/>
+        <location filename="../UI/UserInterface.py" line="6576"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier de session &lt;b&gt;{0}&lt;/b&gt; ne peut être écrit.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6611"/>
+        <location filename="../UI/UserInterface.py" line="6631"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier de session &lt;b&gt;{0}&lt;/b&gt; ne peut être lu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6897"/>
+        <location filename="../UI/UserInterface.py" line="6917"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; n&apos;est pas un fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7071"/>
+        <location filename="../UI/UserInterface.py" line="7091"/>
         <source>Trying host {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1118"/>
+        <location filename="../UI/UserInterface.py" line="1123"/>
         <source>Cooperation</source>
         <translation>Coopération</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Alt+Shift+O</source>
         <translation>Alt+Shift+O</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1174"/>
+        <location filename="../UI/UserInterface.py" line="1179"/>
         <source>Symbols</source>
         <translation>Symboles</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2004"/>
+        <location filename="../UI/UserInterface.py" line="2014"/>
         <source>Alt+Shift+Y</source>
         <translation>Alt+Shift+Y</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1183"/>
+        <location filename="../UI/UserInterface.py" line="1188"/>
         <source>Numbers</source>
         <translation>Nombres</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
+        <location filename="../UI/UserInterface.py" line="2033"/>
         <source>Alt+Shift+B</source>
         <translation>Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2927"/>
+        <location filename="../UI/UserInterface.py" line="2937"/>
         <source>Python 3 Documentation</source>
         <translation>Documentation Python 3</translation>
     </message>
@@ -80227,22 +80227,22 @@
         <translation type="obsolete">Documentation Python &amp;3</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2931"/>
+        <location filename="../UI/UserInterface.py" line="2941"/>
         <source>Open Python 3 Documentation</source>
         <translation>Ouvrir la Documentation Python 3</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7129"/>
+        <location filename="../UI/UserInterface.py" line="7150"/>
         <source>Error getting versions information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7122"/>
+        <location filename="../UI/UserInterface.py" line="7143"/>
         <source>The versions information could not be downloaded. Please go online and try again.</source>
         <translation>Les informations de versions ne peuvent être téléchargées. Veuillez aller en ligne et réessayer.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7129"/>
+        <location filename="../UI/UserInterface.py" line="7150"/>
         <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source>
         <translation>Les informations de versions ne peuvent être téléchargées depuis 7 jours. Veuillez aller en ligne et réessayer.</translation>
     </message>
@@ -80267,358 +80267,358 @@
         <translation>Démarrage du débuggeur...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
+        <location filename="../UI/UserInterface.py" line="1701"/>
         <source>New Window</source>
         <translation>Nouvelle fenêtre</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
+        <location filename="../UI/UserInterface.py" line="1701"/>
         <source>New &amp;Window</source>
         <translation>&amp;Nouvelle fenêtre</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
+        <location filename="../UI/UserInterface.py" line="1701"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation>Ctrl+Shift+N</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2280"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <source>Unittest Rerun Failed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2280"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <source>Rerun Failed Tests...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2285"/>
+        <location filename="../UI/UserInterface.py" line="2295"/>
         <source>Rerun failed tests of the last run</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2287"/>
+        <location filename="../UI/UserInterface.py" line="2297"/>
         <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last unittest run.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2419"/>
+        <location filename="../UI/UserInterface.py" line="2429"/>
         <source>Compare &amp;Files side by side...</source>
         <translation>Comparer des &amp;fichiers côte à côte...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2502"/>
+        <location filename="../UI/UserInterface.py" line="2512"/>
         <source>Snapshot</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2502"/>
+        <location filename="../UI/UserInterface.py" line="2512"/>
         <source>&amp;Snapshot...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2507"/>
+        <location filename="../UI/UserInterface.py" line="2517"/>
         <source>Take snapshots of a screen region</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2509"/>
+        <location filename="../UI/UserInterface.py" line="2519"/>
         <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5456"/>
+        <location filename="../UI/UserInterface.py" line="5473"/>
         <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7335"/>
+        <location filename="../UI/UserInterface.py" line="7356"/>
         <source>Select Workspace Directory</source>
         <translation>Sélectionner le répertoire de travail</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1886"/>
+        <location filename="../UI/UserInterface.py" line="1896"/>
         <source>Left Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1898"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <source>Right Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
+        <location filename="../UI/UserInterface.py" line="1996"/>
         <source>IRC</source>
         <translation>IRC</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
+        <location filename="../UI/UserInterface.py" line="1760"/>
         <source>Switch the input focus to the Project-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1752"/>
+        <location filename="../UI/UserInterface.py" line="1762"/>
         <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1767"/>
+        <location filename="../UI/UserInterface.py" line="1777"/>
         <source>Switch the input focus to the Multiproject-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1769"/>
+        <location filename="../UI/UserInterface.py" line="1779"/>
         <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
+        <location filename="../UI/UserInterface.py" line="1795"/>
         <source>Switch the input focus to the Debug-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1787"/>
+        <location filename="../UI/UserInterface.py" line="1797"/>
         <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1803"/>
+        <location filename="../UI/UserInterface.py" line="1813"/>
         <source>Switch the input focus to the Shell window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1805"/>
+        <location filename="../UI/UserInterface.py" line="1815"/>
         <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
+        <location filename="../UI/UserInterface.py" line="1824"/>
         <source>&amp;File-Browser</source>
         <translation>Navigateur de &amp;fichier</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
+        <location filename="../UI/UserInterface.py" line="1830"/>
         <source>Switch the input focus to the File-Browser window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1822"/>
+        <location filename="../UI/UserInterface.py" line="1832"/>
         <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
         <source>Lo&amp;g-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1837"/>
+        <location filename="../UI/UserInterface.py" line="1847"/>
         <source>Switch the input focus to the Log-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
-        <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1849"/>
+        <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1859"/>
         <source>&amp;Task-Viewer</source>
         <translation>Visionneur de &amp;tâches</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1855"/>
+        <location filename="../UI/UserInterface.py" line="1865"/>
         <source>Switch the input focus to the Task-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1857"/>
+        <location filename="../UI/UserInterface.py" line="1867"/>
         <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
+        <location filename="../UI/UserInterface.py" line="1878"/>
         <source>Templ&amp;ate-Viewer</source>
         <translation>Visionneur de g&amp;abarits</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1874"/>
+        <location filename="../UI/UserInterface.py" line="1884"/>
         <source>Switch the input focus to the Template-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1876"/>
-        <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1886"/>
+        <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1896"/>
         <source>&amp;Left Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1889"/>
+        <location filename="../UI/UserInterface.py" line="1899"/>
         <source>Toggle the Left Toolbox window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1890"/>
+        <location filename="../UI/UserInterface.py" line="1900"/>
         <source>&lt;b&gt;Toggle the Left Toolbox window&lt;/b&gt;&lt;p&gt;If the Left Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1898"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <source>&amp;Right Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1902"/>
+        <location filename="../UI/UserInterface.py" line="1912"/>
         <source>Toggle the Right Toolbox window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1903"/>
+        <location filename="../UI/UserInterface.py" line="1913"/>
         <source>&lt;b&gt;Toggle the Right Toolbox window&lt;/b&gt;&lt;p&gt;If the Right Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1948"/>
         <source>Right Sidebar</source>
         <translation type="unfinished">Barre latérale de droite</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1948"/>
         <source>&amp;Right Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1942"/>
+        <location filename="../UI/UserInterface.py" line="1952"/>
         <source>Toggle the right sidebar window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1944"/>
+        <location filename="../UI/UserInterface.py" line="1954"/>
         <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Cooperation-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Co&amp;operation-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1973"/>
+        <location filename="../UI/UserInterface.py" line="1983"/>
         <source>Switch the input focus to the Cooperation-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="1985"/>
         <source>&lt;b&gt;Activate Cooperation-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Cooperation-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
+        <location filename="../UI/UserInterface.py" line="1996"/>
         <source>&amp;IRC</source>
         <translation>&amp;IRC</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1992"/>
+        <location filename="../UI/UserInterface.py" line="2002"/>
         <source>Switch the input focus to the IRC window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
-        <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2004"/>
+        <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2014"/>
         <source>Symbols-Viewer</source>
         <translation>Visionneur de symbole</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2004"/>
+        <location filename="../UI/UserInterface.py" line="2014"/>
         <source>S&amp;ymbols-Viewer</source>
         <translation>Visionneur de s&amp;ymbole</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2010"/>
+        <location filename="../UI/UserInterface.py" line="2020"/>
         <source>Switch the input focus to the Symbols-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2012"/>
+        <location filename="../UI/UserInterface.py" line="2022"/>
         <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
+        <location filename="../UI/UserInterface.py" line="2033"/>
         <source>Numbers-Viewer</source>
         <translation>Visionneur de nombres</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
+        <location filename="../UI/UserInterface.py" line="2033"/>
         <source>Num&amp;bers-Viewer</source>
         <translation>Visionneur de nom&amp;bres</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2029"/>
+        <location filename="../UI/UserInterface.py" line="2039"/>
         <source>Switch the input focus to the Numbers-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2031"/>
+        <location filename="../UI/UserInterface.py" line="2041"/>
         <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2338"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Qt-Designer</source>
         <translation>Qt-Designer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2338"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Qt-&amp;Designer...</source>
         <translation>Qt-&amp;Designer...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2343"/>
+        <location filename="../UI/UserInterface.py" line="2353"/>
         <source>Start Qt-Designer</source>
         <translation>Démarrer Qt-Designer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2344"/>
+        <location filename="../UI/UserInterface.py" line="2354"/>
         <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Démarrer Qt-Designer.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2364"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Qt-Linguist</source>
         <translation>Qt-Linguist</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2364"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Qt-&amp;Linguist...</source>
         <translation>Qt-&amp;Linguist...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2369"/>
+        <location filename="../UI/UserInterface.py" line="2379"/>
         <source>Start Qt-Linguist</source>
         <translation>Démarrer Qt-Linguist</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2370"/>
+        <location filename="../UI/UserInterface.py" line="2380"/>
         <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Démarrer Qt-Linguist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2858"/>
+        <location filename="../UI/UserInterface.py" line="2868"/>
         <source>Qt5 Documentation</source>
         <translation>Documentation Qt5</translation>
     </message>
@@ -80628,57 +80628,57 @@
         <translation type="obsolete">Documentation Qt&amp;5</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2862"/>
+        <location filename="../UI/UserInterface.py" line="2872"/>
         <source>Open Qt5 Documentation</source>
         <translation>Lance la Documentation Qt5</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3221"/>
+        <location filename="../UI/UserInterface.py" line="3231"/>
         <source>&amp;Windows</source>
         <translation>&amp;Fenêtres</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2666"/>
+        <location filename="../UI/UserInterface.py" line="2676"/>
         <source>Manage SSL Certificates</source>
         <translation>Gestion des certificats SSL</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2666"/>
+        <location filename="../UI/UserInterface.py" line="2676"/>
         <source>Manage SSL Certificates...</source>
         <translation>Gestion des certificats SSL...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2671"/>
+        <location filename="../UI/UserInterface.py" line="2681"/>
         <source>Manage the saved SSL certificates</source>
         <translation>Gestion des certificats SSL enregistrés</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2673"/>
+        <location filename="../UI/UserInterface.py" line="2683"/>
         <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2682"/>
+        <location filename="../UI/UserInterface.py" line="2692"/>
         <source>Edit Message Filters</source>
         <translation>Éditer les filtres de message</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2682"/>
+        <location filename="../UI/UserInterface.py" line="2692"/>
         <source>Edit Message Filters...</source>
         <translation>Éditer les filtres de message...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2687"/>
+        <location filename="../UI/UserInterface.py" line="2697"/>
         <source>Edit the message filters used to suppress unwanted messages</source>
         <translation type="unfinished">Éditer les filtres de message utilisés pour supprimer les messages indésirés</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2689"/>
+        <location filename="../UI/UserInterface.py" line="2699"/>
         <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2888"/>
+        <location filename="../UI/UserInterface.py" line="2898"/>
         <source>PyQt5 Documentation</source>
         <translation>Documentation PyQt5</translation>
     </message>
@@ -80688,7 +80688,7 @@
         <translation type="obsolete">Documentation PyQt&amp;5</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2892"/>
+        <location filename="../UI/UserInterface.py" line="2902"/>
         <source>Open PyQt5 Documentation</source>
         <translation>Lance la documentation PyQt5</translation>
     </message>
@@ -80698,32 +80698,32 @@
         <translation type="obsolete">&lt;p&gt;L&apos;emplacement de la documentation PyQt5 n&apos;a pas été configuré.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2933"/>
+        <location filename="../UI/UserInterface.py" line="2943"/>
         <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7062"/>
+        <location filename="../UI/UserInterface.py" line="7082"/>
         <source>%v/%m</source>
         <translation>%v/%m</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2203"/>
+        <location filename="../UI/UserInterface.py" line="2213"/>
         <source>Show Error Log</source>
         <translation>Montrer l&apos;historique d&apos;erreur</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2199"/>
+        <location filename="../UI/UserInterface.py" line="2209"/>
         <source>Show Error &amp;Log...</source>
         <translation>Montrer &amp;l&apos;historique d&apos;erreur...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2204"/>
+        <location filename="../UI/UserInterface.py" line="2214"/>
         <source>&lt;b&gt;Show Error Log...&lt;/b&gt;&lt;p&gt;Opens a dialog showing the most recent error log.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Montrer l&apos;historique d&apos;erreur...&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre avec les messages d&apos;erreur les plus récents.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7066"/>
+        <location filename="../UI/UserInterface.py" line="7086"/>
         <source>Version Check</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80813,12 +80813,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4194"/>
+        <location filename="../UI/UserInterface.py" line="4204"/>
         <source>&amp;User Tools</source>
         <translation>Outils &amp;utilisateurs</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4266"/>
+        <location filename="../UI/UserInterface.py" line="4276"/>
         <source>No User Tools Configured</source>
         <translation>Pas d&apos;outils utilisateurs configuré</translation>
     </message>
@@ -80828,12 +80828,12 @@
         <translation type="obsolete">Les informations de versions ne peuvent être téléchargés car vous êtes &lt;b&gt;hors ligne&lt;/b&gt;. Veuillez aller en ligne et réessayer.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2459"/>
+        <location filename="../UI/UserInterface.py" line="2469"/>
         <source>Hex Editor</source>
         <translation>Hex Editor</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2459"/>
+        <location filename="../UI/UserInterface.py" line="2469"/>
         <source>&amp;Hex Editor...</source>
         <translation>&amp;Hex Editor...</translation>
     </message>
@@ -80848,47 +80848,47 @@
         <translation type="obsolete">&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Démarre l&apos;Hex Editor d&apos;eric6 pour voir et modifier des fichiers binaires.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2705"/>
+        <location filename="../UI/UserInterface.py" line="2715"/>
         <source>Clear private data</source>
         <translation>Nettoyer les données privées</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2707"/>
+        <location filename="../UI/UserInterface.py" line="2717"/>
         <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1665"/>
+        <location filename="../UI/UserInterface.py" line="1675"/>
         <source>Save session...</source>
         <translation>Enregistrer session...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1670"/>
+        <location filename="../UI/UserInterface.py" line="1680"/>
         <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Enregistrer session...&lt;/b&gt;&lt;p&gt;Ceci enregistre la session sur le disque. Une fenêtre s&apos;ouvre pour sélectionner le nom de fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6650"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <source>Load session</source>
         <translation>Charger la session</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1678"/>
+        <location filename="../UI/UserInterface.py" line="1688"/>
         <source>Load session...</source>
         <translation>Charger la session...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1683"/>
+        <location filename="../UI/UserInterface.py" line="1693"/>
         <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Charger session...&lt;/b&gt;&lt;p&gt;Ceci charge une session enregistrée sur le disque auparant. Une fenêtre s&apos;ouvre pour sélectionner le fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6703"/>
+        <location filename="../UI/UserInterface.py" line="6723"/>
         <source>Crash Session found!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6703"/>
+        <location filename="../UI/UserInterface.py" line="6723"/>
         <source>A session file of a crashed session was found. Shall this session be restored?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80903,32 +80903,32 @@
         <translation>Initialisation en cours des plugins...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7209"/>
+        <location filename="../UI/UserInterface.py" line="7230"/>
         <source>Update Check</source>
         <translation>Vérification de mise à jour</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7209"/>
+        <location filename="../UI/UserInterface.py" line="7230"/>
         <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2042"/>
+        <location filename="../UI/UserInterface.py" line="2052"/>
         <source>Code Documentation Viewer</source>
         <translation type="unfinished">Visionneur de documentation du code</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2863"/>
+        <location filename="../UI/UserInterface.py" line="2873"/>
         <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2894"/>
+        <location filename="../UI/UserInterface.py" line="2904"/>
         <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2970"/>
+        <location filename="../UI/UserInterface.py" line="2980"/>
         <source>PySide2 Documentation</source>
         <translation>Documentation PySide2</translation>
     </message>
@@ -80938,93 +80938,93 @@
         <translation type="obsolete">Documentation PySide&amp;2</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2974"/>
+        <location filename="../UI/UserInterface.py" line="2984"/>
         <source>Open PySide2 Documentation</source>
         <translation>Ouvrir la Documentation PySide2</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2976"/>
+        <location filename="../UI/UserInterface.py" line="2986"/>
         <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5866"/>
+        <location filename="../UI/UserInterface.py" line="5883"/>
         <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2813"/>
+        <location filename="../UI/UserInterface.py" line="2823"/>
         <source>Virtualenv Manager</source>
         <translation>Gestionnaire Virtualenv</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2807"/>
+        <location filename="../UI/UserInterface.py" line="2817"/>
         <source>&amp;Virtualenv Manager...</source>
         <translation>Gestionnaire &amp;Virtualenv...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2815"/>
+        <location filename="../UI/UserInterface.py" line="2825"/>
         <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gestionnaire Virtualenv&lt;/b&gt;&lt;p&gt;Ceci ouvre une fenêtre pour gérer les environnement virtuels Python définis.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2830"/>
+        <location filename="../UI/UserInterface.py" line="2840"/>
         <source>Virtualenv Configurator</source>
         <translation>Configurateur Virtualenv</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2824"/>
+        <location filename="../UI/UserInterface.py" line="2834"/>
         <source>Virtualenv &amp;Configurator...</source>
         <translation>&amp;Configurateur Virtualenv...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2832"/>
+        <location filename="../UI/UserInterface.py" line="2842"/>
         <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3228"/>
+        <location filename="../UI/UserInterface.py" line="3238"/>
         <source>Left Side</source>
         <translation>Coté gauche</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3240"/>
+        <location filename="../UI/UserInterface.py" line="3250"/>
         <source>Bottom Side</source>
         <translation>Coté bas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3247"/>
+        <location filename="../UI/UserInterface.py" line="3257"/>
         <source>Right Side</source>
         <translation>Coté droit</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3267"/>
+        <location filename="../UI/UserInterface.py" line="3277"/>
         <source>Plug-ins</source>
         <translation>Plugins</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
+        <location filename="../UI/UserInterface.py" line="1659"/>
         <source>Restart</source>
         <translation>Redémarrer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
+        <location filename="../UI/UserInterface.py" line="1659"/>
         <source>Ctrl+Shift+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Shift+Q</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1655"/>
+        <location filename="../UI/UserInterface.py" line="1665"/>
         <source>Restart the IDE</source>
         <translation>Rédémarrer l&apos;IDE</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1656"/>
+        <location filename="../UI/UserInterface.py" line="1666"/>
         <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6043"/>
+        <location filename="../UI/UserInterface.py" line="6060"/>
         <source>Start Web Browser</source>
         <translation>Démarrer le navigateur web</translation>
     </message>
@@ -81039,327 +81039,327 @@
         <translation type="obsolete">&lt;p&gt;Le navigateur web eric6 n&apos;est pas démarré.&lt;/p&gt;&lt;p&gt;Raison : {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2080"/>
+        <location filename="../UI/UserInterface.py" line="2090"/>
         <source>Conda</source>
         <translation>Conda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2062"/>
+        <location filename="../UI/UserInterface.py" line="2072"/>
         <source>PyPI</source>
         <translation>PyPI</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3576"/>
+        <location filename="../UI/UserInterface.py" line="3586"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Cette zone de la barre d&apos;état permet de zoomer l&apos;éditeur courant ou le shell.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2098"/>
+        <location filename="../UI/UserInterface.py" line="2108"/>
         <source>MicroPython</source>
         <translation>MicroPython</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
+        <location filename="../UI/UserInterface.py" line="1996"/>
         <source>Ctrl+Alt+Shift+I</source>
         <translation>Ctrl+Alt+Shift+I</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2042"/>
+        <location filename="../UI/UserInterface.py" line="2052"/>
         <source>Ctrl+Alt+Shift+D</source>
         <translation>Ctrl+Alt+Shift+D</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2048"/>
+        <location filename="../UI/UserInterface.py" line="2058"/>
         <source>Switch the input focus to the Code Documentation Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2051"/>
+        <location filename="../UI/UserInterface.py" line="2061"/>
         <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2062"/>
+        <location filename="../UI/UserInterface.py" line="2072"/>
         <source>Ctrl+Alt+Shift+P</source>
         <translation>Ctrl+Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2068"/>
+        <location filename="../UI/UserInterface.py" line="2078"/>
         <source>Switch the input focus to the PyPI window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2070"/>
-        <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2080"/>
+        <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2090"/>
         <source>Ctrl+Alt+Shift+C</source>
         <translation>Ctrl+Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2086"/>
+        <location filename="../UI/UserInterface.py" line="2096"/>
         <source>Switch the input focus to the Conda window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2088"/>
-        <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2098"/>
+        <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2108"/>
         <source>Ctrl+Alt+Shift+M</source>
         <translation>Ctrl+Alt+Shift+M</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2104"/>
+        <location filename="../UI/UserInterface.py" line="2114"/>
         <source>Switch the input focus to the MicroPython window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2106"/>
+        <location filename="../UI/UserInterface.py" line="2116"/>
         <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3225"/>
+        <location filename="../UI/UserInterface.py" line="3235"/>
         <source>Central Park</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3745"/>
+        <location filename="../UI/UserInterface.py" line="3755"/>
         <source>&lt;h2&gt;Version Numbers&lt;/h2&gt;&lt;table&gt;</source>
         <translation>&lt;h2&gt;Numéros de version&lt;/h2&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5082"/>
+        <location filename="../UI/UserInterface.py" line="5099"/>
         <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5152"/>
+        <location filename="../UI/UserInterface.py" line="5169"/>
         <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5196"/>
+        <location filename="../UI/UserInterface.py" line="5213"/>
         <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2211"/>
+        <location filename="../UI/UserInterface.py" line="2221"/>
         <source>Show Install Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2211"/>
+        <location filename="../UI/UserInterface.py" line="2221"/>
         <source>Show Install &amp;Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2215"/>
+        <location filename="../UI/UserInterface.py" line="2225"/>
         <source>Show Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2217"/>
+        <location filename="../UI/UserInterface.py" line="2227"/>
         <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2873"/>
+        <location filename="../UI/UserInterface.py" line="2883"/>
         <source>Qt6 Documentation</source>
         <translation type="unfinished">Documentation Qt5 {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2877"/>
+        <location filename="../UI/UserInterface.py" line="2887"/>
         <source>Open Qt6 Documentation</source>
         <translation type="unfinished">Lance la Documentation Qt5 {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2878"/>
+        <location filename="../UI/UserInterface.py" line="2888"/>
         <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2905"/>
+        <location filename="../UI/UserInterface.py" line="2915"/>
         <source>PyQt6 Documentation</source>
         <translation type="unfinished">Documentation PyQt5 {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2909"/>
+        <location filename="../UI/UserInterface.py" line="2919"/>
         <source>Open PyQt6 Documentation</source>
         <translation type="unfinished">Lance la documentation PyQt5 {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2911"/>
+        <location filename="../UI/UserInterface.py" line="2921"/>
         <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2990"/>
+        <location filename="../UI/UserInterface.py" line="3000"/>
         <source>PySide6 Documentation</source>
         <translation type="unfinished">Documentation PySide2 {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2994"/>
+        <location filename="../UI/UserInterface.py" line="3004"/>
         <source>Open PySide6 Documentation</source>
         <translation type="unfinished">Ouvrir la Documentation PySide2 {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2996"/>
+        <location filename="../UI/UserInterface.py" line="3006"/>
         <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5761"/>
+        <location filename="../UI/UserInterface.py" line="5778"/>
         <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1697"/>
+        <location filename="../UI/UserInterface.py" line="1707"/>
         <source>Open a new eric instance</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1699"/>
+        <location filename="../UI/UserInterface.py" line="1709"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2142"/>
+        <location filename="../UI/UserInterface.py" line="2152"/>
         <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is search in the Qt help collection.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2177"/>
+        <location filename="../UI/UserInterface.py" line="2187"/>
         <source>&lt;b&gt;Check for Updates...&lt;/b&gt;&lt;p&gt;Checks the internet for updates of eric.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2190"/>
+        <location filename="../UI/UserInterface.py" line="2200"/>
         <source>&lt;b&gt;Show downloadable versions...&lt;/b&gt;&lt;p&gt;Shows the eric versions available for download from the internet.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2464"/>
-        <source>Start the eric Hex Editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2466"/>
-        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2474"/>
+        <source>Start the eric Hex Editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2476"/>
+        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2484"/>
         <source>eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2474"/>
+        <location filename="../UI/UserInterface.py" line="2484"/>
         <source>eric &amp;Web Browser...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2479"/>
+        <location filename="../UI/UserInterface.py" line="2489"/>
         <source>Start the eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2481"/>
+        <location filename="../UI/UserInterface.py" line="2491"/>
         <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2493"/>
+        <location filename="../UI/UserInterface.py" line="2503"/>
         <source>Start the eric Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2495"/>
+        <location filename="../UI/UserInterface.py" line="2505"/>
         <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2581"/>
+        <location filename="../UI/UserInterface.py" line="2591"/>
         <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2955"/>
+        <location filename="../UI/UserInterface.py" line="2965"/>
         <source>&lt;b&gt;Eric API Documentation&lt;/b&gt;&lt;p&gt;Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5979"/>
+        <location filename="../UI/UserInterface.py" line="5996"/>
         <source>The eric web browser could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6043"/>
+        <location filename="../UI/UserInterface.py" line="6060"/>
         <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7221"/>
+        <location filename="../UI/UserInterface.py" line="7242"/>
         <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7199"/>
+        <location filename="../UI/UserInterface.py" line="7220"/>
         <source>You are using a snapshot release of eric. A more up-to-date stable release might be available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7233"/>
+        <location filename="../UI/UserInterface.py" line="7254"/>
         <source>eric is up to date</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7233"/>
+        <location filename="../UI/UserInterface.py" line="7254"/>
         <source>You are using the latest version of eric</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7316"/>
+        <location filename="../UI/UserInterface.py" line="7337"/>
         <source>eric has not been configured yet. The configuration dialog will be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6294"/>
+        <location filename="../UI/UserInterface.py" line="6314"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard Shortcuts File (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6313"/>
+        <location filename="../UI/UserInterface.py" line="6333"/>
         <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6329"/>
+        <location filename="../UI/UserInterface.py" line="6349"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6518"/>
+        <location filename="../UI/UserInterface.py" line="6538"/>
         <source>Read Tasks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6627"/>
+        <location filename="../UI/UserInterface.py" line="6647"/>
         <source>Save Session</source>
         <translation type="unfinished">Enregistrer la session</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6584"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>Read Session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6650"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -81439,7 +81439,7 @@
 <context>
     <name>Utilities</name>
     <message>
-        <location filename="../Utilities/__init__.py" line="1453"/>
+        <location filename="../Utilities/__init__.py" line="1454"/>
         <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;Vous pouvez utiliser la syntaxe &quot;%-code&quot; dans la chaine de caractères. Les codes supportés sont :&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;colonne du curseur de l&apos;éditeur courant&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;répertoire de l&apos;éditeur courant&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;nom de fichier de l&apos;éditeur courant&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;répertoire &apos;home&apos; de l&apos;utilisateur courant&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;ligne du curseur de l&apos;éditeur courant&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;chemin du projet courant&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;texte sélectionné dans l&apos;éditeur courant&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;nom d&apos;utilisateur de l&apos;utilisateur courant&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;le signe pourcent&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</translation>
     </message>
@@ -81756,7 +81756,7 @@
 <context>
     <name>VariablesViewer</name>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="958"/>
+        <location filename="../Debugger/VariablesViewer.py" line="965"/>
         <source>Global Variables</source>
         <translation>Variables globales</translation>
     </message>
@@ -81766,12 +81766,12 @@
         <translation type="obsolete">Globales</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="959"/>
+        <location filename="../Debugger/VariablesViewer.py" line="966"/>
         <source>&lt;b&gt;The Global Variables Viewer Window&lt;/b&gt;&lt;p&gt;This window displays the global variables of the debugged program.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Fenêtre de visualisation des variables globales&lt;/b&gt;&lt;p&gt;Cette fenêtre affiche les variables globales du programme débogué.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="965"/>
+        <location filename="../Debugger/VariablesViewer.py" line="972"/>
         <source>Local Variables</source>
         <translation>Variables locales</translation>
     </message>
@@ -81781,7 +81781,7 @@
         <translation type="obsolete">Locales</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="966"/>
+        <location filename="../Debugger/VariablesViewer.py" line="973"/>
         <source>&lt;b&gt;The Local Variables Viewer Window&lt;/b&gt;&lt;p&gt;This window displays the local variables of the debugged program.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Fenêtre de visualisation des variables locales&lt;/b&gt;&lt;p&gt;Cette fenêtre affiche les variables locales du programme débogué.&lt;/p&gt;</translation>
     </message>
@@ -81796,12 +81796,12 @@
         <translation type="obsolete">Type</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1083"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1090"/>
         <source>Show Details...</source>
         <translation>Afficher les détails...</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1098"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1105"/>
         <source>Configure...</source>
         <translation>Configuration...</translation>
     </message>
@@ -81811,7 +81811,7 @@
         <translation>{0} items</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1096"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1103"/>
         <source>Refresh</source>
         <translation>Rafraichir</translation>
     </message>
@@ -81821,22 +81821,22 @@
         <translation type="obsolete">Tout contracter</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1085"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1092"/>
         <source>Expand</source>
         <translation>Déployer</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1086"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1093"/>
         <source>Collapse</source>
         <translation>Contracter</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1087"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1094"/>
         <source>Collapse All</source>
         <translation>Tout contracter</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1099"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1106"/>
         <source>Variables Type Filter...</source>
         <translation>Filtre de type de variables...</translation>
     </message>
@@ -82515,7 +82515,7 @@
         <translation>Erreur du processus</translation>
     </message>
     <message>
-        <location filename="../VCS/VersionControl.py" line="761"/>
+        <location filename="../VCS/VersionControl.py" line="764"/>
         <source>Repository status checking is switched off</source>
         <translation>La vérification de statut du référentiel est désactivée</translation>
     </message>
@@ -82528,382 +82528,382 @@
 <context>
     <name>ViewManager</name>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>New</source>
         <translation>Nouveau</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>&amp;New</source>
         <translation>&amp;Nouveau</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="592"/>
+        <location filename="../ViewManager/ViewManager.py" line="593"/>
         <source>Open an empty editor window</source>
         <translation>Ouvre une nouvelle page vide</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="595"/>
+        <location filename="../ViewManager/ViewManager.py" line="596"/>
         <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="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>Open</source>
         <translation>Ouvrir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>&amp;Open...</source>
         <translation>&amp;Ouvrir...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>Close</source>
         <translation>Fermer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>&amp;Close</source>
         <translation>&amp;Fermer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="632"/>
+        <location filename="../ViewManager/ViewManager.py" line="633"/>
         <source>Close the current window</source>
         <translation>Ferme la fenêtre courante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="636"/>
         <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="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="644"/>
         <source>Close All</source>
         <translation>Tout fermer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="644"/>
         <source>Clos&amp;e All</source>
         <translation>Tout f&amp;ermer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="647"/>
+        <location filename="../ViewManager/ViewManager.py" line="648"/>
         <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="650"/>
+        <location filename="../ViewManager/ViewManager.py" line="651"/>
         <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="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>Save</source>
         <translation>Enregistrer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>&amp;Save</source>
         <translation>&amp;Enregistrer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="669"/>
+        <location filename="../ViewManager/ViewManager.py" line="670"/>
         <source>Save the current file</source>
         <translation>Enregistre le fichier courant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="671"/>
+        <location filename="../ViewManager/ViewManager.py" line="672"/>
         <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="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Save as</source>
         <translation>Enregistrer sous</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Save &amp;as...</source>
         <translation>&amp;Enregistrer sous...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="686"/>
+        <location filename="../ViewManager/ViewManager.py" line="687"/>
         <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="688"/>
+        <location filename="../ViewManager/ViewManager.py" line="689"/>
         <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="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="714"/>
         <source>Save all</source>
         <translation>Tout enregistrer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="718"/>
+        <location filename="../ViewManager/ViewManager.py" line="719"/>
         <source>Save all files</source>
         <translation>Enregistre tous les fichiers</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="720"/>
+        <location filename="../ViewManager/ViewManager.py" line="721"/>
         <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="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>Print</source>
         <translation>Imprimer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>&amp;Print</source>
         <translation>&amp;Imprimer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="737"/>
+        <location filename="../ViewManager/ViewManager.py" line="738"/>
         <source>Print the current file</source>
         <translation>Imprime le fichier courant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="739"/>
+        <location filename="../ViewManager/ViewManager.py" line="740"/>
         <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="789"/>
+        <location filename="../ViewManager/ViewManager.py" line="790"/>
         <source>Open &amp;Recent Files</source>
         <translation>Ouvrir un fichier &amp;récent</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="792"/>
+        <location filename="../ViewManager/ViewManager.py" line="793"/>
         <source>Open &amp;Bookmarked Files</source>
         <translation>Ouvrir un fichier &amp;étiqueté</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Undo</source>
         <translation>Défaire</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>&amp;Undo</source>
         <translation>&amp;Défaire</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="896"/>
+        <location filename="../ViewManager/ViewManager.py" line="897"/>
         <source>Undo the last change</source>
         <translation>Annule la dernière modification</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="898"/>
+        <location filename="../ViewManager/ViewManager.py" line="899"/>
         <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="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>Redo</source>
         <translation>Refaire</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>&amp;Redo</source>
         <translation>&amp;Refaire</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="914"/>
+        <location filename="../ViewManager/ViewManager.py" line="915"/>
         <source>Redo the last change</source>
         <translation>Recharge la dernière modification</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="916"/>
+        <location filename="../ViewManager/ViewManager.py" line="917"/>
         <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="933"/>
+        <location filename="../ViewManager/ViewManager.py" line="934"/>
         <source>Revert to last saved state</source>
         <translation>Ecraser avec le dernier état enregistré</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="924"/>
+        <location filename="../ViewManager/ViewManager.py" line="925"/>
         <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="935"/>
+        <location filename="../ViewManager/ViewManager.py" line="936"/>
         <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="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Cut</source>
         <translation>Couper</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Cu&amp;t</source>
         <translation>Cou&amp;per</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="955"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Cut the selection</source>
         <translation>Coupe la sélection</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="958"/>
         <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="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Copy</source>
         <translation>Copier</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>&amp;Copy</source>
         <translation>&amp;Copier</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="976"/>
         <source>Copy the selection</source>
         <translation>Copie la sélection</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="977"/>
+        <location filename="../ViewManager/ViewManager.py" line="978"/>
         <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="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Paste</source>
         <translation>Coller</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>&amp;Paste</source>
         <translation>Col&amp;ler</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="995"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Paste the last cut/copied text</source>
         <translation>Colle le dernier texte copié/coupé</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="998"/>
         <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="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>Clear</source>
         <translation>Effacer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1014"/>
+        <location filename="../ViewManager/ViewManager.py" line="1015"/>
         <source>Clear all text</source>
         <translation>Efface tout le texte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1016"/>
+        <location filename="../ViewManager/ViewManager.py" line="1017"/>
         <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="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>Indent</source>
         <translation>Indenter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>&amp;Indent</source>
         <translation>&amp;Indenter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1049"/>
+        <location filename="../ViewManager/ViewManager.py" line="1050"/>
         <source>Indent line</source>
         <translation>Indente la ligne</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1051"/>
+        <location filename="../ViewManager/ViewManager.py" line="1052"/>
         <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="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>Unindent</source>
         <translation>Désindenter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>U&amp;nindent</source>
         <translation>&amp;Désindenter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1068"/>
+        <location filename="../ViewManager/ViewManager.py" line="1069"/>
         <source>Unindent line</source>
         <translation>Désindenter la ligne</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1070"/>
+        <location filename="../ViewManager/ViewManager.py" line="1071"/>
         <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="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>Comment</source>
         <translation>Commenter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>C&amp;omment</source>
         <translation>C&amp;ommenter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1104"/>
+        <location filename="../ViewManager/ViewManager.py" line="1105"/>
         <source>Comment Line or Selection</source>
         <translation>Commenter la ligne ou la sélection</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1106"/>
+        <location filename="../ViewManager/ViewManager.py" line="1107"/>
         <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="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Uncomment</source>
         <translation>Décommenter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Unco&amp;mment</source>
         <translation>Déco&amp;mmenter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1123"/>
+        <location filename="../ViewManager/ViewManager.py" line="1124"/>
         <source>Uncomment Line or Selection</source>
         <translation>Décommenter la ligne ou la sélection</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1125"/>
+        <location filename="../ViewManager/ViewManager.py" line="1126"/>
         <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="1156"/>
+        <location filename="../ViewManager/ViewManager.py" line="1157"/>
         <source>Stream Comment</source>
         <translation>Commentaire type &quot;Strream&quot;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1161"/>
+        <location filename="../ViewManager/ViewManager.py" line="1162"/>
         <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="1164"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <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. 
@@ -82913,17 +82913,17 @@
 &lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1173"/>
+        <location filename="../ViewManager/ViewManager.py" line="1174"/>
         <source>Box Comment</source>
         <translation>Commentaire type &quot;Bloc&quot;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1178"/>
+        <location filename="../ViewManager/ViewManager.py" line="1179"/>
         <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="1180"/>
+        <location filename="../ViewManager/ViewManager.py" line="1181"/>
         <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. 
@@ -82934,1210 +82934,1210 @@
  */&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Select to brace</source>
         <translation>Sélection parenthèses</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Select to &amp;brace</source>
         <translation>Sélection parent&amp;hèses</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1196"/>
+        <location filename="../ViewManager/ViewManager.py" line="1197"/>
         <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="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>Select all</source>
         <translation>Tout sélectionner</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>&amp;Select all</source>
         <translation>Tout &amp;sélectionner</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1215"/>
+        <location filename="../ViewManager/ViewManager.py" line="1216"/>
         <source>Select all text</source>
         <translation>Sélectionne tout le texte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>Deselect all</source>
         <translation>Tout déselectionner</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>&amp;Deselect all</source>
         <translation>Tout &amp;déselectionner</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1232"/>
+        <location filename="../ViewManager/ViewManager.py" line="1233"/>
         <source>Deselect all text</source>
         <translation>Désélectionne tout le texte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1249"/>
+        <location filename="../ViewManager/ViewManager.py" line="1250"/>
         <source>Convert Line End Characters</source>
         <translation>Conversion des caractères de fin de lignes</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1242"/>
+        <location filename="../ViewManager/ViewManager.py" line="1243"/>
         <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="1251"/>
+        <location filename="../ViewManager/ViewManager.py" line="1252"/>
         <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="1265"/>
+        <location filename="../ViewManager/ViewManager.py" line="1266"/>
         <source>Shorten empty lines</source>
         <translation>Raccourcir les lignes vides</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1267"/>
+        <location filename="../ViewManager/ViewManager.py" line="1268"/>
         <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="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1277"/>
         <source>&amp;Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2748"/>
+        <location filename="../ViewManager/ViewManager.py" line="2749"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1283"/>
+        <location filename="../ViewManager/ViewManager.py" line="1284"/>
         <source>Complete current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1285"/>
+        <location filename="../ViewManager/ViewManager.py" line="1286"/>
         <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="1452"/>
+        <location filename="../ViewManager/ViewManager.py" line="1453"/>
         <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="1452"/>
+        <location filename="../ViewManager/ViewManager.py" line="1453"/>
         <source>Left</source>
         <translation>Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1466"/>
+        <location filename="../ViewManager/ViewManager.py" line="1467"/>
         <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="1466"/>
+        <location filename="../ViewManager/ViewManager.py" line="1467"/>
         <source>Right</source>
         <translation>Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1481"/>
         <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="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1481"/>
         <source>Up</source>
         <translation>Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1492"/>
+        <location filename="../ViewManager/ViewManager.py" line="1493"/>
         <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="1492"/>
+        <location filename="../ViewManager/ViewManager.py" line="1493"/>
         <source>Down</source>
         <translation>Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1504"/>
+        <location filename="../ViewManager/ViewManager.py" line="1505"/>
         <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="1538"/>
+        <location filename="../ViewManager/ViewManager.py" line="1539"/>
         <source>Alt+Left</source>
         <translation>Alt+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1518"/>
+        <location filename="../ViewManager/ViewManager.py" line="1519"/>
         <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="2418"/>
+        <location filename="../ViewManager/ViewManager.py" line="2419"/>
         <source>Alt+Right</source>
         <translation>Alt+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1532"/>
+        <location filename="../ViewManager/ViewManager.py" line="1533"/>
         <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="1583"/>
+        <location filename="../ViewManager/ViewManager.py" line="1584"/>
         <source>Ctrl+Left</source>
         <translation>Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1547"/>
+        <location filename="../ViewManager/ViewManager.py" line="1548"/>
         <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="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2173"/>
         <source>Ctrl+Right</source>
         <translation>Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2373"/>
+        <location filename="../ViewManager/ViewManager.py" line="2374"/>
         <source>Home</source>
         <translation>Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1586"/>
+        <location filename="../ViewManager/ViewManager.py" line="1587"/>
         <source>Alt+Home</source>
         <translation>Alt+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2388"/>
+        <location filename="../ViewManager/ViewManager.py" line="2389"/>
         <source>End</source>
         <translation>End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1609"/>
+        <location filename="../ViewManager/ViewManager.py" line="1610"/>
         <source>Scroll view down one line</source>
         <translation>Descend la vue d&apos;une ligne</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1699"/>
+        <location filename="../ViewManager/ViewManager.py" line="1700"/>
         <source>Ctrl+Down</source>
         <translation>Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1621"/>
+        <location filename="../ViewManager/ViewManager.py" line="1622"/>
         <source>Scroll view up one line</source>
         <translation>Monte la vue d&apos;une ligne</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1683"/>
         <source>Ctrl+Up</source>
         <translation>Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1632"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <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="1632"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Alt+Up</source>
         <translation>Alt+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1641"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <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="1641"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Alt+Down</source>
         <translation>Alt+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1653"/>
+        <location filename="../ViewManager/ViewManager.py" line="1654"/>
         <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="1653"/>
+        <location filename="../ViewManager/ViewManager.py" line="1654"/>
         <source>PgUp</source>
         <translation>PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1662"/>
+        <location filename="../ViewManager/ViewManager.py" line="1663"/>
         <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="1662"/>
+        <location filename="../ViewManager/ViewManager.py" line="1663"/>
         <source>PgDown</source>
         <translation>PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1685"/>
+        <location filename="../ViewManager/ViewManager.py" line="1686"/>
         <source>Ctrl+Home</source>
         <translation>Ctrl+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1702"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>Ctrl+End</source>
         <translation>Ctrl+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1708"/>
+        <location filename="../ViewManager/ViewManager.py" line="1709"/>
         <source>Indent one level</source>
         <translation>Indentation d&apos;un niveau</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1708"/>
+        <location filename="../ViewManager/ViewManager.py" line="1709"/>
         <source>Tab</source>
         <translation>Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1717"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Unindent one level</source>
         <translation>Désindentation d&apos;un niveau</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1717"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Shift+Tab</source>
         <translation>Shift+Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1728"/>
         <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="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1728"/>
         <source>Shift+Left</source>
         <translation>Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1742"/>
+        <location filename="../ViewManager/ViewManager.py" line="1743"/>
         <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="1742"/>
+        <location filename="../ViewManager/ViewManager.py" line="1743"/>
         <source>Shift+Right</source>
         <translation>Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1757"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <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="1757"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Shift+Up</source>
         <translation>Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1772"/>
+        <location filename="../ViewManager/ViewManager.py" line="1773"/>
         <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="1772"/>
+        <location filename="../ViewManager/ViewManager.py" line="1773"/>
         <source>Shift+Down</source>
         <translation>Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1787"/>
+        <location filename="../ViewManager/ViewManager.py" line="1788"/>
         <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="1823"/>
+        <location filename="../ViewManager/ViewManager.py" line="1824"/>
         <source>Alt+Shift+Left</source>
         <translation>Alt+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1802"/>
         <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="2433"/>
+        <location filename="../ViewManager/ViewManager.py" line="2434"/>
         <source>Alt+Shift+Right</source>
         <translation>Alt+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1815"/>
+        <location filename="../ViewManager/ViewManager.py" line="1816"/>
         <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="2527"/>
+        <location filename="../ViewManager/ViewManager.py" line="2528"/>
         <source>Ctrl+Shift+Left</source>
         <translation>Ctrl+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1832"/>
+        <location filename="../ViewManager/ViewManager.py" line="1833"/>
         <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="2189"/>
+        <location filename="../ViewManager/ViewManager.py" line="2190"/>
         <source>Ctrl+Shift+Right</source>
         <translation>Ctrl+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1861"/>
+        <location filename="../ViewManager/ViewManager.py" line="1862"/>
         <source>Shift+Home</source>
         <translation>Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2293"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Alt+Shift+Home</source>
         <translation>Alt+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1878"/>
+        <location filename="../ViewManager/ViewManager.py" line="1879"/>
         <source>Shift+End</source>
         <translation>Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1884"/>
+        <location filename="../ViewManager/ViewManager.py" line="1885"/>
         <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="1884"/>
+        <location filename="../ViewManager/ViewManager.py" line="1885"/>
         <source>Alt+Shift+Up</source>
         <translation>Alt+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1897"/>
+        <location filename="../ViewManager/ViewManager.py" line="1898"/>
         <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="1897"/>
+        <location filename="../ViewManager/ViewManager.py" line="1898"/>
         <source>Alt+Shift+Down</source>
         <translation>Alt+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1910"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <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="1910"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Shift+PgUp</source>
         <translation>Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1922"/>
+        <location filename="../ViewManager/ViewManager.py" line="1923"/>
         <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="1922"/>
+        <location filename="../ViewManager/ViewManager.py" line="1923"/>
         <source>Shift+PgDown</source>
         <translation>Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1949"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Ctrl+Shift+Home</source>
         <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1966"/>
+        <location filename="../ViewManager/ViewManager.py" line="1967"/>
         <source>Ctrl+Shift+End</source>
         <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1972"/>
+        <location filename="../ViewManager/ViewManager.py" line="1973"/>
         <source>Delete previous character</source>
         <translation>Suppression du caractère précédent</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1972"/>
+        <location filename="../ViewManager/ViewManager.py" line="1973"/>
         <source>Backspace</source>
         <translation>Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2003"/>
+        <location filename="../ViewManager/ViewManager.py" line="2004"/>
         <source>Delete current character</source>
         <translation>Suppression du caractère courant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2003"/>
+        <location filename="../ViewManager/ViewManager.py" line="2004"/>
         <source>Del</source>
         <translation>Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2017"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <source>Delete word to left</source>
         <translation>Suppression du mot de gauche</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2017"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <source>Ctrl+Backspace</source>
         <translation>Ctrl+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2028"/>
+        <location filename="../ViewManager/ViewManager.py" line="2029"/>
         <source>Delete word to right</source>
         <translation>Suppression du mot de droite</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2028"/>
+        <location filename="../ViewManager/ViewManager.py" line="2029"/>
         <source>Ctrl+Del</source>
         <translation>Ctrl+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2038"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Delete line to left</source>
         <translation>Suppression de la partie gauche de la ligne</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2038"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation>Ctrl+Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2049"/>
+        <location filename="../ViewManager/ViewManager.py" line="2050"/>
         <source>Delete line to right</source>
         <translation>Suppression de la partie droite de la ligne</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2058"/>
+        <location filename="../ViewManager/ViewManager.py" line="2059"/>
         <source>Ctrl+Shift+Del</source>
         <translation>Ctrl+Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Insert new line</source>
         <translation>Insertion d&apos;une nouvelle ligne</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Return</source>
         <translation>Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Delete current line</source>
         <translation>Suppression de la ligne courante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Ctrl+Shift+L</source>
         <translation>Ctrl+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2098"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Duplicate current line</source>
         <translation>Duplication de la ligne courante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2098"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Ctrl+D</source>
         <translation>Ctrl+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2109"/>
+        <location filename="../ViewManager/ViewManager.py" line="2110"/>
         <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="2109"/>
+        <location filename="../ViewManager/ViewManager.py" line="2110"/>
         <source>Ctrl+T</source>
         <translation>Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2132"/>
+        <location filename="../ViewManager/ViewManager.py" line="2133"/>
         <source>Cut current line</source>
         <translation>Couper la ligne courante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2132"/>
+        <location filename="../ViewManager/ViewManager.py" line="2133"/>
         <source>Alt+Shift+L</source>
         <translation>Alt+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2142"/>
+        <location filename="../ViewManager/ViewManager.py" line="2143"/>
         <source>Copy current line</source>
         <translation>Copier la ligne courante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2142"/>
+        <location filename="../ViewManager/ViewManager.py" line="2143"/>
         <source>Ctrl+Shift+T</source>
         <translation>Ctrl+Shift+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2153"/>
+        <location filename="../ViewManager/ViewManager.py" line="2154"/>
         <source>Toggle insert/overtype</source>
         <translation>Basculer de mode Insertion /Ecrasement</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2153"/>
+        <location filename="../ViewManager/ViewManager.py" line="2154"/>
         <source>Ins</source>
         <translation>Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2717"/>
+        <location filename="../ViewManager/ViewManager.py" line="2718"/>
         <source>Convert selection to lower case</source>
         <translation>Conversion de la sélection en minuscules</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2717"/>
+        <location filename="../ViewManager/ViewManager.py" line="2718"/>
         <source>Alt+Shift+U</source>
         <translation>Alt+Shift+U</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2729"/>
+        <location filename="../ViewManager/ViewManager.py" line="2730"/>
         <source>Convert selection to upper case</source>
         <translation>Conversion de la sélection en majuscules</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2729"/>
+        <location filename="../ViewManager/ViewManager.py" line="2730"/>
         <source>Ctrl+Shift+U</source>
         <translation>Ctrl+Shift+U</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2175"/>
+        <location filename="../ViewManager/ViewManager.py" line="2176"/>
         <source>Alt+End</source>
         <translation>Alt+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2195"/>
+        <location filename="../ViewManager/ViewManager.py" line="2196"/>
         <source>Formfeed</source>
         <translation>Chargement de page</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2204"/>
+        <location filename="../ViewManager/ViewManager.py" line="2205"/>
         <source>Escape</source>
         <translation>Echappement</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2204"/>
+        <location filename="../ViewManager/ViewManager.py" line="2205"/>
         <source>Esc</source>
         <translation>Esc</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2213"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <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="2213"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <source>Alt+Ctrl+Down</source>
         <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2229"/>
+        <location filename="../ViewManager/ViewManager.py" line="2230"/>
         <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="2229"/>
+        <location filename="../ViewManager/ViewManager.py" line="2230"/>
         <source>Alt+Ctrl+Up</source>
         <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2244"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <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="2244"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <source>Alt+Ctrl+Left</source>
         <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2262"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <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="2262"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Alt+Ctrl+Right</source>
         <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2318"/>
+        <location filename="../ViewManager/ViewManager.py" line="2319"/>
         <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="2333"/>
+        <location filename="../ViewManager/ViewManager.py" line="2334"/>
         <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="3296"/>
+        <location filename="../ViewManager/ViewManager.py" line="3297"/>
         <source>Search</source>
         <translation>Rechercher</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2849"/>
+        <location filename="../ViewManager/ViewManager.py" line="2850"/>
         <source>&amp;Search...</source>
         <translation>Re&amp;chercher...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2857"/>
+        <location filename="../ViewManager/ViewManager.py" line="2858"/>
         <source>Search for a text</source>
         <translation>Recherche de texte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2859"/>
+        <location filename="../ViewManager/ViewManager.py" line="2860"/>
         <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="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>Replace</source>
         <translation>Remplacer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>&amp;Replace...</source>
         <translation>&amp;Remplacer...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2982"/>
+        <location filename="../ViewManager/ViewManager.py" line="2983"/>
         <source>Replace some text</source>
         <translation>Remplacer un texte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2984"/>
+        <location filename="../ViewManager/ViewManager.py" line="2985"/>
         <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="3070"/>
+        <location filename="../ViewManager/ViewManager.py" line="3071"/>
         <source>Goto Line</source>
         <translation>Aller à la ligne</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3062"/>
+        <location filename="../ViewManager/ViewManager.py" line="3063"/>
         <source>&amp;Goto Line...</source>
         <translation>Aller à la &amp;ligne...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3072"/>
+        <location filename="../ViewManager/ViewManager.py" line="3073"/>
         <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="3089"/>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
         <source>Goto Brace</source>
         <translation>Aller à la parenthèse</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3081"/>
+        <location filename="../ViewManager/ViewManager.py" line="3082"/>
         <source>Goto &amp;Brace</source>
         <translation>Aller à la &amp;parenthèse</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3091"/>
+        <location filename="../ViewManager/ViewManager.py" line="3092"/>
         <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="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Search in Files</source>
         <translation>Rechercher dans les fichiers</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Search in &amp;Files...</source>
         <translation>Rechercher dans les &amp;Fichiers...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3177"/>
+        <location filename="../ViewManager/ViewManager.py" line="3178"/>
         <source>Search for a text in files</source>
         <translation>Rechercher un texte dans les fichiers</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3179"/>
+        <location filename="../ViewManager/ViewManager.py" line="3180"/>
         <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="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom in</source>
         <translation>Zoom avant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom &amp;in</source>
         <translation>Zoom a&amp;vant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3344"/>
-        <source>Zoom in on the text</source>
-        <translation>Zoom sur le texte</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3346"/>
+        <source>Zoom in on the text</source>
+        <translation>Zoom sur le texte</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3348"/>
         <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="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom out</source>
         <translation>Zoom arrière</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom &amp;out</source>
         <translation>Zoom a&amp;rrière</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3363"/>
-        <source>Zoom out on the text</source>
-        <translation>Zoom arrière du texte</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3365"/>
+        <source>Zoom out on the text</source>
+        <translation>Zoom arrière du texte</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3367"/>
         <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="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>Zoom</source>
         <translation>Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>&amp;Zoom</source>
         <translation>&amp;Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3400"/>
-        <source>Zoom the text</source>
-        <translation>Zoom du texte</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3402"/>
+        <source>Zoom the text</source>
+        <translation>Zoom du texte</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3404"/>
         <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="3415"/>
-        <source>Toggle all folds</source>
-        <translation>Contracte/Déploie tout le code</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3411"/>
-        <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="3417"/>
+        <source>Toggle all folds</source>
+        <translation>Contracte/Déploie tout le code</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3413"/>
+        <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="3419"/>
         <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="3447"/>
-        <source>Toggle current fold</source>
-        <translation>Contracte/Déploie le paragraphe courant</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3443"/>
-        <source>Toggle &amp;current fold</source>
-        <translation>Contracte/Déploie le paragraphe &amp;courant</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3449"/>
+        <source>Toggle current fold</source>
+        <translation>Contracte/Déploie le paragraphe courant</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3445"/>
+        <source>Toggle &amp;current fold</source>
+        <translation>Contracte/Déploie le paragraphe &amp;courant</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3451"/>
         <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="3479"/>
-        <source>Remove all highlights</source>
-        <translation>Suppression de tous les surlignages</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3481"/>
+        <source>Remove all highlights</source>
+        <translation>Suppression de tous les surlignages</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3483"/>
         <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="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3529"/>
         <source>Split view</source>
         <translation>Diviser la fenêtre</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3529"/>
         <source>&amp;Split view</source>
         <translation>&amp;Diviser la fenêtre</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3532"/>
-        <source>Add a split to the view</source>
-        <translation>Ajoute une division de fenêtre</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3534"/>
+        <source>Add a split to the view</source>
+        <translation>Ajoute une division de fenêtre</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3536"/>
         <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="3542"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Arrange horizontally</source>
         <translation>Division horizontale/verticale</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3542"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Arrange &amp;horizontally</source>
         <translation>Division &amp;horizontale/verticale</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation>Bascule la division horizontalement ou verticalement</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3548"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation>Bascule la division horizontalement ou verticalement</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3550"/>
         <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="3557"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>Remove split</source>
         <translation>Suppression du découpage</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3557"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>&amp;Remove split</source>
         <translation>&amp;Suppression du découpage</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3562"/>
-        <source>Remove the current split</source>
-        <translation>Supprime le découpage de fenêtre courant</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3564"/>
+        <source>Remove the current split</source>
+        <translation>Supprime le découpage de fenêtre courant</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3566"/>
         <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="3754"/>
-        <source>Start Macro Recording</source>
-        <translation>Démarrer l&apos;enregistrement de la macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3748"/>
-        <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="3756"/>
+        <source>Start Macro Recording</source>
+        <translation>Démarrer l&apos;enregistrement de la macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3750"/>
+        <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="3758"/>
         <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="3768"/>
-        <source>Stop Macro Recording</source>
-        <translation>Arrêter l&apos;enregistrement de la macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3764"/>
-        <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="3770"/>
+        <source>Stop Macro Recording</source>
+        <translation>Arrêter l&apos;enregistrement de la macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3766"/>
+        <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="3772"/>
         <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="3782"/>
-        <source>Run Macro</source>
-        <translation>Lancer une macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3778"/>
-        <source>&amp;Run Macro</source>
-        <translation>&amp;Lancer une macro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3784"/>
+        <source>Run Macro</source>
+        <translation>Lancer une macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3780"/>
+        <source>&amp;Run Macro</source>
+        <translation>&amp;Lancer une macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <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="3796"/>
-        <source>Delete Macro</source>
-        <translation>Supprimer une macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3792"/>
-        <source>&amp;Delete Macro</source>
-        <translation>&amp;Supprimer une macro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Delete Macro</source>
+        <translation>Supprimer une macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3794"/>
+        <source>&amp;Delete Macro</source>
+        <translation>&amp;Supprimer une macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3800"/>
         <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="3810"/>
-        <source>Load Macro</source>
-        <translation>Charger une macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3806"/>
-        <source>&amp;Load Macro</source>
-        <translation>&amp;Charger une macro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3812"/>
+        <source>Load Macro</source>
+        <translation>Charger une macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3808"/>
+        <source>&amp;Load Macro</source>
+        <translation>&amp;Charger une macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3814"/>
         <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="3824"/>
-        <source>Save Macro</source>
-        <translation>Enregistrer une macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3820"/>
-        <source>&amp;Save Macro</source>
-        <translation>&amp;Enregistrer la macro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3826"/>
+        <source>Save Macro</source>
+        <translation>Enregistrer une macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
+        <source>&amp;Save Macro</source>
+        <translation>&amp;Enregistrer la macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3828"/>
         <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="3868"/>
-        <source>Toggle Bookmark</source>
-        <translation>Placer/Supprimer un signet</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3860"/>
-        <source>&amp;Toggle Bookmark</source>
-        <translation>&amp;Placer/Supprimer un signet</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3870"/>
+        <source>Toggle Bookmark</source>
+        <translation>Placer/Supprimer un signet</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
+        <source>&amp;Toggle Bookmark</source>
+        <translation>&amp;Placer/Supprimer un signet</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3872"/>
         <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="3887"/>
-        <source>Next Bookmark</source>
-        <translation>Signet suivant</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3879"/>
-        <source>&amp;Next Bookmark</source>
-        <translation>Signet suiva&amp;nt</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3889"/>
+        <source>Next Bookmark</source>
+        <translation>Signet suivant</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3881"/>
+        <source>&amp;Next Bookmark</source>
+        <translation>Signet suiva&amp;nt</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3891"/>
         <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="3905"/>
-        <source>Previous Bookmark</source>
-        <translation>Signet précédent</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3897"/>
-        <source>&amp;Previous Bookmark</source>
-        <translation>Signet &amp;précédent</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3907"/>
+        <source>Previous Bookmark</source>
+        <translation>Signet précédent</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3899"/>
+        <source>&amp;Previous Bookmark</source>
+        <translation>Signet &amp;précédent</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3909"/>
         <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="3922"/>
-        <source>Clear Bookmarks</source>
-        <translation>Supprimer les signets</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3915"/>
-        <source>&amp;Clear Bookmarks</source>
-        <translation>S&amp;upprimer les signets</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3924"/>
+        <source>Clear Bookmarks</source>
+        <translation>Supprimer les signets</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
+        <source>&amp;Clear Bookmarks</source>
+        <translation>S&amp;upprimer les signets</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3926"/>
         <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="4133"/>
+        <location filename="../ViewManager/ViewManager.py" line="4135"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Signets</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4377"/>
         <source>File Modified</source>
         <translation>Fichier Modifié</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5219"/>
+        <location filename="../ViewManager/ViewManager.py" line="5221"/>
         <source>&amp;Clear</source>
         <translation>&amp;Effacer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5213"/>
+        <location filename="../ViewManager/ViewManager.py" line="5215"/>
         <source>&amp;Add</source>
         <translation>&amp;Ajouter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5216"/>
+        <location filename="../ViewManager/ViewManager.py" line="5218"/>
         <source>&amp;Edit...</source>
         <translation>&amp;Editer...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Search File</source>
         <translation>Rechercher un fichier</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Search &amp;File...</source>
         <translation>Rechercher un &amp;fichier...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="771"/>
+        <location filename="../ViewManager/ViewManager.py" line="772"/>
         <source>Search for a file</source>
         <translation>Recherche d&apos;un fichier</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="773"/>
+        <location filename="../ViewManager/ViewManager.py" line="774"/>
         <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="1294"/>
+        <location filename="../ViewManager/ViewManager.py" line="1295"/>
         <source>Complete from Document</source>
         <translation type="unfinished">à partir du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1304"/>
+        <location filename="../ViewManager/ViewManager.py" line="1305"/>
         <source>Complete current word from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1307"/>
+        <location filename="../ViewManager/ViewManager.py" line="1308"/>
         <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="1317"/>
+        <location filename="../ViewManager/ViewManager.py" line="1318"/>
         <source>Complete from APIs</source>
         <translation type="unfinished">à partir des fichiers API</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1328"/>
         <source>Complete current word from APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1330"/>
+        <location filename="../ViewManager/ViewManager.py" line="1331"/>
         <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="3938"/>
-        <source>Goto Syntax Error</source>
-        <translation>Aller à l&apos;erreur de syntaxe suivante</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3932"/>
-        <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="3940"/>
+        <source>Goto Syntax Error</source>
+        <translation>Aller à l&apos;erreur de syntaxe suivante</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3934"/>
+        <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="3942"/>
         <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="3953"/>
-        <source>Clear Syntax Errors</source>
-        <translation>Effacer les erreurs de syntaxe</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3948"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation>E&amp;ffacer les erreurs de syntaxe</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3955"/>
+        <source>Clear Syntax Errors</source>
+        <translation>Effacer les erreurs de syntaxe</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3950"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation>E&amp;ffacer les erreurs de syntaxe</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3957"/>
         <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="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1984"/>
+        <location filename="../ViewManager/ViewManager.py" line="1985"/>
         <source>Shift+Backspace</source>
         <translation>Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4023"/>
-        <source>Next uncovered line</source>
-        <translation>Ligne non executée suivante</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4017"/>
-        <source>&amp;Next uncovered line</source>
-        <translation>Ligne non executée &amp;suivante</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4025"/>
+        <source>Next uncovered line</source>
+        <translation>Ligne non executée suivante</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4019"/>
+        <source>&amp;Next uncovered line</source>
+        <translation>Ligne non executée &amp;suivante</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4027"/>
         <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="4042"/>
-        <source>Previous uncovered line</source>
-        <translation>Ligne non executée précédente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4034"/>
-        <source>&amp;Previous uncovered line</source>
-        <translation>Ligne non executée &amp;précédente</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4044"/>
+        <source>Previous uncovered line</source>
+        <translation>Ligne non executée précédente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
+        <source>&amp;Previous uncovered line</source>
+        <translation>Ligne non executée &amp;précédente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4046"/>
         <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="611"/>
+        <location filename="../ViewManager/ViewManager.py" line="612"/>
         <source>Open a file</source>
         <translation>Ouvrir un Fichier</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="613"/>
+        <location filename="../ViewManager/ViewManager.py" line="614"/>
         <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>
@@ -84210,450 +84210,450 @@
         <translation type="obsolete">&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="1079"/>
+        <location filename="../ViewManager/ViewManager.py" line="1080"/>
         <source>Smart indent</source>
         <translation>Indentation intelligente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1085"/>
+        <location filename="../ViewManager/ViewManager.py" line="1086"/>
         <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="1087"/>
+        <location filename="../ViewManager/ViewManager.py" line="1088"/>
         <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="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>Next split</source>
         <translation>Onglet suivant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>&amp;Next split</source>
         <translation>O&amp;nglet suivant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3579"/>
-        <source>Move to the next split</source>
-        <translation>Basculer vers l&apos;onglet suivant</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3581"/>
+        <source>Move to the next split</source>
+        <translation>Basculer vers l&apos;onglet suivant</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3583"/>
         <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="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Previous split</source>
         <translation>Onglet précédent</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>&amp;Previous split</source>
         <translation>Onglet &amp;précédent</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3595"/>
-        <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="3597"/>
+        <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="3599"/>
         <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="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Enter</source>
         <translation>Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1350"/>
+        <location filename="../ViewManager/ViewManager.py" line="1351"/>
         <source>Complete current word from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1340"/>
+        <location filename="../ViewManager/ViewManager.py" line="1341"/>
         <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="1353"/>
+        <location filename="../ViewManager/ViewManager.py" line="1354"/>
         <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="3431"/>
-        <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="3425"/>
-        <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="3433"/>
+        <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="3427"/>
+        <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="3435"/>
         <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="2351"/>
+        <location filename="../ViewManager/ViewManager.py" line="2352"/>
         <source>Duplicate current selection</source>
         <translation>Duplication de la sélection courante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2351"/>
+        <location filename="../ViewManager/ViewManager.py" line="2352"/>
         <source>Ctrl+Shift+D</source>
         <translation>Ctrl+Shift+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation>Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation>Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Alt+Ctrl+F</source>
         <comment>File|Search File</comment>
         <translation>Alt+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="787"/>
+        <location filename="../ViewManager/ViewManager.py" line="788"/>
         <source>&amp;File</source>
         <translation>&amp;Fichier</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="840"/>
+        <location filename="../ViewManager/ViewManager.py" line="841"/>
         <source>File</source>
         <translation>Fichier</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="924"/>
+        <location filename="../ViewManager/ViewManager.py" line="925"/>
         <source>Ctrl+Y</source>
         <comment>Edit|Revert</comment>
         <translation>Ctrl+Y</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>Ctrl+I</source>
         <comment>Edit|Indent</comment>
         <translation>Ctrl+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>Ctrl+Shift+I</source>
         <comment>Edit|Unindent</comment>
         <translation>Ctrl+Shift+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>Ctrl+M</source>
         <comment>Edit|Comment</comment>
         <translation>Ctrl+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Alt+Ctrl+M</source>
         <comment>Edit|Uncomment</comment>
         <translation>Alt+Ctrl+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Ctrl+E</source>
         <comment>Edit|Select to brace</comment>
         <translation>Ctrl+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select all</comment>
         <translation>Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>Alt+Ctrl+A</source>
         <comment>Edit|Deselect all</comment>
         <translation>Alt+Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2758"/>
+        <location filename="../ViewManager/ViewManager.py" line="2759"/>
         <source>&amp;Edit</source>
         <translation>&amp;Edition</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2817"/>
+        <location filename="../ViewManager/ViewManager.py" line="2818"/>
         <source>Edit</source>
         <translation>Édition</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2849"/>
+        <location filename="../ViewManager/ViewManager.py" line="2850"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation>Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation>Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3062"/>
+        <location filename="../ViewManager/ViewManager.py" line="3063"/>
         <source>Ctrl+G</source>
         <comment>Search|Goto Line</comment>
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3081"/>
+        <location filename="../ViewManager/ViewManager.py" line="3082"/>
         <source>Ctrl+L</source>
         <comment>Search|Goto Brace</comment>
         <translation>Ctrl+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation>Shift+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation>Ctrl+#</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation>Ctrl+Alt+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation>Ctrl+Alt+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3683"/>
         <source>&amp;View</source>
         <translation>&amp;Affichage</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3718"/>
+        <location filename="../ViewManager/ViewManager.py" line="3720"/>
         <source>View</source>
         <translation>Affichage</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3842"/>
+        <location filename="../ViewManager/ViewManager.py" line="3844"/>
         <source>&amp;Macros</source>
         <translation>&amp;Macros</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3860"/>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation>Alt+Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3879"/>
+        <location filename="../ViewManager/ViewManager.py" line="3881"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation>Ctrl+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3897"/>
+        <location filename="../ViewManager/ViewManager.py" line="3899"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation>Ctrl+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3915"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation>Alt+Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4179"/>
+        <location filename="../ViewManager/ViewManager.py" line="4181"/>
         <source>Bookmarks</source>
         <translation>Signets</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4333"/>
         <source>Open files</source>
         <translation>Ouvrir Fichiers</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4060"/>
-        <source>Next Task</source>
-        <translation>Tâche suivante</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4054"/>
-        <source>&amp;Next Task</source>
-        <translation>Tâche suiva&amp;nte</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4062"/>
+        <source>Next Task</source>
+        <translation>Tâche suivante</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4056"/>
+        <source>&amp;Next Task</source>
+        <translation>Tâche suiva&amp;nte</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4064"/>
         <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="4077"/>
-        <source>Previous Task</source>
-        <translation>Tâche précédente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4070"/>
-        <source>&amp;Previous Task</source>
-        <translation>Tâche &amp;précédente</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4079"/>
+        <source>Previous Task</source>
+        <translation>Tâche précédente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4072"/>
+        <source>&amp;Previous Task</source>
+        <translation>Tâche &amp;précédente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4081"/>
         <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="3262"/>
+        <location filename="../ViewManager/ViewManager.py" line="3263"/>
         <source>&amp;Search</source>
         <translation>Re&amp;chercher</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>Search next</source>
         <translation>Chercher suivant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>Search &amp;next</source>
         <translation>Chercher &amp;suivant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation>F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Search previous</source>
         <translation>Chercher précédent</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Search &amp;previous</source>
         <translation>Chercher &amp;précédent</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation>Shift+F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1198"/>
+        <location filename="../ViewManager/ViewManager.py" line="1199"/>
         <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="1217"/>
+        <location filename="../ViewManager/ViewManager.py" line="1218"/>
         <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="1234"/>
+        <location filename="../ViewManager/ViewManager.py" line="1235"/>
         <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="863"/>
+        <location filename="../ViewManager/ViewManager.py" line="864"/>
         <source>Export as</source>
         <translation>Exporter en tant que</translation>
     </message>
@@ -84663,69 +84663,69 @@
         <translation type="obsolete">Edition de la recherche rapide</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>Calltip</source>
         <translation>Calltip</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>&amp;Calltip</source>
         <translation>&amp;Calltip (ou suggestion d&apos;arguments)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>Meta+Alt+Space</source>
         <comment>Edit|Calltip</comment>
         <translation type="unfinished">Meta+Alt+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1370"/>
+        <location filename="../ViewManager/ViewManager.py" line="1371"/>
         <source>Show Calltips</source>
         <translation>Affiche les calltips</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1372"/>
+        <location filename="../ViewManager/ViewManager.py" line="1373"/>
         <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="2878"/>
+        <location filename="../ViewManager/ViewManager.py" line="2879"/>
         <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="2880"/>
+        <location filename="../ViewManager/ViewManager.py" line="2881"/>
         <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="2898"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <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="2900"/>
+        <location filename="../ViewManager/ViewManager.py" line="2901"/>
         <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="2910"/>
+        <location filename="../ViewManager/ViewManager.py" line="2911"/>
         <source>Clear search markers</source>
         <translation>Effacer les marqueurs de recherche</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2910"/>
+        <location filename="../ViewManager/ViewManager.py" line="2911"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation>Ctrl+3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <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="2920"/>
+        <location filename="../ViewManager/ViewManager.py" line="2921"/>
         <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>
@@ -84745,956 +84745,956 @@
         <translation type="obsolete">&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="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="749"/>
         <source>Print Preview</source>
         <translation>Aperçu avant impression</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="753"/>
+        <location filename="../ViewManager/ViewManager.py" line="754"/>
         <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="755"/>
+        <location filename="../ViewManager/ViewManager.py" line="756"/>
         <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="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <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="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <source>Shift+Return</source>
         <translation>Shift+Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <source>Shift+Enter</source>
         <translation>Shift+Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Replace in Files</source>
         <translation>Remplacer dans les fichiers</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Replace in F&amp;iles...</source>
         <translation>Remplacer dans les f&amp;ichiers...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation>Shift+Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3196"/>
+        <location filename="../ViewManager/ViewManager.py" line="3197"/>
         <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="3198"/>
+        <location filename="../ViewManager/ViewManager.py" line="3199"/>
         <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="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4221"/>
+        <location filename="../ViewManager/ViewManager.py" line="4223"/>
         <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="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>Automatic spell checking</source>
         <translation>Vérification orthographique automatique</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>&amp;Automatic spell checking</source>
         <translation>Vérification orthographique &amp;automatique</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4239"/>
-        <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="4241"/>
+        <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="4243"/>
         <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="4308"/>
+        <location filename="../ViewManager/ViewManager.py" line="4310"/>
         <source>Spelling</source>
         <translation>Orthographe</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4377"/>
         <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="4774"/>
+        <location filename="../ViewManager/ViewManager.py" line="4776"/>
         <source>Line: {0:5}</source>
         <translation>Ligne: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4780"/>
+        <location filename="../ViewManager/ViewManager.py" line="4782"/>
         <source>Pos: {0:5}</source>
         <translation>Position: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3970"/>
+        <location filename="../ViewManager/ViewManager.py" line="3972"/>
         <source>Next warning message</source>
         <translation>Message d&apos;avertissement suivant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3964"/>
+        <location filename="../ViewManager/ViewManager.py" line="3966"/>
         <source>&amp;Next warning message</source>
         <translation>Message d&apos;avertisseme&amp;nt suivant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3989"/>
+        <location filename="../ViewManager/ViewManager.py" line="3991"/>
         <source>Previous warning message</source>
         <translation>Message d&apos;avertissement précédente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3981"/>
+        <location filename="../ViewManager/ViewManager.py" line="3983"/>
         <source>&amp;Previous warning message</source>
         <translation>Message d&apos;avertissement &amp;précédente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4007"/>
+        <location filename="../ViewManager/ViewManager.py" line="4009"/>
         <source>Clear Warning Messages</source>
         <translation>Vider messages d&apos;avertissement</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4000"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>Vider messages d&apos;&amp;avertissement</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1031"/>
+        <location filename="../ViewManager/ViewManager.py" line="1032"/>
         <source>Join Lines</source>
         <translation>Unir lignes</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1024"/>
+        <location filename="../ViewManager/ViewManager.py" line="1025"/>
         <source>Ctrl+J</source>
         <comment>Edit|Join Lines</comment>
         <translation>Ctrl+J</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1033"/>
+        <location filename="../ViewManager/ViewManager.py" line="1034"/>
         <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="3110"/>
+        <location filename="../ViewManager/ViewManager.py" line="3111"/>
         <source>Goto Last Edit Location</source>
         <translation>Aller à la dernière modification</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3099"/>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation>Aller à la dernièr&amp;e modification</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3099"/>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <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="3113"/>
+        <location filename="../ViewManager/ViewManager.py" line="3114"/>
         <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="3122"/>
+        <location filename="../ViewManager/ViewManager.py" line="3123"/>
         <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="3122"/>
+        <location filename="../ViewManager/ViewManager.py" line="3123"/>
         <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="3132"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <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="3136"/>
+        <location filename="../ViewManager/ViewManager.py" line="3137"/>
         <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="3146"/>
+        <location filename="../ViewManager/ViewManager.py" line="3147"/>
         <source>Goto Next Method or Class</source>
         <translation>Aller à la classe ou fonction suivante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3146"/>
+        <location filename="../ViewManager/ViewManager.py" line="3147"/>
         <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="3156"/>
+        <location filename="../ViewManager/ViewManager.py" line="3157"/>
         <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="3158"/>
+        <location filename="../ViewManager/ViewManager.py" line="3159"/>
         <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="3605"/>
+        <location filename="../ViewManager/ViewManager.py" line="3607"/>
         <source>Preview</source>
         <translation>Aperçu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3610"/>
-        <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="3612"/>
+        <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="3614"/>
         <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="1461"/>
+        <location filename="../ViewManager/ViewManager.py" line="1462"/>
         <source>Meta+B</source>
         <translation>Meta+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1474"/>
+        <location filename="../ViewManager/ViewManager.py" line="1475"/>
         <source>Meta+F</source>
         <translation>Meta+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1486"/>
+        <location filename="../ViewManager/ViewManager.py" line="1487"/>
         <source>Meta+P</source>
         <translation>Meta+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1498"/>
+        <location filename="../ViewManager/ViewManager.py" line="1499"/>
         <source>Meta+N</source>
         <translation>Meta+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1559"/>
+        <location filename="../ViewManager/ViewManager.py" line="1560"/>
         <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="1575"/>
+        <location filename="../ViewManager/ViewManager.py" line="1576"/>
         <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="1592"/>
+        <location filename="../ViewManager/ViewManager.py" line="1593"/>
         <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="1600"/>
+        <location filename="../ViewManager/ViewManager.py" line="1601"/>
         <source>Meta+E</source>
         <translation>Meta+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1668"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Meta+V</source>
         <translation>Meta+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1674"/>
+        <location filename="../ViewManager/ViewManager.py" line="1675"/>
         <source>Move to start of document</source>
         <translation>Déplacement au début du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1692"/>
         <source>Move to end of document</source>
         <translation>Déplacement à la fin du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1737"/>
         <source>Meta+Shift+B</source>
         <translation>Meta+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1751"/>
+        <location filename="../ViewManager/ViewManager.py" line="1752"/>
         <source>Meta+Shift+F</source>
         <translation>Meta+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1766"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Meta+Shift+P</source>
         <translation>Meta+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1781"/>
+        <location filename="../ViewManager/ViewManager.py" line="1782"/>
         <source>Meta+Shift+N</source>
         <translation>Meta+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1849"/>
+        <location filename="../ViewManager/ViewManager.py" line="1850"/>
         <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="1867"/>
+        <location filename="../ViewManager/ViewManager.py" line="1868"/>
         <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="1875"/>
+        <location filename="../ViewManager/ViewManager.py" line="1876"/>
         <source>Meta+Shift+E</source>
         <translation>Meta+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1932"/>
+        <location filename="../ViewManager/ViewManager.py" line="1933"/>
         <source>Meta+Shift+V</source>
         <translation>Meta+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1939"/>
         <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="1946"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Ctrl+Shift+Up</source>
         <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1955"/>
+        <location filename="../ViewManager/ViewManager.py" line="1956"/>
         <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="1963"/>
+        <location filename="../ViewManager/ViewManager.py" line="1964"/>
         <source>Ctrl+Shift+Down</source>
         <translation>Ctrl+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1981"/>
+        <location filename="../ViewManager/ViewManager.py" line="1982"/>
         <source>Meta+H</source>
         <translation>Meta+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1990"/>
+        <location filename="../ViewManager/ViewManager.py" line="1991"/>
         <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="2011"/>
+        <location filename="../ViewManager/ViewManager.py" line="2012"/>
         <source>Meta+D</source>
         <translation>Meta+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2055"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Meta+K</source>
         <translation>Meta+K</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2164"/>
+        <location filename="../ViewManager/ViewManager.py" line="2165"/>
         <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="2181"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <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="2223"/>
+        <location filename="../ViewManager/ViewManager.py" line="2224"/>
         <source>Meta+Alt+Shift+N</source>
         <translation>Meta+Alt+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2238"/>
+        <location filename="../ViewManager/ViewManager.py" line="2239"/>
         <source>Meta+Alt+Shift+P</source>
         <translation>Meta+Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2256"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <source>Meta+Alt+Shift+B</source>
         <translation>Meta+Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2275"/>
         <source>Meta+Alt+Shift+F</source>
         <translation>Meta+Alt+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2280"/>
+        <location filename="../ViewManager/ViewManager.py" line="2281"/>
         <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="2299"/>
+        <location filename="../ViewManager/ViewManager.py" line="2300"/>
         <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="2309"/>
+        <location filename="../ViewManager/ViewManager.py" line="2310"/>
         <source>Meta+Alt+Shift+E</source>
         <translation>Meta+Alt+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2312"/>
+        <location filename="../ViewManager/ViewManager.py" line="2313"/>
         <source>Alt+Shift+End</source>
         <translation>Alt+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2333"/>
+        <location filename="../ViewManager/ViewManager.py" line="2334"/>
         <source>Alt+Shift+PgDown</source>
         <translation>Alt+Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2345"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <source>Meta+Alt+Shift+V</source>
         <translation>Meta+Alt+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2365"/>
+        <location filename="../ViewManager/ViewManager.py" line="2366"/>
         <source>Scroll to start of document</source>
         <translation>Défilement au début du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2380"/>
+        <location filename="../ViewManager/ViewManager.py" line="2381"/>
         <source>Scroll to end of document</source>
         <translation>Défilement à la fin du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2395"/>
+        <location filename="../ViewManager/ViewManager.py" line="2396"/>
         <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="2403"/>
+        <location filename="../ViewManager/ViewManager.py" line="2404"/>
         <source>Meta+L</source>
         <translation>Meta+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2410"/>
+        <location filename="../ViewManager/ViewManager.py" line="2411"/>
         <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="2425"/>
+        <location filename="../ViewManager/ViewManager.py" line="2426"/>
         <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="2441"/>
+        <location filename="../ViewManager/ViewManager.py" line="2442"/>
         <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="2453"/>
+        <location filename="../ViewManager/ViewManager.py" line="2454"/>
         <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="2465"/>
+        <location filename="../ViewManager/ViewManager.py" line="2466"/>
         <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="2473"/>
+        <location filename="../ViewManager/ViewManager.py" line="2474"/>
         <source>Meta+A</source>
         <translation>Meta+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2480"/>
+        <location filename="../ViewManager/ViewManager.py" line="2481"/>
         <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="2491"/>
+        <location filename="../ViewManager/ViewManager.py" line="2492"/>
         <source>Meta+Shift+A</source>
         <translation>Meta+Shift+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2498"/>
+        <location filename="../ViewManager/ViewManager.py" line="2499"/>
         <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="2508"/>
+        <location filename="../ViewManager/ViewManager.py" line="2509"/>
         <source>Meta+Alt+Shift+A</source>
         <translation>Meta+Alt+Shift+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2516"/>
+        <location filename="../ViewManager/ViewManager.py" line="2517"/>
         <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="2535"/>
+        <location filename="../ViewManager/ViewManager.py" line="2536"/>
         <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="2549"/>
+        <location filename="../ViewManager/ViewManager.py" line="2550"/>
         <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="2564"/>
+        <location filename="../ViewManager/ViewManager.py" line="2565"/>
         <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="2581"/>
+        <location filename="../ViewManager/ViewManager.py" line="2582"/>
         <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="2598"/>
+        <location filename="../ViewManager/ViewManager.py" line="2599"/>
         <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="2612"/>
+        <location filename="../ViewManager/ViewManager.py" line="2613"/>
         <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="2627"/>
+        <location filename="../ViewManager/ViewManager.py" line="2628"/>
         <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="2639"/>
+        <location filename="../ViewManager/ViewManager.py" line="2640"/>
         <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="2652"/>
+        <location filename="../ViewManager/ViewManager.py" line="2653"/>
         <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="2664"/>
+        <location filename="../ViewManager/ViewManager.py" line="2665"/>
         <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="2677"/>
+        <location filename="../ViewManager/ViewManager.py" line="2678"/>
         <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="2685"/>
+        <location filename="../ViewManager/ViewManager.py" line="2686"/>
         <source>Alt+Del</source>
         <translation>Alt+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2692"/>
+        <location filename="../ViewManager/ViewManager.py" line="2693"/>
         <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="2704"/>
+        <location filename="../ViewManager/ViewManager.py" line="2705"/>
         <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="2318"/>
+        <location filename="../ViewManager/ViewManager.py" line="2319"/>
         <source>Alt+Shift+PgUp</source>
         <translation>Alt+Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1134"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Toggle Comment</source>
         <translation>Basculer commentaire</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1134"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Ctrl+Shift+M</source>
         <comment>Edit|Toggle Comment</comment>
         <translation>Ctrl+Shift+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1142"/>
+        <location filename="../ViewManager/ViewManager.py" line="1143"/>
         <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="1146"/>
+        <location filename="../ViewManager/ViewManager.py" line="1147"/>
         <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="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Zoom reset</source>
         <translation>Annulation du zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Zoom &amp;reset</source>
         <translation>Annulation du &amp;zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3381"/>
+        <location filename="../ViewManager/ViewManager.py" line="3383"/>
         <source>Reset the zoom of the text</source>
         <translation>Annulation du zoom du texte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3383"/>
+        <location filename="../ViewManager/ViewManager.py" line="3385"/>
         <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="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation>Zoom avant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation>Zoom arrière</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="714"/>
         <source>Save a&amp;ll</source>
         <translation>&amp;Tout enregistrer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4094"/>
-        <source>Next Change</source>
-        <translation>Modification suivante</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4088"/>
-        <source>&amp;Next Change</source>
-        <translation>Modificatio&amp;n suivante</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4096"/>
+        <source>Next Change</source>
+        <translation>Modification suivante</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4090"/>
+        <source>&amp;Next Change</source>
+        <translation>Modificatio&amp;n suivante</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <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="4112"/>
-        <source>Previous Change</source>
-        <translation>Modification précédente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4105"/>
-        <source>&amp;Previous Change</source>
-        <translation>Modification &amp;précédente</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4114"/>
+        <source>Previous Change</source>
+        <translation>Modification précédente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4107"/>
+        <source>&amp;Previous Change</source>
+        <translation>Modification &amp;précédente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4116"/>
         <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="2929"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>Search current word forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2929"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation>Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2940"/>
+        <location filename="../ViewManager/ViewManager.py" line="2941"/>
         <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="2943"/>
+        <location filename="../ViewManager/ViewManager.py" line="2944"/>
         <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="2952"/>
+        <location filename="../ViewManager/ViewManager.py" line="2953"/>
         <source>Search current word backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2952"/>
+        <location filename="../ViewManager/ViewManager.py" line="2953"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation>Ctrl+,</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2963"/>
+        <location filename="../ViewManager/ViewManager.py" line="2964"/>
         <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="2966"/>
+        <location filename="../ViewManager/ViewManager.py" line="2967"/>
         <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="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <source>Search in Open Files</source>
         <translation>Chercher dans les fichiers ouverts</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <source>Search in Open Files...</source>
         <translation>Chercher dans les fichiers ouverts...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <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="3220"/>
+        <location filename="../ViewManager/ViewManager.py" line="3221"/>
         <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="3222"/>
+        <location filename="../ViewManager/ViewManager.py" line="3223"/>
         <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="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <source>Replace in Open Files</source>
         <translation>Remplacer dans les fichiers ouverts</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <source>Replace in Open Files...</source>
         <translation>Remplacer dans les fichiers ouverts...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <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="3242"/>
+        <location filename="../ViewManager/ViewManager.py" line="3243"/>
         <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="3244"/>
+        <location filename="../ViewManager/ViewManager.py" line="3245"/>
         <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="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Check spelling</source>
         <translation>Vérification orthographique</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Check &amp;spelling...</source>
         <translation>&amp;Vérification orthographique...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4223"/>
+        <location filename="../ViewManager/ViewManager.py" line="4225"/>
         <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="4272"/>
-        <source>Edit Dictionary</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4274"/>
+        <source>Edit Dictionary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4276"/>
         <source>Project Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4277"/>
+        <location filename="../ViewManager/ViewManager.py" line="4279"/>
         <source>Project Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4282"/>
+        <location filename="../ViewManager/ViewManager.py" line="4284"/>
         <source>User Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4285"/>
+        <location filename="../ViewManager/ViewManager.py" line="4287"/>
         <source>User Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6255"/>
+        <location filename="../ViewManager/ViewManager.py" line="6257"/>
         <source>Edit Spelling Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6214"/>
+        <location filename="../ViewManager/ViewManager.py" line="6216"/>
         <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="6232"/>
+        <location filename="../ViewManager/ViewManager.py" line="6234"/>
         <source>Editing {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6243"/>
+        <location filename="../ViewManager/ViewManager.py" line="6245"/>
         <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="6255"/>
+        <location filename="../ViewManager/ViewManager.py" line="6257"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1399"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Sort</source>
         <translation>Trier</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1399"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Ctrl+Alt+S</source>
         <comment>Edit|Sort</comment>
         <translation>Ctrl+Alt+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1406"/>
+        <location filename="../ViewManager/ViewManager.py" line="1407"/>
         <source>Sort the lines containing the rectangular selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1409"/>
+        <location filename="../ViewManager/ViewManager.py" line="1410"/>
         <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="4801"/>
+        <location filename="../ViewManager/ViewManager.py" line="4803"/>
         <source>Language: {0}</source>
         <translation>Langage : {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4808"/>
+        <location filename="../ViewManager/ViewManager.py" line="4810"/>
         <source>EOL Mode: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3491"/>
         <source>New Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3491"/>
         <source>New &amp;Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3494"/>
-        <source>Open a new view of the current document</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3496"/>
+        <source>Open a new view of the current document</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3498"/>
         <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="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3508"/>
         <source>New Document View (with new split)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3513"/>
+        <location filename="../ViewManager/ViewManager.py" line="3515"/>
         <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="3516"/>
+        <location filename="../ViewManager/ViewManager.py" line="3518"/>
         <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="3972"/>
+        <location filename="../ViewManager/ViewManager.py" line="3974"/>
         <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="3991"/>
+        <location filename="../ViewManager/ViewManager.py" line="3993"/>
         <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="4009"/>
+        <location filename="../ViewManager/ViewManager.py" line="4011"/>
         <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="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1277"/>
         <source>Ctrl+Space</source>
         <comment>Edit|Complete</comment>
         <translation>Ctrl+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1294"/>
+        <location filename="../ViewManager/ViewManager.py" line="1295"/>
         <source>Ctrl+Shift+Space</source>
         <comment>Edit|Complete from Document</comment>
         <translation>Ctrl+Shift+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1317"/>
+        <location filename="../ViewManager/ViewManager.py" line="1318"/>
         <source>Ctrl+Alt+Space</source>
         <comment>Edit|Complete from APIs</comment>
         <translation>Ctrl+Alt+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1340"/>
+        <location filename="../ViewManager/ViewManager.py" line="1341"/>
         <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="697"/>
+        <location filename="../ViewManager/ViewManager.py" line="698"/>
         <source>Save Copy</source>
         <translation>Enregistrer une copie</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="697"/>
+        <location filename="../ViewManager/ViewManager.py" line="698"/>
         <source>Save &amp;Copy...</source>
         <translation>Enregistrer une &amp;copie...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="702"/>
+        <location filename="../ViewManager/ViewManager.py" line="703"/>
         <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="704"/>
+        <location filename="../ViewManager/ViewManager.py" line="705"/>
         <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>
@@ -85705,141 +85705,141 @@
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2995"/>
         <source>Replace and Search</source>
         <translation>Remplacer et chercher</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2995"/>
         <source>Meta+R</source>
         <comment>Search|Replace and Search</comment>
         <translation>Meta+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3004"/>
+        <location filename="../ViewManager/ViewManager.py" line="3005"/>
         <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="3007"/>
+        <location filename="../ViewManager/ViewManager.py" line="3008"/>
         <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="3018"/>
+        <location filename="../ViewManager/ViewManager.py" line="3019"/>
         <source>Replace Occurrence</source>
         <translation>Remplacer occurrence</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3018"/>
+        <location filename="../ViewManager/ViewManager.py" line="3019"/>
         <source>Ctrl+Meta+R</source>
         <comment>Search|Replace Occurrence</comment>
         <translation>Ctrl+Meta+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3028"/>
+        <location filename="../ViewManager/ViewManager.py" line="3029"/>
         <source>Replace the found text</source>
         <translation>Remplacer le texte trouvé</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3030"/>
+        <location filename="../ViewManager/ViewManager.py" line="3031"/>
         <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="3040"/>
+        <location filename="../ViewManager/ViewManager.py" line="3041"/>
         <source>Replace All</source>
         <translation>Tout remplacer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3040"/>
+        <location filename="../ViewManager/ViewManager.py" line="3041"/>
         <source>Shift+Meta+R</source>
         <comment>Search|Replace All</comment>
         <translation>Shift+Meta+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3050"/>
+        <location filename="../ViewManager/ViewManager.py" line="3051"/>
         <source>Replace search text occurrences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3052"/>
+        <location filename="../ViewManager/ViewManager.py" line="3053"/>
         <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="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1382"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1382"/>
         <source>Ctrl+Alt+I</source>
         <comment>Edit|Code Info</comment>
         <translation>Ctrl+Alt+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1389"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Show Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1392"/>
         <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="3462"/>
-        <source>Clear all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3458"/>
-        <source>Clear &amp;all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3464"/>
+        <source>Clear all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3460"/>
+        <source>Clear &amp;all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3466"/>
         <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="2120"/>
+        <location filename="../ViewManager/ViewManager.py" line="2121"/>
         <source>Reverse selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2120"/>
+        <location filename="../ViewManager/ViewManager.py" line="2121"/>
         <source>Meta+Alt+R</source>
         <translation>Meta+Alt+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3622"/>
+        <location filename="../ViewManager/ViewManager.py" line="3624"/>
         <source>Python AST Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3627"/>
-        <source>Show the AST for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3629"/>
+        <source>Show the AST for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3631"/>
         <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="3639"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>Python Disassembly Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3646"/>
-        <source>Show the Disassembly for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3648"/>
+        <source>Show the Disassembly for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3650"/>
         <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>
@@ -85859,23 +85859,23 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1418"/>
+        <location filename="../ViewManager/ViewManager.py" line="1419"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1418"/>
+        <location filename="../ViewManager/ViewManager.py" line="1419"/>
         <source>Ctrl+Alt+D</source>
         <comment>Edit|Generate Docstring</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1425"/>
+        <location filename="../ViewManager/ViewManager.py" line="1426"/>
         <source>Generate a docstring for the current function/method</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1428"/>
+        <location filename="../ViewManager/ViewManager.py" line="1429"/>
         <source>&lt;b&gt;Generate Docstring&lt;/b&gt;&lt;p&gt;Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -86356,32 +86356,32 @@
         <translation>Interpréteur Python</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="342"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="346"/>
         <source>&lt;virtualenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="360"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="364"/>
         <source>&lt;No suitable virtualenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="362"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="366"/>
         <source>virtualenv Version: {0}</source>
         <translation>Version virtualenv : {0}</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="396"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="400"/>
         <source>&lt;pyvenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="416"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="420"/>
         <source>&lt;No suitable pyvenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="418"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="422"/>
         <source>pyvenv Version: {0}</source>
         <translation>Version pyvenv : {0}</translation>
     </message>
@@ -86516,7 +86516,7 @@
         <translation>Fichiers texte (*.txt);;Tous les fichiers (*)</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="430"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="434"/>
         <source>conda Version: {0}</source>
         <translation>Version conda : {0}</translation>
     </message>
@@ -86553,14 +86553,14 @@
 &lt;p&gt;Ceci affiche les erreur de la commande virtualenv.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="110"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="112"/>
         <source>Executing: {0}
 </source>
         <translation>Exécution en cours : {0}
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="154"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="163"/>
         <source>Failed
 
 </source>
@@ -86569,7 +86569,7 @@
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="164"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="173"/>
         <source>
 pyvenv finished.
 </source>
@@ -86578,7 +86578,7 @@
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="166"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="175"/>
         <source>
 virtualenv finished.
 </source>
@@ -86587,19 +86587,19 @@
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="191"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="200"/>
         <source>No suitable pyvenv program could be started.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="195"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="204"/>
         <source>No suitable virtualenv program could be started.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="259"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="268"/>
         <source>
 Writing log file &apos;{0}&apos;.
 </source>
@@ -86608,21 +86608,21 @@
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="264"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="273"/>
         <source>Output:
 </source>
         <translation>Sortie :
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="269"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="278"/>
         <source>Errors:
 </source>
         <translation>Erreurs :
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="272"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="281"/>
         <source>The logfile &apos;{0}&apos; could not be written.
 Reason: {1}
 </source>
@@ -86631,14 +86631,14 @@
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="302"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="311"/>
         <source>Done.
 </source>
         <translation>Terminé.
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="292"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="301"/>
         <source>
 Writing script file &apos;{0}&apos;.
 </source>
@@ -86647,7 +86647,7 @@
 </translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="299"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="308"/>
         <source>The script file &apos;{0}&apos; could not be written.
 Reason: {1}
 </source>
@@ -87109,82 +87109,82 @@
 <context>
     <name>WatchPointViewer</name>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="47"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="49"/>
         <source>Watchpoints</source>
         <translation>Points de contrôle</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="174"/>
-        <source>Add</source>
-        <translation>Ajouter</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="143"/>
-        <source>Enable</source>
-        <translation>Activer</translation>
-    </message>
-    <message>
         <location filename="../Debugger/WatchPointViewer.py" line="178"/>
-        <source>Enable all</source>
-        <translation>Tout activer</translation>
+        <source>Add</source>
+        <translation>Ajouter</translation>
     </message>
     <message>
         <location filename="../Debugger/WatchPointViewer.py" line="147"/>
-        <source>Disable</source>
-        <translation>Désactiver</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="183"/>
-        <source>Disable all</source>
-        <translation>Tout désactiver</translation>
+        <source>Enable</source>
+        <translation>Activer</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="182"/>
+        <source>Enable all</source>
+        <translation>Tout activer</translation>
     </message>
     <message>
         <location filename="../Debugger/WatchPointViewer.py" line="151"/>
+        <source>Disable</source>
+        <translation>Désactiver</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="187"/>
+        <source>Disable all</source>
+        <translation>Tout désactiver</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="155"/>
         <source>Delete</source>
         <translation>Supprimer</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="188"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="192"/>
         <source>Delete all</source>
         <translation>Tout supprimer</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="176"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="180"/>
         <source>Enable selected</source>
         <translation>Activer la sélection</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="181"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="185"/>
         <source>Disable selected</source>
         <translation>Désactiver la sélection</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="186"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="190"/>
         <source>Delete selected</source>
         <translation>Supprimer la sélection</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="141"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="145"/>
         <source>Edit...</source>
         <translation>Éditer...</translation>
     </message>
     <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="253"/>
+        <source>Watch expression already exists</source>
+        <translation>L&apos;expression de contrôle existe déjà</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="195"/>
+        <source>Configure...</source>
+        <translation>Configuration...</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="244"/>
+        <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; already exists.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;L&apos;expression de contrôle &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; existe déjà.&lt;/p&gt;</translation>
+    </message>
+    <message>
         <location filename="../Debugger/WatchPointViewer.py" line="249"/>
-        <source>Watch expression already exists</source>
-        <translation>L&apos;expression de contrôle existe déjà</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="191"/>
-        <source>Configure...</source>
-        <translation>Configuration...</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="240"/>
-        <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; already exists.&lt;/p&gt;</source>
-        <translation>&lt;p&gt;L&apos;expression de contrôle &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; existe déjà.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="245"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
         <translation>&lt;p&gt;L&apos;expression de contrôle &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; pour la variable &lt;b&gt;{1}&lt;/b&gt; existe déjà.&lt;/p&gt;</translation>
     </message>
@@ -87664,34 +87664,34 @@
         <translation>Tout sélectionner</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="42"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="43"/>
         <source>Info</source>
         <translation>Info</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="43"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="45"/>
         <source>Warning</source>
         <translation>Warning</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="44"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="47"/>
         <source>Error</source>
         <translation>Erreur</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="97"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="100"/>
         <source>[{0}] {1}</source>
         <translation>[{0}] {1}</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="102"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="105"/>
         <source> at line {0}
 </source>
         <translation> à la ligne {0}
 </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="107"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="110"/>
         <source>URL: {0}
 </source>
         <translation>URL : {0}
@@ -88257,12 +88257,12 @@
         <translation> s</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="185"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="188"/>
         <source>Suspicuous URL detected</source>
         <translation>URL suspectes détectées</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="185"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="188"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -88506,12 +88506,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="702"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="706"/>
         <source>SSL Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="702"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="706"/>
         <source>This site does not contain SSL information.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -88577,107 +88577,107 @@
         <translation>Montrer un menu de navigation</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="135"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="136"/>
         <source>Show a navigation menu for closed tabs</source>
         <translation>Montrer un menu de navigation pour les onglets fermés</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="149"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="152"/>
         <source>Open a new web browser tab</source>
         <translation>Ouvrir un nouvel onglet de navigation web</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="163"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="166"/>
         <source>New Tab</source>
         <translation>Nouvel onglet</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="167"/>
-        <source>Move Left</source>
-        <translation>Déplacer vers la gauche</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="170"/>
+        <source>Move Left</source>
+        <translation>Déplacer vers la gauche</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="173"/>
         <source>Move Right</source>
         <translation>Déplacer vers la droite</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="174"/>
-        <source>Duplicate Page</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="177"/>
-        <source>Close</source>
-        <translation>Fermer</translation>
+        <source>Duplicate Page</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="180"/>
+        <source>Close</source>
+        <translation>Fermer</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="183"/>
         <source>Close Others</source>
         <translation>Fermer les autres</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="211"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="214"/>
         <source>Close All</source>
         <translation>Tout fermer</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="186"/>
-        <source>Print Preview</source>
-        <translation>Aperçu avant impression</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="189"/>
-        <source>Print</source>
-        <translation>Imprimer</translation>
+        <source>Print Preview</source>
+        <translation>Aperçu avant impression</translation>
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="192"/>
+        <source>Print</source>
+        <translation>Imprimer</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="195"/>
         <source>Print as PDF</source>
         <translation>Imprimer en PDF</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="213"/>
-        <source>Reload All</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="216"/>
+        <source>Reload All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="219"/>
         <source>Bookmark All Tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="220"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="223"/>
         <source>Restore Closed Tab</source>
         <translation>Restorer les onglets fermés</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="456"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="459"/>
         <source>...</source>
         <translation>...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="912"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="922"/>
         <source>Loading...</source>
         <translation>Chargement en cours...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="921"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="931"/>
         <source>Finished loading</source>
         <translation>Chargement terminé</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="888"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="898"/>
         <source>Failed to load</source>
         <translation>Échec de chargement</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
         <source>Are you sure you want to close the window?</source>
         <translation>Êtes vous sur de vouloir fermer la fenêtre ?</translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
         <source>Are you sure you want to close the window?
 You have %n tab(s) open.</source>
         <translation>
@@ -88688,47 +88688,47 @@
         </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="969"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="979"/>
         <source>&amp;Quit</source>
         <translation>&amp;Quitter</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="982"/>
         <source>C&amp;lose Current Tab</source>
         <translation>Fermer &amp;l&apos;onglet courant</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1153"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1165"/>
         <source>Restore All Closed Tabs</source>
         <translation>Restorer tous les onglets fermés</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1155"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1167"/>
         <source>Clear List</source>
         <translation>Effacer la liste</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="250"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="253"/>
         <source>Unmute Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="254"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="257"/>
         <source>Mute Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="753"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="763"/>
         <source>Print to PDF</source>
         <translation>Imprimer en pdf</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="703"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="713"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; existe déjà. Écraser ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="753"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="763"/>
         <source>&lt;p&gt;The PDF could not be written to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Error:&lt;/b&gt; {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier PDF ne peut être écrit &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Erreur :&lt;/b&gt; {1}&lt;/p&gt;</translation>
     </message>
@@ -88736,7 +88736,7 @@
 <context>
     <name>WebBrowserTools</name>
     <message>
-        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="250"/>
+        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="254"/>
         <source>&lt;unknown&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -88954,7 +88954,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1791"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1816"/>
         <source>Try reloading the page or closing some tabs to make more memory available.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -88974,22 +88974,22 @@
         <translation>Chercher l&apos;image avec...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1780"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1797"/>
         <source>Render Process terminated abnormally</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1783"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1804"/>
         <source>The render process crashed while loading this page.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1786"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1811"/>
         <source>The render process was killed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1788"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1813"/>
         <source>The render process terminated while loading this page.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -88999,37 +88999,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1914"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1939"/>
         <source>Web Archive (*.mhtml *.mht)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1915"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1940"/>
         <source>HTML File (*.html *.htm)</source>
         <translation>Fichiers HTML (*.html *.htm)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1916"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1941"/>
         <source>HTML File with all resources (*.html *.htm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1939"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1964"/>
         <source>Save Web Page</source>
         <translation>Enregistrer la page web</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1731"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1742"/>
         <source>Empty Page</source>
         <translation>Page vide</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2289"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2321"/>
         <source>Quota Request</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2289"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2321"/>
         <source>&lt;p&gt; Allow the website at &lt;b&gt;{0}&lt;/b&gt; to use &lt;b&gt;{1}&lt;/b&gt; of persistent storage?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -89158,319 +89158,319 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1467"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1472"/>
         <source>Index</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1480"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1485"/>
         <source>Search</source>
         <translation>Rechercher</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1743"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1748"/>
         <source>JavaScript Console</source>
         <translation>Console JavaScript</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>New Tab</source>
         <translation>Nouvel onglet</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>&amp;New Tab</source>
         <translation>&amp;Nouvel onglet</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>Ctrl+T</source>
         <comment>File|New Tab</comment>
         <translation>Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="666"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="671"/>
         <source>Open a new web browser tab</source>
         <translation>Ouvrir un nouvel onglet de navigation web</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="667"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="672"/>
         <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nouvel onglet&lt;/b&gt;&lt;p&gt;Ceci ouvre un nouvel onglet de navigation web.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>New Window</source>
         <translation>Nouvelle fenêtre</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>New &amp;Window</source>
         <translation>&amp;Nouvelle fenêtre</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>Ctrl+N</source>
         <comment>File|New Window</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="680"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="685"/>
         <source>Open a new web browser window</source>
         <translation>Ouvrir une nouvelle fenêtre de navigation web</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="681"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="686"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new web browser window in the current privacy mode.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nouvelle fenêtre&lt;/b&gt;&lt;p&gt;Ceci ouvre une nouvelle fenêtre de navigation web en mode privé.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>New Private Window</source>
         <translation>Nouvelle fenêtre privée</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="689"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="694"/>
         <source>New &amp;Private Window</source>
         <translation>Nouvelle fenêtre &amp;privée</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="689"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="694"/>
         <source>Ctrl+Shift+P</source>
         <comment>File|New Private Window</comment>
         <translation>Ctrl+Shift+P</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="695"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="700"/>
         <source>Open a new private web browser window</source>
         <translation>Ouvrir une nouvelle fenêtre de navigation web privée</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="697"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="702"/>
         <source>&lt;b&gt;New Private Window&lt;/b&gt;&lt;p&gt;This opens a new private web browser window by starting a new web browser instance in private mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2503"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2508"/>
         <source>Open File</source>
         <translation>Ouvrir Fichier</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="705"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="710"/>
         <source>&amp;Open File</source>
         <translation>&amp;Ouvrir Fichier</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="705"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="710"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="711"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="716"/>
         <source>Open a file for display</source>
         <translation>Ouvrir un fichier pour affichage</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="712"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="717"/>
         <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new file for display. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ouvrir fichier&lt;/b&gt;&lt;p&gt;Ceci ouvre un nouveau fichier pour affichage. Cela affiche un sélectionneur de fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Open File in New Tab</source>
         <translation>Ouvrir le fichier dans un nouvel onglet</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Open File in New &amp;Tab</source>
         <translation>Ouvrir unfichier dans un nouvel &amp;onglet</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Shift+Ctrl+O</source>
         <comment>File|Open in new tab</comment>
         <translation>Shift+Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="726"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="731"/>
         <source>Open a file for display in a new tab</source>
         <translation>Ouvrir un fichier dans un nouvel onglet</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="733"/>
         <source>&lt;b&gt;Open File in New Tab&lt;/b&gt;&lt;p&gt;This opens a new file for display in a new tab. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="754"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="759"/>
         <source>Save Page Screen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="754"/>
-        <source>Save Page Screen...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="759"/>
+        <source>Save Page Screen...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="764"/>
         <source>Save the visible part of the current page as a screen shot</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="772"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="777"/>
         <source>Import Bookmarks</source>
         <translation>Importer signets</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="772"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="777"/>
         <source>&amp;Import Bookmarks...</source>
         <translation>&amp;Importer signets...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="776"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="781"/>
         <source>Import bookmarks from other browsers</source>
         <translation>Importer des signets d&apos;autres navigateurs</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="778"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="783"/>
         <source>&lt;b&gt;Import Bookmarks&lt;/b&gt;&lt;p&gt;Import bookmarks from other browsers.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Importer signets&lt;/b&gt;&lt;p&gt;Importer des signets d&apos;autres navigateurs.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="786"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="791"/>
         <source>Export Bookmarks</source>
         <translation>Exporter les signets</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="786"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="791"/>
         <source>&amp;Export Bookmarks...</source>
         <translation>&amp;Exporter les signets...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="790"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="795"/>
         <source>Export the bookmarks into a file</source>
         <translation>Exporter les signets dans un fichier</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="792"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="797"/>
         <source>&lt;b&gt;Export Bookmarks&lt;/b&gt;&lt;p&gt;Export the bookmarks into a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Exporter les signets&lt;/b&gt;&lt;p&gt;Exporter les signets dans un fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2122"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2127"/>
         <source>Print</source>
         <translation>Imprimer</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="800"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="805"/>
         <source>&amp;Print</source>
         <translation>&amp;Imprimer</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="800"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="805"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation>Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="806"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="811"/>
         <source>Print the displayed help</source>
         <translation>Imprimer le fichier d&apos;aide</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="807"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="812"/>
         <source>&lt;b&gt;Print&lt;/b&gt;&lt;p&gt;Print the displayed help text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Imprimer&lt;/b&gt;&lt;p&gt;Imprime le fichier d&apos;aide affiché.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="814"/>
-        <source>Print as PDF</source>
-        <translation>Imprimer en pdf</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="819"/>
+        <source>Print as PDF</source>
+        <translation>Imprimer en pdf</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="824"/>
         <source>Print the displayed help as PDF</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="821"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="826"/>
         <source>&lt;b&gt;Print as PDF&lt;/b&gt;&lt;p&gt;Print the displayed help text as a PDF file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="829"/>
-        <source>Print Preview</source>
-        <translation>Aperçu avant impression</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="834"/>
+        <source>Print Preview</source>
+        <translation>Aperçu avant impression</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="839"/>
         <source>Print preview of the displayed help</source>
         <translation>Va à la page d&apos;aide de démarrage</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="836"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="841"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the displayed help text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aperçu avant impression&lt;/b&gt;&lt;p&gt;Aperçu avant impression de l&apos;aide affichée.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>Close</source>
         <translation>Fermer</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>&amp;Close</source>
         <translation>&amp;Fermer</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="864"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="869"/>
         <source>Close the current help window</source>
         <translation>Ferme la fenêtre d&apos;aide en cours</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="866"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="871"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Fermer&lt;/b&gt;&lt;p&gt;Ferme la fenêtre courante du navigateur web.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="873"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="878"/>
         <source>Close All</source>
         <translation>Tout fermer</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="873"/>
-        <source>Close &amp;All</source>
-        <translation>&amp;Tout fermer</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="877"/>
-        <source>Close all help windows</source>
-        <translation>Fermer toutes les fenêtres d&apos;aide</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="878"/>
+        <source>Close &amp;All</source>
+        <translation>&amp;Tout fermer</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="882"/>
+        <source>Close all help windows</source>
+        <translation>Fermer toutes les fenêtres d&apos;aide</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="883"/>
         <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all web browser windows except the first one.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tout fermer&lt;/b&gt;&lt;p&gt;Ferme toutes les fenêtres de navigation sauf la première.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="886"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="891"/>
         <source>Quit</source>
         <translation>Quitter</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2854"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2859"/>
         <source>&amp;Quit</source>
         <translation>&amp;Quitter</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="886"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="891"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
@@ -89486,1399 +89486,1399 @@
         <translation type="obsolete">&lt;b&gt;Quitter&lt;/b&gt;&lt;p&gt;Quitter le navigateur web eric6.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>Backward</source>
         <translation>Précédent</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>&amp;Backward</source>
         <translation>&amp;Précédent</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>Alt+Left</source>
         <comment>Go|Backward</comment>
         <translation>Alt+Left</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="906"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="911"/>
         <source>Move one screen backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="907"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="912"/>
         <source>&lt;b&gt;Backward&lt;/b&gt;&lt;p&gt;Moves one screen backward. If none is available, this action is disabled.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>Forward</source>
         <translation>Suivant</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>&amp;Forward</source>
         <translation>&amp;Suivant</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>Alt+Right</source>
         <comment>Go|Forward</comment>
         <translation>Alt+Right</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="921"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="926"/>
         <source>Move one screen forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="923"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="928"/>
         <source>&lt;b&gt;Forward&lt;/b&gt;&lt;p&gt;Moves one screen forward. If none is available, this action is disabled.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>Home</source>
         <translation>Accueil</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>&amp;Home</source>
         <translation>&amp;URL de démarrage</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>Ctrl+Home</source>
         <comment>Go|Home</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="939"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="944"/>
         <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>Reload</source>
         <translation>Recharger</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>&amp;Reload</source>
         <translation>&amp;Recharger</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>Ctrl+R</source>
         <comment>Go|Reload</comment>
         <translation>Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>F5</source>
         <comment>Go|Reload</comment>
         <translation>F5</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="953"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="958"/>
         <source>Reload the current screen</source>
         <translation type="unfinished">Recharger la session courante</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="955"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="960"/>
         <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Stop</source>
         <translation>Arrêt</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>&amp;Stop</source>
         <translation>&amp;Arrêt</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Ctrl+.</source>
         <comment>Go|Stop</comment>
         <translation>Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Esc</source>
         <comment>Go|Stop</comment>
         <translation>Esc</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="969"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="974"/>
         <source>Stop loading</source>
         <translation>Arrêter le chargement</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="970"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="975"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>Copy</source>
         <translation>Copier</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>&amp;Copy</source>
         <translation>&amp;Copier</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="983"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="988"/>
         <source>Copy the selected text</source>
         <translation>Copie le texte sélectionné</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="984"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="989"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Copier&lt;/b&gt;&lt;p&gt;Copie le texte sélectionné dans le presse-papier.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Cut</source>
         <translation>Couper</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Cu&amp;t</source>
         <translation>Cou&amp;per</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="997"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1002"/>
         <source>Cut the selected text</source>
         <translation>Couper le texte sélectionné</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="998"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1003"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Couper&lt;/b&gt;&lt;p&gt;Couper le texte sélectionné vers le presse papier.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>Paste</source>
         <translation>Coller</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>&amp;Paste</source>
         <translation>Col&amp;ler</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1011"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1016"/>
         <source>Paste text from the clipboard</source>
         <translation>Coller le texte du presse papier</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1012"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1017"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Coller&lt;/b&gt;&lt;p&gt;Coller du texte du presse papier.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>Undo</source>
         <translation>Défaire</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>&amp;Undo</source>
         <translation>&amp;Défaire</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1025"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1030"/>
         <source>Undo the last edit action</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1026"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1031"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>Redo</source>
         <translation>Refaire</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>&amp;Redo</source>
         <translation>&amp;Refaire</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1039"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1044"/>
         <source>Redo the last edit action</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1040"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1045"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>Select All</source>
         <translation>Tout sélectionner</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>&amp;Select All</source>
         <translation>Tout &amp;sélectionner</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation>Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1053"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1058"/>
         <source>Select all text</source>
         <translation>Sélectionne tout le texte</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1054"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1059"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>Find...</source>
         <translation>Rechercher...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>&amp;Find...</source>
         <translation>&amp;Rechercher...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>Ctrl+F</source>
         <comment>Edit|Find</comment>
         <translation>Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1080"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1085"/>
         <source>Find text in page</source>
         <translation>Trouver le texte dans la page</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1081"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1086"/>
         <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Chercher&lt;/b&gt;&lt;p&gt;Recherche le texte dans la page courante.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>Find next</source>
         <translation>Chercher suivant</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>Find &amp;next</source>
         <translation>Chercher &amp;suivant</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>F3</source>
         <comment>Edit|Find next</comment>
         <translation>F3</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1094"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1099"/>
         <source>Find next occurrence of text in page</source>
         <translation>Recherche de la prochaine occurence du texte dans la page</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1096"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1101"/>
         <source>&lt;b&gt;Find next&lt;/b&gt;&lt;p&gt;Find the next occurrence of text in the current page.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Chercher suivant&lt;/b&gt;&lt;p&gt;Recherche la prochaine occurence du texte dans la page.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Find previous</source>
         <translation>Chercher précédent</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Find &amp;previous</source>
         <translation>Chercher &amp;précédent</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Shift+F3</source>
         <comment>Edit|Find previous</comment>
         <translation>Shift+F3</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1109"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1114"/>
         <source>Find previous occurrence of text in page</source>
         <translation>Recherche de l&apos; occurence précédente dans la page</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1111"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1116"/>
         <source>&lt;b&gt;Find previous&lt;/b&gt;&lt;p&gt;Find the previous occurrence of text in the current page.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Chercher précédent&lt;/b&gt;&lt;p&gt;Recherche l&apos;occurence précédente dans la page.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
         <source>Manage Bookmarks</source>
         <translation>Gérer signets</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
         <source>&amp;Manage Bookmarks...</source>
         <translation>&amp;Gérer les signets...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
-        <source>Ctrl+Shift+B</source>
-        <comment>Help|Manage bookmarks</comment>
-        <translation>Ctrl+Shift+B</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
+        <source>Ctrl+Shift+B</source>
+        <comment>Help|Manage bookmarks</comment>
+        <translation>Ctrl+Shift+B</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1130"/>
         <source>Open a dialog to manage the bookmarks.</source>
         <translation>Ouvrir une fenêtre pour gérer les signets.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1127"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1132"/>
         <source>&lt;b&gt;Manage Bookmarks...&lt;/b&gt;&lt;p&gt;Open a dialog to manage the bookmarks.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gérer signets...&lt;/b&gt;&lt;p&gt;Ouvrir une fenêtre pour gérer les signets.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Add Bookmark</source>
         <translation>Ajouter un signet</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Add &amp;Bookmark...</source>
         <translation>&amp;Ajouter un signet ...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Ctrl+D</source>
         <comment>Help|Add bookmark</comment>
         <translation>Ctrl+D</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1142"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1147"/>
         <source>Open a dialog to add a bookmark.</source>
         <translation>Ouvrir une fenêtre pour ajouter un signet.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1144"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1149"/>
         <source>&lt;b&gt;Add Bookmark&lt;/b&gt;&lt;p&gt;Open a dialog to add the current URL as a bookmark.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ajouter signet&lt;/b&gt;&lt;p&gt;Ouvrir une fenêtre pour ajouter l&apos;URL courante en tant que signet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1151"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1156"/>
         <source>Add Folder</source>
         <translation>Ajouter repertoire</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1151"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1156"/>
         <source>Add &amp;Folder...</source>
         <translation>Ajouter &amp;Répertoire ...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1155"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1160"/>
         <source>Open a dialog to add a new bookmarks folder.</source>
         <translation>Ouvrir une fenêtre pour ajouter un nouveau dossier de signets.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1157"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1162"/>
         <source>&lt;b&gt;Add Folder...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ajouter dossier...&lt;/b&gt;&lt;p&gt;Ouvrir une fenêtre pour ajouter un nouveau dossier de signets.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1165"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1170"/>
         <source>Bookmark All Tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1165"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1170"/>
         <source>Bookmark All Tabs...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1169"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1174"/>
         <source>Bookmark all open tabs.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1171"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1176"/>
         <source>&lt;b&gt;Bookmark All Tabs...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder for all open tabs.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>What&apos;s This?</source>
         <translation>Qu&apos;est-ce que c&apos;est ?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Qu&apos;est-ce que c&apos;est?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1185"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1190"/>
         <source>Context sensitive help</source>
         <translation>Aide contextuelle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1186"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1191"/>
         <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="../WebBrowser/WebBrowserWindow.py" line="1197"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1202"/>
         <source>About</source>
         <translation>À propos</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1197"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1202"/>
         <source>&amp;About</source>
         <translation>&amp;À propos</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1201"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1206"/>
         <source>Display information about this software</source>
         <translation>Affiche les informations concernant le logiciel</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1203"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1208"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation>&lt;b&gt;À propos de&lt;/b&gt;&lt;p&gt;Affiche certaines informations concernant le logiciel.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1210"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1215"/>
         <source>About Qt</source>
         <translation>À propos de Qt</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1210"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1215"/>
         <source>About &amp;Qt</source>
         <translation>À propos de &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1214"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1219"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Affiche les informations concernant Qt</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1216"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1221"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation>&lt;b&gt;À propos de Qt&lt;/b&gt;&lt;p&gt;Affiche les informations concernant Qt&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom in</source>
         <translation>Zoom avant</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom &amp;in</source>
         <translation>Zoom a&amp;vant</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation>Zoom avant</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1230"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1235"/>
         <source>Zoom in on the web page</source>
         <translation>Zoom avant sur la page web</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1231"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1236"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the web page. This makes the web page bigger.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom out</source>
         <translation>Zoom arrière</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom &amp;out</source>
         <translation>Zoom a&amp;rrière</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation>Zoom arrière</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1246"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1251"/>
         <source>Zoom out on the web page</source>
         <translation>Zoom arrière sur la page web</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1247"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1252"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the web page. This makes the web page smaller.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Zoom reset</source>
         <translation>Annulation du zoom</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Zoom &amp;reset</source>
         <translation>Annulation du &amp;zoom</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1261"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1266"/>
         <source>Reset the zoom of the web page</source>
         <translation>Annulation du zoom sur la page web</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1263"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1268"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the web page. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1271"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1276"/>
         <source>Show page source</source>
         <translation>Montrer la source de la page</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1271"/>
-        <source>Ctrl+U</source>
-        <translation>Ctrl+U</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1276"/>
+        <source>Ctrl+U</source>
+        <translation>Ctrl+U</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1281"/>
         <source>Show the page source in an editor</source>
         <translation>Montrer la source de la page dans un éditeur</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1278"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1283"/>
         <source>&lt;b&gt;Show page source&lt;/b&gt;&lt;p&gt;Show the page source in an editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1286"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1291"/>
         <source>Full Screen</source>
         <translation>Plein écran</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1286"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1291"/>
         <source>&amp;Full Screen</source>
         <translation>&amp;Plein écran</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1296"/>
-        <source>F11</source>
-        <translation>F11</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1301"/>
-        <source>Show next tab</source>
-        <translation>Afficher la tabulation suivante</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1301"/>
+        <source>F11</source>
+        <translation>F11</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1306"/>
+        <source>Show next tab</source>
+        <translation>Afficher la tabulation suivante</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1306"/>
         <source>Ctrl+Alt+Tab</source>
         <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1310"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1315"/>
         <source>Show previous tab</source>
         <translation>Afficher la tabulation précédente</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1310"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1315"/>
         <source>Shift+Ctrl+Alt+Tab</source>
         <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1319"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1324"/>
         <source>Switch between tabs</source>
         <translation>Intervertir les onglets</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1319"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1324"/>
         <source>Ctrl+1</source>
         <translation>Ctrl+1</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1328"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1333"/>
         <source>Preferences</source>
         <translation>Préférences</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1328"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1333"/>
         <source>&amp;Preferences...</source>
         <translation>&amp;Préférences...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1332"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1337"/>
         <source>Set the prefered configuration</source>
         <translation>Édition des préférences</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1334"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1339"/>
         <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Préférences&lt;/b&gt;&lt;p&gt;Edite les valeurs souhaitées pour la configuration du logiciel.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1342"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1347"/>
         <source>Languages</source>
         <translation>Langages</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1342"/>
-        <source>&amp;Languages...</source>
-        <translation>&amp;Langages...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1347"/>
+        <source>&amp;Languages...</source>
+        <translation>&amp;Langages...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1352"/>
         <source>Configure the accepted languages for web pages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1349"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1354"/>
         <source>&lt;b&gt;Languages&lt;/b&gt;&lt;p&gt;Configure the accepted languages for web pages.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1357"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1362"/>
         <source>Cookies</source>
         <translation>Cookies</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1357"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1362"/>
         <source>C&amp;ookies...</source>
         <translation>C&amp;ookies...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1361"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1366"/>
         <source>Configure cookies handling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1363"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1368"/>
         <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1371"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1376"/>
         <source>Personal Information</source>
         <translation>Information personnelle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1371"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1376"/>
         <source>Personal Information...</source>
         <translation>Information personnelle...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1377"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1382"/>
         <source>Configure personal information for completing form fields</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1379"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1384"/>
         <source>&lt;b&gt;Personal Information...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the personal information used for completing form fields.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1388"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1393"/>
         <source>GreaseMonkey Scripts</source>
         <translation>Scripts GreaseMonkey</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1388"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1393"/>
         <source>GreaseMonkey Scripts...</source>
         <translation>Scripts GreaseMonkey...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1394"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1399"/>
         <source>Configure the GreaseMonkey Scripts</source>
         <translation>Configuration des Scripts GreaseMonkey</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1396"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1401"/>
         <source>&lt;b&gt;GreaseMonkey Scripts...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available GreaseMonkey Scripts.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1405"/>
-        <source>Edit Message Filters</source>
-        <translation>Modifier les filtres de message</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1405"/>
-        <source>Edit Message Filters...</source>
-        <translation>Modifier les filtres de message...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1410"/>
+        <source>Edit Message Filters</source>
+        <translation>Modifier les filtres de message</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1410"/>
+        <source>Edit Message Filters...</source>
+        <translation>Modifier les filtres de message...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1415"/>
         <source>Edit the message filters used to suppress unwanted messages</source>
         <translation>Éditer les filtres de message utilisés pour supprimer les messages indésirés</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1412"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1417"/>
         <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1422"/>
-        <source>Edit HTML5 Feature Permissions</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1422"/>
-        <source>Edit HTML5 Feature Permissions...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1427"/>
+        <source>Edit HTML5 Feature Permissions</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1427"/>
+        <source>Edit HTML5 Feature Permissions...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1432"/>
         <source>Edit the remembered HTML5 feature permissions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1429"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1434"/>
         <source>&lt;b&gt;Edit HTML5 Feature Permissions&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the remembered HTML5 feature permissions.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1439"/>
-        <source>Sync with Table of Contents</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1444"/>
+        <source>Sync with Table of Contents</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1449"/>
         <source>Synchronizes the table of contents with current page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1446"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1451"/>
         <source>&lt;b&gt;Sync with Table of Contents&lt;/b&gt;&lt;p&gt;Synchronizes the table of contents with current page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1454"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1459"/>
         <source>Table of Contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1458"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1463"/>
         <source>Shows the table of contents window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1460"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1465"/>
         <source>&lt;b&gt;Table of Contents&lt;/b&gt;&lt;p&gt;Shows the table of contents window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1471"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1476"/>
         <source>Shows the index window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1473"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1478"/>
         <source>&lt;b&gt;Index&lt;/b&gt;&lt;p&gt;Shows the index window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1484"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1489"/>
         <source>Shows the search window</source>
         <translation>Montre la fenêtre de recherche</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1486"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1491"/>
         <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Chercher&lt;/b&gt;&lt;p&gt;Montre la fenêtre de recherche.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1494"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1499"/>
         <source>Manage QtHelp Documents</source>
         <translation>Gérer les documents QtHelp</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1494"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1499"/>
         <source>Manage QtHelp &amp;Documents</source>
         <translation>Gérer les &amp;documents QtHelp</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1498"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1503"/>
         <source>Shows a dialog to manage the QtHelp documentation set</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1500"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1505"/>
         <source>&lt;b&gt;Manage QtHelp Documents&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the QtHelp documentation set.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1509"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1514"/>
         <source>Reindex Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1509"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1514"/>
         <source>&amp;Reindex Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1513"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1518"/>
         <source>Reindexes the documentation set</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1520"/>
         <source>&lt;b&gt;Reindex Documentation&lt;/b&gt;&lt;p&gt;Reindexes the documentation set.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1529"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1534"/>
         <source>Clear private data</source>
         <translation>Effacer les données personnelles</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1531"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1536"/>
         <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like browsing history, search history or the favicons database.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/>
-        <source>Clear icons database</source>
-        <translation>Effacer la base d&apos;icônes</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/>
-        <source>Clear &amp;icons database</source>
-        <translation>Effacer la base d&apos;&amp;icônes</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1545"/>
+        <source>Clear icons database</source>
+        <translation>Effacer la base d&apos;icônes</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1545"/>
+        <source>Clear &amp;icons database</source>
+        <translation>Effacer la base d&apos;&amp;icônes</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1550"/>
         <source>Clear the database of favicons</source>
         <translation>Effacer la base d&apos;icônes</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1547"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1552"/>
         <source>&lt;b&gt;Clear icons database&lt;/b&gt;&lt;p&gt;Clears the database of favicons of previously visited URLs.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Effacer la base d&apos;icônes&lt;/b&gt;&lt;p&gt;Efface la base d&apos;icônes de l&apos;URL visitée précédemment.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1555"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1560"/>
         <source>Manage saved Favicons</source>
         <translation>Gérer les favicons enregistrés</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1561"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/>
         <source>Show a dialog to manage the saved favicons</source>
         <translation>Montre une fenêtre pour gérer les favicons enregistrés</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1563"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1568"/>
         <source>&lt;b&gt;Manage saved Favicons&lt;/b&gt;&lt;p&gt;This shows a dialog to manage the saved favicons of previously visited URLs.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1576"/>
         <source>Configure Search Engines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/>
-        <source>Configure Search &amp;Engines...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1576"/>
+        <source>Configure Search &amp;Engines...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/>
         <source>Configure the available search engines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1578"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1583"/>
         <source>&lt;b&gt;Configure Search Engines...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available search engines.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1592"/>
         <source>Manage Saved Passwords</source>
         <translation>Gérer les mots de passe enregistrés</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1592"/>
         <source>Manage Saved Passwords...</source>
         <translation>Gérer les mots de passe enregistrés...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1593"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/>
         <source>Manage the saved passwords</source>
         <translation>Gérer les mots de passe enregistrés</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1595"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1600"/>
         <source>&lt;b&gt;Manage Saved Passwords...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved passwords.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gérer les mots de passe enregistrés...&lt;/b&gt;&lt;p&gt;Ceci ouvre une fenêtre pour gérer les mots de passe enregistrés.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1602"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/>
         <source>Ad Block</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1602"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/>
         <source>&amp;Ad Block...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1608"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1613"/>
         <source>Configure AdBlock subscriptions and rules</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1610"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1615"/>
         <source>&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure AdBlock subscriptions and rules.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1618"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/>
         <source>Manage SSL Certificate Errors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1618"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/>
         <source>Manage SSL Certificate Errors...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1624"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1629"/>
         <source>Manage the accepted SSL certificate Errors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1626"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/>
         <source>&lt;b&gt;Manage SSL Certificate Errors...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the accepted SSL certificate errors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1651"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1656"/>
         <source>Downloads</source>
         <translation>Téléchargements</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1655"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1660"/>
         <source>Shows the downloads window</source>
         <translation>Montre la fenêtre des téléchargements</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1657"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1662"/>
         <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Téléchargement&lt;/b&gt;&lt;p&gt;Montre la fenêtre des téléchargements.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>RSS Feeds Dialog</source>
         <translation>Fenêtre de flux RSS</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>&amp;RSS Feeds Dialog...</source>
         <translation>Fenêtre de flux &amp;RSS...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>Ctrl+Shift+F</source>
         <comment>Help|RSS Feeds Dialog</comment>
         <translation>Ctrl+Shift+F</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1671"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1676"/>
         <source>Open a dialog showing the configured RSS feeds.</source>
         <translation>Ouvrir une fenêtre montrant les flux RSS configurés.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1673"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1678"/>
         <source>&lt;b&gt;RSS Feeds Dialog...&lt;/b&gt;&lt;p&gt;Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>Siteinfo Dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>&amp;Siteinfo Dialog...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>Ctrl+Shift+I</source>
         <comment>Help|Siteinfo Dialog</comment>
         <translation>Ctrl+Shift+I</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1688"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1693"/>
         <source>Open a dialog showing some information about the current site.</source>
         <translation>Ouvrir une fenêtre montrant quelques informations sur le site courant.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1690"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1695"/>
         <source>&lt;b&gt;Siteinfo Dialog...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the current site.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1703"/>
         <source>Manage User Agent Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1703"/>
         <source>Manage &amp;User Agent Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1702"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1707"/>
         <source>Shows a dialog to manage the User Agent settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1704"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1709"/>
         <source>&lt;b&gt;Manage User Agent Settings&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the User Agent settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1712"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1717"/>
         <source>Synchronize data</source>
         <translation>Synchroniser les données</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1712"/>
-        <source>&amp;Synchronize Data...</source>
-        <translation>&amp;Synchroniser les données...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1717"/>
+        <source>&amp;Synchronize Data...</source>
+        <translation>&amp;Synchroniser les données...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1722"/>
         <source>Shows a dialog to synchronize data via the network</source>
         <translation>Montre une fenêtre pour synchroniser les données via le réseau</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1719"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1724"/>
         <source>&lt;b&gt;Synchronize Data...&lt;/b&gt;&lt;p&gt;This shows a dialog to synchronize data via the network.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Synchroniser les données...&lt;/b&gt;&lt;p&gt;Ceci montre une fenêtre pour synchroniser les données via le réseau.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/>
         <source>Manage Saved Zoom Values</source>
         <translation>Gérer la valeur de zoom enregistrée</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/>
         <source>Manage Saved Zoom Values...</source>
         <translation>Gérer la valeur de zoom enregistrée...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1734"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1739"/>
         <source>Manage the saved zoom values</source>
         <translation>Gérer la valeur de zoom enregistrée</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1736"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1741"/>
         <source>&lt;b&gt;Manage Saved Zoom Values...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved zoom values.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gérer la valeur de zoom enregistrée...&lt;/b&gt;&lt;p&gt;Ouvre une fenêtre pour gérer la valeur de zoom enregistrée.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1747"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1752"/>
         <source>Toggle the JavaScript console window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1749"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1754"/>
         <source>&lt;b&gt;JavaScript Console&lt;/b&gt;&lt;p&gt;This toggles the JavaScript console window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1910"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1915"/>
         <source>&amp;File</source>
         <translation>&amp;Fichier</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1942"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1947"/>
         <source>&amp;Edit</source>
         <translation>&amp;Edition</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2181"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2186"/>
         <source>&amp;View</source>
         <translation>&amp;Affichage</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1969"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1974"/>
         <source>Text Encoding</source>
         <translation>Encodage texte</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1981"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1986"/>
         <source>H&amp;istory</source>
         <translation>&amp;Historique</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1998"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2003"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Signets</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2014"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2019"/>
         <source>&amp;Settings</source>
         <translation>Paramètre&amp;s</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2046"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2051"/>
         <source>Global User Agent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2212"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2217"/>
         <source>&amp;Tools</source>
         <translation>&amp;Outils</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2087"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2092"/>
         <source>&amp;Help</source>
         <translation>A&amp;ide</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2236"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2241"/>
         <source>File</source>
         <translation>Fichier</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2261"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2266"/>
         <source>Edit</source>
         <translation>Édition</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2274"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2279"/>
         <source>View</source>
         <translation>Affichage</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2284"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2289"/>
         <source>Find</source>
         <translation>Chercher</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2293"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2298"/>
         <source>Filter</source>
         <translation>Filtrer</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2303"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2308"/>
         <source>Filtered by: </source>
         <translation>Filtré par : </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2311"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2316"/>
         <source>Settings</source>
         <translation>Configuration</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2323"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2328"/>
         <source>Tools</source>
         <translation>Outils</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2332"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2337"/>
         <source>Help</source>
         <translation>Aide</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2339"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2344"/>
         <source>VirusTotal</source>
         <translation>VirusTotal</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1785"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1790"/>
         <source>Scan current site</source>
         <translation>Scanner le site courant</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4613"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4626"/>
         <source>IP Address Report</source>
         <translation>Rapport d&apos;adresse IP</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4623"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4636"/>
         <source>Domain Report</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>&lt;p&gt;Could not start the process.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Ne peut démarrer le processus.&lt;br&gt;Vérifier qu&apos;il est disponible en tant que &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>OK</source>
         <translation>OK</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2667"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2672"/>
         <source>Saved Tabs</source>
         <translation>Onglets enregistrés</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3392"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3399"/>
         <source>Could not find an associated content.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3486"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3493"/>
         <source>Updating search index</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3560"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3567"/>
         <source>Looking for Documentation...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3590"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3597"/>
         <source>Unfiltered</source>
         <translation>non filtré</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3607"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3614"/>
         <source>Help Engine</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4144"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4151"/>
         <source>ISO</source>
         <translation>ISO</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4148"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4155"/>
         <source>Windows</source>
         <translation>Windows</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4146"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4153"/>
         <source>Unicode</source>
         <translation>Unicode</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4154"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4161"/>
         <source>Other</source>
         <translation>Autre</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4150"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4157"/>
         <source>IBM</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4578"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4591"/>
         <source>VirusTotal Scan</source>
         <translation>Scan VirusTotal</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4578"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4591"/>
         <source>&lt;p&gt;The VirusTotal scan could not be scheduled.&lt;p&gt;
 &lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4604"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4617"/>
         <source>Enter a valid IPv4 address in dotted quad notation:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4613"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4626"/>
         <source>The given IP address is not in dotted quad notation.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4623"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4636"/>
         <source>Enter a valid domain name:</source>
         <translation>Entrer un nom de domaine valide :</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1757"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1762"/>
         <source>Tab Manager</source>
         <translation>Gestionnaire des onglets</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1761"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1766"/>
         <source>Shows the tab manager window</source>
         <translation>Montre le gestionnaire d&apos;onglets</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1763"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1768"/>
         <source>&lt;b&gt;Tab Manager&lt;/b&gt;&lt;p&gt;Shows the tab manager window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gestionnaire d&apos;onglets&lt;/b&gt;&lt;p&gt;Montre les gestionnaire d&apos;onglets.&lt;/p&gt;</translation>
     </message>
@@ -90888,285 +90888,285 @@
         <translation type="obsolete">Navigateur web eric6 (Mode privé)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
         <source>Save As</source>
         <translation>Enregistrer sous</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
         <source>&amp;Save As...</source>
         <translation>Enregistrer &amp;sous...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="743"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="748"/>
         <source>Save the current page to disk</source>
         <translation>Enregistrer la page courante sur le disque</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="745"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="750"/>
         <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current page to disk.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Enregistrer sous...&lt;/b&gt;&lt;p&gt;Enregistrer la page courante sur le disque.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1061"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1066"/>
         <source>Unselect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1071"/>
+        <source>Clear current selection</source>
+        <translation>Effacer la sélection courante</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1072"/>
+        <source>&lt;b&gt;Unselect&lt;/b&gt;&lt;p&gt;Clear the selection of the current browser.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1066"/>
-        <source>Clear current selection</source>
-        <translation>Effacer la sélection courante</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1067"/>
-        <source>&lt;b&gt;Unselect&lt;/b&gt;&lt;p&gt;Clear the selection of the current browser.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1061"/>
         <source>Alt+Ctrl+A</source>
         <comment>Edit|Unselect</comment>
         <translation>Alt+Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2503"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2508"/>
         <source>HTML Files (*.html *.htm *.mhtml *.mht);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source>
         <translation>Fichiers HTML (*.html *.htm *.mhtml *.mht);;Fichier PDF (*.pdf);;Fichiers CHM (*.chm);;Tous les fichiers (*)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="937"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="942"/>
         <source>Move to the initial screen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1293"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1298"/>
         <source>Meta+Ctrl+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2218"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2223"/>
         <source>&amp;VirusTotal</source>
         <translation>&amp;VirusTotal</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2183"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2188"/>
         <source>&amp;Windows</source>
         <translation>&amp;Windows</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2081"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2086"/>
         <source>&amp;Toolbars</source>
         <translation>&amp;Barres d&apos;Outils</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2116"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2121"/>
         <source>Save</source>
         <translation>Enregistrer</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2140"/>
         <source>Show All History...</source>
         <translation>Montrer tout l&apos;historique...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4186"/>
         <source>Menu Bar</source>
         <translation>Barre de menu</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4184"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4191"/>
         <source>Bookmarks</source>
         <translation>Signets</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4189"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4196"/>
         <source>Status Bar</source>
         <translation>Barre de statut</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4203"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4210"/>
         <source>&amp;Show all</source>
         <translation>Tout &amp;afficher</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4205"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4212"/>
         <source>&amp;Hide all</source>
         <translation>Tout &amp;masquer</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="844"/>
-        <source>Send Page Link</source>
-        <translation>Envoyer le lien de la page</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="849"/>
+        <source>Send Page Link</source>
+        <translation>Envoyer le lien de la page</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="854"/>
         <source>Send the link of the current page via email</source>
         <translation>Envoyer le lien de la page courante via courriel</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="851"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="856"/>
         <source>&lt;b&gt;Send Page Link&lt;/b&gt;&lt;p&gt;Send the link of the current page via email.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Envoyer le lien de la page&lt;/b&gt;&lt;p&gt;Envoyer le lien de la page courante via courriel.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1771"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1776"/>
         <source>Session Manager</source>
         <translation>Gestionnaire de session</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1771"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1776"/>
         <source>Session Manager...</source>
         <translation>Gestionnaire de session...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1775"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1780"/>
         <source>Shows the session manager window</source>
         <translation>Montre le gestionnaire de session</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1777"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1782"/>
         <source>&lt;b&gt;Session Manager&lt;/b&gt;&lt;p&gt;Shows the session manager window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gestionnaire de session&lt;/b&gt;&lt;p&gt;Montre le gestionnaire de session.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2109"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2114"/>
         <source>Sessions</source>
         <translation>Sessions</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2845"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2850"/>
         <source>Are you sure you want to close the web browser?</source>
         <translation>Voulez-vous vraiment fermer le navigateur web ?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2845"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2850"/>
         <source>Are you sure you want to close the web browser?
 You have {0} windows with {1} tabs open.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1635"/>
-        <source>Manage Safe Browsing</source>
-        <translation>Gérer la navigation sécurisée</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1635"/>
-        <source>Manage Safe Browsing...</source>
-        <translation>Gérer la navigation sécurisée...</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1642"/>
-        <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/>
+        <source>Manage Safe Browsing</source>
+        <translation>Gérer la navigation sécurisée</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/>
+        <source>Manage Safe Browsing...</source>
+        <translation>Gérer la navigation sécurisée...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1647"/>
+        <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1645"/>
         <source>Configure Safe Browsing and manage local cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="762"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="767"/>
         <source>&lt;b&gt;Save Page Screen...&lt;/b&gt;&lt;p&gt;Saves the visible part of the current page as a screen shot.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1823"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1828"/>
         <source>Keyboard Shortcuts</source>
         <translation>jRaccourcis clavier</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1823"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1828"/>
         <source>Keyboard &amp;Shortcuts...</source>
         <translation>&amp;Raccourcis claviers...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1829"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1834"/>
         <source>Set the keyboard shortcuts</source>
         <translation>Définition des raccourcis clavier</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1831"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1836"/>
         <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Raccourcis claviers&lt;/b&gt;&lt;p&gt;Edite les raccourcis claviers pour l&apos;application.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5009"/>
         <source>Export Keyboard Shortcuts</source>
         <translation>Exporter les raccourcis clavier</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1839"/>
-        <source>&amp;Export Keyboard Shortcuts...</source>
-        <translation>&amp;Exporter les raccourcis claviers...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1844"/>
+        <source>&amp;Export Keyboard Shortcuts...</source>
+        <translation>&amp;Exporter les raccourcis claviers...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1849"/>
         <source>Export the keyboard shortcuts</source>
         <translation>Exporte les raccourcis claviers</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1846"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1851"/>
         <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Exporter les raccourcis clavier&lt;/b&gt;&lt;p&gt;Exporte les raccourcis claviers de l&apos;application.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5007"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5025"/>
         <source>Import Keyboard Shortcuts</source>
         <translation>Importer les raccourcis clavier</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1853"/>
-        <source>&amp;Import Keyboard Shortcuts...</source>
-        <translation>&amp;Importer des raccourcis clavier...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1858"/>
+        <source>&amp;Import Keyboard Shortcuts...</source>
+        <translation>&amp;Importer des raccourcis clavier...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1863"/>
         <source>Import the keyboard shortcuts</source>
         <translation>Importe des raccourcis clavier</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1860"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1865"/>
         <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Importer des raccourcis clavier&lt;/b&gt;&lt;p&gt;Importe des raccourcis claviers de l&apos;application.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1867"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1872"/>
         <source>Protocol Handler Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1867"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1872"/>
         <source>Protocol Handler Manager...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1871"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1876"/>
         <source>Shows the protocol handler manager window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1873"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1878"/>
         <source>&lt;b&gt;Protocol Handler Manager&lt;/b&gt;&lt;p&gt;Shows the protocol handler manager window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4141"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4148"/>
         <source>System</source>
         <translation type="unfinished">Système</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4152"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4159"/>
         <source>Apple</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2189"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2194"/>
         <source>QtHelp</source>
         <translation type="unfinished">QtHelp</translation>
     </message>
@@ -91176,37 +91176,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3570"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3577"/>
         <source>eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="892"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="897"/>
         <source>Quit the eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="893"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="898"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2544"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2549"/>
         <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chrome {2}.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4972"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4990"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard Shortcuts File (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5009"/>
         <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5007"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5025"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -91666,12 +91666,12 @@
 <context>
     <name>eric6</name>
     <message>
-        <location filename="../eric6.py" line="397"/>
+        <location filename="../eric6.py" line="398"/>
         <source>Starting...</source>
         <translation>Démarrage...</translation>
     </message>
     <message>
-        <location filename="../eric6.py" line="402"/>
+        <location filename="../eric6.py" line="403"/>
         <source>Generating Main Window...</source>
         <translation>Création de la fenêtre principale...</translation>
     </message>
--- a/eric6/i18n/eric6_it.ts	Tue Mar 02 19:22:12 2021 +0100
+++ b/eric6/i18n/eric6_it.ts	Tue Mar 02 19:49:43 2021 +0100
@@ -112,22 +112,22 @@
         <translation>Azioni</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="166"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="167"/>
         <source>Learn more about writing rules...</source>
         <translation>Documentazione aggiuntiva sulla scrittura delle regole...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="159"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="160"/>
         <source>Update Subscription</source>
         <translation>Aggiorna sottoscrizione</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="146"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="147"/>
         <source>Browse Subscriptions...</source>
         <translation>Naviga sottoscrizioni...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="243"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="244"/>
         <source>Remove Subscription</source>
         <translation>Rimuovi sottoscrizione</translation>
     </message>
@@ -142,37 +142,37 @@
         <translation>Ricerca...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="139"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="140"/>
         <source>Add Rule</source>
         <translation>Aggiungi regola</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="142"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="143"/>
         <source>Remove Rule</source>
         <translation>Rimuovi Regola</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="154"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="155"/>
         <source>Disable Subscription</source>
         <translation>Disabilita la Sottoscrizione</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="156"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="157"/>
         <source>Enable Subscription</source>
         <translation>Abilita la Sottoscrizione</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="162"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="163"/>
         <source>Update All Subscriptions</source>
         <translation>Aggiorna tutte le sottoscrizioni</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="233"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="234"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt; and all subscriptions requiring it?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</source>
         <translation>&lt;p&gt;Vuoi veramente cancellare la sottoscrizione &lt;b&gt;{0}&lt;/b&gt; e tutte le sottoscrizioni che lo richiedono?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="240"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="241"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Vuoi veramente rimuovere &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</translation>
     </message>
@@ -286,17 +286,17 @@
 <context>
     <name>AdBlockManager</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="232"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="233"/>
         <source>Custom Rules</source>
         <translation>Regole personalizzate</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="334"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="335"/>
         <source>Subscribe?</source>
         <translation type="unfinished">Iscriversi ?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="334"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="335"/>
         <source>&lt;p&gt;Subscribe to this AdBlock subscription?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Iscriversi a questa lista AdBlock?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
@@ -304,22 +304,22 @@
 <context>
     <name>AdBlockSubscription</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="291"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="294"/>
         <source>Load subscription rules</source>
         <translation>Carica regole di sottoscrizione</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="500"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="503"/>
         <source>Downloading subscription rules</source>
         <translation>Scarica regole di sottoscrizione</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="410"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="413"/>
         <source>Got empty subscription rules.</source>
         <translation>Ricevuto regole di sottoscrizione vuote.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="523"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="527"/>
         <source>Saving subscription rules</source>
         <translation>Salvataggio regole di sottoscrizione</translation>
     </message>
@@ -329,7 +329,7 @@
         <translation type="obsolete">Non è possibile aprire il file adblock &apos;{0}&apos; in lettura.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="397"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="400"/>
         <source>&lt;p&gt;Subscription rules could not be downloaded.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le regole di sottoscrizione non possono essere scaricate.&lt;/p&gt;&lt;p&gt;Errore {0}&lt;/p&gt;</translation>
     </message>
@@ -339,22 +339,22 @@
         <translation type="obsolete">Non è possibile aprire il file adblock &apos;{0}&apos; in scrittura.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="291"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="294"/>
         <source>AdBlock file &apos;{0}&apos; does not start with [Adblock.</source>
         <translation>Il file adblock &apos;{0}&apos; non inizia con [Adblock.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="500"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="503"/>
         <source>&lt;p&gt;AdBlock subscription &lt;b&gt;{0}&lt;/b&gt; has a wrong checksum.&lt;br/&gt;Found: {1}&lt;br/&gt;Calculated: {2}&lt;br/&gt;Use it anyway?&lt;/p&gt;</source>
         <translation>&lt;p&gt;la Sottoscrizione AdBlock &lt;b&gt;{0}&lt;/b&gt; ha un codice di controllo errato.&lt;br/&gt;Trovato: {1}&lt;br/&gt;Calcolato: {2}&lt;br/&gt;Usarlo comunque?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="281"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="284"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for reading.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="523"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="527"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for writing.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -362,27 +362,27 @@
 <context>
     <name>AdBlockTreeWidget</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="123"/>
         <source>Add Custom Rule</source>
         <translation>Aggiungi regola personalizzata</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="123"/>
         <source>Write your rule here:</source>
         <translation>Inserire la regola qui:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="164"/>
-        <source>Add Rule</source>
-        <translation>Aggiungi regola</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="166"/>
+        <source>Add Rule</source>
+        <translation>Aggiungi regola</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="168"/>
         <source>Remove Rule</source>
         <translation>Rimuovi Regola</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="219"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="227"/>
         <source>{0} (recently updated)</source>
         <translation>{0} (aggiornato di recente)</translation>
     </message>
@@ -1166,7 +1166,7 @@
         <translation>Inserisci una breve descrizione per il progetto</translation>
     </message>
     <message>
-        <location filename="../MultiProject/AddProjectDialog.py" line="64"/>
+        <location filename="../MultiProject/AddProjectDialog.py" line="65"/>
         <source>Project Properties</source>
         <translation>Proprietà del progetto</translation>
     </message>
@@ -1636,37 +1636,37 @@
 <context>
     <name>BackgroundService</name>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="134"/>
+        <location filename="../Utilities/BackgroundService.py" line="135"/>
         <source>{0} not configured.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="189"/>
+        <location filename="../Utilities/BackgroundService.py" line="190"/>
         <source>Restart background client?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="444"/>
+        <location filename="../Utilities/BackgroundService.py" line="445"/>
         <source>Eric&apos;s background client disconnected because of an unknown reason.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="450"/>
+        <location filename="../Utilities/BackgroundService.py" line="451"/>
         <source>Background client disconnected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="189"/>
+        <location filename="../Utilities/BackgroundService.py" line="190"/>
         <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It&apos;s used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;&apos;Yes&apos;&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Retry&apos;&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;No&apos;&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="450"/>
+        <location filename="../Utilities/BackgroundService.py" line="451"/>
         <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="215"/>
+        <location filename="../Utilities/BackgroundService.py" line="216"/>
         <source>An error in Eric&apos;s background client stopped the service.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1923,32 +1923,32 @@
         <translation>Aggiungi &amp;Cartella</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="155"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="156"/>
         <source>&amp;Open</source>
         <translation>&amp;Apri</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="157"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="158"/>
         <source>Open in New &amp;Tab</source>
         <translation>Apri in una nuova linguet&amp;ta</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="168"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="169"/>
         <source>Edit &amp;Name</source>
         <translation>Modifica &amp;Nome</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="171"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="172"/>
         <source>Edit &amp;Address</source>
         <translation>Modifica &amp;Indirizzo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="173"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="174"/>
         <source>&amp;Delete</source>
         <translation>Can&amp;cella</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="342"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="355"/>
         <source>New Folder</source>
         <translation>Nuova Cartella</translation>
     </message>
@@ -1958,37 +1958,37 @@
         <translation></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="177"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="178"/>
         <source>&amp;Properties...</source>
         <translation>&amp;Proprietà...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="162"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="163"/>
         <source>Open in New &amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="164"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="165"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="159"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="160"/>
         <source>Open in New &amp;Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="181"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="182"/>
         <source>New &amp;Folder...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="334"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="347"/>
         <source>New Bookmark Folder</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="334"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="347"/>
         <source>Enter title for new bookmark folder:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2307,72 +2307,72 @@
 <context>
     <name>BreakPointViewer</name>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="52"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="54"/>
         <source>Breakpoints</source>
         <translation>Punti d&apos;interruzione</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="159"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="165"/>
         <source>Edit...</source>
         <translation>Modifica...</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="161"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="167"/>
         <source>Enable</source>
         <translation>Abilita</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="196"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="202"/>
         <source>Enable all</source>
         <translation>Abilita tutti</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="164"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="170"/>
         <source>Disable</source>
         <translation>Disabilita</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="201"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="207"/>
         <source>Disable all</source>
         <translation>Disabilita tutti</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="168"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="174"/>
         <source>Delete</source>
         <translation>Cancella</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="206"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="212"/>
         <source>Delete all</source>
         <translation>Cancella tutto</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="171"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="177"/>
         <source>Goto</source>
         <translation>Vai a</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="194"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="200"/>
         <source>Enable selected</source>
         <translation>Abilita selezionato</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="199"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="205"/>
         <source>Disable selected</source>
         <translation>Disabilita selezionato</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="204"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="210"/>
         <source>Delete selected</source>
         <translation>Cancella selezionato</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="192"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="198"/>
         <source>Add</source>
         <translation>Aggiungi</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="209"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="215"/>
         <source>Configure...</source>
         <translation>Configura...</translation>
     </message>
@@ -2380,12 +2380,12 @@
 <context>
     <name>Browser</name>
     <message>
-        <location filename="../UI/Browser.py" line="282"/>
+        <location filename="../UI/Browser.py" line="284"/>
         <source>Open</source>
         <translation>Apri</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="231"/>
+        <location filename="../UI/Browser.py" line="233"/>
         <source>Run unittest...</source>
         <translation>Esegui unittest...</translation>
     </message>
@@ -2395,27 +2395,27 @@
         <translation>Browser dei file</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="340"/>
+        <location filename="../UI/Browser.py" line="342"/>
         <source>New toplevel directory...</source>
         <translation>Nuova directory principale...</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="299"/>
+        <location filename="../UI/Browser.py" line="301"/>
         <source>Remove from toplevel</source>
         <translation>Rimuovi dal principale</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="296"/>
+        <location filename="../UI/Browser.py" line="298"/>
         <source>Add as toplevel directory</source>
         <translation>Aggiungi come directory principale</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="642"/>
+        <location filename="../UI/Browser.py" line="644"/>
         <source>New toplevel directory</source>
         <translation>Nuova directory principale</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="307"/>
+        <location filename="../UI/Browser.py" line="309"/>
         <source>Find in this directory</source>
         <translation>Trova in questa directory</translation>
     </message>
@@ -2430,27 +2430,27 @@
         <translation type="obsolete">Trova&amp;&amp;Sostituisci in questa directory</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="261"/>
+        <location filename="../UI/Browser.py" line="263"/>
         <source>Open in Icon Editor</source>
         <translation>Apri nell&apos;editor di icone</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="314"/>
+        <location filename="../UI/Browser.py" line="316"/>
         <source>Copy Path to Clipboard</source>
         <translation>Copia il path nella Clipboard</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="303"/>
+        <location filename="../UI/Browser.py" line="305"/>
         <source>Refresh directory</source>
         <translation>Rileggi directory</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="326"/>
+        <location filename="../UI/Browser.py" line="328"/>
         <source>Goto</source>
         <translation>Vai a</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="433"/>
+        <location filename="../UI/Browser.py" line="435"/>
         <source>Line {0}</source>
         <translation>Linea {0}</translation>
     </message>
@@ -2460,152 +2460,152 @@
         <translation>&lt;b&gt;La finestra di navigazione&lt;/b&gt;Questa ti permette di navigare facilmente nella struttura delle directory e dei file sul tuo sistema, identificare i programmi Python e aprirli nella finestra di Visualizzazione dei Sorgenti. La finestra mostra diverse strutture separate.&lt;/p&gt;&lt;p&gt;La prima struttura è mostrata solo se hai aperto un programma da debuggare e la sua radice è la cartella che contiene il programma. Normalmente tutti i file che compongono un&apos;applicazione Python sono contenuti nella stessa cartella, così questa vista permette un accesso veloce a molto di quello che ti serve.&lt;/p&gt;&lt;p&gt;La vista successiva è usata per navigare facilmente nelle cartelle specificate nella variabile Python &lt;tt&gt;sys.path&lt;/tt&gt;.&lt;/p&gt;&lt;p&gt;La vista rimanente permette di navigare in tutto il sistema. Su un sistema UNIX c&apos;è una struttura con &lt;tt&gt;/&lt;/tt&gt; come radice e un&apos;altra con la home dell&apos;utente. Su un sistema Windows c&apos;è una struttura per ogni disco del sistema.&lt;/p&gt;&lt;p&gt;I programmi Python (es. quelli con l&apos;estensione &lt;tt&gt;.py&lt;/tt&gt;) sono identificati nella vista con l&apos;icona di Python. Il pulsante destro del mouse fa apparire un menù che consente di aprire il file nel Visualizzatore dei Sorgenti, aprire il file per il debug o usarlo per uno unittest.&lt;/p&gt;&lt;p&gt;Il menù contestuale di una classe, funzione o metodo consente di aprire il file che la definisce e di posizionarsi sulla riga corretta.&lt;/p&gt;&lt;p&gt;I file di Qt-Designer (es. quelli con estensione &lt;tt&gt;.ui&lt;/tt&gt;) sono mostrati con l&apos;icona del Designer. Il menù contestuale  di questi file consente di avviare Qt-Designer per quel file.&lt;/p&gt;&lt;p&gt;I file di Qt-Linguist (es. quelli con estensione &lt;tt&gt;.ts&lt;/tt&gt;) sono mostrati con l&apos;icona di Linguist. Il menù contestuale di questi file consente di avviare Qt-Linguist per quel file.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="553"/>
+        <location filename="../UI/Browser.py" line="555"/>
         <source>Show Mime-Type</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="526"/>
+        <location filename="../UI/Browser.py" line="528"/>
         <source>The mime type of the file could not be determined.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="544"/>
+        <location filename="../UI/Browser.py" line="546"/>
         <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="553"/>
+        <location filename="../UI/Browser.py" line="555"/>
         <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt; Shall it be added to the list of text mime types?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="258"/>
+        <location filename="../UI/Browser.py" line="260"/>
         <source>Open in Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="310"/>
+        <location filename="../UI/Browser.py" line="312"/>
         <source>Find &amp;&amp; Replace in this directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="239"/>
+        <location filename="../UI/Browser.py" line="241"/>
         <source>Refresh Source File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="212"/>
+        <location filename="../UI/Browser.py" line="214"/>
         <source>Show Hidden Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="219"/>
-        <source>New</source>
-        <translation type="unfinished">Nuovo</translation>
-    </message>
-    <message>
         <location filename="../UI/Browser.py" line="221"/>
+        <source>New</source>
+        <translation type="unfinished">Nuovo</translation>
+    </message>
+    <message>
+        <location filename="../UI/Browser.py" line="223"/>
         <source>Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="224"/>
+        <location filename="../UI/Browser.py" line="226"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="321"/>
+        <location filename="../UI/Browser.py" line="323"/>
         <source>Delete</source>
         <translation type="unfinished">Cancella</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="879"/>
+        <location filename="../UI/Browser.py" line="881"/>
         <source>New Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="861"/>
+        <location filename="../UI/Browser.py" line="863"/>
         <source>Name for new directory:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="902"/>
+        <location filename="../UI/Browser.py" line="904"/>
         <source>A file or directory named &lt;b&gt;{0}&lt;/b&gt; exists already. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="879"/>
+        <location filename="../UI/Browser.py" line="881"/>
         <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="913"/>
+        <location filename="../UI/Browser.py" line="915"/>
         <source>New File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="894"/>
+        <location filename="../UI/Browser.py" line="896"/>
         <source>Name for new file:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="913"/>
+        <location filename="../UI/Browser.py" line="915"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="942"/>
+        <location filename="../UI/Browser.py" line="944"/>
         <source>Do you really want to move this file to the trash?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="946"/>
+        <location filename="../UI/Browser.py" line="948"/>
         <source>Do you really want to delete this file?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1043"/>
+        <location filename="../UI/Browser.py" line="1045"/>
         <source>Delete File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1043"/>
+        <location filename="../UI/Browser.py" line="1045"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="979"/>
+        <location filename="../UI/Browser.py" line="981"/>
         <source>Do you really want to move this directory to the trash?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="983"/>
+        <location filename="../UI/Browser.py" line="985"/>
         <source>Do you really want to delete this directory?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1000"/>
+        <location filename="../UI/Browser.py" line="1002"/>
         <source>Delete Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1000"/>
+        <location filename="../UI/Browser.py" line="1002"/>
         <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1023"/>
+        <location filename="../UI/Browser.py" line="1025"/>
         <source>Do you really want to move these files to the trash?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1027"/>
+        <location filename="../UI/Browser.py" line="1029"/>
         <source>Do you really want to delete these files?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1032"/>
+        <location filename="../UI/Browser.py" line="1034"/>
         <source>Delete Files</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2618,27 +2618,27 @@
         <translation>Nome</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="759"/>
+        <location filename="../UI/BrowserModel.py" line="766"/>
         <source>Attributes</source>
         <translation>Attributi</translation>
     </message>
     <message>
+        <location filename="../UI/BrowserModel.py" line="667"/>
+        <source>Globals</source>
+        <translation>Globali</translation>
+    </message>
+    <message>
         <location filename="../UI/BrowserModel.py" line="660"/>
-        <source>Globals</source>
-        <translation>Globali</translation>
-    </message>
-    <message>
-        <location filename="../UI/BrowserModel.py" line="653"/>
         <source>Coding: {0}</source>
         <translation>Codifica: {0}</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="769"/>
+        <location filename="../UI/BrowserModel.py" line="776"/>
         <source>Class Attributes</source>
         <translation>Attributi della Classe</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="666"/>
+        <location filename="../UI/BrowserModel.py" line="673"/>
         <source>Imports</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2661,7 +2661,7 @@
         <translation>Salva</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="71"/>
+        <location filename="../Debugger/CallStackViewer.py" line="72"/>
         <source>File: {0}
 Line: {1}
 {2}{3}</source>
@@ -2670,34 +2670,34 @@
 {2}{3}</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="73"/>
+        <location filename="../Debugger/CallStackViewer.py" line="74"/>
         <source>File: {0}
 Line: {1}</source>
         <translation>File: {0}
 riga: {1}</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="202"/>
+        <location filename="../Debugger/CallStackViewer.py" line="203"/>
         <source>Save Call Stack Info</source>
         <translation>Salva le informazioni della pila di chiamate</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="188"/>
+        <location filename="../Debugger/CallStackViewer.py" line="189"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation>File Testo(*.txt);;Tutti i file (*)</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="202"/>
+        <location filename="../Debugger/CallStackViewer.py" line="203"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="224"/>
+        <location filename="../Debugger/CallStackViewer.py" line="225"/>
         <source>Error saving Call Stack Info</source>
         <translation>Errore salvando le informazioni della pila di chiamate</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="224"/>
+        <location filename="../Debugger/CallStackViewer.py" line="225"/>
         <source>&lt;p&gt;The call stack info could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le informazioni della pila di chiamate non possono essere scritte su &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
@@ -2707,7 +2707,7 @@
         <translation>Pila di chiamate</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="213"/>
+        <location filename="../Debugger/CallStackViewer.py" line="214"/>
         <source>Call Stack of &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3419,32 +3419,32 @@
 <context>
     <name>CodeDocumentationViewer</name>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="208"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="211"/>
         <source>Code Info Provider:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="221"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="227"/>
         <source>Select the code info provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="223"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="229"/>
         <source>&lt;disabled&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="404"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="410"/>
         <source>No documentation available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="425"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="431"/>
         <source>No source code documentation provider has been registered. This function has been disabled.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="430"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="436"/>
         <source>This function has been disabled.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3475,32 +3475,32 @@
 <context>
     <name>CodeMetricsDialog</name>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="203"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="215"/>
         <source>empty lines</source>
         <translation>linee vuote</translation>
     </message>
     <message>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="217"/>
+        <source>non-commentary lines</source>
+        <translation>linee non di documentazione</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="211"/>
+        <source>comments</source>
+        <translation>commenti</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="209"/>
+        <source>bytes</source>
+        <translation>bytes</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="207"/>
+        <source>lines</source>
+        <translation>linee</translation>
+    </message>
+    <message>
         <location filename="../DataViews/CodeMetricsDialog.py" line="205"/>
-        <source>non-commentary lines</source>
-        <translation>linee non di documentazione</translation>
-    </message>
-    <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="199"/>
-        <source>comments</source>
-        <translation>commenti</translation>
-    </message>
-    <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="197"/>
-        <source>bytes</source>
-        <translation>bytes</translation>
-    </message>
-    <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="195"/>
-        <source>lines</source>
-        <translation>linee</translation>
-    </message>
-    <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="193"/>
         <source>files</source>
         <translation>files</translation>
     </message>
@@ -3611,17 +3611,17 @@
         <translation>Flussi %v/%m</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="201"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="213"/>
         <source>comment lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="52"/>
-        <source>Collapse All</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../DataViews/CodeMetricsDialog.py" line="54"/>
+        <source>Collapse All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="56"/>
         <source>Expand All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3869,7 +3869,7 @@
         <translation>Premi per mostrare tutti i file che contengono problematiche</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="244"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="246"/>
         <source>Error: {0}</source>
         <translation>Errore: {0}</translation>
     </message>
@@ -3879,7 +3879,7 @@
         <translation>Corregge:{0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1037"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1044"/>
         <source>No issues found.</source>
         <translation>Nessun problema trovato.</translation>
     </message>
@@ -3904,12 +3904,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="963"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="968"/>
         <source>{0} (ignored)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="856"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="861"/>
         <source>Preparing files...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3919,12 +3919,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="217"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="219"/>
         <source>Errors</source>
         <translation type="unfinished">Errori</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="895"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="900"/>
         <source>Transferring data...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4029,7 +4029,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1040"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1047"/>
         <source>No files found (check your ignore list).</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4339,12 +4339,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2004"/>
         <source>Commented Code Whitelist Pattern</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2004"/>
         <source>Enter a Commented Code Whitelist Pattern</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5206,7 +5206,7 @@
 <context>
     <name>CondaExecDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="96"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="102"/>
         <source>Conda Execution</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5233,45 +5233,45 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="96"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="102"/>
         <source>The conda executable could not be started. Is it configured correctly?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="103"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="109"/>
         <source>Operation started.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="134"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="143"/>
         <source>Operation finished.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="154"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="163"/>
         <source>Conda command &apos;{0}&apos; did not return success.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="164"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="173"/>
         <source>
 Conda Message: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="203"/>
-        <source>{0} (Size: {1})</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="208"/>
-        <source>Fetching {0} ...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../CondaInterface/CondaExecDialog.py" line="212"/>
+        <source>{0} (Size: {1})</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="217"/>
+        <source>Fetching {0} ...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="221"/>
         <source> Done.
 </source>
         <translation type="unfinished"></translation>
@@ -5280,7 +5280,7 @@
 <context>
     <name>CondaExportDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="209"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="211"/>
         <source>Generate Requirements</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5360,27 +5360,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="209"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="211"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished">File Testo(*.txt);;Tutti i file (*)</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="109"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="111"/>
         <source>The requirements were changed. Do you want to overwrite these changes?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="140"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="142"/>
         <source>No output generated by conda.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="177"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="179"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; already exists. Do you want to overwrite it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="189"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="191"/>
         <source>&lt;p&gt;The requirements could not be written to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5567,7 +5567,7 @@
 <context>
     <name>CondaPackageDetailsDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaPackageDetailsWidget.py" line="91"/>
+        <location filename="../CondaInterface/CondaPackageDetailsWidget.py" line="93"/>
         <source>Package Details</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5778,132 +5778,132 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="123"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="125"/>
         <source>Clean</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="124"/>
-        <source>All</source>
-        <translation type="unfinished">Tutti</translation>
-    </message>
-    <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="126"/>
-        <source>Cache</source>
-        <translation type="unfinished"></translation>
+        <source>All</source>
+        <translation type="unfinished">Tutti</translation>
     </message>
     <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="128"/>
+        <source>Cache</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="130"/>
         <source>Lock Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="131"/>
-        <source>Packages</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="133"/>
+        <source>Packages</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="135"/>
         <source>Tarballs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="136"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="138"/>
         <source>About Conda...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="139"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="141"/>
         <source>Update Conda</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="575"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="581"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="144"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="146"/>
         <source>Install Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="147"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="149"/>
         <source>Generate Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="150"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="152"/>
         <source>Create Environment from Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="617"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="623"/>
         <source>Clone Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="662"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="668"/>
         <source>Delete Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="160"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="162"/>
         <source>Edit User Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="164"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="166"/>
         <source>Configure...</source>
         <translation type="unfinished">Configura...</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="221"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="223"/>
         <source>Getting installed packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="234"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="236"/>
         <source>Getting outdated packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="256"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="260"/>
         <source>{0} (Build: {1})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="397"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="403"/>
         <source>Conda Search Package Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="555"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="561"/>
         <source>Package Specifications (separated by whitespace):</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="575"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="581"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished">File Testo(*.txt);;Tutti i file (*)</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="641"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="647"/>
         <source>Create Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="662"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="668"/>
         <source>&lt;p&gt;Shall the environment &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="687"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="693"/>
         <source>Edit Configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="687"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="693"/>
         <source>The configuration file &quot;{0}&quot; does not exist or is not writable.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6099,7 +6099,7 @@
         <translation>Gestrore viste</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="661"/>
         <source>Configuration Page Error</source>
         <translation>Configurazione pagine errore</translation>
     </message>
@@ -6134,12 +6134,12 @@
         <translation>Proprietà</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="571"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="578"/>
         <source>Preferences</source>
         <translation>Preferenze</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="576"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="584"/>
         <source>Please select an entry of the list 
 to display the configuration page.</source>
         <translation>Selezionare un elemento della lista
@@ -6161,7 +6161,7 @@
         <translation>Python3</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
+        <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 pagina di configurazione &lt;b&gt;{0}&lt;/b&gt; non può essere caricata.&lt;/p&gt;</translation>
     </message>
@@ -6399,17 +6399,17 @@
         <translation>Stato</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="82"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="87"/>
         <source>Allow</source>
         <translation>Consenti</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="91"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="96"/>
         <source>Block</source>
         <translation>Blocca</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="100"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="105"/>
         <source>Allow For Session</source>
         <translation>Consenti per la sessione</translation>
     </message>
@@ -6603,7 +6603,7 @@
         <translation type="unfinished">Dominio:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="175"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="176"/>
         <source>&lt;no cookie selected&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6648,37 +6648,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="143"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="144"/>
         <source>Remove All Cookies</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="143"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="144"/>
         <source>Do you really want to remove all stored cookies?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="177"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="178"/>
         <source>Remove Cookies</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="186"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="187"/>
         <source>Secure connections only</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="188"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="189"/>
         <source>All connections</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="190"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="191"/>
         <source>Session Cookie</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="197"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="198"/>
         <source>Remove Cookie</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6965,57 +6965,57 @@
         <translation>&amp;Filtra con:</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="578"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="580"/>
         <source>Code Generation</source>
         <translation>Generazione del codice</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="225"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="226"/>
         <source>uic error</source>
         <translation>errore uic</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="135"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="136"/>
         <source>Create Dialog Code</source>
         <translation>Crea il codice del dialogo</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="135"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="136"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; exists but does not contain any classes.</source>
         <translation>Il file &lt;b&gt;{0}&lt;/b&gt; esiste ma non contiene nessuna classe.</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="216"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="217"/>
         <source>&lt;p&gt;There was an error loading the form &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;C&apos;è un errore nel caricamento del form&lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="448"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="449"/>
         <source>&lt;p&gt;Could not open the code template file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Non posso aprire il file del modello del codice &quot;{0}&quot;.&lt;p&gt;&lt;p&gt;Ragione: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="485"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="486"/>
         <source>&lt;p&gt;Could not open the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Non posso aprire il file sorgente &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Ragione: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="578"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="580"/>
         <source>&lt;p&gt;Could not write the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Non posso scrivere il file sorgente &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Ragione: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="225"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="226"/>
         <source>&lt;p&gt;The project specific Python interpreter &lt;b&gt;{0}&lt;/b&gt; could not be started or did not finish within 30 seconds.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="401"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="402"/>
         <source>&lt;p&gt;Code generation for project language &quot;{0}&quot; is not supported.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="437"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="438"/>
         <source>&lt;p&gt;No code template file available for project type &quot;{0}&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7058,51 +7058,51 @@
         <translation>modificato</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="865"/>
+        <location filename="../Debugger/DebugServer.py" line="867"/>
         <source>Connection from illegal host</source>
         <translation>Connessione da un non vietato</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1875"/>
+        <location filename="../Debugger/DebugServer.py" line="1877"/>
         <source>
 Not connected
 </source>
         <translation>Non connesso</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="865"/>
+        <location filename="../Debugger/DebugServer.py" line="867"/>
         <source>&lt;p&gt;A connection was attempted by the illegal host &lt;b&gt;{0}&lt;/b&gt;. Accept this connection?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Una connessione è stata tentata da un host vietato &lt;b&gt;{0}&lt;/b&gt;.  Accettare questa connessione ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="2144"/>
+        <location filename="../Debugger/DebugServer.py" line="2146"/>
         <source>Passive debug connection received
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="2158"/>
+        <location filename="../Debugger/DebugServer.py" line="2160"/>
         <source>Passive debug connection closed
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="351"/>
+        <location filename="../Debugger/DebugServer.py" line="353"/>
         <source>Register Debugger Interface</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="351"/>
+        <location filename="../Debugger/DebugServer.py" line="353"/>
         <source>&lt;p&gt;The debugger interface &lt;b&gt;{0}&lt;/b&gt; has already been registered. Ignoring this request.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1601"/>
         <source>Start Debugger</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1601"/>
         <source>&lt;p&gt;The debugger type &lt;b&gt;{0}&lt;/b&gt; is not supported or not configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7110,7 +7110,7 @@
 <context>
     <name>DebugUI</name>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1961"/>
+        <location filename="../Debugger/DebugUI.py" line="1964"/>
         <source>Run Script</source>
         <translation>Esegui Script</translation>
     </message>
@@ -7130,7 +7130,7 @@
         <translation>&lt;b&gt;Esegui Script&lt;/b&gt;&lt;p&gt;Imposta gli argomenti della linea di comando ed esegue lo script al di fuori del debugger. Se il file non è stato salvato può essere salvato prima.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1973"/>
+        <location filename="../Debugger/DebugUI.py" line="1976"/>
         <source>Run Project</source>
         <translation>Esegui Progetto</translation>
     </message>
@@ -7140,418 +7140,418 @@
         <translation>Esegui &amp;Progetto...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="220"/>
+        <location filename="../Debugger/DebugUI.py" line="221"/>
         <source>Run the current Project</source>
         <translation>Esegui il progetto corrente</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="221"/>
+        <location filename="../Debugger/DebugUI.py" line="222"/>
         <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Esegui Progetto&lt;/b&gt;&lt;p&gt;Imposta gli argomenti della linea di comando ed esegue il progetto corrente fuori dal debugger. Se file del progetto corrente non sono stati salvati, è possibile salvarli prima.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="231"/>
+        <location filename="../Debugger/DebugUI.py" line="232"/>
         <source>Coverage run of Script</source>
         <translation>Esecuzione sotto analisi dello Script</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="231"/>
+        <location filename="../Debugger/DebugUI.py" line="232"/>
         <source>Coverage run of Script...</source>
         <translation>Esecuzione sotto analisi del progetto...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="236"/>
+        <location filename="../Debugger/DebugUI.py" line="237"/>
         <source>Perform a coverage run of the current Script</source>
         <translation>Esegui un&apos;esecuzione coperta dello script corrente</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="238"/>
+        <location filename="../Debugger/DebugUI.py" line="239"/>
         <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Copertura eseguzione dello scitp&lt;/b&gt;&lt;p&gt;Imposta gli argomenti alla linea di comando ed esegui lo script sotto il controllo di uno strumento di analisi. Se il file ha delle modifiche non salvate è possibile salvarlo prima.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="247"/>
+        <location filename="../Debugger/DebugUI.py" line="248"/>
         <source>Coverage run of Project</source>
         <translation>Esecuzione sotto analisi del progetto</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="247"/>
+        <location filename="../Debugger/DebugUI.py" line="248"/>
         <source>Coverage run of Project...</source>
         <translation>Esecuzione sotto analisi del progetto...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="252"/>
+        <location filename="../Debugger/DebugUI.py" line="253"/>
         <source>Perform a coverage run of the current Project</source>
         <translation>Esegui un&apos;esecuzione coperta del progetto corrente</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="254"/>
+        <location filename="../Debugger/DebugUI.py" line="255"/>
         <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Esecuzione sotto analisi del progetto&lt;/b&gt;&lt;p&gt;Imposta gli argomenti alla linea di comando ed esegui il progetto sotto il controllo di uno strumento di analisi. Se ci sono file del progetto con modifiche non salvate è possibile salvarli prima.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="264"/>
+        <location filename="../Debugger/DebugUI.py" line="265"/>
         <source>Profile Script</source>
         <translation>Profila Script</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="264"/>
+        <location filename="../Debugger/DebugUI.py" line="265"/>
         <source>Profile Script...</source>
         <translation>Profila Script...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="268"/>
-        <source>Profile the current Script</source>
-        <translation>Profile lo script corrente</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="269"/>
+        <source>Profile the current Script</source>
+        <translation>Profile lo script corrente</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="270"/>
         <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Profila Script&lt;/b&gt;&lt;p&gt;Imposta gli argomenti della linea di comando profila lo script. Se il file non è stato salvato può essere salvato prima.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="277"/>
+        <location filename="../Debugger/DebugUI.py" line="278"/>
         <source>Profile Project</source>
         <translation>Profila Progetto</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="277"/>
+        <location filename="../Debugger/DebugUI.py" line="278"/>
         <source>Profile Project...</source>
         <translation>Profila Progetto...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="282"/>
+        <location filename="../Debugger/DebugUI.py" line="283"/>
         <source>Profile the current Project</source>
         <translation>Profila il progetto corrente</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="284"/>
+        <location filename="../Debugger/DebugUI.py" line="285"/>
         <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Profila Progetto&lt;/b&gt;&lt;p&gt;Imposta gli argomenti della linea di comando e profila il progetto. Se file del progetto corrente non sono stati salvati, è possibile salvarli prima.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2094"/>
+        <location filename="../Debugger/DebugUI.py" line="2097"/>
         <source>Debug Script</source>
         <translation>Debug dello script</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="293"/>
+        <location filename="../Debugger/DebugUI.py" line="294"/>
         <source>&amp;Debug Script...</source>
         <translation>&amp;Debug dello script...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="298"/>
-        <source>Debug the current Script</source>
-        <translation>Debug dello script corrente</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="299"/>
+        <source>Debug the current Script</source>
+        <translation>Debug dello script corrente</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="300"/>
         <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Debug dello Script&lt;/b&gt;&lt;p&gt;Imposta gli argomenti della linea di comando e imposta la linea corrente per essere la prima istruzione eseguibile di Python della finestra dell&apos;editor. Se il file ha modifiche non salvate è possibile salvarle prima.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2111"/>
+        <location filename="../Debugger/DebugUI.py" line="2114"/>
         <source>Debug Project</source>
         <translation>Debug del Progetto</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="309"/>
+        <location filename="../Debugger/DebugUI.py" line="310"/>
         <source>Debug &amp;Project...</source>
         <translation>Debug del &amp;Progetto...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="314"/>
-        <source>Debug the current Project</source>
-        <translation>Debug del progetto corrente</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="316"/>
+        <source>Debug the current Project</source>
+        <translation>Debug del progetto corrente</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="318"/>
         <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Debug del Progetto&lt;/b&gt;&lt;p&gt;Imposta gli argomenti della linea di comando e imposta la linea corrente per essere la prima istruzione eseguibile di Python della finestra dell&apos;editor. Se il progetto ha modifiche non salvate è possibile salvarle prima.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="330"/>
+        <location filename="../Debugger/DebugUI.py" line="332"/>
         <source>Restart the last debugged script</source>
         <translation>Riavvia l&apos;ultimo script debuggato</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="357"/>
+        <location filename="../Debugger/DebugUI.py" line="359"/>
         <source>Continue</source>
         <translation>Continua</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="357"/>
+        <location filename="../Debugger/DebugUI.py" line="359"/>
         <source>&amp;Continue</source>
         <translation>&amp;Continua</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="362"/>
-        <source>Continue running the program from the current line</source>
-        <translation>Continua l&apos;esecuzione del programma dalla linea corrente</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="364"/>
+        <source>Continue running the program from the current line</source>
+        <translation>Continua l&apos;esecuzione del programma dalla linea corrente</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="366"/>
         <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Continua&lt;/b&gt;&lt;p&gt;Continua l&apos;esecuzione del programma dalla linea corrente. Il programma si fermerà quando finirà o quando incontrerà un breakpoint.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="426"/>
+        <location filename="../Debugger/DebugUI.py" line="429"/>
         <source>Single Step</source>
         <translation>Step Singolo</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="426"/>
+        <location filename="../Debugger/DebugUI.py" line="429"/>
         <source>Sin&amp;gle Step</source>
         <translation>Step Sin&amp;golo</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="431"/>
+        <location filename="../Debugger/DebugUI.py" line="434"/>
         <source>Execute a single Python statement</source>
         <translation>Esegui una singola istruzione Python</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="432"/>
+        <location filename="../Debugger/DebugUI.py" line="435"/>
         <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Passo singolo&lt;/b&gt;&lt;p&gt;Esegue una singola istruzione Python. Se l&apos;istruzione è una &lt;tt&gt;import&lt;/tt&gt;, un costruttore di una classe, o un metodo o una chiamata di funzione allora il controllo verrà tornato al debugger alla prossima istruzione.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="442"/>
+        <location filename="../Debugger/DebugUI.py" line="445"/>
         <source>Step Over</source>
         <translation>Step Over</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="442"/>
+        <location filename="../Debugger/DebugUI.py" line="445"/>
         <source>Step &amp;Over</source>
         <translation>Step &amp;Over</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="447"/>
-        <source>Execute a single Python statement staying in the current frame</source>
-        <translation>Esegui una singola istruzione Python restando nella stessa struttura</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="450"/>
+        <source>Execute a single Python statement staying in the current frame</source>
+        <translation>Esegui una singola istruzione Python restando nella stessa struttura</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="453"/>
         <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Singolo passor&lt;/b&gt;&lt;p&gt;Esegui una singola istruzione Python restando nella stessa struttura. Se l&apos;istruzione e&apos; un &lt;tt&gt;import&lt;/tt&gt;, un costruttore di classe, o un metodo o una chiamata di funzione allora il controllo tornerà al debugger dopo che l&apos;istruzione è completata.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="461"/>
+        <location filename="../Debugger/DebugUI.py" line="464"/>
         <source>Step Out</source>
         <translation>Step Out</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="461"/>
+        <location filename="../Debugger/DebugUI.py" line="464"/>
         <source>Step Ou&amp;t</source>
         <translation>Step Ou&amp;t</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="466"/>
-        <source>Execute Python statements until leaving the current frame</source>
-        <translation>Esegue istruzioni Python fino a quando esce dal blocco corrente</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="469"/>
+        <source>Execute Python statements until leaving the current frame</source>
+        <translation>Esegue istruzioni Python fino a quando esce dal blocco corrente</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="472"/>
         <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Esegue istruzioni Python fino a quando esce dal blocco corrente. Se l&apos;istruzione e&apos; un &lt;tt&gt;import&lt;/tt&gt;, un costruttore di classe, o un metodo o una chiamata di funzione allora il controllo tornerà al debugger dopo l&apos;uscita dal blocco corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="480"/>
+        <location filename="../Debugger/DebugUI.py" line="483"/>
         <source>Stop</source>
         <translation>Stop</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="480"/>
+        <location filename="../Debugger/DebugUI.py" line="483"/>
         <source>&amp;Stop</source>
         <translation>&amp;Stop</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="485"/>
+        <location filename="../Debugger/DebugUI.py" line="488"/>
         <source>Stop debugging</source>
         <translation>Ferma il debug</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="486"/>
+        <location filename="../Debugger/DebugUI.py" line="489"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Ferma la sessione di debug.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="509"/>
+        <location filename="../Debugger/DebugUI.py" line="512"/>
         <source>Exceptions Filter</source>
         <translation>Filtro per le eccezioni</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="509"/>
+        <location filename="../Debugger/DebugUI.py" line="512"/>
         <source>&amp;Exceptions Filter...</source>
         <translation>Filtro per le &amp;Eccezioni...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="513"/>
+        <location filename="../Debugger/DebugUI.py" line="516"/>
         <source>Configure exceptions filter</source>
         <translation>Configura il filtro per le eccezioni</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="515"/>
+        <location filename="../Debugger/DebugUI.py" line="518"/>
         <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Filtro per le Eccezioni&lt;/b&gt;&lt;p&gt;Configura il filtro per le eccezioni. Solo i tipi di eccezione che sono elencati sono evidenziati durante una sessione di debug.&lt;/p&gt;&lt;p&gt;Notare che, tutte le eccezioni non gestite sono evidenziate indipendentemente dalla lista del filtro.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="551"/>
+        <location filename="../Debugger/DebugUI.py" line="554"/>
         <source>Toggle Breakpoint</source>
         <translation>Toggle Breakpoint</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="552"/>
+        <location filename="../Debugger/DebugUI.py" line="555"/>
         <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Attiva un breakpoint sulla linea corrente dell&apos;editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="566"/>
+        <location filename="../Debugger/DebugUI.py" line="569"/>
         <source>Edit Breakpoint</source>
         <translation>Modifica Breakpoint</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="560"/>
+        <location filename="../Debugger/DebugUI.py" line="563"/>
         <source>Edit Breakpoint...</source>
         <translation>Modifica Breakpoint...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="567"/>
+        <location filename="../Debugger/DebugUI.py" line="570"/>
         <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Modifica Breakpoint&lt;/b&gt;&lt;p&gt;Apre un dialogo per modificare le proprietà del breakpoint. Lavora sulla linea corrente dell&apos;editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="582"/>
+        <location filename="../Debugger/DebugUI.py" line="585"/>
         <source>Next Breakpoint</source>
         <translation>Prossimo Breakpoint</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="583"/>
+        <location filename="../Debugger/DebugUI.py" line="586"/>
         <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Prossimo Breakpoint&lt;/b&gt;&lt;p&gt;Va al prossimo breakpoint dell&apos;editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="597"/>
+        <location filename="../Debugger/DebugUI.py" line="600"/>
         <source>Previous Breakpoint</source>
         <translation>Breakpoint Precedente</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="598"/>
+        <location filename="../Debugger/DebugUI.py" line="601"/>
         <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Breakpoint Precedente&lt;/b&gt;&lt;p&gt;Va al breakpoint precedente dell&apos;editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="610"/>
+        <location filename="../Debugger/DebugUI.py" line="613"/>
         <source>Clear Breakpoints</source>
         <translation>Pulisci i Breakpoint</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="611"/>
+        <location filename="../Debugger/DebugUI.py" line="614"/>
         <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Pulisci i Breakpoints&lt;/b&gt;&lt;p&gt;Elimina i breakpoint di tutti gli editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="641"/>
+        <location filename="../Debugger/DebugUI.py" line="644"/>
         <source>&amp;Breakpoints</source>
         <translation>&amp;Breakpoints</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1169"/>
+        <location filename="../Debugger/DebugUI.py" line="1172"/>
         <source>The program being debugged contains an unspecified syntax error.</source>
         <translation>Il programma che viene debuggato contiene un errore di sintassi non specificato.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1212"/>
+        <location filename="../Debugger/DebugUI.py" line="1215"/>
         <source>An unhandled exception occured. See the shell window for details.</source>
         <translation>Un&apos;eccezione non gestita è occorso. Guarda la finestra di shell per dettagli.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1345"/>
+        <location filename="../Debugger/DebugUI.py" line="1348"/>
         <source>The program being debugged has terminated unexpectedly.</source>
         <translation>Il programma debuggato è terminato in maniera inaspettata.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1700"/>
+        <location filename="../Debugger/DebugUI.py" line="1703"/>
         <source>Coverage of Project</source>
         <translation>Analisi del Progetto</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1687"/>
+        <location filename="../Debugger/DebugUI.py" line="1690"/>
         <source>Coverage of Script</source>
         <translation>Analisi delle Script</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1973"/>
+        <location filename="../Debugger/DebugUI.py" line="1976"/>
         <source>There is no main script defined for the current project. Aborting</source>
         <translation>Non c&apos;è uno script principale definito per il progetto. Esco</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1837"/>
+        <location filename="../Debugger/DebugUI.py" line="1840"/>
         <source>Profile of Project</source>
         <translation>Profilazione del progetto</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1824"/>
+        <location filename="../Debugger/DebugUI.py" line="1827"/>
         <source>Profile of Script</source>
         <translation>Profilazione dello script</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2111"/>
+        <location filename="../Debugger/DebugUI.py" line="2114"/>
         <source>There is no main script defined for the current project. No debugging possible.</source>
         <translation>Non c&apos;è uno script principale per il progetto. Non è possibile il debug.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="373"/>
+        <location filename="../Debugger/DebugUI.py" line="375"/>
         <source>Continue to Cursor</source>
         <translation>Continua fino al cursore</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="373"/>
+        <location filename="../Debugger/DebugUI.py" line="375"/>
         <source>Continue &amp;To Cursor</source>
         <translation>Con&amp;tinua fino al Cursore</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="378"/>
-        <source>Continue running the program from the current line to the current cursor position</source>
-        <translation>Continua l&apos;esecuzione del programma dalla linea attuale fino alla posizione del cursore</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="381"/>
+        <source>Continue running the program from the current line to the current cursor position</source>
+        <translation>Continua l&apos;esecuzione del programma dalla linea attuale fino alla posizione del cursore</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="384"/>
         <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Continua fino al cursore&lt;/b&gt;&lt;p&gt;Continua l&apos;esecuzione del programma dalla linea attuale fino alla posizione del cursore.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="493"/>
+        <location filename="../Debugger/DebugUI.py" line="496"/>
         <source>Variables Type Filter</source>
         <translation>Filtro per i tipi di variabili</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="493"/>
+        <location filename="../Debugger/DebugUI.py" line="496"/>
         <source>Varia&amp;bles Type Filter...</source>
         <translation>Filtro per i tipi di varia&amp;bili...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="497"/>
+        <location filename="../Debugger/DebugUI.py" line="500"/>
         <source>Configure variables type filter</source>
         <translation>Configura il filtro per i tipi di variabile</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="499"/>
+        <location filename="../Debugger/DebugUI.py" line="502"/>
         <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Filtro tipo variabili&lt;/b&gt;&lt;p&gt;Configura il filtro per i tipi variabile. Solo i tipi di variabile che non sono selezionati sono mostrati nella finestra delle variabili globali o locali durante una sessione di debug. &lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1452"/>
+        <location filename="../Debugger/DebugUI.py" line="1455"/>
         <source>Breakpoint Condition Error</source>
         <translation>Errore condizione di interruzione</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="575"/>
+        <location filename="../Debugger/DebugUI.py" line="578"/>
         <source>Ctrl+Shift+PgDown</source>
         <comment>Debug|Next Breakpoint</comment>
         <translation>Ctrl+Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="590"/>
+        <location filename="../Debugger/DebugUI.py" line="593"/>
         <source>Ctrl+Shift+PgUp</source>
         <comment>Debug|Previous Breakpoint</comment>
         <translation>Ctrl+Shift+PgUp</translation>
@@ -7563,7 +7563,7 @@
         <translation type="obsolete">Ctrl+Shift+C</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="637"/>
+        <location filename="../Debugger/DebugUI.py" line="640"/>
         <source>&amp;Debug</source>
         <translation>&amp;Debug</translation>
     </message>
@@ -7573,154 +7573,154 @@
         <translation type="obsolete">&amp;Avvia</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="684"/>
+        <location filename="../Debugger/DebugUI.py" line="687"/>
         <source>Start</source>
         <translation>Inizia</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="698"/>
+        <location filename="../Debugger/DebugUI.py" line="701"/>
         <source>Debug</source>
         <translation>Debug</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="347"/>
+        <location filename="../Debugger/DebugUI.py" line="349"/>
         <source>Stop the running script.</source>
         <translation>Ferma lo script in esecuzione.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1491"/>
+        <location filename="../Debugger/DebugUI.py" line="1494"/>
         <source>Watch Expression Error</source>
         <translation>Errore espressione di watch</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1531"/>
+        <location filename="../Debugger/DebugUI.py" line="1534"/>
         <source>Watch expression already exists</source>
         <translation>L&apos;espressione di controllo esiste già</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="526"/>
+        <location filename="../Debugger/DebugUI.py" line="529"/>
         <source>Ignored Exceptions</source>
         <translation>Eccezione ignorata</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="526"/>
+        <location filename="../Debugger/DebugUI.py" line="529"/>
         <source>&amp;Ignored Exceptions...</source>
         <translation>Eccezione &amp;ignorata...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="530"/>
+        <location filename="../Debugger/DebugUI.py" line="533"/>
         <source>Configure ignored exceptions</source>
         <translation>Configura eccezioni ignorate</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="532"/>
+        <location filename="../Debugger/DebugUI.py" line="535"/>
         <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Eccezioni ignorate&lt;/b&gt;&lt;p&gt;Configura le eccezioni da ignorare. Solo i tipi di eccezione che non sono elencati sono evidenziati durante una sessione di debug.&lt;/p&gt;&lt;p&gt;Per favore nota che le eccezioni non gestite non possono essere ignorate.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="545"/>
+        <location filename="../Debugger/DebugUI.py" line="548"/>
         <source>Shift+F11</source>
         <comment>Debug|Toggle Breakpoint</comment>
         <translation>Shift+F11</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="560"/>
+        <location filename="../Debugger/DebugUI.py" line="563"/>
         <source>Shift+F12</source>
         <comment>Debug|Edit Breakpoint</comment>
         <translation>Shift+F12</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1188"/>
+        <location filename="../Debugger/DebugUI.py" line="1191"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; contiene l&apos;errore di sintassi &lt;b&gt;{1}&lt;/b&gt; alla linea &lt;b&gt;{2}&lt;/b&gt;, carattere &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1262"/>
+        <location filename="../Debugger/DebugUI.py" line="1265"/>
         <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il programma in debug ha sollevato un&apos;eccezione &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Linea: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Interrompere qui ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1277"/>
+        <location filename="../Debugger/DebugUI.py" line="1280"/>
         <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il programma debuggato ha sollevato un&apos;eccezione &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1452"/>
+        <location filename="../Debugger/DebugUI.py" line="1455"/>
         <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
         <translation>&lt;p&gt;La condizione del breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contiene un errore di sintassi.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1491"/>
+        <location filename="../Debugger/DebugUI.py" line="1494"/>
         <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
         <translation>&lt;p&gt;L&apos;espressione  &lt;b&gt;{0}&lt;/b&gt; contiene un errore di sintassi.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1521"/>
+        <location filename="../Debugger/DebugUI.py" line="1524"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; already exists.&lt;/p&gt;</source>
         <translation>&lt;p&gt;L&apos;espressione &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; esiste già.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1526"/>
+        <location filename="../Debugger/DebugUI.py" line="1529"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
         <translation>&lt;p&gt;L&apos;espressione  &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; per la variabile &lt;b&gt;{1}&lt;/b&gt; esiste già.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1141"/>
+        <location filename="../Debugger/DebugUI.py" line="1144"/>
         <source>Program terminated</source>
         <translation>Programma terminato</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="326"/>
+        <location filename="../Debugger/DebugUI.py" line="328"/>
         <source>Restart</source>
         <translation>Riavvio</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="332"/>
+        <location filename="../Debugger/DebugUI.py" line="334"/>
         <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Riavvia&lt;/b&gt;&lt;p&gt;Imposta gli argomenti della linea di comando e imposta la linea corrente per essere la prima istruzione eseguibile di Python dell&apos;ultimo script in debug. Se il file ha modifiche non salvate è possibile salvarle prima.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="348"/>
+        <location filename="../Debugger/DebugUI.py" line="350"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ferma&lt;/b&gt;&lt;p&gt;Questo ferma lo script in esecuzione nel backend del debugger.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1331"/>
+        <location filename="../Debugger/DebugUI.py" line="1334"/>
         <source>&lt;p&gt;The program generate the signal &quot;{0}&quot;.&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1122"/>
+        <location filename="../Debugger/DebugUI.py" line="1125"/>
         <source>Message: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="406"/>
+        <location filename="../Debugger/DebugUI.py" line="409"/>
         <source>Move Instruction Pointer to Cursor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="406"/>
+        <location filename="../Debugger/DebugUI.py" line="409"/>
         <source>&amp;Jump To Cursor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="411"/>
-        <source>Skip the code from the current line to the current cursor position</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="414"/>
+        <source>Skip the code from the current line to the current cursor position</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="417"/>
         <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It&apos;s not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1409"/>
+        <location filename="../Debugger/DebugUI.py" line="1412"/>
         <source>No locals available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="639"/>
+        <location filename="../Debugger/DebugUI.py" line="642"/>
         <source>Sta&amp;rt</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7730,32 +7730,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="389"/>
+        <location filename="../Debugger/DebugUI.py" line="392"/>
         <source>Continue Until</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="389"/>
+        <location filename="../Debugger/DebugUI.py" line="392"/>
         <source>Continue &amp;Until</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="394"/>
-        <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="397"/>
+        <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="400"/>
         <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1127"/>
+        <location filename="../Debugger/DebugUI.py" line="1130"/>
         <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1131"/>
+        <location filename="../Debugger/DebugUI.py" line="1134"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8103,17 +8103,17 @@
         <translation>Salvataggio automatico degli script</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="282"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="283"/>
         <source>Add allowed host</source>
         <translation>Aggiungi un host consentito</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305"/>
         <source>Enter the IP address of an allowed host</source>
         <translation>Inserisci l&apos;indirizzo IP di un host consentito</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="316"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318"/>
         <source>Edit allowed host</source>
         <translation>Modifica host permessi</translation>
     </message>
@@ -8188,7 +8188,7 @@
         <translation>Ferma sempre in caso di eccezione</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="316"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318"/>
         <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;L&apos;indirizzo &lt;b&gt;{0}&lt;/b&gt; non è un indirizzo IP v4 o v6 valido. Uscita...&lt;/p&gt;</translation>
     </message>
@@ -8381,7 +8381,7 @@
 <context>
     <name>DebuggerPropertiesDialog</name>
     <message>
-        <location filename="../Project/DebuggerPropertiesDialog.py" line="129"/>
+        <location filename="../Project/DebuggerPropertiesDialog.py" line="130"/>
         <source>All Files (*)</source>
         <translation>Tutti i file (*)</translation>
     </message>
@@ -9378,7 +9378,7 @@
 <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="316"/>
         <source>.desktop Wizard</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9713,22 +9713,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>FreeDesktop Standard .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>KDE Plasma MetaData .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>Ubuntu Unity QuickList .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="316"/>
         <source>Only one of &apos;Only Show In&apos; or  &apos;Not Show In&apos; allowed.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9819,17 +9819,17 @@
         <translation>Premi per aprire il file scaricato</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="220"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="223"/>
         <source>Download canceled: {0}</source>
         <translation>Download cancellato: {0}</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="210"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="213"/>
         <source>Save File</source>
         <translation>Salva file</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="249"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="252"/>
         <source>Download directory ({0}) couldn&apos;t be created.</source>
         <translation>La directory ({0}) per il download non può essere creata.</translation>
     </message>
@@ -9849,17 +9849,17 @@
         <translation type="obsolete">Errore di rete: {0}</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="439"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="442"/>
         <source>?</source>
         <translation>?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="452"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="455"/>
         <source>{0} of {1} - Stopped</source>
         <translation>{0} di {1} - Fermati</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="193"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="196"/>
         <source>VirusTotal scan scheduled: {0}</source>
         <translation>Scansione VirusTotal schedulata: {0}</translation>
     </message>
@@ -9885,7 +9885,7 @@
 MD5: {2}</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="448"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="451"/>
         <source>{0} downloaded</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9895,7 +9895,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="437"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="440"/>
         <source>{0} of {1} ({2}/sec) {3}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9926,7 +9926,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="168"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="169"/>
         <source>There are %n downloads in progress.
 Do you want to quit anyway?</source>
         <translation>
@@ -9947,37 +9947,37 @@
         <translation type="obsolete">Ritenta</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="107"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="108"/>
         <source>Open</source>
         <translation>Apri</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="111"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="112"/>
         <source>Cancel</source>
         <translation>Cancella</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="115"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="116"/>
         <source>Open Containing Folder</source>
         <translation>Apri la cartella di destinazione</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="119"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="120"/>
         <source>Go to Download Page</source>
         <translation>Vai alla pagina dei download</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="122"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="123"/>
         <source>Copy Download Link</source>
         <translation>Copia il link per il download</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="126"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="127"/>
         <source>Select All</source>
         <translation>Seleziona tutti</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="135"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="136"/>
         <source>Remove From List</source>
         <translation>Rimuovi dalla lista</translation>
     </message>
@@ -9990,32 +9990,32 @@
         </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="257"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="258"/>
         <source>Suspicuous URL detected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="257"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="258"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="588"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="589"/>
         <source>Download Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="500"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="501"/>
         <source>Downloads finished</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="500"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="501"/>
         <source>All files have been downloaded.</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="622"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="623"/>
         <source>{0}% of %n file(s) ({1}) {2}</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -10023,7 +10023,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="629"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="630"/>
         <source>{0}% - Download Manager</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10183,27 +10183,27 @@
 <context>
     <name>E5GoogleMail</name>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="159"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="160"/>
         <source>The client secrets file is not present. Has the Gmail API been enabled?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="196"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="197"/>
         <source>OAuth2 Authorization Code</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="196"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="197"/>
         <source>Enter the OAuth2 authorization code:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="240"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="241"/>
         <source>No authorized session available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="258"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="259"/>
         <source>Message #{0} sent.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10211,7 +10211,7 @@
 <context>
     <name>E5GraphicsView</name>
     <message>
-        <location filename="../E5Graphics/E5GraphicsView.py" line="57"/>
+        <location filename="../E5Graphics/E5GraphicsView.py" line="59"/>
         <source>&lt;b&gt;Graphics View&lt;/b&gt;
 &lt;p&gt;This graphics view is used to show a diagram. 
 There are various actions available to manipulate the 
@@ -10242,7 +10242,7 @@
 </translation>
     </message>
     <message>
-        <location filename="../E5Graphics/E5GraphicsView.py" line="415"/>
+        <location filename="../E5Graphics/E5GraphicsView.py" line="417"/>
         <source>{0}, Page {1}</source>
         <translation>{0}, Pagina {1}</translation>
     </message>
@@ -10733,7 +10733,7 @@
 <context>
     <name>E5NetworkProxyFactory</name>
     <message>
-        <location filename="../E5Network/E5NetworkProxyFactory.py" line="227"/>
+        <location filename="../E5Network/E5NetworkProxyFactory.py" line="229"/>
         <source>Proxy Configuration Error</source>
         <translation>Errore configurazione proxy</translation>
     </message>
@@ -10743,7 +10743,7 @@
         <translation>&lt;b&gt;Connetti al proxy &apos;{0}&apos; usando:&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5NetworkProxyFactory.py" line="227"/>
+        <location filename="../E5Network/E5NetworkProxyFactory.py" line="229"/>
         <source>Proxy usage was activated but no proxy host for protocol &apos;{0}&apos; configured.</source>
         <translation>E&apos; stato attivato l&apos;uso del proxy ma non è stato impostato nessun host per il protocollo &apos;{0}&apos;.</translation>
     </message>
@@ -10751,32 +10751,32 @@
 <context>
     <name>E5PathPickerBase</name>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="161"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="162"/>
         <source>Enter Path Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="158"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="159"/>
         <source>Enter Path Names separated by &apos;;&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="499"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="500"/>
         <source>Choose a file to open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="501"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="502"/>
         <source>Choose files to open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="506"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="507"/>
         <source>Choose a file to save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="508"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="509"/>
         <source>Choose a directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10842,32 +10842,32 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="107"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="117"/>
         <source>Process canceled.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="121"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="134"/>
         <source>Process finished successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="123"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="136"/>
         <source>Process crashed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="125"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="138"/>
         <source>Process finished with exit code {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="179"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="192"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="179"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="192"/>
         <source>&lt;p&gt;The process &lt;b&gt;{0}&lt;/b&gt; could not be started.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10956,12 +10956,12 @@
         <translation type="unfinished">&amp;Vista...</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="80"/>
+        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="82"/>
         <source>(Unknown)</source>
         <translation type="unfinished">(Sconosciuto)</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="82"/>
+        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="84"/>
         <source>(Unknown common name)</source>
         <translation type="unfinished">(Nome comune sconosciuto)</translation>
     </message>
@@ -11049,72 +11049,72 @@
         <translation>Hai salvato certificati che identificano queste autorità di certificazione:</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="300"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="305"/>
         <source>(Unknown)</source>
         <translation>(Sconosciuto)</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="302"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="307"/>
         <source>(Unknown common name)</source>
         <translation>(Nome comune sconosciuto)</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="150"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="152"/>
         <source>Delete Server Certificate</source>
         <translation>Cancella certificato del server</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="150"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="152"/>
         <source>&lt;p&gt;Shall the server certificate really be deleted?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;&lt;p&gt;If the server certificate is deleted, the normal security checks will be reinstantiated and the server has to present a valid certificate.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Deve essere cancellato il certificato del server?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;&lt;p&gt;Se il certificato del server viene cancellato, i controlli di sicurezza normali verranno reimpostati e il server dovrà presenteare un certificato valido.&lt;p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="489"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="495"/>
         <source>Import Certificate</source>
         <translation>Importa certificato</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="399"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="405"/>
         <source>&lt;p&gt;The certificate &lt;b&gt;{0}&lt;/b&gt; already exists. Skipping.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il certificato &lt;b&gt;{0}&lt;/b&gt; esiste già.Lo salto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="354"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="359"/>
         <source>Delete CA Certificate</source>
         <translation>Cancella certificato CA</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="354"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="359"/>
         <source>&lt;p&gt;Shall the CA certificate really be deleted?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;&lt;p&gt;If the CA certificate is deleted, the browser will not trust any certificate issued by this CA.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Deve essere cancellato il certificato CA?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;&lt;p&gt;Se il certificato CA viene cancellato,il navigatore non validerà nessun certificato emesso da questa CA.&lt;p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="499"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="505"/>
         <source>Export Certificate</source>
         <translation>Esporta certificato</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="440"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="446"/>
         <source>Certificate File (PEM) (*.pem);;Certificate File (DER) (*.der)</source>
         <translation>File Certificato (PEM) (*.pem);;File Certificato (DER) (*.der)</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="456"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="462"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="467"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="473"/>
         <source>&lt;p&gt;The certificate could not be written to file &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il certificato non può essere scritto sul file  &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Errore: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="489"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="495"/>
         <source>Certificate Files (*.pem *.crt *.der *.cer *.ca);;All Files (*)</source>
         <translation>Files Certificato (*.pem *.crt *.der *.cer *.ca);;Tutti i file (*)</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="499"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="505"/>
         <source>&lt;p&gt;The certificate could not be read from file &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il certificato non può essere letto dal file  &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Errore: {1}&lt;/p&gt;</translation>
     </message>
@@ -11210,7 +11210,7 @@
         <translation>Firma digitale MD5:</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesInfoWidget.py" line="151"/>
+        <location filename="../E5Network/E5SslCertificatesInfoWidget.py" line="156"/>
         <source>&lt;not part of the certificate&gt;</source>
         <translation>&lt;non parte del certificato&gt;</translation>
     </message>
@@ -11218,42 +11218,42 @@
 <context>
     <name>E5SslErrorHandler</name>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="141"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="142"/>
         <source>SSL Errors</source>
         <translation>Errori SSL</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="141"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="142"/>
         <source>&lt;p&gt;SSL Errors for &lt;br /&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Do you want to ignore these errors?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Errori SSL per &lt;br /&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Vuoi ignorarli ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="156"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="157"/>
         <source>Certificates</source>
         <translation>Certificati</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="156"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="157"/>
         <source>&lt;p&gt;Certificates:&lt;br/&gt;{0}&lt;br/&gt;Do you want to accept all these certificates?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Certificati:&lt;br/&gt;{0}&lt;br/&gt;Vuoi accettare tutti questi certificati?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="210"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="212"/>
         <source>Name: {0}</source>
         <translation>Nome: {0}</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="220"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="223"/>
         <source>&lt;br/&gt;Organization: {0}</source>
         <translation>&lt;br/&gt;Organizzazione: {0}</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="230"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="234"/>
         <source>&lt;br/&gt;Issuer: {0}</source>
         <translation>&lt;br/&gt;Emettitore: {0}</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="239"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="244"/>
         <source>&lt;br/&gt;Not valid before: {0}&lt;br/&gt;Valid Until: {1}</source>
         <translation>&lt;br/&gt;Non valido prima: {0}&lt;br/&gt;Valido Fino: {1}</translation>
     </message>
@@ -11261,56 +11261,56 @@
 <context>
     <name>E5SslInfoWidget</name>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="55"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="56"/>
         <source>Identity</source>
         <translation>Identità</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="65"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="66"/>
         <source>Warning: this site is NOT carrying a certificate.</source>
         <translation>Attenzione: questo sito non è portatore di certificato.</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="73"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="74"/>
         <source>The certificate for this site is valid and has been verified by:
 {0}</source>
         <translation>Il certificato per questo sito è valido ed è stato verificato da:
 {0}</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="89"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="90"/>
         <source>Certificate Information</source>
         <translation>Informazioni del certificato</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="104"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="105"/>
         <source>Encryption</source>
         <translation>Criptazione</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="115"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="116"/>
         <source>Your connection to &quot;{0}&quot; is NOT encrypted.
 </source>
         <translation>La vostra connessione a &quot;{0}&quot; non è criptata.
 </translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="124"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="125"/>
         <source>Your connection to &quot;{0}&quot; is encrypted.</source>
         <translation>La vostra connessione a &quot;{0}&quot; è criptata.</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="143"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="144"/>
         <source>unknown</source>
         <translation>Sconosciuto</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="166"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="167"/>
         <source>It uses protocol: {0}</source>
         <translation>Usa il protocollo: {0}</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="173"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="174"/>
         <source>It is encrypted using {0} at {1} bits, with {2} for message authentication and {3} as key exchange mechanism.
 
 </source>
@@ -11319,7 +11319,7 @@
 </translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="80"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="81"/>
         <source>The certificate for this site is NOT valid.</source>
         <translation>Il certificato per questo sito NON è valido.</translation>
     </message>
@@ -11362,12 +11362,12 @@
         <translation type="unfinished">Rimozione global&amp;e</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5StringListEditWidget.py" line="99"/>
+        <location filename="../E5Gui/E5StringListEditWidget.py" line="100"/>
         <source>Add Entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5StringListEditWidget.py" line="99"/>
+        <location filename="../E5Gui/E5StringListEditWidget.py" line="100"/>
         <source>Enter the entry to add to the list:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11385,32 +11385,32 @@
 <context>
     <name>E5TextEditSearchWidget</name>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="81"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="83"/>
         <source>Find:</source>
         <translation type="unfinished">Trova:</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="104"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="107"/>
         <source>Match case</source>
         <translation type="unfinished">Match case</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="109"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="112"/>
         <source>Whole word</source>
         <translation type="unfinished">Tutta la parola</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="119"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="122"/>
         <source>Press to find the previous occurrence</source>
         <translation type="unfinished">Premi per trovare l&apos;occorrenza precedente</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="126"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="129"/>
         <source>Press to find the next occurrence</source>
         <translation type="unfinished">Premi per trovare la prossima occorrenza</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="341"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="347"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished">&apos;{0}&apos; non è stato trovato.</translation>
     </message>
@@ -11526,42 +11526,42 @@
         <translation>Premi per muovere l&apos;azione selezionata giù.</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="84"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="85"/>
         <source>--Separator--</source>
         <translation>--Separatore--</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="145"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="151"/>
         <source>New Toolbar</source>
         <translation>Nuova toolbar</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="137"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="143"/>
         <source>Toolbar Name:</source>
         <translation>Nome Toolbar:</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="208"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="214"/>
         <source>A toolbar with the name &lt;b&gt;{0}&lt;/b&gt; already exists.</source>
         <translation>Una toolbar con nome &lt;b&gt;{0}&lt;/b&gt; esiste già.</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="170"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="176"/>
         <source>Remove Toolbar</source>
         <translation>Rimuovi toolbar</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="170"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="176"/>
         <source>Should the toolbar &lt;b&gt;{0}&lt;/b&gt; really be removed?</source>
         <translation>La toolbar &lt;b&gt;{0}&lt;/b&gt; deve essere veramente rimossa ?</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="208"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="214"/>
         <source>Rename Toolbar</source>
         <translation>Rinomina la toolbar</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="197"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="203"/>
         <source>New Toolbar Name:</source>
         <translation>Nuovo nome toolbar:</translation>
     </message>
@@ -11569,7 +11569,7 @@
 <context>
     <name>E5XmlRpcClient</name>
     <message>
-        <location filename="../E5Network/E5XmlRpcClient.py" line="108"/>
+        <location filename="../E5Network/E5XmlRpcClient.py" line="111"/>
         <source>SSL Error</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11665,7 +11665,7 @@
         <translation>Abilitato</translation>
     </message>
     <message>
-        <location filename="../Debugger/EditBreakpointDialog.py" line="86"/>
+        <location filename="../Debugger/EditBreakpointDialog.py" line="87"/>
         <source>Add Breakpoint</source>
         <translation>Aggiungi un breakpoint</translation>
     </message>
@@ -11746,812 +11746,812 @@
 <context>
     <name>Editor</name>
     <message>
-        <location filename="../QScintilla/Editor.py" line="795"/>
+        <location filename="../QScintilla/Editor.py" line="797"/>
         <source>Undo</source>
         <translation>Annulla</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="798"/>
+        <location filename="../QScintilla/Editor.py" line="800"/>
         <source>Redo</source>
         <translation>Rifai</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="801"/>
+        <location filename="../QScintilla/Editor.py" line="803"/>
         <source>Revert to last saved state</source>
         <translation>Ritorna all&apos;ultimo stato salvato</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="805"/>
+        <location filename="../QScintilla/Editor.py" line="807"/>
         <source>Cut</source>
         <translation>Taglia</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="808"/>
+        <location filename="../QScintilla/Editor.py" line="810"/>
         <source>Copy</source>
         <translation>Copia</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="811"/>
+        <location filename="../QScintilla/Editor.py" line="813"/>
         <source>Paste</source>
         <translation>Incolla</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="819"/>
+        <location filename="../QScintilla/Editor.py" line="821"/>
         <source>Indent</source>
         <translation>Identa</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="822"/>
+        <location filename="../QScintilla/Editor.py" line="824"/>
         <source>Unindent</source>
         <translation>Annulla identazione</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="825"/>
+        <location filename="../QScintilla/Editor.py" line="827"/>
         <source>Comment</source>
         <translation>Commenta</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="828"/>
+        <location filename="../QScintilla/Editor.py" line="830"/>
         <source>Uncomment</source>
         <translation>Annulla commenta</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="831"/>
+        <location filename="../QScintilla/Editor.py" line="833"/>
         <source>Stream Comment</source>
         <translation>Flusso commento</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="834"/>
+        <location filename="../QScintilla/Editor.py" line="836"/>
         <source>Box Comment</source>
         <translation>Commenti nel riquadro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="842"/>
-        <source>Select to brace</source>
-        <translation>Seleziona per parentesizzare</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="844"/>
+        <source>Select to brace</source>
+        <translation>Seleziona per parentesizzare</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="846"/>
         <source>Select all</source>
         <translation>Seleziona tutti</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="845"/>
+        <location filename="../QScintilla/Editor.py" line="847"/>
         <source>Deselect all</source>
         <translation>Deseleziona tutti</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="863"/>
+        <location filename="../QScintilla/Editor.py" line="865"/>
         <source>Shorten empty lines</source>
         <translation>Abbrevia righe vuote</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1060"/>
+        <location filename="../QScintilla/Editor.py" line="1062"/>
         <source>Languages</source>
         <translation>Linguaggi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="870"/>
+        <location filename="../QScintilla/Editor.py" line="872"/>
         <source>Use Monospaced Font</source>
         <translation>Usa un font Monospaced</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="990"/>
+        <location filename="../QScintilla/Editor.py" line="992"/>
         <source>Check</source>
         <translation>Controlla</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1010"/>
-        <source>Show</source>
-        <translation>Mostra</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="918"/>
-        <source>Close</source>
-        <translation>Chiudi</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="924"/>
-        <source>Save</source>
-        <translation>Salva</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="927"/>
-        <source>Save As...</source>
-        <translation>Salva come...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="943"/>
-        <source>Print</source>
-        <translation>Stampa</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1012"/>
+        <source>Show</source>
+        <translation>Mostra</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="920"/>
+        <source>Close</source>
+        <translation>Chiudi</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="926"/>
+        <source>Save</source>
+        <translation>Salva</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="929"/>
+        <source>Save As...</source>
+        <translation>Salva come...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="945"/>
+        <source>Print</source>
+        <translation>Stampa</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1014"/>
         <source>Code metrics...</source>
         <translation>Statistiche codice...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1013"/>
-        <source>Code coverage...</source>
-        <translation>Analisi codice...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1021"/>
-        <source>Profile data...</source>
-        <translation>Profilazione dati...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1240"/>
-        <source>Toggle bookmark</source>
-        <translation>Inverti bookmark</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1242"/>
-        <source>Next bookmark</source>
-        <translation>Prossimo segnalibro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1244"/>
-        <source>Previous bookmark</source>
-        <translation>Segnalibro precedente</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1246"/>
-        <source>Clear all bookmarks</source>
-        <translation>Pulisci di tutti di segnalibri</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1255"/>
-        <source>Toggle breakpoint</source>
-        <translation>Abilita/Disabilita breakpoint</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1260"/>
-        <source>Edit breakpoint...</source>
-        <translation>Modifica Breakpoint...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="5656"/>
-        <source>Enable breakpoint</source>
-        <translation>Abilita breakpoint</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1265"/>
-        <source>Next breakpoint</source>
-        <translation>Prossimo breakpoint</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1267"/>
-        <source>Previous breakpoint</source>
-        <translation>Breakpoint precedente</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1272"/>
-        <source>Clear all breakpoints</source>
-        <translation>Elimina tutti i breakpoint</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1989"/>
-        <source>Modification of Read Only file</source>
-        <translation>Modifica di un file di sola lettura</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1989"/>
-        <source>You are attempting to change a read only file. Please save to a different file first.</source>
-        <translation>Stai tentando di modificare un file in sola lettura. Per favore prima salva come un file diverso.</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="2711"/>
-        <source>Printing...</source>
-        <translation>In stampa...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="2728"/>
-        <source>Printing completed</source>
-        <translation>Stampa completata</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="2730"/>
-        <source>Error while printing</source>
-        <translation>Errore durante la stampa</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="2733"/>
-        <source>Printing aborted</source>
-        <translation>Stampa annullata</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="3146"/>
-        <source>Open File</source>
-        <translation>Apri File</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="3333"/>
-        <source>Save File</source>
-        <translation>Salva file</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="3088"/>
-        <source>File Modified</source>
-        <translation>File modificato</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="4811"/>
-        <source>Autocompletion</source>
-        <translation>Autocompletamento</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="4811"/>
-        <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="5659"/>
-        <source>Disable breakpoint</source>
-        <translation>Disabilita breakpoint</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6034"/>
-        <source>Code Coverage</source>
-        <translation>Analisi codice</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6034"/>
-        <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="6214"/>
-        <source>Profile Data</source>
-        <translation>Profilazione dati</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6214"/>
-        <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="6765"/>
-        <source>Macro Name</source>
-        <translation>Nome Macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
-        <source>Select a macro name:</source>
-        <translation>Seleziona un nome per la macro:</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6835"/>
-        <source>Macro files (*.macro)</source>
-        <translation>File Macro (*.macro)</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6793"/>
-        <source>Load macro file</source>
-        <translation>Carica un file di macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6815"/>
-        <source>Error loading macro</source>
-        <translation>Errore nel caricamento della macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6835"/>
-        <source>Save macro file</source>
-        <translation>Salva un file di macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6852"/>
-        <source>Save macro</source>
-        <translation>Salva macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6867"/>
-        <source>Error saving macro</source>
-        <translation>Errore nel salvataggio della macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6880"/>
-        <source>Start Macro Recording</source>
-        <translation>Avvia registrazione della macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6906"/>
-        <source>Macro Recording</source>
-        <translation>Registrazione Macro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6906"/>
-        <source>Enter name of the macro:</source>
-        <translation>Inserisci un nome per la macro:</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7076"/>
-        <source>File changed</source>
-        <translation>File modificato</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="875"/>
-        <source>Autosave enabled</source>
-        <translation>Salvataggio automatico abilitato</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1320"/>
-        <source>Goto syntax error</source>
-        <translation>Vai all&apos;errore di sintassi</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1329"/>
-        <source>Clear syntax error</source>
-        <translation>Elimina errori di sintassi</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7408"/>
-        <source>Drop Error</source>
-        <translation>Errore Drop</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1324"/>
-        <source>Show syntax error message</source>
-        <translation>Mostra i messaggi degli errori di sintassi</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6376"/>
-        <source>Syntax Error</source>
-        <translation>Errore di sintassi</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="6376"/>
-        <source>No syntax error message available.</source>
-        <translation>Nessun messaggio degli errori di sintassi disponibile.</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="1257"/>
-        <source>Toggle temporary breakpoint</source>
-        <translation>Abilita/Disabilita breakpoint temporaneo</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1015"/>
+        <source>Code coverage...</source>
+        <translation>Analisi codice...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1023"/>
+        <source>Profile data...</source>
+        <translation>Profilazione dati...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1242"/>
+        <source>Toggle bookmark</source>
+        <translation>Inverti bookmark</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1244"/>
+        <source>Next bookmark</source>
+        <translation>Prossimo segnalibro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1246"/>
+        <source>Previous bookmark</source>
+        <translation>Segnalibro precedente</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1248"/>
+        <source>Clear all bookmarks</source>
+        <translation>Pulisci di tutti di segnalibri</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1257"/>
+        <source>Toggle breakpoint</source>
+        <translation>Abilita/Disabilita breakpoint</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1262"/>
+        <source>Edit breakpoint...</source>
+        <translation>Modifica Breakpoint...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="5696"/>
+        <source>Enable breakpoint</source>
+        <translation>Abilita breakpoint</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1267"/>
+        <source>Next breakpoint</source>
+        <translation>Prossimo breakpoint</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1269"/>
+        <source>Previous breakpoint</source>
+        <translation>Breakpoint precedente</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1274"/>
+        <source>Clear all breakpoints</source>
+        <translation>Elimina tutti i breakpoint</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1991"/>
+        <source>Modification of Read Only file</source>
+        <translation>Modifica di un file di sola lettura</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1991"/>
+        <source>You are attempting to change a read only file. Please save to a different file first.</source>
+        <translation>Stai tentando di modificare un file in sola lettura. Per favore prima salva come un file diverso.</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="2715"/>
+        <source>Printing...</source>
+        <translation>In stampa...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="2735"/>
+        <source>Printing completed</source>
+        <translation>Stampa completata</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="2737"/>
+        <source>Error while printing</source>
+        <translation>Errore durante la stampa</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="2740"/>
+        <source>Printing aborted</source>
+        <translation>Stampa annullata</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="3153"/>
+        <source>Open File</source>
+        <translation>Apri File</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="3340"/>
+        <source>Save File</source>
+        <translation>Salva file</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="3095"/>
+        <source>File Modified</source>
+        <translation>File modificato</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="4838"/>
+        <source>Autocompletion</source>
+        <translation>Autocompletamento</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="4838"/>
+        <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="5699"/>
+        <source>Disable breakpoint</source>
+        <translation>Disabilita breakpoint</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6074"/>
+        <source>Code Coverage</source>
+        <translation>Analisi codice</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6074"/>
+        <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="6254"/>
+        <source>Profile Data</source>
+        <translation>Profilazione dati</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6254"/>
+        <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="6805"/>
+        <source>Macro Name</source>
+        <translation>Nome Macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
+        <source>Select a macro name:</source>
+        <translation>Seleziona un nome per la macro:</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6875"/>
+        <source>Macro files (*.macro)</source>
+        <translation>File Macro (*.macro)</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6833"/>
+        <source>Load macro file</source>
+        <translation>Carica un file di macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6855"/>
+        <source>Error loading macro</source>
+        <translation>Errore nel caricamento della macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6875"/>
+        <source>Save macro file</source>
+        <translation>Salva un file di macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6892"/>
+        <source>Save macro</source>
+        <translation>Salva macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6907"/>
+        <source>Error saving macro</source>
+        <translation>Errore nel salvataggio della macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6920"/>
+        <source>Start Macro Recording</source>
+        <translation>Avvia registrazione della macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6946"/>
+        <source>Macro Recording</source>
+        <translation>Registrazione Macro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6946"/>
+        <source>Enter name of the macro:</source>
+        <translation>Inserisci un nome per la macro:</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7116"/>
+        <source>File changed</source>
+        <translation>File modificato</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="877"/>
+        <source>Autosave enabled</source>
+        <translation>Salvataggio automatico abilitato</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1322"/>
+        <source>Goto syntax error</source>
+        <translation>Vai all&apos;errore di sintassi</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1331"/>
+        <source>Clear syntax error</source>
+        <translation>Elimina errori di sintassi</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7451"/>
+        <source>Drop Error</source>
+        <translation>Errore Drop</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1326"/>
+        <source>Show syntax error message</source>
+        <translation>Mostra i messaggi degli errori di sintassi</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6416"/>
+        <source>Syntax Error</source>
+        <translation>Errore di sintassi</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="6416"/>
+        <source>No syntax error message available.</source>
+        <translation>Nessun messaggio degli errori di sintassi disponibile.</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1259"/>
+        <source>Toggle temporary breakpoint</source>
+        <translation>Abilita/Disabilita breakpoint temporaneo</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1017"/>
         <source>Show code coverage annotations</source>
         <translation>Mostra le annotazioni dell&apos;analisi del codice</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1018"/>
+        <location filename="../QScintilla/Editor.py" line="1020"/>
         <source>Hide code coverage annotations</source>
         <translation>Nascondi le annotazioni dell&apos;analisi del codice</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1351"/>
+        <location filename="../QScintilla/Editor.py" line="1353"/>
         <source>Next uncovered line</source>
         <translation>Prossimo file non analizzato</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1355"/>
+        <location filename="../QScintilla/Editor.py" line="1357"/>
         <source>Previous uncovered line</source>
         <translation>File non analizzato precedente</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6097"/>
+        <location filename="../QScintilla/Editor.py" line="6137"/>
         <source>Show Code Coverage Annotations</source>
         <translation>Mostra le annotazioni dell&apos;analisi del codice</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6090"/>
+        <location filename="../QScintilla/Editor.py" line="6130"/>
         <source>All lines have been covered.</source>
         <translation>Tutte le linee sono state analizzate.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6097"/>
+        <location filename="../QScintilla/Editor.py" line="6137"/>
         <source>There is no coverage file available.</source>
         <translation>Non ci sono file di analisi disponibili.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1034"/>
-        <source>Diagrams</source>
-        <translation>Diagrammi</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1036"/>
-        <source>Class Diagram...</source>
-        <translation>Diagrammi di classe...</translation>
+        <source>Diagrams</source>
+        <translation>Diagrammi</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1038"/>
-        <source>Package Diagram...</source>
-        <translation>Diagrammi del package...</translation>
+        <source>Class Diagram...</source>
+        <translation>Diagrammi di classe...</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1040"/>
-        <source>Imports Diagram...</source>
-        <translation>Importa diagrammi...</translation>
+        <source>Package Diagram...</source>
+        <translation>Diagrammi del package...</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1042"/>
+        <source>Imports Diagram...</source>
+        <translation>Importa diagrammi...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1044"/>
         <source>Application Diagram...</source>
         <translation>Diagrammi dell&apos;applicazione...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1193"/>
+        <location filename="../QScintilla/Editor.py" line="1195"/>
         <source>No Language</source>
         <translation>Nessun linguaggio</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7429"/>
+        <location filename="../QScintilla/Editor.py" line="7472"/>
         <source>Resources</source>
         <translation>Risorse</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7431"/>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
         <source>Add file...</source>
         <translation>Aggiungi file...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7433"/>
+        <location filename="../QScintilla/Editor.py" line="7476"/>
         <source>Add files...</source>
         <translation>Aggiungi files...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7435"/>
+        <location filename="../QScintilla/Editor.py" line="7478"/>
         <source>Add aliased file...</source>
         <translation>Aggiungi file sinonimo...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7438"/>
+        <location filename="../QScintilla/Editor.py" line="7481"/>
         <source>Add localized resource...</source>
         <translation>Aggiungi una risorsa localizzata...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7461"/>
-        <source>Add file resource</source>
-        <translation>Aggiungi un file risorse</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7477"/>
-        <source>Add file resources</source>
-        <translation>Aggiundi dei file risorse</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="7504"/>
+        <source>Add file resource</source>
+        <translation>Aggiungi un file risorse</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7520"/>
+        <source>Add file resources</source>
+        <translation>Aggiundi dei file risorse</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7547"/>
         <source>Add aliased file resource</source>
         <translation>Aggiungi file sinonimo delle risorse</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7570"/>
+        <location filename="../QScintilla/Editor.py" line="7613"/>
         <source>Package Diagram</source>
         <translation>Diagrammi del package</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7570"/>
+        <location filename="../QScintilla/Editor.py" line="7613"/>
         <source>Include class attributes?</source>
         <translation>Includi gli attributi della classe ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7606"/>
+        <location filename="../QScintilla/Editor.py" line="7649"/>
         <source>Application Diagram</source>
         <translation>Diagrammi dell&apos;applicazione</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7606"/>
+        <location filename="../QScintilla/Editor.py" line="7649"/>
         <source>Include module names?</source>
         <translation>Includi i nomi dei moduli ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7442"/>
+        <location filename="../QScintilla/Editor.py" line="7485"/>
         <source>Add resource frame</source>
         <translation>Aggiungi riquadro delle risorse</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6880"/>
+        <location filename="../QScintilla/Editor.py" line="6920"/>
         <source>Macro recording is already active. Start new?</source>
         <translation>Registrazione macro già attiva. Avvia nuovamente ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="972"/>
-        <source>Complete from Document</source>
-        <translation type="unfinished">dal Documento</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="974"/>
-        <source>Complete from APIs</source>
-        <translation type="unfinished">dalle APIs</translation>
+        <source>Complete from Document</source>
+        <translation type="unfinished">dal Documento</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="976"/>
+        <source>Complete from APIs</source>
+        <translation type="unfinished">dalle APIs</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="978"/>
         <source>Complete from Document and APIs</source>
         <translation type="unfinished">dal Documento e dalle APIs</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1360"/>
+        <location filename="../QScintilla/Editor.py" line="1362"/>
         <source>Next task</source>
         <translation>Prossimo task</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1364"/>
+        <location filename="../QScintilla/Editor.py" line="1366"/>
         <source>Previous task</source>
         <translation>Task precedente</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1218"/>
+        <location filename="../QScintilla/Editor.py" line="1220"/>
         <source>Export as</source>
         <translation>Esporta come</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1414"/>
+        <location filename="../QScintilla/Editor.py" line="1416"/>
         <source>Export source</source>
         <translation>Esporta sorgenti</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1414"/>
+        <location filename="../QScintilla/Editor.py" line="1416"/>
         <source>No export format given. Aborting...</source>
         <translation>Nessun formato di export impostato. Annullamento...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7592"/>
+        <location filename="../QScintilla/Editor.py" line="7635"/>
         <source>Imports Diagram</source>
         <translation>Importa diagrammi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7592"/>
+        <location filename="../QScintilla/Editor.py" line="7635"/>
         <source>Include imports from external modules?</source>
         <translation>Includi gli import dai moduli esterni ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="894"/>
+        <location filename="../QScintilla/Editor.py" line="896"/>
         <source>Calltip</source>
         <translation>Calltip</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="940"/>
+        <location filename="../QScintilla/Editor.py" line="942"/>
         <source>Print Preview</source>
         <translation>Anteprima Stampa</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="478"/>
+        <location filename="../QScintilla/Editor.py" line="480"/>
         <source>&lt;b&gt;A Source Editor Window&lt;/b&gt;&lt;p&gt;This window is used to display and edit a source file.  You can open as many of these as you like. The name of the file is displayed in the window&apos;s titlebar.&lt;/p&gt;&lt;p&gt;In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.&lt;/p&gt;&lt;p&gt;In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.&lt;/p&gt;&lt;p&gt;These actions can be reversed via the context menu.&lt;/p&gt;&lt;p&gt;Ctrl clicking on a syntax error marker shows some info about this error.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Una finesta di edit&lt;/b&gt;&lt;p&gt;Questa finestra è usata per visualizzare e modificare un file sorgente. Si possono aprire quante finestre si vogliono. Il nome del file è mostrato nella barra dei titolo della finestra.&lt;/p&gt;&lt;p&gt;Per impostare dei breakpoint basta cliccare nello spazio tra i numeri di riga e i marcatori di compressione. Con il menù contestuale del margine possono essere modificati.&lt;/p&gt;&lt;p&gt;Per impostare un segnalibro basta cliccare con lo Shift premuto nello spazio tra il numero di linea e i marcatori di compressione.&lt;/p&gt;&lt;p&gt;Queste azioni possono essere invertite con il menù contestuale.&lt;/p&gt;&lt;p&gt; Cliccare con il tasto Ctrl premuto un  marcatore di errore della sintassi mostra delle informazioni sull&apos;errore.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="879"/>
+        <location filename="../QScintilla/Editor.py" line="881"/>
         <source>Typing aids enabled</source>
         <translation>Aiuti alla digitazione abilitati</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1150"/>
+        <location filename="../QScintilla/Editor.py" line="1152"/>
         <source>End-of-Line Type</source>
         <translation>Tipo di fine-linea</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1154"/>
+        <location filename="../QScintilla/Editor.py" line="1156"/>
         <source>Unix</source>
         <translation>Unix</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1161"/>
+        <location filename="../QScintilla/Editor.py" line="1163"/>
         <source>Windows</source>
         <translation>Windows</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1168"/>
+        <location filename="../QScintilla/Editor.py" line="1170"/>
         <source>Macintosh</source>
         <translation>Macintosh</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1109"/>
+        <location filename="../QScintilla/Editor.py" line="1111"/>
         <source>Encodings</source>
         <translation>Codifica</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1089"/>
+        <location filename="../QScintilla/Editor.py" line="1091"/>
         <source>Guessed</source>
         <translation>Indovinato</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
+        <location filename="../QScintilla/Editor.py" line="1431"/>
         <source>Alternatives</source>
         <translation>Alternative</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1445"/>
+        <location filename="../QScintilla/Editor.py" line="1447"/>
         <source>Pygments Lexer</source>
         <translation>Analizzatore lessicale Pygments</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1445"/>
+        <location filename="../QScintilla/Editor.py" line="1447"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>Selezione l&apos;analizzatore lessicale di Pygments da applicare.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7935"/>
+        <location filename="../QScintilla/Editor.py" line="7978"/>
         <source>Check spelling...</source>
         <translation>Controllo sillabazione...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="853"/>
+        <location filename="../QScintilla/Editor.py" line="855"/>
         <source>Check spelling of selection...</source>
         <translation>Controllo sillabazione della selezione...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7938"/>
+        <location filename="../QScintilla/Editor.py" line="7981"/>
         <source>Add to dictionary</source>
         <translation>Aggiungi al dizionario</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7940"/>
+        <location filename="../QScintilla/Editor.py" line="7983"/>
         <source>Ignore All</source>
         <translation>Ignora tutto</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="857"/>
+        <location filename="../QScintilla/Editor.py" line="859"/>
         <source>Remove from dictionary</source>
         <translation>Rimuovi dal dizionario</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="389"/>
+        <location filename="../QScintilla/Editor.py" line="391"/>
         <source>&lt;p&gt;The size of the file &lt;b&gt;{0}&lt;/b&gt; is &lt;b&gt;{1} KB&lt;/b&gt;. Do you really want to load it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;La dimensione del file &lt;b&gt;{0}&lt;/b&gt; è &lt;b&gt;{1} KB&lt;/b&gt;. Sei sicuro di volerlo caricare ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1406"/>
+        <location filename="../QScintilla/Editor.py" line="1408"/>
         <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Nessun esportatore disponibile per il formato di export&lt;b&gt;{0}&lt;/b&gt;. Termino...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1425"/>
+        <location filename="../QScintilla/Editor.py" line="1427"/>
         <source>Alternatives ({0})</source>
         <translation>Alternative ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3088"/>
+        <location filename="../QScintilla/Editor.py" line="3095"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; contiene modifiche non salvate.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3146"/>
+        <location filename="../QScintilla/Editor.py" line="3153"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere aperto.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3270"/>
+        <location filename="../QScintilla/Editor.py" line="3277"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere salvato.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6806"/>
+        <location filename="../QScintilla/Editor.py" line="6846"/>
         <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="6815"/>
+        <location filename="../QScintilla/Editor.py" line="6855"/>
         <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="6867"/>
+        <location filename="../QScintilla/Editor.py" line="6907"/>
         <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="7267"/>
+        <location filename="../QScintilla/Editor.py" line="7310"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7408"/>
+        <location filename="../QScintilla/Editor.py" line="7451"/>
         <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="7504"/>
+        <location filename="../QScintilla/Editor.py" line="7547"/>
         <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
         <translation>Alias per il file &lt;b&gt;{0}&lt;/b&gt;:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1334"/>
+        <location filename="../QScintilla/Editor.py" line="1336"/>
         <source>Next warning</source>
         <translation>Warning successivo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1338"/>
+        <location filename="../QScintilla/Editor.py" line="1340"/>
         <source>Previous warning</source>
         <translation>Warning precedente</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1342"/>
+        <location filename="../QScintilla/Editor.py" line="1344"/>
         <source>Show warning message</source>
         <translation>Mostra Warning</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1346"/>
+        <location filename="../QScintilla/Editor.py" line="1348"/>
         <source>Clear warnings</source>
         <translation>Pulisci warning</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3333"/>
+        <location filename="../QScintilla/Editor.py" line="3340"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6852"/>
+        <location filename="../QScintilla/Editor.py" line="6892"/>
         <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="6653"/>
+        <location filename="../QScintilla/Editor.py" line="6693"/>
         <source>Warning: {0}</source>
         <translation>Attenzione: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6660"/>
+        <location filename="../QScintilla/Editor.py" line="6700"/>
         <source>Error: {0}</source>
         <translation>Errore: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7072"/>
+        <location filename="../QScintilla/Editor.py" line="7112"/>
         <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
         <translation>&lt;br&gt;&lt;b&gt;Attenzione:&lt;/b&gt; con la riapertura le modifiche andranno perse.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="936"/>
+        <location filename="../QScintilla/Editor.py" line="938"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation>Apri file &apos;rifiuto&apos;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1046"/>
+        <location filename="../QScintilla/Editor.py" line="1048"/>
         <source>Load Diagram...</source>
         <translation>Carica Diagramma...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1369"/>
+        <location filename="../QScintilla/Editor.py" line="1371"/>
         <source>Next change</source>
         <translation>Modifica successiva</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1373"/>
+        <location filename="../QScintilla/Editor.py" line="1375"/>
         <source>Previous change</source>
         <translation>Modifica precedente</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8356"/>
+        <location filename="../QScintilla/Editor.py" line="8399"/>
         <source>Sort Lines</source>
         <translation>Righe ordinate</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8356"/>
+        <location filename="../QScintilla/Editor.py" line="8399"/>
         <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="6588"/>
+        <location filename="../QScintilla/Editor.py" line="6628"/>
         <source>Warning</source>
         <translation>Attenzione</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6588"/>
+        <location filename="../QScintilla/Editor.py" line="6628"/>
         <source>No warning messages available.</source>
         <translation>Nessun messaggio di attenzione disponibile.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6650"/>
+        <location filename="../QScintilla/Editor.py" line="6690"/>
         <source>Style: {0}</source>
         <translation>Stile: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="910"/>
+        <location filename="../QScintilla/Editor.py" line="912"/>
         <source>New Document View</source>
         <translation>Nuova vista Documento</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="913"/>
+        <location filename="../QScintilla/Editor.py" line="915"/>
         <source>New Document View (with new split)</source>
         <translation>Nuova vista Documento (con nuova divisione)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1000"/>
+        <location filename="../QScintilla/Editor.py" line="1002"/>
         <source>Tools</source>
         <translation>Strumenti</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1131"/>
+        <location filename="../QScintilla/Editor.py" line="1133"/>
         <source>Re-Open With Encoding</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12561,122 +12561,122 @@
         <translation type="obsolete">&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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="886"/>
+        <location filename="../QScintilla/Editor.py" line="888"/>
         <source>Automatic Completion enabled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="966"/>
+        <location filename="../QScintilla/Editor.py" line="968"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4943"/>
+        <location filename="../QScintilla/Editor.py" line="4980"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4943"/>
+        <location filename="../QScintilla/Editor.py" line="4980"/>
         <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="5222"/>
+        <location filename="../QScintilla/Editor.py" line="5262"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5222"/>
+        <location filename="../QScintilla/Editor.py" line="5262"/>
         <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="8445"/>
+        <location filename="../QScintilla/Editor.py" line="8488"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8445"/>
+        <location filename="../QScintilla/Editor.py" line="8488"/>
         <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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="930"/>
+        <location filename="../QScintilla/Editor.py" line="932"/>
         <source>Save Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="969"/>
+        <location filename="../QScintilla/Editor.py" line="971"/>
         <source>Clear Completions Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="896"/>
+        <location filename="../QScintilla/Editor.py" line="898"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1377"/>
+        <location filename="../QScintilla/Editor.py" line="1379"/>
         <source>Clear changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="815"/>
+        <location filename="../QScintilla/Editor.py" line="817"/>
         <source>Execute Selection In Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8566"/>
+        <location filename="../QScintilla/Editor.py" line="8609"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8566"/>
+        <location filename="../QScintilla/Editor.py" line="8609"/>
         <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/Editor.py" line="1281"/>
+        <location filename="../QScintilla/Editor.py" line="1283"/>
         <source>Toggle all folds</source>
         <translation type="unfinished">Abilita/Disabilita tutti i raggruppamenti</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1286"/>
+        <location filename="../QScintilla/Editor.py" line="1288"/>
         <source>Toggle all folds (including children)</source>
         <translation type="unfinished">Abilita/Disabilita tutti i raggruppamenti (inclusi i figli)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1291"/>
+        <location filename="../QScintilla/Editor.py" line="1293"/>
         <source>Toggle current fold</source>
         <translation type="unfinished">Abilita/Disabilita il raggruppamento corrente</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1297"/>
+        <location filename="../QScintilla/Editor.py" line="1299"/>
         <source>Expand (including children)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1302"/>
+        <location filename="../QScintilla/Editor.py" line="1304"/>
         <source>Collapse (including children)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1308"/>
+        <location filename="../QScintilla/Editor.py" line="1310"/>
         <source>Clear all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1189"/>
+        <location filename="../QScintilla/Editor.py" line="1191"/>
         <source>Spell Check Languages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7106"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8760"/>
+        <location filename="../QScintilla/Editor.py" line="8803"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
@@ -13068,82 +13068,82 @@
 <context>
     <name>EditorButtonsWidget</name>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="174"/>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="176"/>
         <source>Bold</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="176"/>
-        <source>Italic</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="178"/>
+        <source>Italic</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="180"/>
         <source>Strike Through</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="181"/>
-        <source>Header 1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="183"/>
-        <source>Header 2</source>
+        <source>Header 1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="185"/>
-        <source>Header 3</source>
+        <source>Header 2</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="187"/>
+        <source>Header 3</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="189"/>
         <source>Header</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="192"/>
-        <source>Inline Code</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="194"/>
-        <source>Code Block</source>
+        <source>Inline Code</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="196"/>
+        <source>Code Block</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="198"/>
         <source>Quote</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="199"/>
-        <source>Add Hyperlink</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="201"/>
-        <source>Add Horizontal Line</source>
+        <source>Add Hyperlink</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="203"/>
+        <source>Add Horizontal Line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="205"/>
         <source>Add Image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="206"/>
-        <source>Add Bulleted List</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="208"/>
+        <source>Add Bulleted List</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="210"/>
         <source>Add Numbered List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="274"/>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="276"/>
         <source>Level {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -14100,12 +14100,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="243"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="244"/>
         <source>Tab and Indent Override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="243"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="244"/>
         <source>Shall the selected entries really be removed?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -14271,7 +14271,7 @@
         <translation>Seleziona il riempimento di fine linea.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="426"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="427"/>
         <source>Fill to end of line</source>
         <translation>Riempi fino a fine linea</translation>
     </message>
@@ -14346,17 +14346,17 @@
         <translation>Riempi tutto fino a fine linea</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="424"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="425"/>
         <source>Enabled</source>
         <translation>Abilitato</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="425"/>
-        <source>Disabled</source>
-        <translation>Disabilitato</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="426"/>
+        <source>Disabled</source>
+        <translation>Disabilitato</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="427"/>
         <source>Select fill to end of line for all styles</source>
         <translation>Seleziona il riempimento fino a fine linea per tutti gli stili</translation>
     </message>
@@ -14416,12 +14416,12 @@
         <translation>Esporta tutti gli stili</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="591"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="592"/>
         <source>Export Highlighting Styles</source>
         <translation>Esporta stili di evidenziazione</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="642"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="643"/>
         <source>Import Highlighting Styles</source>
         <translation>Importa gli stili di evidenziazione</translation>
     </message>
@@ -14501,27 +14501,27 @@
         <translation type="obsolete">Highlighting styles file (*.e4h) {6h?}</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="783"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="784"/>
         <source>Delete Sub-Style</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="783"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="784"/>
         <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="823"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="824"/>
         <source>{0} - Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="851"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="852"/>
         <source>Reset Sub-Styles to Default</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="851"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="852"/>
         <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>
@@ -14571,27 +14571,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="548"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="549"/>
         <source>Highlighting Styles File (*.ehj);;XML Highlighting Styles File (*.e6h)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="567"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="568"/>
         <source>&lt;p&gt;The highlighting styles file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="591"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="592"/>
         <source>&lt;p&gt;The highlighting styles 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="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="610"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="611"/>
         <source>Highlighting Styles File (*.ehj);;XML Highlighting Styles File (*.e6h *.e4h)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="642"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="643"/>
         <source>&lt;p&gt;The highlighting styles 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>
@@ -14807,47 +14807,47 @@
 <context>
     <name>EditorOutlineView</name>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="268"/>
+        <location filename="../QScintilla/EditorOutline.py" line="269"/>
         <source>Goto</source>
         <translation type="unfinished">Vai a</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="310"/>
+        <location filename="../QScintilla/EditorOutline.py" line="311"/>
         <source>Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="314"/>
+        <location filename="../QScintilla/EditorOutline.py" line="315"/>
         <source>Copy Path to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="319"/>
+        <location filename="../QScintilla/EditorOutline.py" line="320"/>
         <source>Expand All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="323"/>
+        <location filename="../QScintilla/EditorOutline.py" line="324"/>
         <source>Collapse All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="328"/>
+        <location filename="../QScintilla/EditorOutline.py" line="329"/>
         <source>Increment Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="332"/>
+        <location filename="../QScintilla/EditorOutline.py" line="333"/>
         <source>Decrement Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="390"/>
+        <location filename="../QScintilla/EditorOutline.py" line="391"/>
         <source>Line {0}</source>
         <translation type="unfinished">Linea {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="336"/>
+        <location filename="../QScintilla/EditorOutline.py" line="337"/>
         <source>Set Default Width</source>
         <translation type="unfinished"></translation>
     </message>
@@ -16465,32 +16465,32 @@
         <translation>Seleziona come evidenziare le righe a capo automatico</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="59"/>
         <source>Word Boundary</source>
         <translation>Limite della parola</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="60"/>
-        <source>Character Boundary</source>
-        <translation>limite del carattere</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="62"/>
+        <source>Character Boundary</source>
+        <translation>limite del carattere</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="65"/>
         <source>No Indicator</source>
         <translation>Nessun Indocatore</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="64"/>
-        <source>Indicator by Text</source>
-        <translation>Indicatore accanto al Testo</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="66"/>
-        <source>Indicator by Margin</source>
-        <translation>Indicatore accanto al Margine</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="68"/>
+        <source>Indicator by Text</source>
+        <translation>Indicatore accanto al Testo</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="71"/>
+        <source>Indicator by Margin</source>
+        <translation>Indicatore accanto al Margine</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="74"/>
         <source>Indicator in Line Number Margin</source>
         <translation>Indicatore nel Margine del numero di riga</translation>
     </message>
@@ -16741,22 +16741,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="72"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="78"/>
         <source>Fixed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="74"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="80"/>
         <source>Aligned</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="76"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="82"/>
         <source>Aligned plus One</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="79"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="85"/>
         <source>Aligned plus Two</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17365,17 +17365,17 @@
         <translation>Invia un bug report</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="423"/>
+        <location filename="../UI/EmailDialog.py" line="424"/>
         <source>Attach file</source>
         <translation>Allega file</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="321"/>
+        <location filename="../UI/EmailDialog.py" line="322"/>
         <source>Mail Server Password</source>
         <translation>Password del server di posta</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="321"/>
+        <location filename="../UI/EmailDialog.py" line="322"/>
         <source>Enter your mail server password</source>
         <translation>Inserisci la tua password per il server di posta</translation>
     </message>
@@ -17435,12 +17435,12 @@
         <translation>Spedisci</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="133"/>
+        <location filename="../UI/EmailDialog.py" line="134"/>
         <source>Close dialog</source>
         <translation>Chiudi dialogo</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="133"/>
+        <location filename="../UI/EmailDialog.py" line="134"/>
         <source>Do you really want to close the dialog?</source>
         <translation>Vuoi veramente chiudere questo dialogo ?</translation>
     </message>
@@ -17470,12 +17470,12 @@
         <translation>Invia una richiesta di funzionalità</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="341"/>
+        <location filename="../UI/EmailDialog.py" line="342"/>
         <source>&lt;p&gt;Authentication failed.&lt;br&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Autenticazione fallita.&lt;br&gt;Motivo: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="410"/>
+        <location filename="../UI/EmailDialog.py" line="411"/>
         <source>&lt;p&gt;Message could not be sent.&lt;br&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il messaggio non può essere inviato.&lt;br&gt;Motivo: {0}&lt;/p&gt;</translation>
     </message>
@@ -17485,22 +17485,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="157"/>
+        <location filename="../UI/EmailDialog.py" line="158"/>
         <source>Gmail API Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="366"/>
+        <location filename="../UI/EmailDialog.py" line="367"/>
         <source>Send Message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="151"/>
+        <location filename="../UI/EmailDialog.py" line="152"/>
         <source>&lt;p&gt;The Google Mail Client API is not installed. Use &lt;code&gt;{0}&lt;/code&gt; to install it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="410"/>
+        <location filename="../UI/EmailDialog.py" line="411"/>
         <source>Send Message via Gmail</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18064,7 +18064,7 @@
 &lt;p&gt;Mostra gli errori del comando di generazione Ericapi.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="89"/>
         <source>Process Generation Error</source>
         <translation>Errore Generazione Processo</translation>
     </message>
@@ -18079,17 +18079,17 @@
         <translation>Errori</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="82"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="84"/>
         <source>{0} - {1}</source>
         <translation>{0} - {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="89"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Il processo {0}  non può essere avviato. Assicurarsi che sia nel path.</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="128"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="137"/>
         <source>
 {0} finished.
 </source>
@@ -18429,7 +18429,7 @@
         <translation>Genera i file QtHelp collection</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="62"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="63"/>
         <source>&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot;&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;&lt;html&gt;&lt;head&gt;&lt;title&gt;&lt;/title&gt;&lt;/head&gt;&lt;body style=&quot;background-color:{BodyBgColor};color:{BodyColor}&quot;&gt;&lt;h1 style=&quot;background-color:{Level1HeaderBgColor};color:{Level1HeaderColor}&quot;&gt;Level 1 Header&lt;/h1&gt;&lt;h3 style=&quot;background-color:{Level2HeaderBgColor};color:{Level2HeaderColor}&quot;&gt;Level 2 Header&lt;/h3&gt;&lt;h2 style=&quot;background-color:{CFBgColor};color:{CFColor}&quot;&gt;Class and Function Header&lt;/h2&gt;Standard body text with &lt;a style=&quot;color:{LinkColor}&quot;&gt;some links&lt;/a&gt; embedded.&lt;/body&gt;&lt;/html&gt;</source>
         <translation>&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot;&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;&lt;html&gt;&lt;head&gt;&lt;title&gt;&lt;/title&gt;&lt;/head&gt;&lt;body style=&quot;background-color:{BodyBgColor};color:{BodyColor}&quot;&gt;&lt;h1 style=&quot;background-color:{Level1HeaderBgColor};color:{Level1HeaderColor}&quot;&gt;Level 1 Header&lt;/h1&gt;&lt;h3 style=&quot;background-color:{Level2HeaderBgColor};color:{Level2HeaderColor}&quot;&gt;Level 2 Header&lt;/h3&gt;&lt;h2 style=&quot;background-color:{CFBgColor};color:{CFColor}&quot;&gt;Class and Function Header&lt;/h2&gt;Standard body text with &lt;a style=&quot;color:{LinkColor}&quot;&gt;some links&lt;/a&gt; embedded.&lt;/body&gt;&lt;/html&gt;</translation>
     </message>
@@ -18516,7 +18516,7 @@
 &lt;p&gt;Mostra gli errori del generatore Ericdoc.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="89"/>
         <source>Process Generation Error</source>
         <translation>Errore Generazione Processo</translation>
     </message>
@@ -18531,17 +18531,17 @@
         <translation>Errori</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="82"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="84"/>
         <source>{0} - {1}</source>
         <translation>{0} - {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="89"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Il processo {0}  non può essere avviato. Assicurarsi che sia nel path.</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="129"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="138"/>
         <source>
 {0} finished.
 </source>
@@ -18550,7 +18550,7 @@
 </translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="120"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="126"/>
         <source>
 {0} crashed.
 </source>
@@ -18638,17 +18638,17 @@
         <translation>Ignora ma tieni</translation>
     </message>
     <message>
-        <location filename="../UI/ErrorLogDialog.py" line="44"/>
+        <location filename="../UI/ErrorLogDialog.py" line="45"/>
         <source>Delete</source>
         <translation>Cancella</translation>
     </message>
     <message>
-        <location filename="../UI/ErrorLogDialog.py" line="45"/>
-        <source>Close</source>
-        <translation>Chiudi</translation>
-    </message>
-    <message>
         <location filename="../UI/ErrorLogDialog.py" line="46"/>
+        <source>Close</source>
+        <translation>Chiudi</translation>
+    </message>
+    <message>
+        <location filename="../UI/ErrorLogDialog.py" line="47"/>
         <source>Error Log</source>
         <translation>Segnalazione Errori</translation>
     </message>
@@ -19176,22 +19176,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="110"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="111"/>
         <source>Allow</source>
         <translation type="unfinished">Consenti</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="111"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="112"/>
         <source>Deny</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="133"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="134"/>
         <source>{0} wants to use an unknown feature.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="108"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="109"/>
         <source>Remember</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19239,12 +19239,12 @@
         <translation type="unfinished">Notificazioni</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="161"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="165"/>
         <source>Host</source>
         <translation type="unfinished">Host</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="162"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="166"/>
         <source>Permission</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19254,17 +19254,17 @@
         <translation type="obsolete">Rimuovi</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="68"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="69"/>
         <source>Geolocation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="186"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="191"/>
         <source>Allow</source>
         <translation type="unfinished">Consenti</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="187"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="193"/>
         <source>Deny</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19279,32 +19279,32 @@
         <translation type="unfinished">Rimuovi &amp;Tutto</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="83"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="85"/>
         <source>Microphone</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="98"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="101"/>
         <source>Camera</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="113"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="117"/>
         <source>Microphone &amp;&amp; Camera</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="129"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="133"/>
         <source>Mouse Lock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="147"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="151"/>
         <source>Desktop Video</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="163"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="167"/>
         <source>Desktop Audio &amp;&amp; Video</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19360,17 +19360,17 @@
         <translation>Aggiungi</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="86"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="87"/>
         <source>Add RSS Feed</source>
         <translation>Aggiungi Feed RSS</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="81"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="82"/>
         <source>The feed was added successfully.</source>
         <translation>Il Feed è stato aggiunto correttamente.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="86"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="87"/>
         <source>The feed was already added before.</source>
         <translation>Il Feed era già stato aggiunto in precedenza.</translation>
     </message>
@@ -19428,67 +19428,67 @@
         <translation>&amp;Cancella Feed</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="182"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="183"/>
         <source>Duplicate Feed URL</source>
         <translation>Duplica Feed URL</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="182"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="183"/>
         <source>A feed with the URL {0} exists already. Aborting...</source>
         <translation>Un Feed con URL &lt;b&gt;{0}&lt;/b&gt; esiste già. Interrotto...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="204"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="205"/>
         <source>Delete Feed</source>
         <translation>Cancella Feed</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="204"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="205"/>
         <source>&lt;p&gt;Do you really want to delete the feed &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Vuoi veramente cancellare il Feed &lt;b&gt;&quot;{0}&quot;&lt;/b&gt;?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="316"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="317"/>
         <source>Error fetching feed</source>
         <translation>Errore nel riportare il Feed</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="346"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="347"/>
         <source>&amp;Open</source>
         <translation>&amp;Apri</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="348"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="349"/>
         <source>Open in New &amp;Tab</source>
         <translation>Apri in in una nuova &amp;Scheda</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="359"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="360"/>
         <source>&amp;Copy URL to Clipboard</source>
         <translation>Copia &amp;URL nella Clipboard</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="366"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="367"/>
         <source>&amp;Show error data</source>
         <translation>&amp;Visualizza errore</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="483"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="490"/>
         <source>Error loading feed</source>
         <translation>Errore nel caricare il Feed</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="350"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="351"/>
         <source>Open in New &amp;Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="353"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="354"/>
         <source>Open in New &amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="355"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="356"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation type="unfinished"></translation>
     </message>
@@ -20192,7 +20192,7 @@
         <translation>Sostituisci</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="740"/>
+        <location filename="../UI/FindFileDialog.py" line="744"/>
         <source>Replace in Files</source>
         <translation>Sostituisci nei file</translation>
     </message>
@@ -20207,37 +20207,37 @@
         <translation>Feeling Like</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="767"/>
+        <location filename="../UI/FindFileDialog.py" line="771"/>
         <source>Open</source>
         <translation>Apri</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="768"/>
+        <location filename="../UI/FindFileDialog.py" line="772"/>
         <source>Copy Path to Clipboard</source>
         <translation>Copia il path nella Clipboard</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="450"/>
+        <location filename="../UI/FindFileDialog.py" line="453"/>
         <source>Invalid search expression</source>
         <translation>Espressione di ricerca non valida</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="450"/>
+        <location filename="../UI/FindFileDialog.py" line="453"/>
         <source>&lt;p&gt;The search expression is not valid.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;L&apos;espressione di ricerca non è valida.&lt;/p&gt;&lt;p&gt;Errore: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="699"/>
+        <location filename="../UI/FindFileDialog.py" line="703"/>
         <source>&lt;p&gt;Could not read the file &lt;b&gt;{0}&lt;/b&gt;. Skipping it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Non posso leggere il file&lt;b&gt;{0}&lt;/b&gt;. Lo salto.&lt;/p&gt;&lt;p&gt;Motivo:{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="740"/>
+        <location filename="../UI/FindFileDialog.py" line="744"/>
         <source>&lt;p&gt;Could not save the file &lt;b&gt;{0}&lt;/b&gt;. Skipping it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Non posso salvare il file&lt;b&gt;{0}&lt;/b&gt;. Lo salto.&lt;/p&gt;&lt;p&gt;Motivo:{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="714"/>
+        <location filename="../UI/FindFileDialog.py" line="718"/>
         <source>&lt;p&gt;The current and the original hash of the file &lt;b&gt;{0}&lt;/b&gt; are different. Skipping it.&lt;/p&gt;&lt;p&gt;Hash 1: {1}&lt;/p&gt;&lt;p&gt;Hash 2: {2}&lt;/p&gt;</source>
         <translation>&lt;p&gt;L&apos;hash originale e quello corrente del file  &lt;b&gt;{0}&lt;/b&gt; sono differenti. Lo salto.&lt;/p&gt;&lt;p&gt;Hash 1: {1}&lt;/p&gt;&lt;p&gt;Hash 2: {2}&lt;/p&gt;</translation>
     </message>
@@ -20247,13 +20247,13 @@
         <translation>%v/%m Files</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="573"/>
+        <location filename="../UI/FindFileDialog.py" line="576"/>
         <source>{0} / {1}</source>
         <comment>occurrences / files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../UI/FindFileDialog.py" line="574"/>
+        <location filename="../UI/FindFileDialog.py" line="577"/>
         <source>%n occurrence(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -20261,7 +20261,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../UI/FindFileDialog.py" line="574"/>
+        <location filename="../UI/FindFileDialog.py" line="577"/>
         <source>%n file(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -20372,7 +20372,7 @@
         <translation>Percorso</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileNameDialog.py" line="58"/>
+        <location filename="../UI/FindFileNameDialog.py" line="59"/>
         <source>Opens the selected file</source>
         <translation>Apri i file selezionati</translation>
     </message>
@@ -21460,7 +21460,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitArchiveDataDialog.py" line="83"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitArchiveDataDialog.py" line="85"/>
         <source>Select Archive File</source>
         <translation type="unfinished"></translation>
     </message>
@@ -21538,22 +21538,22 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="52"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="54"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="54"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="56"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="173"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="173"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -21674,12 +21674,12 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -21889,7 +21889,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBranchPushDialog.py" line="34"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBranchPushDialog.py" line="35"/>
         <source>&lt;all branches&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -22202,7 +22202,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitCopyDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitCopyDialog.py" line="90"/>
         <source>Select target</source>
         <translation type="unfinished"></translation>
     </message>
@@ -22270,12 +22270,12 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="115"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="115"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -22338,37 +22338,37 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="82"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="88"/>
         <source>Additional Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="110"/>
         <source>Process canceled.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="112"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="125"/>
         <source>Process finished successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="127"/>
         <source>Process crashed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="129"/>
         <source>Process finished with exit code {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="182"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="182"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -22411,82 +22411,82 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="90"/>
         <source>Working Tree to Staging Area</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="89"/>
-        <source>Staging Area to HEAD Commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="90"/>
-        <source>Working Tree to HEAD Commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="91"/>
-        <source>Working to Staging (top) and Staging to HEAD (bottom)</source>
+        <source>Staging Area to HEAD Commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="92"/>
+        <source>Working Tree to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="93"/>
+        <source>Working to Staging (top) and Staging to HEAD (bottom)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="95"/>
         <source>Stash Contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="96"/>
         <source>Stash Contents of {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="166"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="168"/>
         <source>Difference ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="174"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="174"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="198"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="200"/>
         <source>There is no difference.</source>
         <translation type="unfinished">Non ci sono differenze.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="219"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="225"/>
         <source>&lt;Start&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="220"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="226"/>
         <source>&lt;End&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="355"/>
         <source>Save Diff</source>
         <translation type="unfinished">Salva Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="314"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="322"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished">File Patch (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="331"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="339"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Il file  patch &lt;b&gt;{0}&lt;/b&gt; esiste già.Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="355"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere salvato.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
@@ -22645,12 +22645,12 @@
         <translation type="unfinished">Graph</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="110"/>
         <source>Commit ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="111"/>
         <source>Author</source>
         <translation type="unfinished">Autore</translation>
     </message>
@@ -22660,7 +22660,7 @@
         <translation type="unfinished">Data</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="112"/>
         <source>Committer</source>
         <translation type="unfinished"></translation>
     </message>
@@ -22670,7 +22670,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="110"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="113"/>
         <source>Subject</source>
         <translation type="unfinished"></translation>
     </message>
@@ -22745,7 +22745,7 @@
         <translation type="unfinished">Copia da</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2095"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2113"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
@@ -22805,328 +22805,328 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="97"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="96"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="99"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
         <source>Find</source>
         <translation type="unfinished">Trova</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="108"/>
         <source>Filter</source>
         <translation type="unfinished">Filtro</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="111"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="114"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="131"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit ID&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2} &amp;lt;{3}&amp;gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5} &amp;lt;{6}&amp;gt;&lt;/td&gt;&lt;/tr&gt;{7}&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;{9}&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="140"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Origini&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="143"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Children&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation type="unfinished"></translation>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Origini&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="146"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Children&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="149"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="152"/>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="155"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Message&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="203"/>
-        <source>Added</source>
-        <translation type="unfinished">Aggiunto</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="204"/>
-        <source>Deleted</source>
-        <translation type="unfinished">Cancellato</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="205"/>
-        <source>Modified</source>
-        <translation type="unfinished">Modificato</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="206"/>
-        <source>Copied</source>
-        <translation type="unfinished"></translation>
+        <source>Added</source>
+        <translation type="unfinished">Aggiunto</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="207"/>
-        <source>Renamed</source>
-        <translation type="unfinished"></translation>
+        <source>Deleted</source>
+        <translation type="unfinished">Cancellato</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="208"/>
-        <source>Type changed</source>
-        <translation type="unfinished"></translation>
+        <source>Modified</source>
+        <translation type="unfinished">Modificato</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="209"/>
-        <source>Unmerged</source>
+        <source>Copied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="210"/>
+        <source>Renamed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="211"/>
+        <source>Type changed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="212"/>
+        <source>Unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="213"/>
         <source>Unknown</source>
         <translation type="unfinished">Sconosciuto</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="246"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="249"/>
         <source>Show Commit ID Column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="248"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="251"/>
         <source>Press to show the commit ID column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="256"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="259"/>
         <source>Show Author Columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="258"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="261"/>
         <source>Press to show the author columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="266"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="269"/>
         <source>Show Committer Columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="268"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="271"/>
         <source>Press to show the committer columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="276"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="279"/>
         <source>Show Branches Column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="278"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="281"/>
         <source>Press to show the branches column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="286"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="289"/>
         <source>Show Tags Column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="291"/>
         <source>Press to show the Tags column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="315"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="318"/>
         <source>Copy Commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="317"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="320"/>
         <source>Cherry-pick the selected commits to the current branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="322"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="325"/>
         <source>Tag</source>
         <translation type="unfinished">Tag</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="324"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="327"/>
         <source>Tag the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1789"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1807"/>
         <source>Branch</source>
         <translation type="unfinished">Branch</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="328"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="331"/>
         <source>Create a new branch at the selected commit.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="330"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="333"/>
         <source>Branch &amp;&amp; Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="332"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="335"/>
         <source>Create a new branch at the selected commit and switch the work tree to it.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1859"/>
         <source>Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="338"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="341"/>
         <source>Switch the working directory to the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1867"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1885"/>
         <source>Show Short Log</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="344"/>
-        <source>Show a dialog with a log output for release notes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="347"/>
+        <source>Show a dialog with a log output for release notes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="350"/>
         <source>Describe</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="349"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="352"/>
         <source>Show the most recent tag reachable from a commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="634"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="639"/>
         <source>The git process did not finish within 30s.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="637"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="642"/>
         <source>Could not start the git executable.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="640"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="645"/>
         <source>Git Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="756"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="761"/>
         <source>{0} ({1}%)</source>
         <comment>action, confidence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="819"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="827"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="819"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="827"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1262"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1280"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1274"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1292"/>
         <source>&lt;a href=&quot;sbsdiff:{0}_{1}&quot;&gt;Side-by-Side Compare&lt;/a&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1721"/>
         <source>Copy Changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1859"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished">Il progetto deve essere riletto. Farlo ora ?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1867"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1885"/>
         <source>Select a branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1820"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1838"/>
         <source>Select a default branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1820"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1838"/>
         <source>Branch &amp; Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2049"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2067"/>
         <source>Find Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2049"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2067"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished">&apos;{0}&apos; non è stato trovato.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2127"/>
         <source>Differences to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2124"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2142"/>
         <source>Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2150"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2168"/>
         <source>There is no difference.</source>
         <translation type="unfinished">Non ci sono differenze.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2312"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2330"/>
         <source>Save Diff</source>
         <translation type="unfinished">Salva Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2279"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2297"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished">File Patch (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2296"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2314"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Il file  patch &lt;b&gt;{0}&lt;/b&gt; esiste già.Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2312"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2330"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere salvato.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
@@ -23308,12 +23308,12 @@
 a messo in questa directory.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="87"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="88"/>
         <source>Select Repository-Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="102"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="103"/>
         <source>Select Project Directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -23470,7 +23470,7 @@
 <context>
     <name>GitPatchFilesDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="82"/>
         <source>Patch Files</source>
         <translation type="unfinished"></translation>
     </message>
@@ -23525,7 +23525,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="82"/>
         <source>Patch Files (*.diff *.patch);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -23563,12 +23563,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -25593,22 +25593,22 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="54"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="56"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="56"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="58"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="198"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="198"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -25800,12 +25800,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="144"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="148"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="144"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="148"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26104,57 +26104,57 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="60"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="63"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="62"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="65"/>
         <source>Press to refresh the list of stashes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="77"/>
-        <source>Show</source>
-        <translation type="unfinished">Mostra</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="80"/>
+        <source>Show</source>
+        <translation type="unfinished">Mostra</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="83"/>
         <source>Restore &amp;&amp; Keep</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="82"/>
-        <source>Restore &amp;&amp; Delete</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="85"/>
-        <source>Create Branch</source>
+        <source>Restore &amp;&amp; Delete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="88"/>
+        <source>Create Branch</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="91"/>
         <source>Delete</source>
         <translation type="unfinished">Cancella</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="93"/>
         <source>Delete All</source>
         <translation type="unfinished">Cancella tutto</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="176"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="183"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="176"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="183"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="363"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="377"/>
         <source>%n file(s) changed</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -26162,7 +26162,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="365"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="379"/>
         <source>%n line(s) inserted</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -26170,7 +26170,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="367"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="381"/>
         <source>%n line(s) deleted</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -26239,7 +26239,7 @@
 <context>
     <name>GitStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="379"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="386"/>
         <source>Git Status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26265,7 +26265,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="647"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="665"/>
         <source>Commit</source>
         <translation type="unfinished">Commit</translation>
     </message>
@@ -26350,312 +26350,312 @@
         <translation type="unfinished">Premi per aggiornare lo stato</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="102"/>
         <source>Stage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="106"/>
         <source>Revert Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="110"/>
         <source>Stage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="112"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="114"/>
         <source>Revert Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="120"/>
         <source>Unstage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="122"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="124"/>
         <source>Unstage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="163"/>
-        <source>added</source>
-        <translation type="unfinished">aggiunto</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="164"/>
-        <source>copied</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="165"/>
-        <source>deleted</source>
-        <translation type="unfinished">cancellato</translation>
+        <source>added</source>
+        <translation type="unfinished">aggiunto</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="166"/>
-        <source>modified</source>
-        <translation type="unfinished">modificato</translation>
+        <source>copied</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="167"/>
-        <source>renamed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="169"/>
-        <source>not tracked</source>
-        <translation type="unfinished">non tracciato</translation>
+        <source>deleted</source>
+        <translation type="unfinished">cancellato</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="168"/>
-        <source>unmerged</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="162"/>
-        <source>unmodified</source>
-        <translation type="unfinished"></translation>
+        <source>modified</source>
+        <translation type="unfinished">modificato</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="169"/>
+        <source>renamed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="171"/>
+        <source>not tracked</source>
+        <translation type="unfinished">non tracciato</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
+        <source>unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="164"/>
+        <source>unmodified</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="172"/>
         <source>ignored</source>
         <translation type="unfinished">ignorato</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="188"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="190"/>
         <source>Commit the selected changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="189"/>
-        <source>Amend</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="191"/>
-        <source>Amend the latest commit with the selected changes</source>
+        <source>Amend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="193"/>
-        <source>Select all for commit</source>
+        <source>Amend the latest commit with the selected changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="195"/>
+        <source>Select all for commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="197"/>
         <source>Unselect all from commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="688"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="706"/>
         <source>Add</source>
         <translation type="unfinished">Aggiungi</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="201"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="203"/>
         <source>Add the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="202"/>
-        <source>Stage changes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="204"/>
-        <source>Stages all changes of the selected files</source>
+        <source>Stage changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="206"/>
-        <source>Unstage changes</source>
+        <source>Stages all changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="208"/>
+        <source>Unstage changes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210"/>
         <source>Unstages all changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="824"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="842"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="215"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="217"/>
         <source>Shows the differences of the selected entry in a separate dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="218"/>
-        <source>Differences Side-By-Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="220"/>
+        <source>Differences Side-By-Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="222"/>
         <source>Shows the differences of the selected entry side-by-side in a separate dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789"/>
         <source>Revert</source>
         <translation type="unfinished">Inverti</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="228"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="230"/>
         <source>Reverts the changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="233"/>
-        <source>Forget missing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="235"/>
-        <source>Forgets about the selected missing files</source>
+        <source>Forget missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="237"/>
-        <source>Restore missing</source>
+        <source>Forgets about the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="239"/>
+        <source>Restore missing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="241"/>
         <source>Restores the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244"/>
-        <source>Edit file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="246"/>
+        <source>Edit file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="248"/>
         <source>Edit the selected conflicting file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="251"/>
-        <source>Adjust column sizes</source>
-        <translation type="unfinished">Adatta dimensione colonne</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253"/>
+        <source>Adjust column sizes</source>
+        <translation type="unfinished">Adatta dimensione colonne</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="255"/>
         <source>Adjusts the width of all columns to their contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="414"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="414"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="581"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="599"/>
         <source>all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="647"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="665"/>
         <source>There are no entries selected to be committed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="688"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="706"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation type="unfinished">Non ci sono elementi non sotto controllo disponibili/selezionati.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="710"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="728"/>
         <source>Stage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="710"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="728"/>
         <source>There are no stageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="732"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="750"/>
         <source>Unstage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="732"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="750"/>
         <source>There are no unstageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="754"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="772"/>
         <source>Forget Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="795"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="813"/>
         <source>There are no missing entries available/selected.</source>
         <translation type="unfinished">Non ci sono elementi mancati disponibili/selezionati.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789"/>
         <source>There are no uncommitted, unstaged changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="795"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="813"/>
         <source>Restore Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="824"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="842"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation type="unfinished">Non ci sono modifiche disponibili/selezionate da committare.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="876"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
         <source>Working Tree to Staging Area</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="855"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="873"/>
         <source>Staging Area to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="877"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="895"/>
         <source>Working Tree to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="879"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="897"/>
         <source>Side-by-Side Difference</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="879"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="897"/>
         <source>Select the compare method.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1188"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1212"/>
         <source>Revert selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1190"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1214"/>
         <source>Revert hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1191"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1215"/>
         <source>Are you sure you want to revert the selected changes?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26752,12 +26752,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="103"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="105"/>
         <source>Select Submodule Repository Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="129"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="131"/>
         <source>Select Submodule Directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -27142,12 +27142,12 @@
 &lt;p&gt;Mostra una lista dei tag o branch del progetto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="95"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="97"/>
         <source>Commit</source>
         <translation type="unfinished">Commit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="95"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="97"/>
         <source>Name</source>
         <translation type="unfinished">Nome</translation>
     </message>
@@ -27197,22 +27197,22 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="92"/>
         <source>Annotation Message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="96"/>
         <source>Git Branches List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="133"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="133"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -28396,7 +28396,7 @@
 <context>
     <name>HelpDocsInstaller</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpDocsInstaller.py" line="239"/>
+        <location filename="../WebBrowser/QtHelp/HelpDocsInstaller.py" line="241"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be registered. &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 registrato.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
@@ -28615,22 +28615,22 @@
         <translation>Contro&amp;lla per:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="205"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="211"/>
         <source>Open Link</source>
         <translation>Apri collegamento</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="206"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="212"/>
         <source>Open Link in New Tab</source>
         <translation>Apri link in una nuova scheda</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="207"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="213"/>
         <source>Open Link in Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="209"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="215"/>
         <source>Open Link in New Window</source>
         <translation type="unfinished"></translation>
     </message>
@@ -28709,22 +28709,22 @@
 <context>
     <name>HelpSearchWidget</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="145"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="150"/>
         <source>Open Link</source>
         <translation>Apri collegamento</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="146"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="151"/>
         <source>Open Link in New Tab</source>
         <translation>Apri collegamento in una nuova scheda</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="147"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="152"/>
         <source>Open Link in Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="149"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="154"/>
         <source>Open Link in New Window</source>
         <translation type="unfinished"></translation>
     </message>
@@ -28896,22 +28896,22 @@
 <context>
     <name>HelpTocWidget</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="158"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="164"/>
         <source>Open Link</source>
         <translation>Apri collegamento</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="159"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="165"/>
         <source>Open Link in New Tab</source>
         <translation>Apri collegamento in una nuova scheda</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="160"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="166"/>
         <source>Open Link in Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="162"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="168"/>
         <source>Open Link in New Window</source>
         <translation type="unfinished"></translation>
     </message>
@@ -31840,12 +31840,12 @@
         <translation type="unfinished">Aiuto</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="798"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="801"/>
         <source>&lt;p&gt;This part of the status bar displays the edit mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="806"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="810"/>
         <source>&lt;p&gt;This part of the status bar displays the read only mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -31855,111 +31855,111 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="790"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="792"/>
         <source>&lt;p&gt;This part of the status bar displays the size of the binary data.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="862"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="867"/>
         <source>ro</source>
         <translation type="unfinished">ro</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="862"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="867"/>
         <source>rw</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="880"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="885"/>
         <source>Overwrite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="880"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="885"/>
         <source>Insert</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="942"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="947"/>
         <source>Open binary file in new window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1061"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1066"/>
         <source>All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="963"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="968"/>
         <source>The loaded file has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="981"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="986"/>
         <source>The file &apos;{0}&apos; does not exist.</source>
         <translation type="unfinished">Il file {0} non esiste.</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="988"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="993"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation type="unfinished">Impossibile leggere il file {0}:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1014"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1019"/>
         <source>Open binary file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1071"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1076"/>
         <source>Save binary file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1156"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1161"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1181"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1186"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation type="unfinished">Impossibile scrivere il file {0}:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1187"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1192"/>
         <source>File saved</source>
         <translation type="unfinished">File salvato</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1156"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1161"/>
         <source>Save to readable file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1140"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1145"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished">File Testo(*.txt);;Tutti i file (*)</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1140"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1145"/>
         <source>Text Files (*.txt)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1223"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1228"/>
         <source>Untitled</source>
         <translation type="unfinished">Senza titolo</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1227"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1232"/>
         <source>{0}[*] - {1}</source>
         <translation type="unfinished">{0}[*] - {1}</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1227"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1232"/>
         <source>Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
@@ -31979,12 +31979,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="782"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="783"/>
         <source>&lt;p&gt;This part of the status bar displays some selection information.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="851"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="856"/>
         <source>Selection: -</source>
         <comment>no selection available</comment>
         <translation type="unfinished"></translation>
@@ -32005,18 +32005,18 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="826"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="831"/>
         <source>Address: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="845"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="850"/>
         <source>Selection: {0} - {1} ({2} Bytes)</source>
         <comment>0: start, 1: end, 2: selection length</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="899"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="904"/>
         <source>Size: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32026,22 +32026,22 @@
         <translation type="unfinished">Apri file &amp;recenti</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1431"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1436"/>
         <source>&amp;Clear</source>
         <translation type="unfinished">Pulis&amp;ci</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1181"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1186"/>
         <source>eric Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1284"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1289"/>
         <source>About eric Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1284"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1289"/>
         <source>The eric Hex Editor is a simple editor component to edit binary files.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -33192,7 +33192,7 @@
         <translation>Merge con il genitore correte</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBackoutDialog.py" line="174"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBackoutDialog.py" line="176"/>
         <source>Backed out changeset &lt;{0}&gt;.</source>
         <translation>Ritiro changeset &lt;{0}&gt;.</translation>
     </message>
@@ -33320,12 +33320,12 @@
         <translation type="unfinished">Seleziona la revisione tip del reposutory</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="43"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="44"/>
         <source>Move Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="46"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="47"/>
         <source>Define Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
@@ -33427,12 +33427,12 @@
         <translation type="obsolete">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="46"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="48"/>
         <source>Mercurial Incoming Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="48"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="50"/>
         <source>Mercurial Outgoing Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
@@ -33447,7 +33447,7 @@
         <translation type="obsolete">Il processo {0}  non può essere avviato. Assicurarsi che sia nel path.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="121"/>
         <source>no bookmarks found</source>
         <translation type="unfinished"></translation>
     </message>
@@ -33547,7 +33547,7 @@
         <translation type="obsolete">Il processo {0}  non può essere avviato. Assicurarsi che sia nel path.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="125"/>
         <source>no bookmarks defined</source>
         <translation type="unfinished"></translation>
     </message>
@@ -33562,67 +33562,67 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="247"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="258"/>
         <source>Switch to</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="251"/>
-        <source>Delete</source>
-        <translation type="unfinished">Cancella</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="254"/>
-        <source>Rename</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="258"/>
-        <source>Pull</source>
-        <translation type="unfinished">Pull</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="262"/>
+        <source>Delete</source>
+        <translation type="unfinished">Cancella</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="265"/>
+        <source>Rename</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="269"/>
+        <source>Pull</source>
+        <translation type="unfinished">Pull</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="273"/>
         <source>Push</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="299"/>
         <source>Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="299"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished">Il progetto deve essere riletto. Farlo ora ?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="318"/>
         <source>Delete Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="318"/>
         <source>&lt;p&gt;Shall the bookmark &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="323"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="334"/>
         <source>Rename Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="323"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="334"/>
         <source>&lt;p&gt;Enter the new name for bookmark &lt;b&gt;{0}&lt;/b&gt;:&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="267"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="278"/>
         <source>Push Current</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="272"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="283"/>
         <source>Push All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -34045,7 +34045,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="173"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="183"/>
         <source>Resolved</source>
         <translation type="unfinished"></translation>
     </message>
@@ -34055,7 +34055,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="171"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="181"/>
         <source>Unresolved</source>
         <translation type="unfinished"></translation>
     </message>
@@ -34125,12 +34125,12 @@
         <translation type="obsolete">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="51"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="54"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="53"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="56"/>
         <source>Press to refresh the list of conflicts</source>
         <translation type="unfinished"></translation>
     </message>
@@ -34140,7 +34140,7 @@
         <translation type="obsolete">Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="175"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="185"/>
         <source>Unknown Status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -34312,52 +34312,52 @@
         <translation>Errori</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="101"/>
         <source>Process Generation Error</source>
         <translation>Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="101"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Il processo {0}  non può essere avviato. Assicurarsi che sia nel path.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="120"/>
         <source>There is no difference.</source>
         <translation>Non ci sono differenze.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="245"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="254"/>
         <source>Save Diff</source>
         <translation>Salva Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="213"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="222"/>
         <source>Patch Files (*.diff)</source>
         <translation>File Patch (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="245"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="254"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere salvato.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="230"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="239"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file  patch &lt;b&gt;{0}&lt;/b&gt; esiste già.Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="91"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="93"/>
         <source>Patch Contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="137"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="143"/>
         <source>&lt;Start&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="138"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="144"/>
         <source>&lt;End&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -34638,7 +34638,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="218"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="228"/>
         <source>Revision</source>
         <translation>Revisione</translation>
     </message>
@@ -34723,7 +34723,7 @@
         <translation type="obsolete">Il processo {0}  non può essere avviato. Assicurarsi che sia nel path.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="95"/>
         <source>no signatures found</source>
         <translation type="unfinished"></translation>
     </message>
@@ -35201,17 +35201,17 @@
         <translation>Seleziona il campo su cui filtrare</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="131"/>
         <source>Revision</source>
         <translation>Revisione</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="129"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="132"/>
         <source>Author</source>
         <translation>Autore</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="130"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="133"/>
         <source>Message</source>
         <translation>Messaggio</translation>
     </message>
@@ -35321,17 +35321,17 @@
         <translation type="obsolete">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="208"/>
         <source>Added</source>
         <translation>Aggiunto</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="206"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="209"/>
         <source>Deleted</source>
         <translation>Cancellato</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="207"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="210"/>
         <source>Modified</source>
         <translation>Modificato</translation>
     </message>
@@ -35356,7 +35356,7 @@
         <translation type="obsolete">Non posso avviare l&apos;eseguibile hg.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="842"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="847"/>
         <source>Mercurial Error</source>
         <translation>Mercurial Error</translation>
     </message>
@@ -35376,7 +35376,7 @@
         <translation>Seleziona il branch su cui filtrare</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="190"/>
         <source>All</source>
         <translation>Tutti</translation>
     </message>
@@ -35391,48 +35391,48 @@
         <translation>Mercurial Log (Outgoing)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="222"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="225"/>
         <source>Bookmarks</source>
         <translation type="unfinished">Segnalibri</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="117"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="120"/>
         <source>Press to refresh the list of changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="118"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="132"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="135"/>
         <source>Phase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="274"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="277"/>
         <source>Change the phase of the selected revisions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="276"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="279"/>
         <source>&lt;b&gt;Change Phase&lt;/b&gt;
 &lt;p&gt;This changes the phase of the selected revisions. The selected revisions have to have the same current phase.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="272"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="275"/>
         <source>Change Phase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1997"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2016"/>
         <source>Copy Changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2302"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2321"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished">Il progetto deve essere riletto. Farlo ora ?</translation>
     </message>
@@ -35442,42 +35442,42 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="266"/>
         <source>Copy the selected changesets to the current branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="281"/>
-        <source>Tag</source>
-        <translation type="unfinished">Tag</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="284"/>
+        <source>Tag</source>
+        <translation type="unfinished">Tag</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="287"/>
         <source>Tag the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2068"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2087"/>
         <source>Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="294"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="297"/>
         <source>Switch the working directory to the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="317"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="320"/>
         <source>Pull Large Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="319"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="322"/>
         <source>Pull large files for selected revisions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1135"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1146"/>
         <source>{0} (large file)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -35502,87 +35502,87 @@
         <translation type="unfinished">Premi per trovare la prossima occorrenza</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="128"/>
         <source>Find</source>
         <translation type="unfinished">Trova</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="126"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="129"/>
         <source>Filter</source>
         <translation type="unfinished">Filtro</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="172"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="175"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="178"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Segnalibri&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2443"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2462"/>
         <source>Find Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2443"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2462"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished">&apos;{0}&apos; non è stato trovato.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="134"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="211"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="214"/>
         <source>Draft</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="212"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="215"/>
         <source>Public</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="213"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="216"/>
         <source>Secret</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2165"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2184"/>
         <source>Pull Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="315"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="318"/>
         <source>Pull changes from a remote repository</source>
         <translation type="unfinished">Pull changes da un repository remoto</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="324"/>
-        <source>Push Selected Changes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="327"/>
-        <source>Push changes of the selected changeset and its ancestors to a remote repository</source>
+        <source>Push Selected Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="330"/>
-        <source>Push All Changes</source>
+        <source>Push changes of the selected changeset and its ancestors to a remote repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="333"/>
+        <source>Push All Changes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="336"/>
         <source>Push all changes to a remote repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2211"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2230"/>
         <source>Strip Changesets</source>
         <translation type="unfinished"></translation>
     </message>
@@ -35592,52 +35592,52 @@
         <translation type="obsolete">Recupero modifiche da un repository remoto</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="376"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="379"/>
         <source>Strip changesets from a repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="299"/>
-        <source>Define Bookmark...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="302"/>
+        <source>Define Bookmark...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="305"/>
         <source>Bookmark the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="304"/>
-        <source>Move Bookmark...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="307"/>
+        <source>Move Bookmark...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="310"/>
         <source>Move bookmark to the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2091"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2110"/>
         <source>Define Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2091"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2110"/>
         <source>Enter bookmark name for changeset &quot;{0}&quot;:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2134"/>
         <source>Move Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2134"/>
         <source>Select the bookmark to be moved  to changeset &quot;{0}&quot;:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2054"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2073"/>
         <source>Select bookmark to switch to (leave empty to use revision):</source>
         <translation type="unfinished"></translation>
     </message>
@@ -35652,143 +35652,143 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="175"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Latest Tag&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="156"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branch&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;{4}&lt;tr&gt;&lt;td&gt;&lt;b&gt;Message&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="163"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Origini&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="166"/>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Origini&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="169"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Children&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="266"/>
-        <source>Merge with Changeset</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="269"/>
+        <source>Merge with Changeset</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="272"/>
         <source>Merge the working directory with the selected changeset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="338"/>
-        <source>Create Changegroup</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="341"/>
+        <source>Create Changegroup</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="344"/>
         <source>Create a changegroup file containing the selected changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="343"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="346"/>
         <source>&lt;b&gt;Create Changegroup&lt;/b&gt;
 &lt;p&gt;This creates a changegroup file containing the selected revisions. If no revisions are selected, all changesets will be bundled. If one revision is selected, it will be interpreted as the base revision. Otherwise the lowest revision will be used as the base revision and all other revision will be bundled. If the dialog is showing outgoing changesets, all selected changesets will be bundled.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2302"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2321"/>
         <source>Apply Changegroup</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="355"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="358"/>
         <source>Apply the currently viewed changegroup file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="360"/>
-        <source>Sign Revisions</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="363"/>
+        <source>Sign Revisions</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="366"/>
         <source>Add a signature for the selected revisions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="365"/>
-        <source>Verify Signatures</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="368"/>
+        <source>Verify Signatures</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="371"/>
         <source>Verify all signatures there may be for the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="381"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="384"/>
         <source>Select All Entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="383"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="386"/>
         <source>Deselect All Entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1376"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1392"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1387"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1403"/>
         <source>&lt;a href=&quot;sbsdiff:{0}_{1}&quot;&gt;Side-by-Side Compare&lt;/a&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1523"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1539"/>
         <source>Pull Selected Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2487"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2506"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2497"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2516"/>
         <source>Differences to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2513"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2532"/>
         <source>Diff to Parent {0}{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2538"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2557"/>
         <source>There is no difference.</source>
         <translation type="unfinished">Non ci sono differenze.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2680"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2699"/>
         <source>Save Diff</source>
         <translation type="unfinished">Salva Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2648"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2667"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished">File Patch (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2665"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2684"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Il file  patch &lt;b&gt;{0}&lt;/b&gt; esiste già.Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2680"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2699"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere salvato.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
@@ -35798,7 +35798,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2486"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2505"/>
         <source>Generating differences ...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -35808,12 +35808,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="286"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="289"/>
         <source>Close Heads</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="289"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="292"/>
         <source>Close the selected heads</source>
         <translation type="unfinished"></translation>
     </message>
@@ -37851,22 +37851,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="206"/>
         <source>Remove Guards</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="206"/>
         <source>Do you really want to remove the selected guards?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="253"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="258"/>
         <source>Apply Guard Definitions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="253"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="258"/>
         <source>&lt;p&gt;The defined guards could not be applied.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -37927,7 +37927,7 @@
         <translation>Selezionare controlli</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesGuardsSelectionDialog.py" line="44"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesGuardsSelectionDialog.py" line="46"/>
         <source>Active Guards</source>
         <translation>Controlli attivi</translation>
     </message>
@@ -37950,7 +37950,7 @@
         <translation type="obsolete">Il processo {0}  non può essere avviato. Assicurarsi che sia nel percorso.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py" line="118"/>
         <source>Error: </source>
         <translation>Errore: </translation>
     </message>
@@ -38068,32 +38068,32 @@
         <translation type="obsolete">Il processo {0}  non può essere avviato. Assicurarsi che sia nel path.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="138"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="145"/>
         <source>no patches found</source>
         <translation type="unfinished">Modifiche non trovate</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="43"/>
-        <source>applied</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="45"/>
-        <source>guarded</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="46"/>
+        <source>applied</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="48"/>
+        <source>guarded</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="49"/>
         <source>missing</source>
         <translation>mancante</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="193"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="205"/>
         <source>unknown</source>
         <translation>sconosciuto</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="44"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="47"/>
         <source>not applied</source>
         <translation type="unfinished"></translation>
     </message>
@@ -38247,12 +38247,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="67"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="68"/>
         <source>Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="69"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="70"/>
         <source>Press to refresh the queues list</source>
         <translation type="unfinished"></translation>
     </message>
@@ -39016,27 +39016,27 @@
         <translation type="obsolete">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="49"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="52"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="51"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="54"/>
         <source>Press to refresh the list of shelves</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="60"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="63"/>
         <source>Restore selected shelve</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="62"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="65"/>
         <source>Delete selected shelves</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="64"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="67"/>
         <source>Delete all shelves</source>
         <translation type="unfinished"></translation>
     </message>
@@ -39051,7 +39051,7 @@
         <translation type="obsolete">Il processo {0}  non può essere avviato. Assicurarsi che sia nel percorso di ricerca.</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="266"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="280"/>
         <source>%n file(s) changed</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -39059,7 +39059,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="268"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="282"/>
         <source>%n line(s) inserted</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -39067,7 +39067,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="270"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="284"/>
         <source>%n line(s) deleted</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -39144,7 +39144,7 @@
 <context>
     <name>HgStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="310"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="314"/>
         <source>Mercurial Status</source>
         <translation>Mercurial Status</translation>
     </message>
@@ -39221,47 +39221,47 @@
         <translation>Premi per aggiornare lo stato</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="124"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="126"/>
         <source>Commit the selected changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="190"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="192"/>
         <source>Adjust column sizes</source>
         <translation type="unfinished">Adatta dimensione colonne</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="96"/>
         <source>added</source>
         <translation>aggiunto</translation>
     </message>
     <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="99"/>
+        <source>modified</source>
+        <translation>modificato</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="100"/>
+        <source>removed</source>
+        <translation>rimosso</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="101"/>
+        <source>not tracked</source>
+        <translation>non tracciato</translation>
+    </message>
+    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="97"/>
-        <source>modified</source>
-        <translation>modificato</translation>
+        <source>normal</source>
+        <translation>normale</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="98"/>
-        <source>removed</source>
-        <translation>rimosso</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="99"/>
-        <source>not tracked</source>
-        <translation>non tracciato</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="95"/>
-        <source>normal</source>
-        <translation>normale</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="96"/>
         <source>ignored</source>
         <translation>ignorato</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="102"/>
         <source>missing</source>
         <translation>mancante</translation>
     </message>
@@ -39276,37 +39276,37 @@
         <translation type="obsolete">Il processo {0}  non può essere avviato. Assicurarsi che sia nel path.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="494"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="506"/>
         <source>Commit</source>
         <translation>Commit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="660"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="672"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation>Non ci sono modifiche disponibili/selezionate da committare.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="558"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="570"/>
         <source>Add</source>
         <translation>Aggiungi</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="558"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="570"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation>Non ci sono elementi non sotto controllo disponibili/selezionati.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="622"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="634"/>
         <source>Revert</source>
         <translation>Inverti</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="581"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="593"/>
         <source>Remove</source>
         <translation>Rimuovi</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="622"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="634"/>
         <source>There are no missing entries available/selected.</source>
         <translation>Non ci sono elementi mancati disponibili/selezionati.</translation>
     </message>
@@ -39321,102 +39321,102 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="174"/>
         <source>Restore missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="416"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="428"/>
         <source>all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="494"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="506"/>
         <source>There are no entries selected to be committed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="640"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="652"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="125"/>
-        <source>Select all for commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="307"/>
-        <source>Mercurial Queue Repository Status</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="667"/>
-        <source>Side-by-Side Diff</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="667"/>
-        <source>Only one file with uncommitted changes must be selected.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="135"/>
-        <source>Add as Large Files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="140"/>
-        <source>Add as Normal Files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="168"/>
-        <source>Forget missing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="127"/>
-        <source>Unselect all from commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="134"/>
-        <source>Add the selected files</source>
+        <source>Select all for commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="311"/>
+        <source>Mercurial Queue Repository Status</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="679"/>
+        <source>Side-by-Side Diff</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="679"/>
+        <source>Only one file with uncommitted changes must be selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="137"/>
-        <source>Add the selected files as a large files using the &apos;Large Files&apos; extension</source>
+        <source>Add as Large Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="142"/>
+        <source>Add as Normal Files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="170"/>
+        <source>Forget missing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="129"/>
+        <source>Unselect all from commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="136"/>
+        <source>Add the selected files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="139"/>
+        <source>Add the selected files as a large files using the &apos;Large Files&apos; extension</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="144"/>
         <source>Add the selected files as a normal files using the &apos;Large Files&apos; extension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="150"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="152"/>
         <source>Shows the differences of the selected entry in a separate dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="153"/>
-        <source>Differences Side-By-Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="155"/>
+        <source>Differences Side-By-Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="157"/>
         <source>Shows the differences of the selected entry side-by-side in a separate dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="163"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="165"/>
         <source>Reverts the changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="172"/>
         <source>Forgets about the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
@@ -39426,37 +39426,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="174"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="176"/>
         <source>Restores the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="194"/>
         <source>Adjusts the width of all columns to their contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="179"/>
-        <source>Commit Merge</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="181"/>
-        <source>Commit all the merged changes.</source>
+        <source>Commit Merge</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="183"/>
-        <source>Abort Merge</source>
+        <source>Commit all the merged changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="185"/>
+        <source>Abort Merge</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="187"/>
         <source>Abort an uncommitted merge and lose all changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="761"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="779"/>
         <source>Merge</source>
         <translation type="unfinished">Fondi</translation>
     </message>
@@ -39626,152 +39626,152 @@
         <translation type="obsolete">Il processo {0}  non può essere avviato. Assicurarsi che sia nel path.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="234"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="236"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="238"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="240"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="242"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="244"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Message&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="248"/>
-        <source>empty repository</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="250"/>
+        <source>empty repository</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="252"/>
         <source>no revision checked out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="251"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="253"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Remarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="255"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="257"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branch&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="265"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Segnalibri&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="270"/>
-        <source>{0} modified</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="272"/>
-        <source>{0} added</source>
+        <source>{0} modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="274"/>
-        <source>{0} removed</source>
+        <source>{0} added</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="276"/>
-        <source>{0} renamed</source>
+        <source>{0} removed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="278"/>
-        <source>{0} copied</source>
+        <source>{0} renamed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="280"/>
-        <source>{0} deleted</source>
+        <source>{0} copied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="282"/>
-        <source>{0} unknown</source>
+        <source>{0} deleted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="284"/>
-        <source>{0} ignored</source>
+        <source>{0} unknown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="286"/>
+        <source>{0} ignored</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="288"/>
         <source>{0} unresolved</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="289"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="291"/>
         <source>{0} subrepos</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="292"/>
-        <source>Merge needed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="294"/>
-        <source>New Branch</source>
+        <source>Merge needed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="296"/>
-        <source>Head is closed</source>
+        <source>New Branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="298"/>
-        <source>No commit required</source>
+        <source>Head is closed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="300"/>
+        <source>No commit required</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="302"/>
         <source>New Branch Head</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="301"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="303"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Status&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="306"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="308"/>
         <source>current</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="321"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="323"/>
         <source>unknown status</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="322"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="324"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Update Status&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="327"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="329"/>
         <source>synched</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="331"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="333"/>
         <source>1 or more incoming changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="335"/>
         <source>%n outgoing changeset(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -39779,42 +39779,42 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="342"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="344"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Remote Status&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="349"/>
         <source>empty queue</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="351"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="353"/>
         <source>{0} applied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="354"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="356"/>
         <source>{0} unapplied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="357"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="359"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Queues Status&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="371"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="373"/>
         <source>&lt;p&gt;No status information available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="230"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="232"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="308"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="310"/>
         <source>%n new changeset(s)&lt;br/&gt;Update required</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -39822,7 +39822,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="312"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="314"/>
         <source>%n new changeset(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -39830,7 +39830,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="314"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="316"/>
         <source>%n branch head(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -39838,13 +39838,13 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="316"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="318"/>
         <source>{0}&lt;br/&gt;{1}&lt;br/&gt;Merge required</source>
         <comment>0 is changesets, 1 is branch heads</comment>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="336"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="338"/>
         <source>%n incoming bookmark(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -39852,7 +39852,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="339"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="341"/>
         <source>%n outgoing bookmark(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -39860,12 +39860,12 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="362"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="364"/>
         <source>No files to upload</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="364"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="366"/>
         <source>%n file(s) to upload</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -39873,7 +39873,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="368"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Large Files&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -39965,12 +39965,12 @@
         <translation type="obsolete">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="90"/>
         <source>Mercurial Branches List</source>
         <translation>Mercurial Branches List</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="91"/>
         <source>Status</source>
         <translation>Stato</translation>
     </message>
@@ -39985,62 +39985,62 @@
         <translation type="obsolete">Il processo {0}  non può essere avviato. Assicurarsi che sia nel path.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="200"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="211"/>
         <source>active</source>
         <translation>attivo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="216"/>
         <source>yes</source>
         <translation>si</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="42"/>
-        <source>&amp;Refresh</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="44"/>
+        <source>&amp;Refresh</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="46"/>
         <source>Press to refresh the list</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="278"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="292"/>
         <source>Switch to</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="347"/>
         <source>Close Branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="321"/>
         <source>Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="321"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished">Il progetto deve essere riletto. Farlo ora ?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="326"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="340"/>
         <source>The branch &quot;default&quot; cannot be closed. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="347"/>
         <source>&lt;p&gt;Shall the branch &lt;b&gt;{0}&lt;/b&gt; really be closed?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="380"/>
         <source>Close Branches</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="380"/>
         <source>Do you really want to close all listed branches?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -40815,7 +40815,7 @@
         <translation>Premi per rimuovere gli elementi selezionati</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="122"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="123"/>
         <source>&amp;Remove</source>
         <translation>&amp;Rimuovi</translation>
     </message>
@@ -40830,32 +40830,32 @@
         <translation>Rimuovi &amp;Tutto</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="105"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="106"/>
         <source>&amp;Open</source>
         <translation>&amp;Apri</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="108"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="109"/>
         <source>Open in New &amp;Tab</source>
         <translation>Apri in una nuova linguet&amp;ta</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="121"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="122"/>
         <source>&amp;Copy</source>
         <translation>&amp;Copia</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="111"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="112"/>
         <source>Open in New &amp;Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="114"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="115"/>
         <source>Open in New &amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="117"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="118"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation type="unfinished"></translation>
     </message>
@@ -40921,12 +40921,12 @@
         <translation>Schede chiuse</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryMenu.py" line="447"/>
+        <location filename="../WebBrowser/History/HistoryMenu.py" line="448"/>
         <source>Restore All Closed Tabs</source>
         <translation>Ricarica tutte le schede chiuse</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryMenu.py" line="450"/>
+        <location filename="../WebBrowser/History/HistoryMenu.py" line="451"/>
         <source>Clear List</source>
         <translation>Pulisci lista</translation>
     </message>
@@ -40952,12 +40952,12 @@
 <context>
     <name>HistoryTreeModel</name>
     <message>
-        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="64"/>
+        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="65"/>
         <source>Earlier Today</source>
         <translation>Precedentemente</translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="67"/>
+        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="68"/>
         <source>%n item(s)</source>
         <translation>
             <numerusform>%n elemento</numerusform>
@@ -41070,12 +41070,12 @@
 <context>
     <name>IbmWatsonEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="251"/>
+        <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="251"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
         <source>IBM Watson: No translation available.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -41090,12 +41090,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="243"/>
+        <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="231"/>
+        <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>
@@ -41104,102 +41104,102 @@
 <context>
     <name>IconEditorGrid</name>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="208"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="211"/>
         <source>Set Pixel</source>
         <translation>Imposta Pixel</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="209"/>
-        <source>Erase Pixel</source>
-        <translation>Cancella Pixel</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="210"/>
-        <source>Draw Line</source>
-        <translation>Disegna linea</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="211"/>
-        <source>Draw Rectangle</source>
-        <translation>Disegna rettangolo</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="212"/>
-        <source>Draw Filled Rectangle</source>
-        <translation>Disegna rettangolo pieno</translation>
+        <source>Erase Pixel</source>
+        <translation>Cancella Pixel</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="213"/>
-        <source>Draw Circle</source>
-        <translation>Disegna circonferenza</translation>
+        <source>Draw Line</source>
+        <translation>Disegna linea</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="214"/>
-        <source>Draw Filled Circle</source>
-        <translation>Disegna circonferenza piena</translation>
+        <source>Draw Rectangle</source>
+        <translation>Disegna rettangolo</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="215"/>
-        <source>Draw Ellipse</source>
-        <translation>Disegna ellisse</translation>
+        <source>Draw Filled Rectangle</source>
+        <translation>Disegna rettangolo pieno</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="216"/>
-        <source>Draw Filled Ellipse</source>
-        <translation>Desegna ellisse piena</translation>
+        <source>Draw Circle</source>
+        <translation>Disegna circonferenza</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="217"/>
+        <source>Draw Filled Circle</source>
+        <translation>Disegna circonferenza piena</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="218"/>
+        <source>Draw Ellipse</source>
+        <translation>Disegna ellisse</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="219"/>
+        <source>Draw Filled Ellipse</source>
+        <translation>Desegna ellisse piena</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="220"/>
         <source>Fill Region</source>
         <translation>Riempi regione</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="846"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="853"/>
         <source>Cut Selection</source>
         <translation>Taglia selezione</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="905"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="912"/>
         <source>Paste</source>
         <translation>Incolla</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="905"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="912"/>
         <source>&lt;p&gt;The clipboard image is larger than the current image.&lt;br/&gt;Paste as new image?&lt;/p&gt;</source>
         <translation>&lt;p&gt;L&apos;immagine nella clipboard è più grande dell&apos;immagine attuale.&lt;br/&gt;Incolla come nuova immagine?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="918"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="925"/>
         <source>Paste Clipboard</source>
         <translation>Incolla Clipboard</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="936"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="943"/>
         <source>Pasting Image</source>
         <translation>Incollaggio Immagine</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="936"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="943"/>
         <source>Invalid image data in clipboard.</source>
         <translation>Dati immagine nella clipboard non validi.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="947"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="954"/>
         <source>Paste Clipboard as New Image</source>
         <translation>Incolla Clipboard come Nuova Immagine</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="976"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="983"/>
         <source>Clear Image</source>
         <translation>Pulisci Immagine</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="996"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="1003"/>
         <source>Resize Image</source>
         <translation>Ridimensiona immagine</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="1023"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="1030"/>
         <source>Convert to Grayscale</source>
         <translation>Converti a scala di grigio</translation>
     </message>
@@ -41207,57 +41207,57 @@
 <context>
     <name>IconEditorPalette</name>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="48"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="49"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This is a 1:1 preview of the current icon.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Anteprima&lt;/b&gt;&lt;p&gt;Questa è un&apos;anteprima 1:1 dell&apos;icona attuale.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="58"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="60"/>
         <source>&lt;b&gt;Current Color&lt;/b&gt;&lt;p&gt;This is the currently selected color used for drawing.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Colore corrente&lt;/b&gt;&lt;p&gt;Questo e&apos; il colore selezionato per il disegno.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="66"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="69"/>
         <source>&lt;b&gt;Current Color Value&lt;/b&gt;&lt;p&gt;This is the currently selected color value used for drawing.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Valore colore corrente&lt;/b&gt;&lt;p&gt;Questo è il valore del colore selezionato per disegnare.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="73"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="76"/>
         <source>Select Color</source>
         <translation>Seleziona colore</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="74"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="77"/>
         <source>&lt;b&gt;Select Color&lt;/b&gt;&lt;p&gt;Select the current drawing color via a color selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Seleziona colore&lt;/b&gt;&lt;p&gt;Seleziona il colore per disegnare con un dialogo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="84"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="87"/>
         <source>&lt;b&gt;Select alpha channel value&lt;/b&gt;&lt;p&gt;Select the value for the alpha channel of the current color.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Seleziona il valore dell&apos;alpha channel&lt;/b&gt;&lt;p&gt;Selezione il valore per l&apos;alpha channel per il colore corrente&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="92"/>
-        <source>Compositing</source>
-        <translation>Compositing</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorPalette.py" line="95"/>
+        <source>Compositing</source>
+        <translation>Compositing</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorPalette.py" line="98"/>
         <source>Replace</source>
         <translation>Sostituisci</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="97"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="100"/>
         <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Replace the existing pixel with a new color.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sostituisci&lt;/b&gt;&lt;p&gt;Sostituisci i pixel esistenti con un nuovo colore.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="103"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="106"/>
         <source>Blend</source>
         <translation>Mischia</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="105"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="108"/>
         <source>&lt;b&gt;Blend&lt;/b&gt;&lt;p&gt;Blend the new color over the existing pixel.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mischia&lt;/b&gt;&lt;p&gt;l.&lt;/p&gt;Mischia il nuovo colore sui pixel esistenti.&lt;/p&gt;</translation>
     </message>
@@ -41265,1037 +41265,1037 @@
 <context>
     <name>IconEditorWindow</name>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="125"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="126"/>
         <source>Windows Bitmap File (*.bmp)</source>
         <translation>Windows Bitmap File (*.bmp)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="128"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="129"/>
         <source>Graphic Interchange Format File (*.gif)</source>
         <translation>Graphic Interchange Format File (*.gif)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="130"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="131"/>
         <source>Windows Icon File (*.ico)</source>
         <translation>Windows Icon File (*.ico)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="132"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="133"/>
         <source>JPEG File (*.jpg)</source>
         <translation>JPEG File (*.jpg)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="135"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="136"/>
         <source>Portable Bitmap File (*.pbm)</source>
         <translation>Portable Bitmap File (*.pbm)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="137"/>
-        <source>Portable Graymap File (*.pgm)</source>
-        <translation>Portable Graymap File (*.pgm)</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="138"/>
-        <source>Portable Network Graphics File (*.png)</source>
-        <translation>Portable Network Graphics File (*.png)</translation>
+        <source>Portable Graymap File (*.pgm)</source>
+        <translation>Portable Graymap File (*.pgm)</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="139"/>
+        <source>Portable Network Graphics File (*.png)</source>
+        <translation>Portable Network Graphics File (*.png)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="140"/>
         <source>Portable Pixmap File (*.ppm)</source>
         <translation>Portable Pixmap File (*.ppm)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="141"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="142"/>
         <source>Scalable Vector Graphics File (*.svg)</source>
         <translation>Scalable Vector Graphics File (*.svg)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="145"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="146"/>
         <source>TIFF File (*.tif)</source>
         <translation>TIFF File (*.tif)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="149"/>
-        <source>X11 Bitmap File (*.xbm)</source>
-        <translation>X11 Bitmap File (*.xbm)</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="150"/>
+        <source>X11 Bitmap File (*.xbm)</source>
+        <translation>X11 Bitmap File (*.xbm)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="151"/>
         <source>X11 Pixmap File (*.xpm)</source>
         <translation>X11 Pixmap File (*.xpm)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="161"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="162"/>
         <source>All Files (*)</source>
         <translation>Tutti i file (*)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
         <source>New</source>
         <translation>Nuovo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
         <source>&amp;New</source>
         <translation>&amp;Nuova</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="199"/>
-        <source>Create a new icon</source>
-        <translation>Crea una nuova icona</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="200"/>
+        <source>Create a new icon</source>
+        <translation>Crea una nuova icona</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="201"/>
         <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;This creates a new icon.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nuova&lt;/b&gt;&lt;p&gt;Crea una nuova icona.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="207"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="208"/>
         <source>New Window</source>
         <translation>Nuova finestra</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="207"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="208"/>
         <source>New &amp;Window</source>
         <translation>Nuova &amp;Finestra</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="212"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="213"/>
         <source>Open a new icon editor window</source>
         <translation>Apri una nuova finestra dell&apos;editor di icone</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="214"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="215"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new icon editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nuova finestra&lt;/b&gt;&lt;p&gt;Apre una nuova finestra dell&apos;editor di icone.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
         <source>Open</source>
         <translation>Apri</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
         <source>&amp;Open...</source>
         <translation>&amp;Apri...</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="227"/>
-        <source>Open an icon file for editing</source>
-        <translation>Apri un file icona per la modifica</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="228"/>
+        <source>Open an icon file for editing</source>
+        <translation>Apri un file icona per la modifica</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="229"/>
         <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new icon file for editing. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Apri file&lt;/b&gt;&lt;p&gt;Apre un nuovo file icona per la modifica. Apre un dialogo per selezionare il fiel.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
         <source>Save</source>
         <translation>Salva</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
         <source>&amp;Save</source>
         <translation>&amp;Salva</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation>Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="242"/>
-        <source>Save the current icon</source>
-        <translation>Salva l&apos;icona corrente</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="243"/>
+        <source>Save the current icon</source>
+        <translation>Salva l&apos;icona corrente</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="244"/>
         <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of the icon editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Salva il contenuto della finestra dell&apos;editor di icone.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
         <source>Save As</source>
         <translation>Salva come</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
         <source>Save &amp;As...</source>
         <translation>S&amp;alva come...</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Ctrl+Shift+S</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="256"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="257"/>
         <source>Save the current icon to a new file</source>
         <translation>Salva l&apos;icona corrente in un nuovo file</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="258"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="259"/>
         <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current icon to a new file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Salva come &lt;/b&gt;&lt;p&gt;Salva l&apos;icona corrente in un nuovo file.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
         <source>Close</source>
         <translation>Chiudi</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
         <source>&amp;Close</source>
         <translation>&amp;Chiudi</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="271"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="272"/>
         <source>Close the current icon editor window</source>
         <translation>Chiudi la finestra corrente dell&apos;editor di icone</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="273"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="274"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current icon editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Chiudi&lt;/b&gt;&lt;p&gt;Chiudi la finestra corrente dell&apos;editor di icone.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="280"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="281"/>
         <source>Close All</source>
         <translation>Chiudi tutti</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="280"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="281"/>
         <source>Close &amp;All</source>
         <translation>Chiudi &amp;tutti</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="284"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="285"/>
         <source>Close all icon editor windows</source>
         <translation>Chiudi tutte le finestre dell&apos;editor di icone</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="286"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="287"/>
         <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all icon editor windows except the first one.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Chiudi tutti&lt;/b&gt;&lt;p&gt;Chiudi tutte le finestre dell&apos;editor di icone esclusa la prima.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
         <source>Quit</source>
         <translation>Esci</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
         <source>&amp;Quit</source>
         <translation>&amp;Esci</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="312"/>
-        <source>Quit the icon editor</source>
-        <translation>Esci dell&apos;editor di icone</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="313"/>
+        <source>Quit the icon editor</source>
+        <translation>Esci dell&apos;editor di icone</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="314"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the icon editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Esci&lt;/b&gt;&lt;p&gt;Esci dall&apos;editor di icone.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>Undo</source>
         <translation>Undo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>&amp;Undo</source>
         <translation>&amp;Undo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="332"/>
-        <source>Undo the last change</source>
-        <translation>Annulla l&apos;ultima modifica</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="333"/>
+        <source>Undo the last change</source>
+        <translation>Annulla l&apos;ultima modifica</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="334"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Annulla&lt;/b&gt;&lt;p&gt;Annulla l&apos;ultima modifica fatta.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
         <source>Redo</source>
         <translation>Rifai</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
         <source>&amp;Redo</source>
         <translation>&amp;Rifai</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="346"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="347"/>
         <source>Redo the last change</source>
         <translation>Rifai ultima modifica</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="347"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="348"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rifai&lt;/b&gt;&lt;p&gt;Rifai l&apos;ultima modifica fatta.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Cut</source>
         <translation>Taglia</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Cu&amp;t</source>
         <translation>&amp;Taglia</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="361"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="362"/>
         <source>Cut the selection</source>
         <translation>Taglia la selezione</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="362"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="363"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Taglia&lt;/b&gt;&lt;p&gt;Taglia l&apos;area selezionata dell&apos;immagine nella clipboard.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>Copy</source>
         <translation>Copia</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>&amp;Copy</source>
         <translation>&amp;Copia</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="376"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="377"/>
         <source>Copy the selection</source>
         <translation>Copia la selezione</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="377"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="378"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Copia&lt;/b&gt;&lt;p&gt;Copia l&apos;area selezionata dell&apos;immagine nella clipboard.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>Paste</source>
         <translation>Incolla</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>&amp;Paste</source>
         <translation>&amp;Incolla</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="391"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="392"/>
         <source>Paste the clipboard image</source>
         <translation>Incolla l&apos;immagine nella clipboard</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="392"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="393"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Incolla&lt;/b&gt;&lt;p&gt;Incolla l&apos;immagine dalla clipboard.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="399"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
         <source>Paste as New</source>
         <translation>Incolla come nuova</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="399"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
         <source>Paste as &amp;New</source>
         <translation>Incolla come &amp;Nuova</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="403"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="404"/>
         <source>Paste the clipboard image replacing the current one</source>
         <translation>Incolla l&apos;immagine dalla clipboard sostituendo l&apos;attuale</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="405"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="406"/>
         <source>&lt;b&gt;Paste as New&lt;/b&gt;&lt;p&gt;Paste the clipboard image replacing the current one.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Incolla come nuova&lt;/b&gt;&lt;p&gt;Incolla l&apos;immagine della clipboard sostituendo l&apos;attuale.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
         <source>Clear</source>
         <translation>Pulisci</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
         <source>Cl&amp;ear</source>
         <translation>Pu&amp;lisci</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="419"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="420"/>
         <source>Clear the icon image</source>
         <translation>Pulisci l&apos;immagine dell&apos;icona</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="420"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="421"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Clear the icon image and set it to be completely transparent.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Pulisci&lt;/b&gt;&lt;p&gt;Pulisci l&apos;immagine dell&apos;icona e impostala per essere completamente trasparente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
         <source>Select All</source>
         <translation>Seleziona tutti</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
         <source>&amp;Select All</source>
         <translation>&amp;Seleziona tutto</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation>Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="434"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="435"/>
         <source>Select the complete icon image</source>
         <translation>Seleziona l&apos;immagine icona completa</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="436"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="437"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Selects the complete icon image.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Seleziona tutto&lt;/b&gt;&lt;p&gt;Selezione l&apos;immagine icona completa.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="444"/>
         <source>Change Size</source>
         <translation>Cambia dimensione</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="444"/>
         <source>Change Si&amp;ze...</source>
         <translation>Cambia Dimen&amp;sione...</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="449"/>
-        <source>Change the icon size</source>
-        <translation>Cambia la dimensione dell&apos;icona</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="450"/>
+        <source>Change the icon size</source>
+        <translation>Cambia la dimensione dell&apos;icona</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="451"/>
         <source>&lt;b&gt;Change Size...&lt;/b&gt;&lt;p&gt;Changes the icon size.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cambia dimensione...&lt;/b&gt;&lt;p&gt;Cambia la dimensione dell&apos;icona.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="457"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="458"/>
         <source>Grayscale</source>
         <translation>Scala di grigio</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="457"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="458"/>
         <source>&amp;Grayscale</source>
         <translation>Scala di &amp;grigio</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="463"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="464"/>
         <source>Change the icon to grayscale</source>
         <translation>Cambia l&apos;icona a scala di grigio</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="465"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="466"/>
         <source>&lt;b&gt;Grayscale&lt;/b&gt;&lt;p&gt;Changes the icon to grayscale.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Scala di grigio&lt;/b&gt;&lt;p&gt;Cambia l&apos;icona a scala di grigio.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
         <source>Zoom in</source>
         <translation>Ingrandisci</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
         <source>Zoom &amp;in</source>
         <translation>Ingrand&amp;isci</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="500"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="501"/>
         <source>Zoom in on the icon</source>
         <translation>Ingrandisci l&apos;icona</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="501"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="502"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the icon. This makes the grid bigger.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ingrandisci&lt;/b&gt;&lt;p&gt;Ingrandisci l&apos;icona. Rende la griglia più grande.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
         <source>Zoom out</source>
         <translation>Riduci</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
         <source>Zoom &amp;out</source>
         <translation>&amp;Riduci</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="514"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="515"/>
         <source>Zoom out on the icon</source>
         <translation>Riduci icona</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="515"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="516"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the icon. This makes the grid smaller.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Riduci&lt;/b&gt;&lt;p&gt;Riduce l&apos;icona. Rende la griglia più piccola.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
         <source>Zoom reset</source>
         <translation>Reset zoom</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
         <source>Zoom &amp;reset</source>
         <translation>&amp;Reset zoom</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="538"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="539"/>
         <source>Show Grid</source>
         <translation>Mostra griglia</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="538"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="539"/>
         <source>Show &amp;Grid</source>
         <translation>Mostra &amp;Griglia</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="544"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="545"/>
         <source>Toggle the display of the grid</source>
         <translation>Inverti la visualizzazione della griglia</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="546"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="547"/>
         <source>&lt;b&gt;Show Grid&lt;/b&gt;&lt;p&gt;Toggle the display of the grid.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mostra griglia&lt;/b&gt;&lt;p&gt;Inverte la visualizzazione della griglia.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="565"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
         <source>Freehand</source>
         <translation>Mano libera</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="565"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
         <source>&amp;Freehand</source>
         <translation>&amp;Mano libera</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="571"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="572"/>
         <source>&lt;b&gt;Free hand&lt;/b&gt;&lt;p&gt;Draws non linear lines.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mano libera&lt;/b&gt;&lt;p&gt;Disegna linee non rette.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="580"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="581"/>
         <source>Color Picker</source>
         <translation>Selezionatore colore</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="580"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="581"/>
         <source>&amp;Color Picker</source>
         <translation>Selezionatore &amp;Colore</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="586"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="587"/>
         <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Selezionatore colore&lt;/b&gt;&lt;p&gt;Il colore del pixel clickato diventerà il colore di disegno corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="597"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
         <source>Rectangle</source>
         <translation>Rettangolo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="597"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
         <source>&amp;Rectangle</source>
         <translation>&amp;Rettangolo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="603"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="604"/>
         <source>&lt;b&gt;Rectangle&lt;/b&gt;&lt;p&gt;Draw a rectangle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rettangolo&lt;/b&gt;&lt;p&gt;Disegna un rettangolo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="612"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="613"/>
         <source>Filled Rectangle</source>
         <translation>Rettangolo pieno</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="612"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="613"/>
         <source>F&amp;illed Rectangle</source>
         <translation>Rettangolo p&amp;ieno</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="618"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="619"/>
         <source>&lt;b&gt;Filled Rectangle&lt;/b&gt;&lt;p&gt;Draw a filled rectangle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rettangolo pieno&lt;/b&gt;&lt;p&gt;Disegna un rettangolo pieno.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="628"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
         <source>Circle</source>
         <translation>Circonferenza</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="634"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="635"/>
         <source>&lt;b&gt;Circle&lt;/b&gt;&lt;p&gt;Draw a circle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Circonferenza&lt;/b&gt;&lt;p&gt;Disegna una circonferenza.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="643"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="644"/>
         <source>Filled Circle</source>
         <translation>Circonferenza piena</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="643"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="644"/>
         <source>Fille&amp;d Circle</source>
         <translation>Circonfernza &amp;Piena</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="649"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="650"/>
         <source>&lt;b&gt;Filled Circle&lt;/b&gt;&lt;p&gt;Draw a filled circle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Circonferenza piena&lt;/b&gt;&lt;p&gt;Disegna una circonferenza piena.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="659"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
         <source>Ellipse</source>
         <translation>Ellisse</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="659"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
         <source>&amp;Ellipse</source>
         <translation>&amp;Ellisse</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="665"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="666"/>
         <source>&lt;b&gt;Ellipse&lt;/b&gt;&lt;p&gt;Draw an ellipse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ellisse&lt;/b&gt;&lt;p&gt;Disegna un&apos;ellisse.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="674"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="675"/>
         <source>Filled Ellipse</source>
         <translation>Ellisse piena</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="674"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="675"/>
         <source>Fille&amp;d Elli&amp;pse</source>
         <translation>Ellisse &amp;piena</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="680"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="681"/>
         <source>&lt;b&gt;Filled Ellipse&lt;/b&gt;&lt;p&gt;Draw a filled ellipse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ellisse piena&lt;/b&gt;&lt;p&gt;Disegna una ellisse piena.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="690"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="691"/>
         <source>Flood Fill</source>
         <translation>Flood Fill</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="690"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="691"/>
         <source>Fl&amp;ood Fill</source>
         <translation>Fl&amp;ood Fill</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="696"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="697"/>
         <source>&lt;b&gt;Flood Fill&lt;/b&gt;&lt;p&gt;Fill adjoining pixels with the same color with the current color.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Flood Fill&lt;/b&gt;&lt;p&gt;Colora i pixel adiacenti dello stesso colore con il colore corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="706"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
         <source>Line</source>
         <translation>Linea</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="706"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
         <source>&amp;Line</source>
         <translation>&amp;Linea</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="712"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="713"/>
         <source>&lt;b&gt;Line&lt;/b&gt;&lt;p&gt;Draw a line.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Linea&lt;/b&gt;&lt;p&gt;Disegna una linea.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="721"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
         <source>Eraser (Transparent)</source>
         <translation>Cancellino (Trasparente)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="721"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
         <source>Eraser (&amp;Transparent)</source>
         <translation>Cancellino (&amp;Trasparente)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="727"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="728"/>
         <source>&lt;b&gt;Eraser (Transparent)&lt;/b&gt;&lt;p&gt;Erase pixels by setting them to transparent.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cancellino (Trasparente)&lt;/b&gt;&lt;p&gt;Cancella i pixel mettondoli a trasparente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="736"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="737"/>
         <source>Rectangular Selection</source>
         <translation>Selezione rettangolare</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="753"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="754"/>
         <source>Rect&amp;angular Selection</source>
         <translation>Selezione rett&amp;angolare</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="742"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="743"/>
         <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Selezione rettangolare&lt;/b&gt;&lt;p&gt;Seleziona una sezione rettangolare dell&apos;icona usando il mouse.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="753"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="754"/>
         <source>Circular Selection</source>
         <translation>Selezione circolare</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="759"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="760"/>
         <source>&lt;b&gt;Circular Selection&lt;/b&gt;&lt;p&gt;Select a circular section of the icon using the mouse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Selezione circolare&lt;/b&gt;&lt;p&gt;Seleziona una sezione circolare dell&apos;icona usando il mouse.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="776"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
         <source>About</source>
         <translation>About</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="776"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
         <source>&amp;About</source>
         <translation>&amp;About</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="780"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="781"/>
         <source>Display information about this software</source>
         <translation>Mostra informazioni su questo software</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="782"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="783"/>
         <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="../IconEditor/IconEditorWindow.py" line="788"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
         <source>About Qt</source>
         <translation>About Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="788"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
         <source>About &amp;Qt</source>
         <translation>About &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="792"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="793"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Mostra informazioni sulla libreria Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="794"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="795"/>
         <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="../IconEditor/IconEditorWindow.py" line="801"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
         <source>What&apos;s This?</source>
         <translation>Cos&apos;è questo ?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="801"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
         <source>&amp;What&apos;s This?</source>
         <translation>C&amp;os&apos;è Questo ?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="801"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="807"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="808"/>
         <source>Context sensitive help</source>
         <translation>Help sensibile al contesto</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="808"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="809"/>
         <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;In modalità What&apos;s This?, il cursore del mouse mostra una freccia con un punto di domanda ed è possibile premdere sugli elementi dell&apos;interfaccia per avere una breve descrizione di cosa fanno e di come usarli. Nei dialoghi questa funzionalità può essere utilizzata tramite il pulsante di help sensibile al contesto nella barra del titolo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="825"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="826"/>
         <source>&amp;File</source>
         <translation>&amp;File</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="842"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="843"/>
         <source>&amp;Edit</source>
         <translation>&amp;Edita</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="858"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="859"/>
         <source>&amp;View</source>
         <translation>&amp;Visualizza</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="866"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="867"/>
         <source>&amp;Tools</source>
         <translation>&amp;Tools</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="885"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="886"/>
         <source>&amp;Help</source>
         <translation>&amp;Help</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="895"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="896"/>
         <source>File</source>
         <translation>File</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="909"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="910"/>
         <source>Edit</source>
         <translation>Modifica</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="922"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="923"/>
         <source>View</source>
         <translation>Visualizza</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="927"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="928"/>
         <source>Tools</source>
         <translation>Tools</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="945"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="946"/>
         <source>Help</source>
         <translation>Aiuto</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="959"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="960"/>
         <source>&lt;p&gt;This part of the status bar displays the icon size.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Questa parte della barra di stato mostra le dimensioni dell&apos;icona.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="966"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="967"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position.&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="../IconEditor/IconEditorWindow.py" line="1062"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1069"/>
         <source>Open icon file</source>
         <translation>Apri file icona</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1112"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1119"/>
         <source>Save icon file</source>
         <translation>Salva file icona</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1201"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1208"/>
         <source>Icon saved</source>
         <translation>Icona salvata</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1216"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1223"/>
         <source>Untitled</source>
         <translation>Senza titolo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1227"/>
         <source>Icon Editor</source>
         <translation>Editor di icone</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="134"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="135"/>
         <source>Multiple-Image Network Graphics File (*.mng)</source>
         <translation>Multiple-Image Network Graphics File (*.mng)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="528"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="529"/>
         <source>Reset the zoom of the icon</source>
         <translation>Reset dello zoom dell&apos;icona</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="530"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="531"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the icon. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Reset zoom&lt;/b&gt;&lt;p&gt;Resetta lo zoom dell&apos;icona. Imposta il fattore di zoom al 100%.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="136"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="137"/>
         <source>Paintbrush Bitmap File (*.pcx)</source>
         <translation>Portable Bitmap File (*.pbm)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="140"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="141"/>
         <source>Silicon Graphics Image File (*.sgi)</source>
         <translation>Silicon Graphics Image File (*.sgi)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="144"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="145"/>
         <source>Targa Graphic File (*.tga)</source>
         <translation>Targa Graphic File (*.tga)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1148"/>
-        <source>The file &apos;{0}&apos; does not exist.</source>
-        <translation>Il file {0} non esiste.</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="1155"/>
+        <source>The file &apos;{0}&apos; does not exist.</source>
+        <translation>Il file {0} non esiste.</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1162"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation>Impossibile leggere il file {0}:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1189"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1196"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation>Impossibile scrivere il file {0}:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1227"/>
         <source>{0}[*] - {1}</source>
         <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1112"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1119"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1241"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1248"/>
         <source>The icon image has unsaved changes.</source>
         <translation>L&apos;icona ha delle modifiche non salvate.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="133"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="134"/>
         <source>JPEG File (*.jpeg)</source>
         <translation>Flusso JPEG (*.jpeg)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="142"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="143"/>
         <source>Compressed Scalable Vector Graphics File (*.svgz)</source>
         <translation>Flusso Compressed Scalable Vector Graphics (*.svgz)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="146"/>
-        <source>TIFF File (*.tiff)</source>
-        <translation>Flusso TIFF (*.tiff)</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="147"/>
+        <source>TIFF File (*.tiff)</source>
+        <translation>Flusso TIFF (*.tiff)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="148"/>
         <source>WAP Bitmap File (*.wbmp)</source>
         <translation>Flusso WAP Bipmap (*.wbmp)</translation>
     </message>
@@ -42315,57 +42315,57 @@
         <translation type="obsolete">L&apos;editor di icone di eric6 è un semplice componente per modificare le icone.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="293"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="294"/>
         <source>Close Others</source>
         <translation type="unfinished">Chiudi altri</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="297"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="298"/>
         <source>Close all other icon editor windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="299"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="300"/>
         <source>&lt;b&gt;Close Others&lt;/b&gt;&lt;p&gt;Closes all other icon editor windows.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="148"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="149"/>
         <source>WebP Image File (*.webp)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="126"/>
-        <source>Windows Cursor File (*.cur)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="127"/>
+        <source>Windows Cursor File (*.cur)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="128"/>
         <source>DirectDraw-Surface File (*.dds)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="129"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="130"/>
         <source>Apple Icon File (*.icns)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="131"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="132"/>
         <source>JPEG2000 File (*.jp2)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1241"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1248"/>
         <source>eric Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1331"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1338"/>
         <source>About eric Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1331"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1338"/>
         <source>The eric Icon Editor is a simple editor component to perform icon drawing tasks.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -42635,22 +42635,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="175"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="176"/>
         <source>Include Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="175"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="176"/>
         <source>Select Include Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="388"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="391"/>
         <source>Undefine Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="388"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="391"/>
         <source>Enter a variable name to be undefined:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -43161,52 +43161,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="70"/>
+        <location filename="../UI/InstallInfoDialog.py" line="71"/>
         <source>Yes</source>
         <translation type="unfinished">Si</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="70"/>
+        <location filename="../UI/InstallInfoDialog.py" line="71"/>
         <source>No</source>
         <translation type="unfinished">No</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="74"/>
+        <location filename="../UI/InstallInfoDialog.py" line="75"/>
         <source>&apos;eric-ide&apos; was installed from PyPI using the pip command.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="80"/>
+        <location filename="../UI/InstallInfoDialog.py" line="81"/>
         <source>The information shown in this dialog was guessed at the first start of eric.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="98"/>
+        <location filename="../UI/InstallInfoDialog.py" line="99"/>
         <source>Load Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="98"/>
+        <location filename="../UI/InstallInfoDialog.py" line="99"/>
         <source>&lt;p&gt;The file containing the install information could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="150"/>
+        <location filename="../UI/InstallInfoDialog.py" line="151"/>
         <source>Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="150"/>
+        <location filename="../UI/InstallInfoDialog.py" line="151"/>
         <source>The install information was edited. Unsaved changes will be lost. Save first?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="187"/>
+        <location filename="../UI/InstallInfoDialog.py" line="188"/>
         <source>Save Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="187"/>
+        <location filename="../UI/InstallInfoDialog.py" line="188"/>
         <source>&lt;p&gt;The file containing the install information could not be written.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -43216,17 +43216,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="60"/>
+        <location filename="../UI/InstallInfoDialog.py" line="61"/>
         <source>Installed as Administrator:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="62"/>
+        <location filename="../UI/InstallInfoDialog.py" line="63"/>
         <source>Installed with sudo:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="92"/>
+        <location filename="../UI/InstallInfoDialog.py" line="93"/>
         <source>unknown</source>
         <translation type="unfinished"></translation>
     </message>
@@ -43236,7 +43236,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="86"/>
+        <location filename="../UI/InstallInfoDialog.py" line="87"/>
         <source>The installation information was provided by the user.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -43246,22 +43246,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="254"/>
+        <location filename="../UI/InstallInfoDialog.py" line="255"/>
         <source>Upgrade Instructions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="200"/>
+        <location filename="../UI/InstallInfoDialog.py" line="201"/>
         <source>Delete Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="200"/>
+        <location filename="../UI/InstallInfoDialog.py" line="201"/>
         <source>Do you really want to delete the installation information? It will be recreated at the next start.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="227"/>
+        <location filename="../UI/InstallInfoDialog.py" line="228"/>
         <source>Perform the following step(s) with Administrator privileges.
 </source>
         <translation type="unfinished"></translation>
@@ -44504,62 +44504,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="189"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="191"/>
         <source>Edit Identity</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="172"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="174"/>
         <source>The identity must contain at least one nick name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="189"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="191"/>
         <source>The identity must have a real name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="237"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="239"/>
         <source>Add Identity</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="287"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="289"/>
         <source>Identity Name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="297"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="299"/>
         <source>An identity named &lt;b&gt;{0}&lt;/b&gt; already exists. You must provide a different name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="312"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="314"/>
         <source>The identity has to have a name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="312"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="314"/>
         <source>Copy Identity</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="297"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="299"/>
         <source>Rename Identity</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="336"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="338"/>
         <source>This identity is in use. If you remove it, the network settings using it will fall back to the default identity. Should it be deleted anyway?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="341"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="343"/>
         <source>Do you really want to delete all information for this identity?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="344"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="346"/>
         <source>Delete Identity</source>
         <translation type="unfinished"></translation>
     </message>
@@ -44569,12 +44569,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="477"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="480"/>
         <source>Press to show the password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="471"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="474"/>
         <source>Press to hide the password</source>
         <translation type="unfinished"></translation>
     </message>
@@ -44680,22 +44680,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="254"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="258"/>
         <source>Yes</source>
         <translation type="unfinished">Si</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="256"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="260"/>
         <source>No</source>
         <translation type="unfinished">No</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="185"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="189"/>
         <source>Delete Channel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="185"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="189"/>
         <source>Do you really want to delete channel &lt;b&gt;{0}&lt;/b&gt;?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -44811,7 +44811,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="346"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="348"/>
         <source>Press to connect to the selected network</source>
         <translation type="unfinished"></translation>
     </message>
@@ -44841,57 +44841,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="434"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="436"/>
         <source>Save Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="417"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="419"/>
         <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="434"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="436"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="452"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="454"/>
         <source>Error saving Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="452"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="454"/>
         <source>&lt;p&gt;The messages contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="465"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="467"/>
         <source>Copy</source>
         <translation type="unfinished">Copia</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="469"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="471"/>
         <source>Cut all</source>
         <translation type="unfinished">Taglia tutto</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="472"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="474"/>
         <source>Copy all</source>
         <translation type="unfinished">Copia tutto</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="476"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="478"/>
         <source>Clear</source>
         <translation type="unfinished">Pulisci</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="480"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="482"/>
         <source>Save</source>
         <translation type="unfinished">Salva</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="341"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="343"/>
         <source>Press to disconnect from the network</source>
         <translation type="unfinished"></translation>
     </message>
@@ -45341,253 +45341,253 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="244"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="245"/>
         <source>Disconnect from Server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="244"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="245"/>
         <source>&lt;p&gt;Do you really want to disconnect from &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;&lt;p&gt;All channels will be closed.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="186"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="187"/>
         <source>SSL Connection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="186"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="187"/>
         <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="564"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="565"/>
         <source>Info</source>
         <translation type="unfinished">Info</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="219"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="220"/>
         <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="230"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="231"/>
         <source>Looking for server {0} (port {1})...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="253"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="254"/>
         <source>Disconnecting from server {0}...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="519"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="520"/>
         <source>Server found,connecting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="528"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="529"/>
         <source>Connected,logging in...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="564"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="565"/>
         <source>Server disconnected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="611"/>
         <source>Message Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="611"/>
         <source>Unknown message received from server:&lt;br/&gt;{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="676"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="677"/>
         <source>Notice</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="694"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="695"/>
         <source>Mode</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="701"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="702"/>
         <source>You have left channel {0}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="712"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="713"/>
         <source>You are now known as {0}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="717"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="718"/>
         <source>User {0} is now known as {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="727"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="728"/>
         <source>Server Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="763"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="764"/>
         <source>Error</source>
         <translation type="unfinished">Errore</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="778"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="779"/>
         <source>Welcome</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="780"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="781"/>
         <source>Support</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="782"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="783"/>
         <source>User</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="784"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="785"/>
         <source>MOTD</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="786"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="787"/>
         <source>Away</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="788"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="789"/>
         <source>Info ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="792"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="793"/>
         <source>Message of the day</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="794"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="795"/>
         <source>End of message of the day</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="797"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="798"/>
         <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="803"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="804"/>
         <source>Current users on {0}: {1}, max. {2}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="808"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="809"/>
         <source>Current users on the network: {0}, max. {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="812"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="813"/>
         <source>You are no longer marked as being away.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="814"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="815"/>
         <source>You have been marked as being away.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="934"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
         <source>SSL Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="876"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="877"/>
         <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="907"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
         <source>Socket Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="884"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="885"/>
         <source>The host was not found. Please check the host name and port settings.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="890"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="891"/>
         <source>The connection was refused by the peer. Please check the host name and port settings.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="901"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="902"/>
         <source>The following network error occurred:&lt;br/&gt;{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1030"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1031"/>
         <source>{0} ({1})</source>
         <comment>channel name, users count</comment>
         <translation type="unfinished">{0} ({1})</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1071"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1072"/>
         <source>Critical</source>
         <translation type="unfinished">Critico</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1052"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1053"/>
         <source>No nickname acceptable to the server configured for &lt;b&gt;{0}&lt;/b&gt;. Disconnecting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1071"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1072"/>
         <source>The given nickname is already in use.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1015"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1016"/>
         <source>CTCP</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="992"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="993"/>
         <source>Received Version request from {0}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="998"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="999"/>
         <source>Received CTCP-PING request from {0}, sending answer.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1006"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1007"/>
         <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1015"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1016"/>
         <source>Received unknown CTCP-{0} request from {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="687"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="688"/>
         <source>You have set your personal modes to &lt;b&gt;[{0}]&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="691"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="692"/>
         <source>{0} has changed your personal modes to &lt;b&gt;[{1}]&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -45602,47 +45602,47 @@
         <translation type="unfinished">Rete</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="896"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="897"/>
         <source>The SSL handshake failed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="907"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
         <source>A network error occurred.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="920"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="921"/>
         <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="934"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
         <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="258"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="259"/>
         <source>Disconnecting from network {0}...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="263"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="264"/>
         <source>Disconnecting from server.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="643"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="644"/>
         <source>Received CTCP-PING response from {0} with latency of {1} ms.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="649"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="650"/>
         <source>Received unknown CTCP-{0} response from {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="723"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="724"/>
         <source>Received PONG from {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47841,57 +47841,57 @@
 <context>
     <name>Listspace</name>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="257"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="258"/>
         <source>Close</source>
         <translation>Chiudi</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="264"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="265"/>
         <source>Close All</source>
         <translation>Chiudi tutto</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="267"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="268"/>
         <source>Save</source>
         <translation>Salva</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="270"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="271"/>
         <source>Save As...</source>
         <translation>Salva come...</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="273"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="274"/>
         <source>Save All</source>
         <translation>Salva tutto</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="281"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="282"/>
         <source>Print</source>
         <translation>Stampa</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="440"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="441"/>
         <source>Untitled {0}</source>
         <translation>Senza titolo {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="581"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="582"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="277"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="278"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation>Apri file &apos;scarto&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="285"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="286"/>
         <source>Copy Path to Clipboard</source>
         <translation>Copia il percorso nella Clipboard</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="260"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="261"/>
         <source>Close Others</source>
         <translation>Chiudi altri</translation>
     </message>
@@ -48118,67 +48118,67 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="57"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="58"/>
         <source>Uninstall Selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="60"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="62"/>
         <source>Cancel</source>
         <translation type="unfinished">Cancella</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="177"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="180"/>
         <source>Error downloading dictionaries list</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="177"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="180"/>
         <source>&lt;p&gt;Could not download the dictionaries list from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="200"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="203"/>
         <source>Dictionaries URL Changed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="200"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="203"/>
         <source>The URL of the spell check dictionaries has changed. Select the &quot;Refresh&quot; button to get the new dictionaries list.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="212"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="215"/>
         <source>Error installing dictionaries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="212"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="215"/>
         <source>&lt;p&gt;None of the dictionary locations is writable by you. Please download required dictionaries manually and install them as administrator.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="263"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="266"/>
         <source>{0} ({1})</source>
         <translation type="unfinished">{0} ({1})</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="372"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="376"/>
         <source>Error downloading dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="357"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="361"/>
         <source>&lt;p&gt;Could not download the requested dictionary file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="357"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="361"/>
         <source>Error downloading dictionary file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="372"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="376"/>
         <source>&lt;p&gt;The downloaded dictionary archive is invalid. Skipping it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48249,22 +48249,22 @@
         <translation>(non ancora definita)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="50"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="51"/>
         <source>Wrong password entered.</source>
         <translation>La Password digitata è sbagliata.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="54"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="55"/>
         <source>New password must not be empty.</source>
         <translation>La nuova Password non può essere vuota.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="61"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="62"/>
         <source>Repeated password is wrong.</source>
         <translation>La Password ridigitata è sbagliata.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="66"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="67"/>
         <source>Old and new password must not be the same.</source>
         <translation>La password precedente e la nuova non possono essere uguali.</translation>
     </message>
@@ -48748,7 +48748,7 @@
 <context>
     <name>MicroPythonCommandsInterface</name>
     <message>
-        <location filename="../MicroPython/MicroPythonCommandsInterface.py" line="284"/>
+        <location filename="../MicroPython/MicroPythonCommandsInterface.py" line="285"/>
         <source>Detected an error without indications.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49080,22 +49080,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="72"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="73"/>
         <source>max. X:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="81"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="83"/>
         <source>Enter the maximum number of data points to be plotted.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="330"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="332"/>
         <source>Save Chart Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="330"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="332"/>
         <source>&lt;p&gt;The chart data could not be saved into file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49178,7 +49178,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="69"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="77"/>
         <source>All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49253,37 +49253,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="48"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="49"/>
         <source>Dark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="50"/>
-        <source>Blue Cerulean</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="52"/>
+        <source>Blue Cerulean</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="55"/>
         <source>Brown Sand</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="54"/>
-        <source>Blue NCS</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="56"/>
-        <source>High Contrast</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="58"/>
+        <source>Blue NCS</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="61"/>
+        <source>High Contrast</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="64"/>
         <source>Blue Icy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="60"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="67"/>
         <source>Qt</source>
         <translation type="unfinished">Qt</translation>
     </message>
@@ -49424,17 +49424,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="562"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="566"/>
         <source>Press to connect the selected device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="276"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="278"/>
         <source>&lt;h3&gt;The QtSerialPort package is not available.&lt;br/&gt;MicroPython support is deactivated.&lt;/h3&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../MicroPython/MicroPythonWidget.py" line="318"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="320"/>
         <source>%n supported device(s) detected.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -49442,37 +49442,37 @@
         </translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="340"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="342"/>
         <source>No supported devices detected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="532"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="536"/>
         <source>Clear</source>
         <translation type="unfinished">Pulisci</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="534"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="538"/>
         <source>Copy</source>
         <translation type="unfinished">Copia</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="535"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="539"/>
         <source>Paste</source>
         <translation type="unfinished">Incolla</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="557"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="561"/>
         <source>Press to disconnect the current device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="578"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="582"/>
         <source>No device attached</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="578"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="582"/>
         <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -49481,212 +49481,212 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="605"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="609"/>
         <source>Start REPL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="605"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="609"/>
         <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1054"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1068"/>
         <source>Serial Device Connect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1054"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1068"/>
         <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1099"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1113"/>
         <source>Run Script</source>
         <translation type="unfinished">Esegui Script</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1082"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1096"/>
         <source>There is no editor open. Abort...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1090"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1104"/>
         <source>The current editor does not contain a script. Abort...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1099"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1113"/>
         <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1123"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1137"/>
         <source>Open Python File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1123"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1137"/>
         <source>Python3 Files (*.py);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1168"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1182"/>
         <source>Start Chart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1168"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1182"/>
         <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1197"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1211"/>
         <source>Unsaved Chart Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1197"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1211"/>
         <source>The chart contains unsaved data.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1248"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1262"/>
         <source>Start File Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1248"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1262"/>
         <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1322"/>
-        <source>Show Version</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1325"/>
-        <source>Show Implementation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1452"/>
-        <source>Synchronize Time</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1333"/>
-        <source>Show Device Time</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../MicroPython/MicroPythonWidget.py" line="1336"/>
+        <source>Show Version</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1339"/>
+        <source>Show Implementation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1466"/>
+        <source>Synchronize Time</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1347"/>
+        <source>Show Device Time</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1350"/>
         <source>Show Local Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1673"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1687"/>
         <source>Compile Python File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1693"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1707"/>
         <source>Compile Current Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1388"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1402"/>
         <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1397"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1411"/>
         <source>No version information available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1399"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1413"/>
         <source>Device Version Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1422"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1436"/>
         <source>unknown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1426"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1440"/>
         <source>Device Implementation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1426"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1440"/>
         <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1452"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1466"/>
         <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1475"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1489"/>
         <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1483"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1497"/>
         <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1500"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1514"/>
         <source>Device Date and Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1513"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1527"/>
         <source>Local Date and Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1513"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1527"/>
         <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1581"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1595"/>
         <source>Error handling device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1581"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1595"/>
         <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1621"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1635"/>
         <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1643"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1657"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation type="unfinished">File Python (*.py);;Tutti i File (*)</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1653"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1667"/>
         <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1663"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1677"/>
         <source>&apos;mpy-cross&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1686"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1700"/>
         <source>The current editor does not contain a Python file. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49701,114 +49701,114 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1181"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1195"/>
         <source>&#xc2;&#xb5;Py Chart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1264"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1278"/>
         <source>&#xc2;&#xb5;Py Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1365"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1379"/>
         <source>Show Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1378"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1392"/>
         <source>Configure</source>
         <translation type="unfinished">Configura</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1339"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1353"/>
         <source>Show Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1358"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1372"/>
         <source>Download Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1556"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1570"/>
         <source>Date and Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1539"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1553"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{0}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1556"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1570"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align=&apos;center&apos;&gt;{0} {1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="410"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="412"/>
         <source>Unknown MicroPython Device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1375"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1389"/>
         <source>Ignored Serial Devices</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1304"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1318"/>
         <source>Downloads</source>
         <translation type="unfinished">Downloads</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="323"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="325"/>
         <source>{0} - {1} ({2})</source>
         <comment>board name, description, port name</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="382"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="384"/>
         <source>&lt;p&gt;Detected these unknown serial devices&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please report them together with the board name and a short description to &lt;a href=&quot;mailto:{1}&quot;&gt; the eric bug reporting address&lt;/a&gt; if it is a MicroPython board.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="382"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="384"/>
         <source>{0} (0x{1:04x}/0x{2:04x})</source>
         <comment>description, VId, PId</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="410"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="412"/>
         <source>Would you like to add them to the list of manually configured devices?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1373"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1387"/>
         <source>Manage Unknown Devices</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1778"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1792"/>
         <source>Add Unknown Devices</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1778"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1792"/>
         <source>Select the devices to be added:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1370"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1384"/>
         <source>Flash UF2 Device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="350"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="352"/>
         <source>Manual Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../MicroPython/MicroPythonWidget.py" line="344"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="346"/>
         <source>
 %n unknown device(s) for manual selection.</source>
         <translation type="unfinished">
@@ -50004,599 +50004,599 @@
 <context>
     <name>MiniEditor</name>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>New</source>
         <translation>Nuovo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>&amp;New</source>
         <translation>&amp;Nuova</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="551"/>
-        <source>Open an empty editor window</source>
-        <translation>Apri una finestra vuota</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="552"/>
+        <source>Open an empty editor window</source>
+        <translation>Apri una finestra vuota</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="553"/>
         <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="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>Open</source>
         <translation>Apri</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>&amp;Open...</source>
         <translation>&amp;Apri...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="565"/>
-        <source>Open a file</source>
-        <translation>Apri un file</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="566"/>
+        <source>Open a file</source>
+        <translation>Apri un file</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="567"/>
         <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;Apri un file&lt;/b&gt;&lt;p&gt;Ti verrà chiesto il nome del file da aprire.&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>Save</source>
         <translation>Salva</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>&amp;Save</source>
         <translation>&amp;Salva</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation>Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="579"/>
-        <source>Save the current file</source>
-        <translation>Salva il file corrente</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="580"/>
+        <source>Save the current file</source>
+        <translation>Salva il file corrente</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="581"/>
         <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="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Save as</source>
         <translation>Salva come</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Save &amp;as...</source>
         <translation>S&amp;alva come...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Ctrl+Shift+S</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="593"/>
+        <location filename="../QScintilla/MiniEditor.py" line="594"/>
         <source>Save the current file to a new one</source>
         <translation>Salva il file attuale come uno nuovo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="595"/>
+        <location filename="../QScintilla/MiniEditor.py" line="596"/>
         <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="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>Close</source>
         <translation>Chiudi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>&amp;Close</source>
         <translation>&amp;Chiudi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="624"/>
-        <source>Close the editor window</source>
-        <translation>Chiudi la finestra dell&apos;editor</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="625"/>
+        <source>Close the editor window</source>
+        <translation>Chiudi la finestra dell&apos;editor</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="626"/>
         <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="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Undo</source>
         <translation>Undo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>&amp;Undo</source>
         <translation>&amp;Undo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="671"/>
+        <location filename="../QScintilla/MiniEditor.py" line="672"/>
         <source>Undo the last change</source>
         <translation>Annulla l&apos;ultima modifica</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="672"/>
+        <location filename="../QScintilla/MiniEditor.py" line="673"/>
         <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="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>Redo</source>
         <translation>Rifai</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>&amp;Redo</source>
         <translation>&amp;Rifai</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="685"/>
-        <source>Redo the last change</source>
-        <translation>Rifai ultima modifica</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="686"/>
+        <source>Redo the last change</source>
+        <translation>Rifai ultima modifica</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="687"/>
         <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="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Cut</source>
         <translation>Taglia</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Cu&amp;t</source>
         <translation>&amp;Taglia</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="700"/>
-        <source>Cut the selection</source>
-        <translation>Taglia la selezione</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="701"/>
+        <source>Cut the selection</source>
+        <translation>Taglia la selezione</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="702"/>
         <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="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Copy</source>
         <translation>Copia</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>&amp;Copy</source>
         <translation>&amp;Copia</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="716"/>
+        <location filename="../QScintilla/MiniEditor.py" line="717"/>
         <source>Copy the selection</source>
         <translation>Copia la selezione</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="717"/>
+        <location filename="../QScintilla/MiniEditor.py" line="718"/>
         <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="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Paste</source>
         <translation>Incolla</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>&amp;Paste</source>
         <translation>&amp;Incolla</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="732"/>
+        <location filename="../QScintilla/MiniEditor.py" line="733"/>
         <source>Paste the last cut/copied text</source>
         <translation>Incolla l&apos;ultimo testo tagliato/copiato</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="734"/>
+        <location filename="../QScintilla/MiniEditor.py" line="735"/>
         <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="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Clear</source>
         <translation>Pulisci</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Cl&amp;ear</source>
         <translation>Pu&amp;lisci</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="749"/>
-        <source>Clear all text</source>
-        <translation>Pulisci tutto il testo</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="750"/>
+        <source>Clear all text</source>
+        <translation>Pulisci tutto il testo</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="751"/>
         <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="../QScintilla/MiniEditor.py" line="2353"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2354"/>
         <source>About</source>
         <translation>About</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2353"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2354"/>
         <source>&amp;About</source>
         <translation>&amp;About</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2358"/>
         <source>Display information about this software</source>
         <translation>Mostra informazioni su questo software</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2359"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2360"/>
         <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="2365"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2366"/>
         <source>About Qt</source>
         <translation>About Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2365"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2366"/>
         <source>About &amp;Qt</source>
         <translation>About &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2369"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2370"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Mostra le informazioni sulle librerie Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2371"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2372"/>
         <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="2401"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2402"/>
         <source>&amp;File</source>
         <translation>&amp;File</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2413"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2414"/>
         <source>&amp;Edit</source>
         <translation>&amp;Edita</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2439"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2440"/>
         <source>&amp;Help</source>
         <translation>&amp;Help</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2516"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2517"/>
         <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="2523"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2524"/>
         <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="2540"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2541"/>
         <source>Ready</source>
         <translation>Pronto</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2622"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2623"/>
         <source>File loaded</source>
         <translation>File caricato</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3055"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3066"/>
         <source>Untitled</source>
         <translation>Senza titolo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2737"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2738"/>
         <source>Mini Editor</source>
         <translation>Mini Editor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3096"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3107"/>
         <source>Select all</source>
         <translation>Seleziona tutti</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3097"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3108"/>
         <source>Deselect all</source>
         <translation>Deseleziona tutti</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3111"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3122"/>
         <source>Languages</source>
         <translation>Linguaggi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3114"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3125"/>
         <source>No Language</source>
         <translation>Nessun linguaggio</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2594"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2595"/>
         <source>Open File</source>
         <translation>Apri File</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2708"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2709"/>
         <source>File saved</source>
         <translation>File salvato</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2509"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2510"/>
         <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="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>What&apos;s This?</source>
         <translation>Cos&apos;è questo ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>&amp;What&apos;s This?</source>
         <translation>C&amp;os&apos;è Questo ?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2384"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
         <source>Context sensitive help</source>
         <translation>Help sensibile al contesto</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2385"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
         <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="2451"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2452"/>
         <source>File</source>
         <translation>File</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2464"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2465"/>
         <source>Edit</source>
         <translation>Modifica</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2474"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2475"/>
         <source>Find</source>
         <translation>Trova</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2488"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2489"/>
         <source>Help</source>
         <translation>Aiuto</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>Print</source>
         <translation>Stampa</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>&amp;Print</source>
         <translation>Stam&amp;pa</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation>Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="638"/>
-        <source>Print the current file</source>
-        <translation>Stampa il file corrente</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3018"/>
-        <source>Printing...</source>
-        <translation>In stampa...</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3036"/>
-        <source>Printing completed</source>
-        <translation>Stampa completata</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3038"/>
-        <source>Error while printing</source>
-        <translation>Errore durante la stampa</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3041"/>
-        <source>Printing aborted</source>
-        <translation>Stampa interrota</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="639"/>
+        <source>Print the current file</source>
+        <translation>Stampa il file corrente</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3026"/>
+        <source>Printing...</source>
+        <translation>In stampa...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3047"/>
+        <source>Printing completed</source>
+        <translation>Stampa completata</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3049"/>
+        <source>Error while printing</source>
+        <translation>Errore durante la stampa</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="3052"/>
+        <source>Printing aborted</source>
+        <translation>Stampa interrota</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="640"/>
         <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;Stampa file&lt;/b&gt;&lt;p&gt;Stampa il file corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="646"/>
+        <location filename="../QScintilla/MiniEditor.py" line="647"/>
         <source>Print Preview</source>
         <translation>Anteprima Stampa</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="651"/>
+        <location filename="../QScintilla/MiniEditor.py" line="652"/>
         <source>Print preview of the current file</source>
         <translation>Antreprima del file corrente</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="653"/>
+        <location filename="../QScintilla/MiniEditor.py" line="654"/>
         <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;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="3138"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3149"/>
         <source>Guessed</source>
         <translation>Indovinato</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3160"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3171"/>
         <source>Alternatives</source>
         <translation>Alternativo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3184"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3195"/>
         <source>Pygments Lexer</source>
         <translation>Analizzatore lessicale Pygments</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3184"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3195"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>Selezione l&apos;analizzatore lessicale di Pygments da applicare.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="467"/>
+        <location filename="../QScintilla/MiniEditor.py" line="468"/>
         <source>Line: {0:5}</source>
         <translation>Linea: {0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="471"/>
+        <location filename="../QScintilla/MiniEditor.py" line="472"/>
         <source>Pos: {0:5}</source>
         <translation>Pos: {0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2594"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2595"/>
         <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="2701"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2702"/>
         <source>Save File</source>
         <translation>Salva file</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2701"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2702"/>
         <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="2737"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2738"/>
         <source>{0}[*] - {1}</source>
         <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3156"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3167"/>
         <source>Alternatives ({0})</source>
         <translation>Alternative ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2567"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2568"/>
         <source>The document has unsaved changes.</source>
         <translation>Il documento ha delle modifiche non salvate.</translation>
     </message>
@@ -50616,77 +50616,77 @@
         <translation type="obsolete">Mini Editor di eric6</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save &amp;Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="608"/>
+        <location filename="../QScintilla/MiniEditor.py" line="609"/>
         <source>Save a copy of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="610"/>
+        <location filename="../QScintilla/MiniEditor.py" line="611"/>
         <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="../QScintilla/MiniEditor.py" line="3698"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3709"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3698"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3709"/>
         <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="2720"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2721"/>
         <source>[*] - {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="486"/>
+        <location filename="../QScintilla/MiniEditor.py" line="487"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2431"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2432"/>
         <source>&amp;View</source>
         <translation type="unfinished">&amp;Visualizza</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2481"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2482"/>
         <source>View</source>
         <translation type="unfinished">Visualizza</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2501"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2502"/>
         <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2534"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2535"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="397"/>
+        <location filename="../QScintilla/MiniEditor.py" line="398"/>
         <source>About eric Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="397"/>
+        <location filename="../QScintilla/MiniEditor.py" line="398"/>
         <source>The eric 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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2567"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2568"/>
         <source>eric Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51181,12 +51181,12 @@
 <context>
     <name>MouseUtilities</name>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="29"/>
+        <location filename="../Utilities/MouseUtilities.py" line="31"/>
         <source>Shift</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="31"/>
+        <location filename="../Utilities/MouseUtilities.py" line="33"/>
         <source>Alt</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51196,37 +51196,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="33"/>
+        <location filename="../Utilities/MouseUtilities.py" line="35"/>
         <source>Ctrl</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="35"/>
+        <location filename="../Utilities/MouseUtilities.py" line="37"/>
         <source>Meta</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="43"/>
-        <source>Left Button</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Utilities/MouseUtilities.py" line="45"/>
-        <source>Right Button</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Utilities/MouseUtilities.py" line="47"/>
-        <source>Middle Button</source>
+        <source>Left Button</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Utilities/MouseUtilities.py" line="49"/>
-        <source>Extra Button 1</source>
+        <source>Right Button</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Utilities/MouseUtilities.py" line="51"/>
+        <source>Middle Button</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Utilities/MouseUtilities.py" line="53"/>
+        <source>Extra Button 1</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Utilities/MouseUtilities.py" line="55"/>
         <source>Extra Button 2</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51757,32 +51757,32 @@
 <context>
     <name>NavigationBar</name>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="55"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="56"/>
         <source>Move one screen backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="65"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="67"/>
         <source>Move one screen forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="83"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="86"/>
         <source>Move to the initial screen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="95"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="99"/>
         <source>Exit Fullscreen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="273"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="281"/>
         <source>Clear History</source>
         <translation type="unfinished">Pulisci la history</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="108"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="113"/>
         <source>Main Menu</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51833,12 +51833,12 @@
         <translation type="unfinished">&lt;b&gt;Inserisci utente e password per &apos;{0}&apos;&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/NetworkManager.py" line="336"/>
+        <location filename="../WebBrowser/Network/NetworkManager.py" line="338"/>
         <source>Authentication required</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/NetworkManager.py" line="337"/>
+        <location filename="../WebBrowser/Network/NetworkManager.py" line="339"/>
         <source>Authentication is required to access:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52504,27 +52504,27 @@
         <translation>Inverti ordine byte</translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="184"/>
+        <location filename="../UI/NumbersWidget.py" line="194"/>
         <source>Auto</source>
         <translation>Auto</translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="185"/>
+        <location filename="../UI/NumbersWidget.py" line="195"/>
         <source>Dec</source>
         <translation>Dec</translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="186"/>
+        <location filename="../UI/NumbersWidget.py" line="196"/>
         <source>Hex</source>
         <translation>Hex</translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="187"/>
+        <location filename="../UI/NumbersWidget.py" line="197"/>
         <source>Oct</source>
         <translation>Oct</translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="188"/>
+        <location filename="../UI/NumbersWidget.py" line="198"/>
         <source>Bin</source>
         <translation>Bin</translation>
     </message>
@@ -52771,7 +52771,7 @@
 <context>
     <name>OpenSearchEngineModel</name>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="141"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="148"/>
         <source>&lt;strong&gt;Provides contextual suggestions&lt;/strong&gt;</source>
         <translation>&lt;strong&gt;Fornisce suggetimenti contestuali&lt;/strong&gt;</translation>
     </message>
@@ -52786,12 +52786,12 @@
         <translation>Parole chiave</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="149"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="156"/>
         <source>Comma-separated list of keywords that may be entered in the location bar followed by search terms to search with this engine</source>
         <translation>Lista separata da virgole di parole chiave che possono essere inserite nella barra dell&apos;indirizzo seguite dal termine da ricercare con questo motore</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="136"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="143"/>
         <source>&lt;strong&gt;Description:&lt;/strong&gt; {0}</source>
         <translation>&lt;strong&gt;Descrizione:&lt;/strong&gt; {0}</translation>
     </message>
@@ -52799,7 +52799,7 @@
 <context>
     <name>OpenSearchManager</name>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchManager.py" line="462"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchManager.py" line="463"/>
         <source>&lt;p&gt;Do you want to add the following engine to your list of search engines?&lt;br/&gt;&lt;br/&gt;Name: {0}&lt;br/&gt;Searches on: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Vuoi aggiungere il seguente motore di ricerca alla tua lista ?&lt;br/&gt;&lt;br/&gt;Nome: {0}&lt;br/&gt;Cerca su: {0}&lt;/p&gt;</translation>
     </message>
@@ -53435,12 +53435,12 @@
         <translation type="unfinished">Errori</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="146"/>
+        <location filename="../PipInterface/PipDialog.py" line="156"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="146"/>
+        <location filename="../PipInterface/PipDialog.py" line="156"/>
         <source>The process {0} could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53516,7 +53516,7 @@
 <context>
     <name>PipFreezeDialog</name>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="225"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="227"/>
         <source>Generate Requirements</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53601,27 +53601,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="225"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="227"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished">File Testo(*.txt);;Tutti i file (*)</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="114"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="116"/>
         <source>The requirements were changed. Do you want to overwrite these changes?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="156"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="158"/>
         <source>No output generated by &apos;pip freeze&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="193"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="195"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; already exists. Do you want to overwrite it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="205"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="207"/>
         <source>&lt;p&gt;The requirements could not be written to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53837,32 +53837,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="190"/>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="193"/>
         <source>any</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="229"/>
-        <source>B</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PipInterface/PipPackageDetailsDialog.py" line="232"/>
-        <source>KB</source>
+        <source>B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackageDetailsDialog.py" line="235"/>
-        <source>MB</source>
-        <translation type="unfinished">MB</translation>
+        <source>KB</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackageDetailsDialog.py" line="238"/>
+        <source>MB</source>
+        <translation type="unfinished">MB</translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="241"/>
         <source>GB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="239"/>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="242"/>
         <source>{0:.1f} {1}</source>
         <comment>value, unit</comment>
         <translation type="unfinished"></translation>
@@ -54004,7 +54004,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="189"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="192"/>
         <source>Name:</source>
         <translation type="unfinished">Nome:</translation>
     </message>
@@ -54019,7 +54019,7 @@
         <translation type="unfinished">Inserisci termini di ricerca</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="193"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="196"/>
         <source>Summary:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -54049,77 +54049,77 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="190"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="193"/>
         <source>Version:</source>
         <translation type="unfinished">Versione:</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="191"/>
-        <source>Location:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="192"/>
-        <source>Requires:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="194"/>
-        <source>Homepage:</source>
+        <source>Location:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="195"/>
-        <source>Author:</source>
-        <translation type="unfinished">Autore:</translation>
-    </message>
-    <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="196"/>
-        <source>Author Email:</source>
+        <source>Requires:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="197"/>
-        <source>License:</source>
+        <source>Homepage:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="198"/>
-        <source>Metadata Version:</source>
-        <translation type="unfinished"></translation>
+        <source>Author:</source>
+        <translation type="unfinished">Autore:</translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="199"/>
-        <source>Installer:</source>
+        <source>Author Email:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="200"/>
-        <source>Classifiers:</source>
+        <source>License:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="201"/>
-        <source>Entry Points:</source>
+        <source>Metadata Version:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="202"/>
+        <source>Installer:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="203"/>
+        <source>Classifiers:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="204"/>
+        <source>Entry Points:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="205"/>
         <source>Files:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="351"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="360"/>
         <source>Getting installed packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="366"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="375"/>
         <source>Getting outdated packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../PipInterface/PipPackagesWidget.py" line="776"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="791"/>
         <source>%n package(s) found.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -54127,97 +54127,97 @@
         </translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
         <source>Search PyPI</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
         <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="960"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="975"/>
         <source>Install Pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="963"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="978"/>
         <source>Install Pip to User-Site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="966"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="981"/>
         <source>Repair Pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1083"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1098"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="973"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="988"/>
         <source>Install Local Package</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="977"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="992"/>
         <source>Install Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="980"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="995"/>
         <source>Uninstall Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="983"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="998"/>
         <source>Generate Requirements...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1001"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1016"/>
         <source>Edit User Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1004"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1019"/>
         <source>Edit Environment Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1009"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1024"/>
         <source>Configure...</source>
         <translation type="unfinished">Configura...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1194"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1209"/>
         <source>Edit Configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1194"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1209"/>
         <source>No valid configuration path determined. Aborting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="987"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1002"/>
         <source>Show Cache Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="990"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1005"/>
         <source>Show Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="993"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1008"/>
         <source>Remove Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="996"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1011"/>
         <source>Purge Cache...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -54227,17 +54227,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="759"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="774"/>
         <source>&lt;p&gt;Received an error while searching for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="778"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="793"/>
         <source>Showing first 20 packages found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="785"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="800"/>
         <source>&lt;p&gt;There were no results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -54450,12 +54450,12 @@
         <translation>Descrizione</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInfoDialog.py" line="101"/>
+        <location filename="../PluginManager/PluginInfoDialog.py" line="105"/>
         <source>Yes</source>
         <translation>Si</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInfoDialog.py" line="77"/>
+        <location filename="../PluginManager/PluginInfoDialog.py" line="78"/>
         <source>No</source>
         <translation>No</translation>
     </message>
@@ -54505,7 +54505,7 @@
         <translation>Versione</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInfoDialog.py" line="76"/>
+        <location filename="../PluginManager/PluginInfoDialog.py" line="77"/>
         <source>On-Demand</source>
         <translation type="unfinished"></translation>
     </message>
@@ -54581,42 +54581,42 @@
         <translation>Successivo&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="75"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="77"/>
         <source>User plugins directory</source>
         <translation>Directory dei plugin dell&apos;utente</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="81"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="83"/>
         <source>Global plugins directory</source>
         <translation>Directory dei plugin di sistema</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="162"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="164"/>
         <source>Select plugin ZIP-archives</source>
         <translation>Seleziona file ZIP di plugin</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="162"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="164"/>
         <source>Plugin archive (*.zip)</source>
         <translation>Archivi Plugin (*.zip)</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="236"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="238"/>
         <source>  ok</source>
         <translation>ok</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="243"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="245"/>
         <source>The plugins were installed successfully.</source>
         <translation>Il plugin è stato installato con successo.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="246"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="248"/>
         <source>Some plugins could not be installed.</source>
         <translation>Alcuni plugin non possono essere installati.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="505"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="507"/>
         <source>Unspecific exception installing plugin.</source>
         <translation>Eccezione non specificata nell&apos;installazione del plugin.</translation>
     </message>
@@ -54626,7 +54626,7 @@
         <translation>Installa</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="145"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="147"/>
         <source>Plugin ZIP-Archives:
 {0}
 
@@ -54639,47 +54639,47 @@
 {1} ({2})</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="231"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="233"/>
         <source>Installing {0} ...</source>
         <translation>Installazione di {0} in corso...</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="274"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="276"/>
         <source>&lt;p&gt;The archive file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;L&apos;archivio &lt;b&gt;{0}&lt;/b&gt; non esiste. Uscita...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="315"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="317"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not a valid plugin ZIP-archive. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il File &lt;b&gt;{0}&lt;/b&gt; non è un archivio di plugin in formato ZIP valido. Uscita...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="294"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="296"/>
         <source>&lt;p&gt;The destination directory &lt;b&gt;{0}&lt;/b&gt; is not writeable. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;La directory di destinazione&lt;b&gt;{0}&lt;/b&gt; non è scrivibile. Uscita...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="364"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="366"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; does not contain a &apos;packageName&apos; attribute. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il modulo del plugin &lt;b&gt;{0}&lt;/b&gt; non contiene un attributo &apos;packageName&apos; valido. Uscita...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="374"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="376"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; does not conform with the PyQt v2 API. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il modulo del plugin &lt;b&gt;{0}&lt;/b&gt; non è conforme con le API PyQt v2. Uscita...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="389"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="391"/>
         <source>&lt;p&gt;The plugin package &lt;b&gt;{0}&lt;/b&gt; exists. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il pacchetto del plugin &lt;b&gt;{0}&lt;/b&gt; esiste. Uscita...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="402"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="404"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; exists. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il modulo plugin &lt;b&gt;{0}&lt;/b&gt; esiste. Uscita...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="496"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="498"/>
         <source>Error installing plugin. Reason: {0}</source>
         <translation>Errore nell&apos;installazione del plugin, Motivo: {0}</translation>
     </message>
@@ -54727,22 +54727,22 @@
         <translation>&lt;p&gt;La directory di download dei plugin &lt;b&gt;{0}&lt;/b&gt; non può essere creata. Per favore configurarla con il dialogo di configurazione.&lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1292"/>
+        <location filename="../PluginManager/PluginManager.py" line="1293"/>
         <source>Error downloading file</source>
         <translation>Errone nello scaricamento del file</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1292"/>
+        <location filename="../PluginManager/PluginManager.py" line="1293"/>
         <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Non posso scaricare il file richiesto da {0}&lt;/p&gt;&lt;p&gt;Errore: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1329"/>
+        <location filename="../PluginManager/PluginManager.py" line="1330"/>
         <source>New plugin versions available</source>
         <translation>E&apos; disponibile una nuova versione del plug-in</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1329"/>
+        <location filename="../PluginManager/PluginManager.py" line="1330"/>
         <source>&lt;p&gt;There are new plug-ins or plug-in updates available. Use the plug-in repository dialog to get them.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Sono disponibili nuovi plug-in o aggiornamenti di plug-in. Usa la finestra di dialogo del repository di plug-in per ottenerli.&lt;/p&gt;</translation>
     </message>
@@ -55016,54 +55016,54 @@
         <translation>Chiudi &amp;&amp; installa</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="359"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="362"/>
         <source>Download Plugin Files</source>
         <translation>Scarica file Plugin</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="359"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="362"/>
         <source>The requested plugins were downloaded.</source>
         <translation>Il plugin richiesto è stato scaricato.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="415"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="418"/>
         <source>Read plugins repository file</source>
         <translation>Leggi il file repository del plugin</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="423"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="426"/>
         <source>No plugin repository file available.
 Select Update.</source>
         <translation>Nessun file per repository disponibile.
 Selezionare Aggiorna.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="484"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="491"/>
         <source>Error downloading file</source>
         <translation>Errone nello scaricamento del file</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="568"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="575"/>
         <source>Stable</source>
         <translation>Stabile</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="574"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="581"/>
         <source>Unstable</source>
         <translation>Instabile</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="586"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="593"/>
         <source>Unknown</source>
         <translation>Sconosciuto</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="415"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="418"/>
         <source>&lt;p&gt;The plugins repository file &lt;b&gt;{0}&lt;/b&gt; could not be read. Select Update&lt;/p&gt;</source>
         <translation>&lt;p&gt;I file repository del plugin&lt;b&gt;{0}&lt;/b&gt; non può essere letto. Seleziona aggiorna.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="484"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="491"/>
         <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Non posso scaricare il file richiesto da {0}&lt;/p&gt;&lt;p&gt;Errore: {1}&lt;/p&gt;</translation>
     </message>
@@ -55073,87 +55073,87 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="407"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="410"/>
         <source>Plugins Repository URL Changed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="407"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="410"/>
         <source>The URL of the Plugins Repository has changed. Select the &quot;Update&quot; button to get the new repository file.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="117"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="120"/>
         <source>Hide</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="119"/>
-        <source>Hide Selected</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="122"/>
-        <source>Show All</source>
+        <source>Hide Selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="125"/>
+        <source>Show All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="128"/>
         <source>Cleanup Downloads</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="600"/>
-        <source>up-to-date</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="603"/>
-        <source>new download available</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="607"/>
+        <source>up-to-date</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="610"/>
+        <source>new download available</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="614"/>
         <source>update installable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="611"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="618"/>
         <source>updated download available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="979"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="986"/>
         <source>Cleanup of Plugin Downloads</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="979"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="986"/>
         <source>&lt;p&gt;The plugin download &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="430"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="433"/>
         <source>New: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="432"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="435"/>
         <source>Local Updates: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="434"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="437"/>
         <source>Remote Updates: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="580"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="587"/>
         <source>Obsolete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="615"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="622"/>
         <source>error determining status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55161,17 +55161,17 @@
 <context>
     <name>PluginRepositoryWindow</name>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>Process Generation Error</source>
         <translation>Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>OK</source>
         <translation>OK</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>&lt;p&gt;Could not start the process.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Non posso avviare il processo.&lt;br&gt;Assicurarsi sia disponibile come &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
@@ -55523,17 +55523,17 @@
 <context>
     <name>Preferences</name>
     <message>
-        <location filename="../Preferences/__init__.py" line="1640"/>
+        <location filename="../Preferences/__init__.py" line="1649"/>
         <source>Export Preferences</source>
         <translation>Esporta Preferenze</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1668"/>
+        <location filename="../Preferences/__init__.py" line="1677"/>
         <source>Import Preferences</source>
         <translation>Importa Preferenze</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1668"/>
+        <location filename="../Preferences/__init__.py" line="1677"/>
         <source>Properties File (*.ini);;All Files (*)</source>
         <translation>File proprietà (*.ini);;Tutti i file(*)</translation>
     </message>
@@ -55554,7 +55554,7 @@
 <context>
     <name>PreviewModel</name>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="432"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="434"/>
         <source>Variable Name</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55562,27 +55562,27 @@
 <context>
     <name>PreviewProcessingThread</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="463"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="466"/>
         <source>&lt;p&gt;No preview available for this type of file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Non è prevista la visualizzazione per questo tipo di flusso.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="632"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="635"/>
         <source>&lt;p&gt;ReStructuredText preview requires the &lt;b&gt;python-docutils&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager, &apos;pip install docutils&apos; or see &lt;a href=&quot;http://pypi.python.org/pypi/docutils&quot;&gt;this page.&lt;/a&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="572"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="575"/>
         <source>&lt;p&gt;ReStructuredText preview requires the &lt;b&gt;sphinx&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager,&apos;pip install Sphinx&apos; or see &lt;a href=&quot;http://pypi.python.org/pypi/Sphinx&quot;&gt;this page.&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Alternatively you may disable Sphinx usage on the Editor, Filehandling configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="675"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="678"/>
         <source>&lt;p&gt;Markdown preview requires the &lt;b&gt;Markdown&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager, &apos;pip install Markdown&apos; or see &lt;a href=&quot;http://pythonhosted.org/Markdown/install.html&quot;&gt;installation instructions.&lt;/a&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="647"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="650"/>
         <source>&lt;p&gt;Docutils returned an error:&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55590,42 +55590,42 @@
 <context>
     <name>PreviewerHTML</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="75"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="78"/>
         <source>Select to enable JavaScript for HTML previews</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="74"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="77"/>
         <source>Enable JavaScript</source>
         <translation type="unfinished">Abilita Javascript</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="81"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="84"/>
         <source>Select to enable support for Server Side Includes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="79"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="82"/>
         <source>Enable Server Side Includes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="194"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="197"/>
         <source>&lt;p&gt;No preview available for this type of file.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Non è prevista la visualizzazione per questo tipo di flusso.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="253"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="256"/>
         <source>Preview - {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="255"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="258"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="57"/>
+        <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 type="unfinished"></translation>
     </message>
@@ -55676,17 +55676,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="76"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="80"/>
         <source>Portrait</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="78"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="82"/>
         <source>Landscape</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="79"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="83"/>
         <source>{0}, {1}</source>
         <comment>page size, page orientation</comment>
         <translation type="unfinished"></translation>
@@ -55891,17 +55891,17 @@
         <translation>(non configurato)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="436"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="437"/>
         <source>(not executable)</source>
         <translation>(non eseguibile)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="479"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="481"/>
         <source>(not found)</source>
         <translation>(non trovato)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="433"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="434"/>
         <source>(unknown)</source>
         <translation>(sconosciuto)</translation>
     </message>
@@ -55976,7 +55976,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="398"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="399"/>
         <source>(module not found)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -57456,32 +57456,32 @@
 <context>
     <name>ProjectBaseBrowser</name>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="128"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="132"/>
         <source>Open</source>
         <translation>Apri</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="496"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="503"/>
         <source>local</source>
         <translation>locale</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="537"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="544"/>
         <source>Select entries</source>
         <translation>Selezione elementi</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="537"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="544"/>
         <source>There were no matching entries found.</source>
         <translation>Non sono stati trovati elementi che combaciano.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="294"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="300"/>
         <source>Delete directories</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="294"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="300"/>
         <source>Do you really want to delete these directories from the project?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -57542,7 +57542,7 @@
         <translation>Stato VCS</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBrowserModel.py" line="797"/>
+        <location filename="../Project/ProjectBrowserModel.py" line="803"/>
         <source>local</source>
         <translation>locale</translation>
     </message>
@@ -57741,7 +57741,7 @@
 <context>
     <name>ProjectFormsBrowser</name>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1009"/>
         <source>Forms</source>
         <translation>Forms</translation>
     </message>
@@ -57826,32 +57826,32 @@
         <translation>Seleziona tipo form:</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="784"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="788"/>
         <source>Form Compilation</source>
         <translation>Compilazione form</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="768"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="772"/>
         <source>The compilation of the form file was successful.</source>
         <translation>La compilazione della form è avvenuta con successo.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="784"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="788"/>
         <source>The compilation of the form file failed.</source>
         <translation>La compilazione della form è fallita.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="870"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="874"/>
         <source>Process Generation Error</source>
         <translation>Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="962"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="966"/>
         <source>Compiling forms...</source>
         <translation>Compilazione form in corso...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>Abort</source>
         <translation>Termina</translation>
     </message>
@@ -57906,12 +57906,12 @@
         <translation>Dialogo con pulsanti (centrati in basso)</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>Determining changed forms...</source>
         <translation>Determina form modificate...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1031"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1035"/>
         <source>Compiling changed forms...</source>
         <translation>Compila le form modificate...</translation>
     </message>
@@ -57961,12 +57961,12 @@
         <translation>&lt;p&gt;Il nuovo file della form &lt;b&gt;{0}&lt;/b&gt; non può essere creato.&lt;br&gt;Problema: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="775"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="779"/>
         <source>&lt;p&gt;The compilation of the form file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;La compilazione del file form è fallita.&lt;/p&gt;&lt;p&gt;Motivo: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="870"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="874"/>
         <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
         <translation>Non posso avviare {0}.&lt;br&gt;Assicurarsi che sia nel path.</translation>
     </message>
@@ -58021,7 +58021,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>%v/%m Forms</source>
         <translation type="unfinished"></translation>
     </message>
@@ -58676,7 +58676,7 @@
 <context>
     <name>ProjectResourcesBrowser</name>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="861"/>
         <source>Resources</source>
         <translation>Risorse</translation>
     </message>
@@ -58766,42 +58766,42 @@
         <translation>Vuoi veramente cancellare queste risorse dal progetto ?</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="624"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="628"/>
         <source>Resource Compilation</source>
         <translation>Compilazione risorse</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="610"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="614"/>
         <source>The compilation of the resource file was successful.</source>
         <translation>La compilazione del file risorse è avvenuta con successo.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="624"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="628"/>
         <source>The compilation of the resource file failed.</source>
         <translation>La compilazione del file risorse è fallita.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="713"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="717"/>
         <source>Process Generation Error</source>
         <translation>Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="779"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="783"/>
         <source>Compiling resources...</source>
         <translation>Compilazione risorse in corso...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>Abort</source>
         <translation>Termina</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>Determining changed resources...</source>
         <translation>Determinazione risorse modificate...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="889"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="893"/>
         <source>Compiling changed resources...</source>
         <translation>Compilazione risorse modificate in corso...</translation>
     </message>
@@ -58826,17 +58826,17 @@
         <translation>&lt;p&gt;Il nuovo file risorse &lt;b&gt;{0}&lt;/b&gt; non può essere creato. &lt;br&gt;Problema:  {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="617"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="621"/>
         <source>&lt;p&gt;The compilation of the resource file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;La compilazione del file risorse è fallita.&lt;/p&gt;&lt;p&gt;Motivo: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="713"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="717"/>
         <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
         <translation>Non posso avviare {0}.&lt;br&gt;Assicurarsi che sia nel path.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>%v/%m Resources</source>
         <translation>Risorse %v/%m</translation>
     </message>
@@ -59849,32 +59849,32 @@
 <context>
     <name>PyCoverageDialog</name>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="61"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="63"/>
         <source>Annotate</source>
         <translation>Annota</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="63"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="65"/>
         <source>Annotate all</source>
         <translation>Annota tutti</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="64"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="66"/>
         <source>Delete annotated files</source>
         <translation>Cancella file annotati</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="67"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="69"/>
         <source>Erase Coverage Info</source>
         <translation>Cancella informazioni Coverage</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>Annotating files...</source>
         <translation>Annotazione file...</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>Abort</source>
         <translation>Termina</translation>
     </message>
@@ -59940,7 +59940,7 @@
         <translation>Eseguite</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="349"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="361"/>
         <source>Coverage</source>
         <translation>Coverage</translation>
     </message>
@@ -59972,17 +59972,17 @@
         <translation>Mostra l&apos;avanzamento dell&apos;azione di coverage sul codice</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="58"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="60"/>
         <source>Open</source>
         <translation type="unfinished">Apri</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="243"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="246"/>
         <source>Parse Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../DataViews/PyCoverageDialog.py" line="243"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="246"/>
         <source>%n file(s) could not be parsed. Coverage info for these is not available.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -59990,7 +59990,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>%v/%m Files</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59998,52 +59998,52 @@
 <context>
     <name>PyProfileDialog</name>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="337"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="354"/>
         <source>Exclude Python Library</source>
         <translation>Escludi libreria Python</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="89"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="92"/>
         <source>Erase Profiling Info</source>
         <translation>Cancella informazioni di profilazione</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="91"/>
-        <source>Erase Timing Info</source>
-        <translation>Cancella informazioni sulle tempistiche</translation>
-    </message>
-    <message>
         <location filename="../DataViews/PyProfileDialog.py" line="94"/>
+        <source>Erase Timing Info</source>
+        <translation>Cancella informazioni sulle tempistiche</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="97"/>
         <source>Erase All Infos</source>
         <translation>Cancella tutte le informazioni</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="234"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="239"/>
         <source>Profile Results</source>
         <translation>Risultati profilazione</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="246"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="251"/>
         <source>Loading Profiling Data</source>
         <translation>Carica dati di profilazione</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="215"/>
-        <source>function calls</source>
-        <translation>chiamata di funzione</translation>
-    </message>
-    <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="218"/>
-        <source>primitive calls</source>
-        <translation>chiamata primitive</translation>
-    </message>
-    <message>
         <location filename="../DataViews/PyProfileDialog.py" line="220"/>
+        <source>function calls</source>
+        <translation>chiamata di funzione</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="223"/>
+        <source>primitive calls</source>
+        <translation>chiamata primitive</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="225"/>
         <source>CPU seconds</source>
         <translation>secondi CPU</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="333"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="350"/>
         <source>Include Python Library</source>
         <translation>Includi libreria Python</translation>
     </message>
@@ -60124,12 +60124,12 @@
         <translation>Mostra l&apos;avanzamento del calcolo della profilazione</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="234"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="239"/>
         <source>&lt;p&gt;There is no profiling data available for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Non ci sono dati di profilazione disponibili per &lt;b&gt;{0}&lt;/b&gt;.&lt;p&gt;</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="246"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="251"/>
         <source>&lt;p&gt;The profiling data could not be read from file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;I dati di profilazione non possono essere letti dal file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
@@ -60753,107 +60753,107 @@
         <translation>Mostra il prossimo match dell&apos;espressione regolare</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="102"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="103"/>
         <source>Copy</source>
         <translation>Copia</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="104"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="105"/>
         <source>Copy the regular expression to the clipboard</source>
         <translation>Copia l&apos;espressione regolare nella clipboard</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="188"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="190"/>
         <source>Named reference</source>
         <translation>Named reference</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="182"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="184"/>
         <source>No named groups have been defined yet.</source>
         <translation>Nessun named groups è stato ancora definito.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="188"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="190"/>
         <source>Select group name:</source>
         <translation>Selezione il nome gruppo:</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="372"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="374"/>
         <source>Save regular expression</source>
         <translation>Salva l&apos;espressione regolare</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="360"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="362"/>
         <source>RegExp Files (*.rx);;All Files (*)</source>
         <translation>RegExp Files (*.rx);;All Files (*)</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="360"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="362"/>
         <source>Load regular expression</source>
         <translation>Carica espressione regolare</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="414"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="416"/>
         <source>The regular expression is valid.</source>
         <translation>L&apos;espressione regolare è valida.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="578"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="581"/>
         <source>Error</source>
         <translation>Errore</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="571"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="574"/>
         <source>Invalid regular expression: missing group name</source>
         <translation>Espressione regolare non valida: manca il nome del gruppo</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="433"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="435"/>
         <source>A regular expression must be given.</source>
         <translation>Un&apos;espressione regolare deve essere fornita.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="478"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="480"/>
         <source>Regexp</source>
         <translation>Regexp</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="488"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="490"/>
         <source>Offset</source>
         <translation>Offset</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="496"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="498"/>
         <source>Captures</source>
         <translation>Cattura</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="503"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="505"/>
         <source>Text</source>
         <translation>Testo</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="506"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="508"/>
         <source>Characters</source>
         <translation>Carattere</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="511"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="513"/>
         <source>Match</source>
         <translation>Trova</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="546"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="549"/>
         <source>No more matches</source>
         <translation>Nessun altro risultato</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="550"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="553"/>
         <source>No matches</source>
         <translation>Nessun risultato</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="578"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="581"/>
         <source>A regular expression and a text must be given.</source>
         <translation>Un&apos;espressione regolare e una regexp devono essere fornite.</translation>
     </message>
@@ -60868,27 +60868,27 @@
         <translation type="obsolete">ASCII</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="372"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="374"/>
         <source>&lt;p&gt;The regular expression could not be saved.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;L&apos;espressione regolare non può essere salvata.&lt;/p&gt;&lt;p&gt;Motivo: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="564"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="567"/>
         <source>Invalid regular expression: {0}</source>
         <translation>Espressione regolare non valida: {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="526"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="528"/>
         <source>Capture #{0}</source>
         <translation>Cattura #{0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="334"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="336"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="414"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="416"/>
         <source>Validation</source>
         <translation>Validazione</translation>
     </message>
@@ -61469,37 +61469,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="247"/>
+        <location filename="../UI/PythonAstViewer.py" line="249"/>
         <source>Module</source>
         <translation type="unfinished">Modulo</translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="279"/>
+        <location filename="../UI/PythonAstViewer.py" line="281"/>
         <source>{0}: {1}</source>
         <translation type="unfinished">{0}: {1}</translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="300"/>
+        <location filename="../UI/PythonAstViewer.py" line="302"/>
         <source>{0},{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="307"/>
+        <location filename="../UI/PythonAstViewer.py" line="309"/>
         <source>{0}  -  {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="211"/>
+        <location filename="../UI/PythonAstViewer.py" line="213"/>
         <source>No editor has been opened.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="222"/>
+        <location filename="../UI/PythonAstViewer.py" line="224"/>
         <source>The current editor does not contain any source code.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="228"/>
+        <location filename="../UI/PythonAstViewer.py" line="230"/>
         <source>The current editor does not contain Python source code.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -61552,7 +61552,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="695"/>
+        <location filename="../UI/PythonDisViewer.py" line="698"/>
         <source>Code Object &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -61607,72 +61607,72 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="810"/>
+        <location filename="../UI/PythonDisViewer.py" line="813"/>
         <source>Name</source>
         <translation type="unfinished">Nome</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="812"/>
+        <location filename="../UI/PythonDisViewer.py" line="815"/>
         <source>Filename</source>
         <translation type="unfinished">Nome file</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="814"/>
+        <location filename="../UI/PythonDisViewer.py" line="817"/>
         <source>First Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="816"/>
+        <location filename="../UI/PythonDisViewer.py" line="819"/>
         <source>Argument Count</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="818"/>
+        <location filename="../UI/PythonDisViewer.py" line="821"/>
         <source>Positional-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../UI/PythonDisViewer.py" line="827"/>
+        <source>Number of Locals</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="829"/>
+        <source>Stack Size</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="831"/>
+        <source>Flags</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="834"/>
+        <source>Constants</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="837"/>
+        <source>Names</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="840"/>
+        <source>Variable Names</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="843"/>
+        <source>Free Variables</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="846"/>
+        <source>Cell Variables</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/PythonDisViewer.py" line="824"/>
-        <source>Number of Locals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="826"/>
-        <source>Stack Size</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="828"/>
-        <source>Flags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="831"/>
-        <source>Constants</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="834"/>
-        <source>Names</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="837"/>
-        <source>Variable Names</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="840"/>
-        <source>Free Variables</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="843"/>
-        <source>Cell Variables</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="821"/>
         <source>Keyword-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
@@ -64198,197 +64198,197 @@
 <context>
     <name>QRegularExpressionWizardWidget</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="96"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="97"/>
         <source>Save</source>
         <translation type="unfinished">Salva</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="98"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="99"/>
         <source>Save the regular expression to a file</source>
         <translation type="unfinished">Salva l&apos;espressione regolare su un file</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="100"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="101"/>
         <source>Load</source>
         <translation type="unfinished">Carica</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="102"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="103"/>
         <source>Load a regular expression from a file</source>
         <translation type="unfinished">Carica un&apos;espressione regolare da un file</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="105"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="106"/>
         <source>Validate</source>
         <translation type="unfinished">Valida</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="107"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="108"/>
         <source>Validate the regular expression</source>
         <translation type="unfinished">Valida l&apos;espressione regolare</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="109"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="110"/>
         <source>Execute</source>
         <translation type="unfinished">Esegui</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="111"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="112"/>
         <source>Execute the regular expression</source>
         <translation type="unfinished">Esegui l&apos;espressione regolare</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="113"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="114"/>
         <source>Next match</source>
         <translation type="unfinished">Prossimo match</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="115"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="116"/>
         <source>Show the next match of the regular expression</source>
         <translation type="unfinished">Mostra il prossimo match dell&apos;espressione regolare</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="128"/>
-        <source>Copy</source>
-        <translation type="unfinished">Copia</translation>
-    </message>
-    <message>
         <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="130"/>
+        <source>Copy</source>
+        <translation type="unfinished">Copia</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="132"/>
         <source>Copy the regular expression to the clipboard</source>
         <translation type="unfinished">Copia l&apos;espressione regolare nella clipboard</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="292"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="295"/>
         <source>Named reference</source>
         <translation type="unfinished">Named reference</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="286"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="289"/>
         <source>No named groups have been defined yet.</source>
         <translation type="unfinished">Nessun named groups è stato ancora definito.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="292"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="295"/>
         <source>Select group name:</source>
         <translation type="unfinished">Selezione il nome gruppo:</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="454"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="457"/>
         <source>Save regular expression</source>
         <translation type="unfinished">Salva l&apos;espressione regolare</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="416"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="419"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="454"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="457"/>
         <source>&lt;p&gt;The regular expression could not be saved.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;L&apos;espressione regolare non può essere salvata.&lt;/p&gt;&lt;p&gt;Motivo: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="442"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="445"/>
         <source>Load regular expression</source>
         <translation type="unfinished">Carica espressione regolare</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="507"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="510"/>
         <source>Validation</source>
         <translation type="unfinished">Validazione</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="507"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="510"/>
         <source>The regular expression is valid.</source>
         <translation type="unfinished">L&apos;espressione regolare è valida.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="708"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="712"/>
         <source>Error</source>
         <translation type="unfinished">Errore</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="582"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="585"/>
         <source>Invalid regular expression: {0}</source>
         <translation type="unfinished">Espressione regolare non valida: {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="538"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="541"/>
         <source>A regular expression must be given.</source>
         <translation type="unfinished">Un&apos;espressione regolare deve essere fornita.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="602"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="605"/>
         <source>Regexp</source>
         <translation type="unfinished">Regexp</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="613"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="616"/>
         <source>Offset</source>
         <translation type="unfinished">Offset</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="621"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="624"/>
         <source>Captures</source>
         <translation type="unfinished">Cattura</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="629"/>
-        <source>Text</source>
-        <translation type="unfinished">Testo</translation>
-    </message>
-    <message>
         <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="632"/>
+        <source>Text</source>
+        <translation type="unfinished">Testo</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="635"/>
         <source>Characters</source>
         <translation type="unfinished">Carattere</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="637"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="640"/>
         <source>Match</source>
         <translation type="unfinished">Trova</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="652"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="655"/>
         <source>Capture #{0}</source>
         <translation type="unfinished">Cattura #{0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="676"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="680"/>
         <source>No more matches</source>
         <translation type="unfinished">Nessun altro risultato</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="681"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="685"/>
         <source>No matches</source>
         <translation type="unfinished">Nessun risultato</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="708"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="712"/>
         <source>A regular expression and a text must be given.</source>
         <translation type="unfinished">Un&apos;espressione regolare e una regexp devono essere fornite.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="442"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="445"/>
         <source>RegExp Files (*.rx);;All Files (*)</source>
         <translation type="unfinished">RegExp Files (*.rx);;All Files (*)</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="702"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="706"/>
         <source>Communication Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="169"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="172"/>
         <source>&lt;p&gt;The PyQt5 backend reported an error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="696"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="700"/>
         <source>Invalid response received from PyQt5 backend.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="702"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="706"/>
         <source>Communication with PyQt5 backend failed.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -64434,7 +64434,7 @@
         <translation>Rimuovi</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="174"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="176"/>
         <source>Add Documentation</source>
         <translation>Aggiungi documento</translation>
     </message>
@@ -64444,12 +64444,12 @@
         <translation>Qt Compressed Help Files (*.qch)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="211"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="213"/>
         <source>Remove Documentation</source>
         <translation>Rimuovi documentazione</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="196"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="198"/>
         <source>Do you really want to remove the selected documentation sets from the database?</source>
         <translation>Vuoi veramente rimuovere la documentazione selezionata dal database ?</translation>
     </message>
@@ -64459,12 +64459,12 @@
         <translation>Il file &lt;b&gt;{0}&lt;/b&gt; non è un file Qt Help valido.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="174"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="176"/>
         <source>The namespace &lt;b&gt;{0}&lt;/b&gt; is already registered.</source>
         <translation>Il namespace &lt;b&gt;{0}&lt;/b&gt; è già registrato.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="211"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="213"/>
         <source>Some documents currently opened reference the documentation you are attempting to remove. Removing the documentation will close those documents. Remove anyway?</source>
         <translation>Alcuni documenti aperti fanno riferimento a documenti che stai tentando di cancellare. Rimuovendo la documentazione verranno chiusi questi documenti. Rimuovere comunque ?</translation>
     </message>
@@ -64524,7 +64524,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="406"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="410"/>
         <source>Remove Filters</source>
         <translation type="unfinished"></translation>
     </message>
@@ -64534,7 +64534,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="434"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="438"/>
         <source>Remove Attributes</source>
         <translation type="unfinished"></translation>
     </message>
@@ -64579,22 +64579,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="385"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="389"/>
         <source>Add Filter</source>
         <translation type="unfinished">Aggiungi filtro</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="385"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="389"/>
         <source>Filter name:</source>
         <translation type="unfinished">Nome filtro:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="406"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="410"/>
         <source>Do you really want to remove the selected filters from the database?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="434"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="438"/>
         <source>Do you really want to remove the selected attributes from the database?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -64612,27 +64612,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="139"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="142"/>
         <source>Delete Documentation Sets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="86"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="89"/>
         <source>Shall the selected documentation sets really be deleted?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="102"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="105"/>
         <source>&lt;p&gt;The documentation set &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="121"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="124"/>
         <source>Shall the selected documentation set categories really be deleted?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="139"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="142"/>
         <source>Shall all documentation sets really be deleted?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -66153,87 +66153,87 @@
 <context>
     <name>SafeBrowsingAPI</name>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="391"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="400"/>
         <source>&lt;h3&gt;Malware Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to install harmful programs on your computer in order to steal or destroy your data.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="398"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="407"/>
         <source>&lt;h3&gt;Phishing Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to trick you into doing something dangerous online, such as revealing passwords or personal information, usually through a fake website.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="406"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="415"/>
         <source>&lt;h3&gt;Unwanted Software Warning&lt;/h3&gt;&lt;p&gt;The software you are about to download may negatively affect your browsing or computing experience.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="412"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="421"/>
         <source>&lt;h3&gt;Potentially Harmful Application&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to trick you into installing applications, that may negatively affect your browsing experience.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="426"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="435"/>
         <source>&lt;h3&gt;Unknown Threat Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit was found in the Safe Browsing Database but was not classified yet.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="446"/>
-        <source>Malware</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="449"/>
-        <source>Phishing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="452"/>
-        <source>Unwanted Software</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="455"/>
-        <source>Harmful Application</source>
+        <source>Malware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="458"/>
-        <source>Malicious Binary</source>
+        <source>Phishing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="461"/>
+        <source>Unwanted Software</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="464"/>
+        <source>Harmful Application</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="467"/>
+        <source>Malicious Binary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="470"/>
         <source>Unknown Threat</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="532"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="541"/>
         <source>any defined platform</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="535"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="544"/>
         <source>all defined platforms</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="538"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="547"/>
         <source>unknown platform</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="492"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="501"/>
         <source>executable program</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="495"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="504"/>
         <source>unknown type</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="419"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="428"/>
         <source>&lt;h3&gt;Malicious Binary Warning&lt;/h3&gt;&lt;p&gt;The software you are about to download may be harmful to your computer.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -66241,7 +66241,7 @@
 <context>
     <name>SafeBrowsingDialog</name>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="171"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="173"/>
         <source>Safe Browsing Management</source>
         <translation type="unfinished"></translation>
     </message>
@@ -66331,52 +66331,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="312"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="314"/>
         <source>Check URL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="171"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="173"/>
         <source>The dialog contains unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="213"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="215"/>
         <source>Update Safe Browsing Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="196"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="198"/>
         <source>Updating the Safe Browsing cache might be a lengthy operation. Please be patient!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="207"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="209"/>
         <source>&lt;p&gt;Updating the Safe Browsing cache failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="213"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="215"/>
         <source>&lt;p&gt;Updating the Safe Browsing cache failed.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="224"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="226"/>
         <source>Clear Safe Browsing Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="224"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="226"/>
         <source>Do you really want to clear the Safe Browsing cache? Re-populating it might take some time.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="304"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="306"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing Database.&lt;/p&gt;{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="312"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="314"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was not found in the Safe Browsing Database and may be considered safe.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -66406,17 +66406,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="339"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="341"/>
         <source>The next automatic threat list update will be done now.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="342"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="344"/>
         <source>&lt;p&gt;The next automatic threat list update will be done at &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="346"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="348"/>
         <source>Update Time</source>
         <translation type="unfinished"></translation>
     </message>
@@ -66436,7 +66436,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="296"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="298"/>
         <source>&lt;p&gt;The Google Safe Browsing Server reported an error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -66505,17 +66505,17 @@
 <context>
     <name>SearchReplaceWidget</name>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="982"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="984"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation>&apos;{0}&apos; non è stato trovato.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="1128"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="1130"/>
         <source>Replaced {0} occurrences.</source>
         <translation>Sostituite {0} ricorrenze.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="1133"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="1135"/>
         <source>Nothing replaced because &apos;{0}&apos; was not found.</source>
         <translation>Nessuna sostituzione perché &apos;{0}&apos; non è stato trovato.</translation>
     </message>
@@ -66525,7 +66525,7 @@
         <translation>Trova successivo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="173"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="174"/>
         <source>Find Prev</source>
         <translation>Trova prec</translation>
     </message>
@@ -66549,17 +66549,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="181"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="183"/>
         <source>Replace and Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="191"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="193"/>
         <source>Replace Occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="201"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="203"/>
         <source>Replace All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -66656,7 +66656,7 @@
         <translation type="obsolete">Andare a capo automaticamente</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SearchWidget.py" line="98"/>
+        <location filename="../WebBrowser/SearchWidget.py" line="100"/>
         <source>Expression was not found.</source>
         <translation>Espressione non trovata.</translation>
     </message>
@@ -66666,7 +66666,7 @@
         <translation type="obsolete">Evidenzia tutti</translation>
     </message>
     <message>
-        <location filename="../UI/SearchWidget.py" line="208"/>
+        <location filename="../UI/SearchWidget.py" line="210"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished">&apos;{0}&apos; non è stato trovato.</translation>
     </message>
@@ -67153,7 +67153,7 @@
 <context>
     <name>SendRefererWhitelistDialog</name>
     <message>
-        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="50"/>
+        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="51"/>
         <source>Send Referer Whitelist</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67193,7 +67193,7 @@
         <translation type="unfinished">Rimozione global&amp;e</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="50"/>
+        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="51"/>
         <source>Enter host name to add to the whitelist:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67324,7 +67324,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Session/SessionManager.py" line="710"/>
+        <location filename="../WebBrowser/Session/SessionManager.py" line="712"/>
         <source>{0} (last session)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67838,57 +67838,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="153"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="155"/>
         <source>Reading Trove Classifiers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="153"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="155"/>
         <source>&lt;p&gt;The Trove Classifiers 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="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="544"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="549"/>
         <source>Package Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="576"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="581"/>
         <source>Packages Root Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="615"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="620"/>
         <source>Add Package</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="615"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="620"/>
         <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; is not a Python package.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="671"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="676"/>
         <source>Add Scripts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="671"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="676"/>
         <source>Python Files (*.py);;All Files(*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="710"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="715"/>
         <source>Add Python Modules</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="710"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="715"/>
         <source>Python Files (*.py)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="789"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="796"/>
         <source>Source Directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67916,109 +67916,109 @@
         <translation>Shell</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="248"/>
+        <location filename="../QScintilla/Shell.py" line="249"/>
         <source>Passive &gt;&gt;&gt; </source>
         <translation>Passivo &apos;&gt;&gt;&gt;&apos;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="304"/>
-        <source>Copy</source>
-        <translation>Copia</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="305"/>
+        <source>Copy</source>
+        <translation>Copia</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="306"/>
         <source>Paste</source>
         <translation>Incolla</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="311"/>
+        <location filename="../QScintilla/Shell.py" line="312"/>
         <source>Clear</source>
         <translation>Pulisci</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2178"/>
+        <location filename="../QScintilla/Shell.py" line="2199"/>
         <source>Drop Error</source>
         <translation>Drop Error</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="843"/>
+        <location filename="../QScintilla/Shell.py" line="851"/>
         <source>No.</source>
         <translation>No.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="291"/>
+        <location filename="../QScintilla/Shell.py" line="292"/>
         <source>Start</source>
         <translation>Inizia</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="839"/>
+        <location filename="../QScintilla/Shell.py" line="847"/>
         <source>Passive Debug Mode</source>
         <translation>Passive Debug Mode</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="296"/>
-        <source>History</source>
-        <translation>Cronologia</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="297"/>
-        <source>Select entry</source>
-        <translation>Seleziona elemento</translation>
+        <source>History</source>
+        <translation>Cronologia</translation>
     </message>
     <message>
         <location filename="../QScintilla/Shell.py" line="298"/>
+        <source>Select entry</source>
+        <translation>Seleziona elemento</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="299"/>
         <source>Show</source>
         <translation>Mostra</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="773"/>
+        <location filename="../QScintilla/Shell.py" line="781"/>
         <source>Select History</source>
         <translation>Selezione cronologia</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="773"/>
+        <location filename="../QScintilla/Shell.py" line="781"/>
         <source>Select the history entry to execute (most recent shown last).</source>
         <translation>Seleziona l&apos;elemento dalla cronologia da esegurie (i più recenti sono gli ultimi).</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="840"/>
+        <location filename="../QScintilla/Shell.py" line="848"/>
         <source>
 Not connected</source>
         <translation>
 Non connesso</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="319"/>
+        <location filename="../QScintilla/Shell.py" line="320"/>
         <source>Configure...</source>
         <translation>Configura...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="303"/>
+        <location filename="../QScintilla/Shell.py" line="304"/>
         <source>Cut</source>
         <translation>Taglia</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1033"/>
-        <source>StdOut: {0}</source>
-        <translation>StdOut: {0}</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="1041"/>
+        <source>StdOut: {0}</source>
+        <translation>StdOut: {0}</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="1049"/>
         <source>StdErr: {0}</source>
         <translation>StdErr: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2178"/>
+        <location filename="../QScintilla/Shell.py" line="2199"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; non è un file.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="309"/>
+        <location filename="../QScintilla/Shell.py" line="310"/>
         <source>Find</source>
         <translation>Trova</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="891"/>
+        <location filename="../QScintilla/Shell.py" line="899"/>
         <source>Exception &quot;{0}&quot;
 {1}
 File: {2}, Line: {3}
@@ -68026,81 +68026,81 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="926"/>
+        <location filename="../QScintilla/Shell.py" line="934"/>
         <source>Unspecified syntax error.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="901"/>
+        <location filename="../QScintilla/Shell.py" line="909"/>
         <source>Exception &quot;{0}&quot;
 {1}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="928"/>
+        <location filename="../QScintilla/Shell.py" line="936"/>
         <source>Syntax error &quot;{1}&quot; in file {0} at line {2}, character {3}.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="951"/>
+        <location filename="../QScintilla/Shell.py" line="959"/>
         <source>Signal &quot;{0}&quot; generated in file {1} at line {2}.
 Function: {3}({4})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2035"/>
+        <location filename="../QScintilla/Shell.py" line="2056"/>
         <source>Project</source>
         <translation type="unfinished">Progetto</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Shell.py" line="313"/>
+        <source>Restart</source>
+        <translation type="unfinished">Riavvio</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="314"/>
+        <source>Restart and Clear</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="318"/>
+        <source>Active Name</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="1867"/>
+        <source>Available Virtual Environments:
+{0}
+</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="1917"/>
+        <source>Current Virtual Environment: &apos;{0}&apos;
+</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="853"/>
+        <source>{0} on {1}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="1075"/>
+        <source>&lt;{0}&gt; {1}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Shell.py" line="159"/>
-        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;restart&apos; kills the shell and starts a new one. &apos;clear&apos; clears the display of the shell window. &apos;start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;envs&apos; or &apos;environments&apos; commands. The active virtual environment can be questioned by the &apos;which&apos; command. &apos;quit&apos; or &apos;exit&apos; is used to exit the application. These commands (except environments&apos;, &apos;envs&apos; and &apos;which&apos;) are available through the window menus as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="186"/>
-        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.&lt;/p&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;restart&apos; kills the shell and starts a new one. &apos;clear&apos; clears the display of the shell window. &apos;start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;envs&apos; or &apos;environments&apos; commands. The active virtual environment can be questioned by the &apos;which&apos; command. These commands (except environments&apos; and &apos;envs&apos;) are available through the context menu as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;&lt;p&gt;In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="312"/>
-        <source>Restart</source>
-        <translation type="unfinished">Riavvio</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="313"/>
-        <source>Restart and Clear</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="317"/>
-        <source>Active Name</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="1850"/>
-        <source>Available Virtual Environments:
-{0}
-</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="1896"/>
-        <source>Current Virtual Environment: &apos;{0}&apos;
-</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="845"/>
-        <source>{0} on {1}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="1067"/>
-        <source>&lt;{0}&gt; {1}</source>
+        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;%restart&apos; kills the shell and starts a new one. &apos;%clear&apos; clears the display of the shell window. &apos;%start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. &apos;%start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;%envs&apos; or &apos;%environments&apos; commands. The active virtual environment can be questioned by the &apos;%which&apos; command. &apos;%quit&apos; or &apos;%exit&apos; is used to exit the application. These commands (except &apos;%environments&apos;, &apos;%envs&apos; and &apos;%which&apos;) are available through the window menus as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="187"/>
+        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.&lt;/p&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;%restart&apos; kills the shell and starts a new one. &apos;%clear&apos; clears the display of the shell window. &apos;%start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. &apos;%start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;%envs&apos; or &apos;%environments&apos; commands. The active virtual environment can be questioned by the &apos;%which&apos; command. These commands (except &apos;%environments&apos; and &apos;%envs&apos;) are available through the context menu as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;&lt;p&gt;In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -68950,62 +68950,62 @@
 <context>
     <name>ShortcutsDialog</name>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="131"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="132"/>
         <source>Project</source>
         <translation>Progetto</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="135"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="136"/>
         <source>General</source>
         <translation>Generale</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="145"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="146"/>
         <source>Debug</source>
         <translation>Debug</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="139"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="140"/>
         <source>Wizards</source>
         <translation>Assistente</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="149"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="150"/>
         <source>Edit</source>
         <translation>Modifica</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="153"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="154"/>
         <source>File</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="157"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="158"/>
         <source>Search</source>
         <translation>Ricerca</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="161"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="162"/>
         <source>View</source>
         <translation>Visualizza</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="165"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="166"/>
         <source>Macro</source>
         <translation>Macro</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="169"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="170"/>
         <source>Bookmarks</source>
         <translation>Segnalibri</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="181"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="182"/>
         <source>Window</source>
         <translation>Finestra</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="364"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="365"/>
         <source>Edit shortcuts</source>
         <translation>Scorciatoie editor</translation>
     </message>
@@ -69077,22 +69077,22 @@
         <translation>Seleziona per filtrare in base alla scorciatorio o alla scorciatoia alternativa</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="174"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="175"/>
         <source>Spelling</source>
         <translation>Spelling</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="327"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="328"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has already been allocated to the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; è già stata selezionata per l&apos;azione &lt;b&gt;{1}&lt;/b&gt; . Rimuovi?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="347"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="348"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; hides the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; nasconde l&apos;azione &lt;b&gt;{1}&lt;/b&gt; . Rimuovi?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="364"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="365"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is hidden by the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; è nascosta dall&apos;azione &lt;b&gt;{1}&lt;/b&gt; . Rimuovi?&lt;/p&gt;</translation>
     </message>
@@ -69102,7 +69102,7 @@
         <translation type="obsolete">Web Browser di eric6</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="197"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="198"/>
         <source>eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
@@ -69216,32 +69216,32 @@
         <translation type="unfinished">Sicurezza</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="263"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="264"/>
         <source>Preview not available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="290"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="291"/>
         <source>Copy Image Location to Clipboard</source>
         <translation type="unfinished">Copia la posizione dell&apos;immagine nella Clipboard</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="293"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="294"/>
         <source>Copy Image Name to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="357"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="358"/>
         <source>Save Image</source>
         <translation type="unfinished">Salva immagine</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="346"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="347"/>
         <source>All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="357"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="358"/>
         <source>&lt;p&gt;Cannot write to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -69256,12 +69256,12 @@
         <translation type="obsolete">Percorso:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="276"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="277"/>
         <source>Loading...</source>
         <translation type="unfinished">Caricamento...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="334"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="335"/>
         <source>&lt;p&gt;This preview is not available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -69294,62 +69294,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="68"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="70"/>
         <source>Your connection to this site is &lt;b&gt;secure&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="73"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="75"/>
         <source>Your connection to this site is &lt;b&gt;not secure&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="88"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="90"/>
         <source>This is your &lt;b&gt;{0}.&lt;/b&gt; visit of this site.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="94"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="96"/>
         <source>You have &lt;b&gt;never&lt;/b&gt; visited this site before.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="103"/>
-        <source>first</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="105"/>
-        <source>second</source>
+        <source>first</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="107"/>
+        <source>second</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="109"/>
         <source>third</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="108"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="110"/>
         <source>This is your &lt;b&gt;{0}&lt;/b&gt; visit of this site.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="129"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="131"/>
         <source>Register as &lt;b&gt;{0}&lt;/b&gt; links handler.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="136"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="138"/>
         <source>Register</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="153"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="156"/>
         <source>More...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="62"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="64"/>
         <source>Your connection to this site &lt;b&gt;may not be secure&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -69487,17 +69487,17 @@
         <translation type="unfinished">X11 Pixmap File (*.xpm)</translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="252"/>
+        <location filename="../Snapshot/SnapWidget.py" line="253"/>
         <source>Save Snapshot</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="231"/>
+        <location filename="../Snapshot/SnapWidget.py" line="232"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="252"/>
+        <location filename="../Snapshot/SnapWidget.py" line="253"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation type="unfinished">Impossibile scrivere il file {0}:
@@ -69544,7 +69544,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="389"/>
+        <location filename="../Snapshot/SnapWidget.py" line="390"/>
         <source>The application contains an unsaved snapshot.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -69559,7 +69559,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="355"/>
+        <location filename="../Snapshot/SnapWidget.py" line="356"/>
         <source>Preview of the snapshot image ({0} x {1})</source>
         <translation type="unfinished"></translation>
     </message>
@@ -69599,7 +69599,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="419"/>
+        <location filename="../Snapshot/SnapWidget.py" line="420"/>
         <source>eric Snapshot</source>
         <translation type="unfinished"></translation>
     </message>
@@ -69607,7 +69607,7 @@
 <context>
     <name>SnapshotFreehandGrabber</name>
     <message>
-        <location filename="../Snapshot/SnapshotFreehandGrabber.py" line="72"/>
+        <location filename="../Snapshot/SnapshotFreehandGrabber.py" line="76"/>
         <source>Select a region using the mouse. To take the snapshot, press the Enter key or double click. Press Esc to quit.</source>
         <translation>Selezionare una zona usando il mouse. Per fissare il blocco, premere il tasto &apos;Enter&apos; o doppio click del mouse. Premere il tasto Esc per uscire.</translation>
     </message>
@@ -69615,7 +69615,7 @@
 <context>
     <name>SnapshotRegionGrabber</name>
     <message>
-        <location filename="../Snapshot/SnapshotRegionGrabber.py" line="104"/>
+        <location filename="../Snapshot/SnapshotRegionGrabber.py" line="107"/>
         <source>Select a region using the mouse. To take the snapshot, press the Enter key or double click. Press Esc to quit.</source>
         <translation>Selezionare una zona usando il mouse. Per fissare il blocco, premere il tasto &apos;Enter&apos; o doppio click del mouse. Premere il tasto Esc per uscire.</translation>
     </message>
@@ -69623,7 +69623,7 @@
 <context>
     <name>SnapshotTimer</name>
     <message numerus="yes">
-        <location filename="../Snapshot/SnapshotTimer.py" line="104"/>
+        <location filename="../Snapshot/SnapshotTimer.py" line="110"/>
         <source>Snapshot will be taken in %n seconds</source>
         <translation>
             <numerusform>L&apos;istantanea verrà fissata in %n secondo</numerusform>
@@ -69745,27 +69745,27 @@
 <context>
     <name>SpeedDial</name>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="401"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="402"/>
         <source>Unable to load</source>
         <translation>Impossibile caricare</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="207"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="208"/>
         <source>Saving Speed Dial data</source>
         <translation>Salvare i parametri di velocità di commutazione</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="207"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="208"/>
         <source>&lt;p&gt;Speed Dial data could not be saved to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;I parametri velocità di commutazione non possono essere salvati &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="220"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="221"/>
         <source>Reset Speed Dials</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="220"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="221"/>
         <source>Are you sure you want to reset the speed dials to the default pages?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -70159,22 +70159,22 @@
         <translation>Pronto</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="162"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="163"/>
         <source>Unable to open database</source>
         <translation>Non posso aprire il database</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="304"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="307"/>
         <source>Query OK.</source>
         <translation>Query OK.</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="162"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="163"/>
         <source>An error occurred while opening the connection.</source>
         <translation>Si è verificato un errore nell&apos;apertura della connession.</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="306"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="309"/>
         <source>Query OK, number of affected rows: {0}</source>
         <translation>Query OK, numero di righe interessate: {0}</translation>
     </message>
@@ -70343,62 +70343,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="52"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="53"/>
         <source>Revocation information for the certificate is not available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="55"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="56"/>
         <source>The certificate has been revoked.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="57"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="58"/>
         <source>The certificate is invalid.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="59"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="60"/>
         <source>The certificate is signed using a weak signature algorithm.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="62"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="63"/>
         <source>The host name specified in the certificate is not unique.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="65"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="66"/>
         <source>The certificate contains a weak key.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="67"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="69"/>
         <source>The certificate claimed DNS names that are in violation of name constraints.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="98"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="101"/>
         <source>No error description available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="129"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="132"/>
         <source>Remove Selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="134"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="137"/>
         <source>Remove All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="73"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="75"/>
         <source>The certificate has a validity period that is too long.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="82"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="85"/>
         <source>Certificate Transparency was required for this connection, but the server did not provide information that complied with the policy.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -70433,12 +70433,12 @@
         <translation type="unfinished">Directory di &amp;Lavoro:</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="215"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="218"/>
         <source>Select this to erase the collected coverage information</source>
         <translation>Seleziona per cancellare le informazioni di coverage collezionate</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="218"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="221"/>
         <source>&lt;b&gt;Erase coverage information&lt;/b&gt;
 &lt;p&gt;Select this to erase the collected coverage information before the next coverage run.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cancella informazioni di coverage&lt;/b&gt;
@@ -70457,7 +70457,7 @@
 &lt;p&gt;Inserisci la directory di lavoro dell&apos;applicazione da debuggare. Lascia vuoto per impostare la directory di lavoro a quella di esecuzione.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="151"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="154"/>
         <source>Environment Variables:</source>
         <translation type="unfinished">Ambient&amp;e:</translation>
     </message>
@@ -70467,49 +70467,49 @@
         <translation>Inserisci la variabile d&apos;ambiente da impostare.</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="165"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="168"/>
         <source>Uncheck to disable exception reporting</source>
         <translation>Deseleziona per disabilitare la notifica delle eccezioni</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="168"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="171"/>
         <source>&lt;b&gt;Report exceptions&lt;/b&gt;
 &lt;p&gt;Uncheck this in order to disable exception reporting.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Notifica eccezioni&lt;/b&gt;
 &lt;p&gt;Deseleziona per disabilitare la notifica delle eccezioni.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="172"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="175"/>
         <source>Report exceptions</source>
         <translation type="unfinished">Notifica &amp;eccezioni</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="175"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="178"/>
         <source>Alt+E</source>
         <translation>Alt+E</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="222"/>
-        <source>Erase coverage information</source>
-        <translation type="unfinished">Cancella informazioni di &amp;coverage</translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="225"/>
+        <source>Erase coverage information</source>
+        <translation type="unfinished">Cancella informazioni di &amp;coverage</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="228"/>
         <source>Alt+C</source>
         <translation>Alt+C</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="185"/>
-        <source>Select to clear the display of the interpreter window</source>
-        <translation>Selezione per pulire il display della finestra dell&apos;interprete</translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="188"/>
-        <source>&lt;b&gt;Clear interpreter window&lt;/b&gt;&lt;p&gt;This clears the display of the interpreter window before starting the debug client.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Pulisci finestra interprete&lt;/b&gt;&lt;p&gt;Pulisce il display della finestra dell&apos;interprete prima di avviare il client di debug.&lt;/p&gt;</translation>
+        <source>Select to clear the display of the interpreter window</source>
+        <translation>Selezione per pulire il display della finestra dell&apos;interprete</translation>
     </message>
     <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="191"/>
+        <source>&lt;b&gt;Clear interpreter window&lt;/b&gt;&lt;p&gt;This clears the display of the interpreter window before starting the debug client.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Pulisci finestra interprete&lt;/b&gt;&lt;p&gt;Pulisce il display della finestra dell&apos;interprete prima di avviare il client di debug.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="194"/>
         <source>Clear interpreter window</source>
         <translation type="unfinished">Pulisci finestra dell&apos;&amp;Interprete</translation>
     </message>
@@ -70523,19 +70523,19 @@
 &lt;p&gt;Esempio: var1=1 var2=&quot;hello world&quot; var3+=&quot;:/tmp&quot;&lt;p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="201"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="204"/>
         <source>Select to start the debugger in a console window</source>
         <translation>Seleziona per avviare il debugger in una console</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="204"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="207"/>
         <source>&lt;b&gt;Start in console&lt;/b&gt;
 &lt;p&gt;Select to start the debugger in a console window. The console command has to be configured on the Debugger-&amp;gt;General page&lt;/p&gt;</source>
         <translation>&lt;b&gt;Avvia in console&lt;/b&gt;
 &lt;p&gt;Seleziona per avviare il debugger in una console. Il comando della console deve essere configurato nella pagina Debugger-&amp;gt;General page&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="208"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="211"/>
         <source>Start in console</source>
         <translation>Avvia in console</translation>
     </message>
@@ -70545,7 +70545,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="141"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="144"/>
         <source>Virtual Environment:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -70803,42 +70803,42 @@
 <context>
     <name>StartDialog</name>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="108"/>
+        <location filename="../Debugger/StartDialog.py" line="109"/>
         <source>Clear Histories</source>
         <translation>Pulisci cronologia</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="279"/>
+        <location filename="../Debugger/StartDialog.py" line="281"/>
         <source>Edit History</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="266"/>
-        <source>Command Line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="267"/>
-        <source>Working Directory</source>
-        <translation type="unfinished">Directory di lavoro</translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartDialog.py" line="268"/>
+        <source>Command Line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="269"/>
+        <source>Working Directory</source>
+        <translation type="unfinished">Directory di lavoro</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="270"/>
         <source>Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Debugger/StartDialog.py" line="281"/>
+        <source>Select the history list to be edited:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Debugger/StartDialog.py" line="279"/>
-        <source>Select the history list to be edited:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="277"/>
         <source>No Debug Programs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="142"/>
+        <location filename="../Debugger/StartDialog.py" line="143"/>
         <source>Enter the list of programs or program patterns not to be debugged separated by &apos;{0}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -71576,12 +71576,12 @@
         <translation>Proprietà cancellata.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2244"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2245"/>
         <source>Subversion Lock</source>
         <translation>Lock Subversion</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2244"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2245"/>
         <source>Enter lock comment</source>
         <translation>Inserico commento del lock</translation>
     </message>
@@ -71955,32 +71955,32 @@
         <translation>Viewer SVG</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="91"/>
+        <location filename="../Graphics/SvgDiagram.py" line="92"/>
         <source>Close</source>
         <translation>Chiudi</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="96"/>
+        <location filename="../Graphics/SvgDiagram.py" line="97"/>
         <source>Print</source>
         <translation>Stampa</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="131"/>
+        <location filename="../Graphics/SvgDiagram.py" line="132"/>
         <source>Window</source>
         <translation>Finestra</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="135"/>
+        <location filename="../Graphics/SvgDiagram.py" line="136"/>
         <source>Graphics</source>
         <translation>Grafica</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="101"/>
+        <location filename="../Graphics/SvgDiagram.py" line="102"/>
         <source>Print Preview</source>
         <translation>Anteprima Stampa</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="362"/>
+        <location filename="../Graphics/SvgDiagram.py" line="363"/>
         <source>Diagram: {0}</source>
         <translation>Diagramma: {0}</translation>
     </message>
@@ -72053,12 +72053,12 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="102"/>
         <source>Process Generation Error</source>
         <translation>Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="102"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Il processo {0}  non può essere avviato. Assicurarsi che sia nel path.</translation>
     </message>
@@ -72133,22 +72133,22 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="83"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="85"/>
         <source>Files (relative to {0}):</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="152"/>
         <source>No changelists found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Il processo {0}  non può essere avviato. Assicurarsi che sia nel path.</translation>
     </message>
@@ -72334,7 +72334,7 @@
 <context>
     <name>SvnDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="169"/>
         <source>Process Generation Error</source>
         <translation>Errore Generazione Processo</translation>
     </message>
@@ -72394,24 +72394,24 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="82"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="84"/>
         <source> (binary)</source>
         <translation> (binario)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="169"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Il processo {0}  non può essere avviato. Assicurarsi che sia nel path.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="75"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="77"/>
         <source>Revision {0}.
 </source>
         <translation>Revisione {0}.
 </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="86"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="88"/>
         <source>{0} {1}{2}
 </source>
         <translation>{0} {1}{2}
@@ -72449,22 +72449,22 @@
 <context>
     <name>SvnDiffDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="175"/>
         <source>Subversion Diff</source>
         <translation>Subversion Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="207"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="209"/>
         <source>There is no difference.</source>
         <translation>Non ci sono differenze.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="367"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="377"/>
         <source>Patch Files (*.diff)</source>
         <translation>File Patch (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="399"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="409"/>
         <source>Save Diff</source>
         <translation>Salva Diff</translation>
     </message>
@@ -72524,44 +72524,44 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="189"/>
         <source>Process Generation Error</source>
         <translation>Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="175"/>
         <source>There is no temporary directory available.</source>
         <translation>Non c&apos;è la directory temporanea disponibile.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="189"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Il processo {0}  non può essere avviato. Assicurarsi che sia nel path.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="399"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="409"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere salvato.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="211"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="219"/>
         <source>Processing file &apos;{0}&apos;...
 </source>
         <translation>Processo file &apos;{0}&apos;...
 </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="384"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="394"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file  patch &lt;b&gt;{0}&lt;/b&gt; esiste già.Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="220"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="226"/>
         <source>&lt;Start&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="221"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="227"/>
         <source>&lt;End&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -72727,12 +72727,12 @@
         <translation>Log Subversion</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="664"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="679"/>
         <source>Revision</source>
         <translation>Revisione</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="661"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="676"/>
         <source>Author</source>
         <translation>Autore</translation>
     </message>
@@ -72742,7 +72742,7 @@
         <translation>Data</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="164"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="167"/>
         <source>Message</source>
         <translation>Messaggio</translation>
     </message>
@@ -72852,27 +72852,27 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="93"/>
         <source>Added</source>
         <translation>Aggiunto</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="91"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="94"/>
         <source>Deleted</source>
         <translation>Cancellato</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="92"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="95"/>
         <source>Modified</source>
         <translation>Modificato</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="519"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="535"/>
         <source>Subversion Error</source>
         <translation>Errore Subversion</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="309"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="317"/>
         <source>Process Generation Error</source>
         <translation>Errore Generazione Processo</translation>
     </message>
@@ -72917,12 +72917,12 @@
         <translation>Ferma su Copy/Move</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="309"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="317"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Il processo {0}  non può essere avviato. Assicurarsi che sia nel path.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="93"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="96"/>
         <source>Replaced</source>
         <translation type="unfinished"></translation>
     </message>
@@ -73092,7 +73092,7 @@
         <translation>&amp;Protocollo:</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="129"/>
         <source>&amp;URL:</source>
         <translation>&amp;URL:</translation>
     </message>
@@ -73141,7 +73141,7 @@
         <translation>&lt;b&gt;URL&lt;/b&gt;&lt;p&gt;Inserisci l&apos;URL per il modulo. Per un repository con un layout standard, non deve contenere la parte del trunk, tags o branches.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="121"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="122"/>
         <source>Pat&amp;h:</source>
         <translation></translation>
     </message>
@@ -74028,12 +74028,12 @@
 &lt;p&gt;Mostra i possibile messaggi di errore del comando subversion proplist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="154"/>
         <source>Process Generation Error</source>
         <translation>Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnPropListDialog.py" line="145"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnPropListDialog.py" line="152"/>
         <source>None</source>
         <translation>Nessuno</translation>
     </message>
@@ -74043,7 +74043,7 @@
         <translation>Errori</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="154"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Il processo {0}  non può essere avviato. Assicurarsi che sia nel path.</translation>
     </message>
@@ -74247,22 +74247,22 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="281"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="288"/>
         <source>Subversion Error</source>
         <translation>Errore Subversion</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="267"/>
         <source>Process Generation Error</source>
         <translation>Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="204"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="208"/>
         <source>The installed version of PySvn should be 1.4.0 or better.</source>
         <translation>La versione di PySvn installata deve essere 1.4.0 o superiore.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="267"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Il processo {0}  non può essere avviato. Assicurarsi che sia nel path.</translation>
     </message>
@@ -74378,152 +74378,152 @@
 <context>
     <name>SvnStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="173"/>
         <source>normal</source>
         <translation>normale</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="158"/>
-        <source>added</source>
-        <translation>aggiunto</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="160"/>
-        <source>deleted</source>
-        <translation>cancellato</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="171"/>
-        <source>modified</source>
-        <translation>modificato</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="172"/>
-        <source>conflict</source>
-        <translation>conflitto</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="165"/>
-        <source>unversioned</source>
-        <translation>non versionato</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="166"/>
-        <source>missing</source>
-        <translation>mancante</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="167"/>
-        <source>type error</source>
-        <translation>errore tipo</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="196"/>
-        <source>no</source>
-        <translation>no</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="195"/>
-        <source>yes</source>
-        <translation>si</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="185"/>
-        <source>external</source>
-        <translation>esterno</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="161"/>
+        <source>added</source>
+        <translation>aggiunto</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="163"/>
+        <source>deleted</source>
+        <translation>cancellato</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="174"/>
+        <source>modified</source>
+        <translation>modificato</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="175"/>
+        <source>conflict</source>
+        <translation>conflitto</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="168"/>
+        <source>unversioned</source>
+        <translation>non versionato</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="169"/>
+        <source>missing</source>
+        <translation>mancante</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="170"/>
+        <source>type error</source>
+        <translation>errore tipo</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="199"/>
+        <source>no</source>
+        <translation>no</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="198"/>
+        <source>yes</source>
+        <translation>si</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="188"/>
+        <source>external</source>
+        <translation>esterno</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="164"/>
         <source>ignored</source>
         <translation>ignorato</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="400"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="406"/>
         <source>Subversion Status</source>
         <translation>Stato Subversion</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="83"/>
         <source>Commit changes to repository...</source>
         <translation>Committa modifiche nel repository...</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="742"/>
         <source>Commit</source>
         <translation>Commit</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="850"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="867"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation>Non ci sono modifiche disponibili/selezionate da committare.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="873"/>
-        <source>Lock</source>
-        <translation>Lock</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890"/>
+        <source>Lock</source>
+        <translation>Lock</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="907"/>
         <source>Unlock</source>
         <translation>Unlock</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="111"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="113"/>
         <source>Break lock</source>
         <translation>Spezza lock</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="116"/>
         <source>Steal lock</source>
         <translation>Ruba lock</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="189"/>
-        <source>locked</source>
-        <translation>bloccato</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="190"/>
-        <source>other lock</source>
-        <translation>altro lock</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="191"/>
-        <source>stolen lock</source>
-        <translation>lock rubato</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="192"/>
+        <source>locked</source>
+        <translation>bloccato</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="193"/>
+        <source>other lock</source>
+        <translation>altro lock</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="194"/>
+        <source>stolen lock</source>
+        <translation>lock rubato</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="195"/>
         <source>broken lock</source>
         <translation>lock rotto</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="188"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="191"/>
         <source>not locked</source>
         <translation>non bloccato</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="163"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="166"/>
         <source>replaced</source>
         <translation>sostituito</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="873"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890"/>
         <source>There are no unlocked files available/selected.</source>
         <translation>Non ci sono file sbloccati disponibili/selezionati.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="926"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="943"/>
         <source>There are no locked files available/selected.</source>
         <translation>Non ci sono file bloccati disponibili/selezionati.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="908"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="925"/>
         <source>Break Lock</source>
         <translation>Spezza lock</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="926"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="943"/>
         <source>Steal Lock</source>
         <translation>Ruba lock</translation>
     </message>
@@ -74640,12 +74640,12 @@
         <translation>Premi per aggiornare lo stato</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="120"/>
         <source>Adjust column sizes</source>
         <translation>Adatta dimensione colonne</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="413"/>
         <source>Process Generation Error</source>
         <translation>Errore Generazione Processo</translation>
     </message>
@@ -74655,27 +74655,27 @@
         <translation>Aggiorna</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="90"/>
         <source>Add to repository</source>
         <translation>Aggiungi al repository</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="96"/>
         <source>Revert changes</source>
         <translation>Inverti modifiche</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="765"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="782"/>
         <source>Add</source>
         <translation>Aggiungi</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="765"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="782"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation>Non ci sono elementi non sotto controllo disponibili/selezionati.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="811"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="828"/>
         <source>Revert</source>
         <translation>Inverti</translation>
     </message>
@@ -74685,27 +74685,27 @@
         <translation>Changelist</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="102"/>
         <source>Add to Changelist</source>
         <translation>Aggiungi alla Changelist</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979"/>
         <source>Remove from Changelist</source>
         <translation>Rimuovi dalla Changelist</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="943"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="960"/>
         <source>There are no files available/selected not belonging to a changelist.</source>
         <translation>Non ci sono file disponibili/selezionati che non appartengono ad una changelist.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979"/>
         <source>There are no files available/selected belonging to a changelist.</source>
         <translation>Non ci sono file disponibili/selezionati che appartengono ad una changelist.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="413"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Il processo {0}  non può essere avviato. Assicurarsi che sia nel path.</translation>
     </message>
@@ -74770,42 +74770,42 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="92"/>
         <source>Show differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="96"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="98"/>
         <source>Restore missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="637"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="654"/>
         <source>all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="742"/>
         <source>There are no entries selected to be committed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="811"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="828"/>
         <source>There are no missing entries available/selected.</source>
         <translation type="unfinished">Non ci sono elementi mancati disponibili/selezionati.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="829"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="846"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="83"/>
-        <source>Select all for commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="85"/>
+        <source>Select all for commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="87"/>
         <source>Deselect all from commit</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74820,17 +74820,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="92"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="94"/>
         <source>Show differences side-by-side</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="857"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="874"/>
         <source>Side-by-Side Diff</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="857"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="874"/>
         <source>Only one file with uncommitted changes must be selected.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74922,37 +74922,37 @@
 <context>
     <name>SvnTagBranchListDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="96"/>
         <source>Subversion Branches List</source>
         <translation>Elenco branch Subversion</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="127"/>
         <source>Subversion Error</source>
         <translation>Subversion Error</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="107"/>
         <source>The URL of the project repository could not be retrieved from the working copy. The list operation will be aborted</source>
         <translation>L&apos;URL del repository del progetto non può essere recuperato dalla copia di lavoro. L&apos;operazione verrà interrotta</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="127"/>
         <source>The URL of the project repository has an invalid format. The list operation will be aborted</source>
         <translation>L&apos;URL del repository del progetto ha un formato non valido. L&apos;operazione verrà interrotta</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="155"/>
         <source>Subversion List</source>
         <translation>Subversion List</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="142"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="144"/>
         <source>Enter the repository URL containing the tags or branches</source>
         <translation>Inserisci l&apos;URL del repository che contiene i tag o i branch</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="155"/>
         <source>The repository URL is empty. Aborting...</source>
         <translation>L&apos;URL del repository è vuoto. Esco...</translation>
     </message>
@@ -75041,17 +75041,17 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="172"/>
         <source>Process Generation Error</source>
         <translation>Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="160"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="162"/>
         <source>The installed version of PySvn should be 1.4.0 or better.</source>
         <translation>La versione installata di PySvn deve essere 1.4.0 o superiore.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="172"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Il processo {0}  non può essere avviato. Assicurarsi che sia nel path.</translation>
     </message>
@@ -77005,7 +77005,7 @@
         <translation>Premi per mostrare tutti i file che contengono errori di sintassi</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="397"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="409"/>
         <source>No issues found.</source>
         <translation>Nessun problema trovato.</translation>
     </message>
@@ -77030,7 +77030,7 @@
         <translation>Avvia</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="288"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="297"/>
         <source>Error: {0}</source>
         <translation>Errore: {0}</translation>
     </message>
@@ -77040,17 +77040,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="274"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="283"/>
         <source>Preparing files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="98"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="101"/>
         <source>Errors</source>
         <translation type="unfinished">Errori</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="298"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="307"/>
         <source>Transferring data...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77336,72 +77336,72 @@
 <context>
     <name>TabManagerWidget</name>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="73"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="74"/>
         <source>Tab Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="127"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="128"/>
         <source>Saved Tabs</source>
         <translation type="unfinished">Salva Linguette</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="171"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="172"/>
         <source>Local File System:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="173"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="174"/>
         <source>eric Web Browser:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="175"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="176"/>
         <source> [FTP]:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="314"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="317"/>
         <source>Window {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="315"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="318"/>
         <source>Double click to switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="506"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="509"/>
         <source>Group by</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="507"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="510"/>
         <source>&amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="512"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="515"/>
         <source>&amp;Domain</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="517"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="520"/>
         <source>&amp;Host</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="528"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="531"/>
         <source>&amp;Bookmark checked tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="533"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="536"/>
         <source>&amp;Close checked tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="567"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="570"/>
         <source>Show Tab Manager</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77409,42 +77409,42 @@
 <context>
     <name>TabWidget</name>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="256"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="262"/>
         <source>Close</source>
         <translation>Chiudi</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="262"/>
-        <source>Close All</source>
-        <translation>Chiudi tutti</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="265"/>
-        <source>Save</source>
-        <translation>Salva</translation>
-    </message>
-    <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="268"/>
-        <source>Save As...</source>
-        <translation>Salva come...</translation>
+        <source>Close All</source>
+        <translation>Chiudi tutti</translation>
     </message>
     <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="271"/>
+        <source>Save</source>
+        <translation>Salva</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="274"/>
+        <source>Save As...</source>
+        <translation>Salva come...</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="277"/>
         <source>Save All</source>
         <translation>Salva Tutti</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="279"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="285"/>
         <source>Print</source>
         <translation>Stampa</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="243"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="249"/>
         <source>Move Left</source>
         <translation>Muovi a sinistra</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="246"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="252"/>
         <source>Move Right</source>
         <translation>Muovi a destra</translation>
     </message>
@@ -77454,37 +77454,37 @@
         <translation type="obsolete">Chiudi la finestra attuale</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="249"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="255"/>
         <source>Move First</source>
         <translation>Muovi al primo</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="252"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="258"/>
         <source>Move Last</source>
         <translation>Muovi all&apos;ultima</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="212"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="216"/>
         <source>Show a navigation menu</source>
         <translation>Mostra un menù di navigazione</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="259"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="265"/>
         <source>Close Others</source>
         <translation>Chiudi altri</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="437"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="443"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="283"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="289"/>
         <source>Copy Path to Clipboard</source>
         <translation>Copia il path nella Clipboard</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="275"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="281"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77592,12 +77592,12 @@
 <context>
     <name>Tabview</name>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1002"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1008"/>
         <source>Untitled {0}</source>
         <translation>Senza titolo {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1406"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1412"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
@@ -78150,17 +78150,17 @@
 <context>
     <name>TemplateMultipleVariablesDialog</name>
     <message>
-        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="105"/>
+        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="106"/>
         <source>Enter Template Variables</source>
         <translation>Inserisci la variabile template</translation>
     </message>
     <message>
-        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="106"/>
-        <source>&amp;OK</source>
-        <translation>&amp;OK</translation>
-    </message>
-    <message>
         <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="107"/>
+        <source>&amp;OK</source>
+        <translation>&amp;OK</translation>
+    </message>
+    <message>
+        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="108"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Cancella</translation>
     </message>
@@ -79156,12 +79156,12 @@
         <translation>Elenca i path o i file da escludere dalla traduzione</translation>
     </message>
     <message>
-        <location filename="../Project/TranslationPropertiesDialog.py" line="148"/>
+        <location filename="../Project/TranslationPropertiesDialog.py" line="149"/>
         <source>Exempt file from translation</source>
         <translation>Escludi file dalla traduzione</translation>
     </message>
     <message>
-        <location filename="../Project/TranslationPropertiesDialog.py" line="161"/>
+        <location filename="../Project/TranslationPropertiesDialog.py" line="162"/>
         <source>Exempt directory from translation</source>
         <translation>Escludi directory dalla traduzione</translation>
     </message>
@@ -80616,97 +80616,97 @@
 <context>
     <name>UMLGraphicsView</name>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="78"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="79"/>
         <source>Delete shapes</source>
         <translation>Cancella forme</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="111"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="112"/>
         <source>Set size</source>
         <translation>Imposta dimensioni</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="121"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="122"/>
         <source>Re-Layout</source>
         <translation>Re-Layout</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="208"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="215"/>
         <source>Graphics</source>
         <translation>Grafica</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="357"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="364"/>
         <source>Save Diagram</source>
         <translation>Salva diagramma</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="126"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="127"/>
         <source>Align Left</source>
         <translation>Allinea a sinistra</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="132"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="134"/>
         <source>Align Center Horizontal</source>
         <translation>Allineamento orizzontare centrato</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="138"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="141"/>
         <source>Align Right</source>
         <translation>Allinea a destra</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="144"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="148"/>
         <source>Align Top</source>
         <translation>Allinea in alto</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="150"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="155"/>
         <source>Align Center Vertical</source>
         <translation>Allineamento verticale centrato</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="156"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="162"/>
         <source>Align Bottom</source>
         <translation>Allinea in basso</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="330"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="337"/>
         <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source>
         <translation>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="83"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="84"/>
         <source>Increase width by {0} points</source>
         <translation>Aumenta larghezza di {0} punti</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="90"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="91"/>
         <source>Increase height by {0} points</source>
         <translation>Aumenta altezza di {0} punti</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="97"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="98"/>
         <source>Decrease width by {0} points</source>
         <translation>Diminuisci larghezza di {0} punti</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="104"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="105"/>
         <source>Decrease height by {0} points</source>
         <translation>Diminuisci altezza di {0} punti</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="357"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="364"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non può essere salvato.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="345"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="352"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; esiste già. Sovrascriverlo ?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="116"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="117"/>
         <source>Re-Scan</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80790,17 +80790,17 @@
 <context>
     <name>UnittestDialog</name>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="903"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="906"/>
         <source>Unittest</source>
         <translation>Unittest</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="166"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="168"/>
         <source>^Failure: </source>
         <translation>^Failure:</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="167"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="169"/>
         <source>^Error: </source>
         <translation>^Error: </translation>
     </message>
@@ -80810,12 +80810,12 @@
         <translation type="obsolete">Devi inserire il file di una suite di test.</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="699"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="702"/>
         <source>Preparing Testsuite</source>
         <translation>Preparazione Testsuite</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="985"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="988"/>
         <source>Running</source>
         <translation>In esecuzione</translation>
     </message>
@@ -80952,12 +80952,12 @@
 Facendo doppio click su un elemento verrà aperto il rispettivo traceback.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="98"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="100"/>
         <source>Start the selected testsuite</source>
         <translation>Avvia la testsuite selezioanata</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="113"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="115"/>
         <source>Stop the running unittest</source>
         <translation>Ferma l&apos;esecuzione della unittest</translation>
     </message>
@@ -80967,32 +80967,32 @@
         <translation>Attesa</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="96"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="98"/>
         <source>Start</source>
         <translation>Inizia</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="100"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="102"/>
         <source>&lt;b&gt;Start Test&lt;/b&gt;&lt;p&gt;This button starts the selected testsuite.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Avvia test&lt;/b&gt;&lt;P&gt;Questo pulsante avvia la testsuite selezionata.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="111"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="113"/>
         <source>Stop</source>
         <translation>Ferma</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="114"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="116"/>
         <source>&lt;b&gt;Stop Test&lt;/b&gt;&lt;p&gt;This button stops a running unittest.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ferma test&lt;/b&gt;&lt;p&gt;Questo pulsante ferma una unitttest in esecuzione.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1158"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1161"/>
         <source>Show Source</source>
         <translation>Mostra sorgenti</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="304"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="306"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation>File Python (*.py);;Tutti i File (*)</translation>
     </message>
@@ -81017,12 +81017,12 @@
         <translation type="obsolete">Eseguiti {0} test in {1:.3f} s</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1029"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1032"/>
         <source>Failure: {0}</source>
         <translation>Fallimenti: {0}</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1044"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1047"/>
         <source>Error: {0}</source>
         <translation>Errori: {0}</translation>
     </message>
@@ -81057,32 +81057,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1059"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1062"/>
         <source>    Skipped: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1077"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1080"/>
         <source>    Expected Failure</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1094"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1097"/>
         <source>    Unexpected Success</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="103"/>
-        <source>Rerun Failed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PyUnit/UnittestDialog.py" line="105"/>
-        <source>Reruns failed tests of the selected testsuite</source>
+        <source>Rerun Failed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PyUnit/UnittestDialog.py" line="107"/>
+        <source>Reruns failed tests of the selected testsuite</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PyUnit/UnittestDialog.py" line="109"/>
         <source>&lt;b&gt;Rerun Failed&lt;/b&gt;&lt;p&gt;This button reruns all failed tests of the selected testsuite.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -81169,17 +81169,17 @@
         <translation type="unfinished">Risultati</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="703"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="706"/>
         <source>Unittest with auto-discovery</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="787"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="790"/>
         <source>You must enter a start directory for auto-discovery.</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../PyUnit/UnittestDialog.py" line="1009"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1012"/>
         <source>Ran %n test(s) in {0:.3f}s</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -81192,27 +81192,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="89"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="91"/>
         <source>Discover</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="91"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="93"/>
         <source>Discover tests</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="382"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="384"/>
         <source>Discovering Tests</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="447"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="449"/>
         <source>&lt;p&gt;Unable to discover tests.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../PyUnit/UnittestDialog.py" line="619"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="622"/>
         <source>Discovered %n Test(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -81220,27 +81220,27 @@
         </translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="624"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="627"/>
         <source>&lt;p&gt;Unable to discover tests.&lt;/p&gt;&lt;p&gt;{0}&lt;br/&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="690"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="693"/>
         <source>You must select auto-discovery or enter a test suite file or a dotted test name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="712"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="715"/>
         <source>&lt;Unnamed Test&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="903"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="906"/>
         <source>&lt;p&gt;Unable to run test &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;br/&gt;{2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="93"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="95"/>
         <source>&lt;b&gt;Discover&lt;/b&gt;&lt;p&gt;This button starts a discovery of available tests.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -81265,12 +81265,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="720"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="723"/>
         <source>No test case has been selected. Shall all test cases be run?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="300"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="302"/>
         <source>Python3 Files ({0});;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -81383,7 +81383,7 @@
 <context>
     <name>UrlBar</name>
     <message>
-        <location filename="../WebBrowser/UrlBar/UrlBar.py" line="454"/>
+        <location filename="../WebBrowser/UrlBar/UrlBar.py" line="465"/>
         <source>Unknown</source>
         <translation type="unfinished">Sconosciuto</translation>
     </message>
@@ -81517,7 +81517,7 @@
         <translation>Generazione interfaccia utente principale...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
         <source>Log-Viewer</source>
         <translation>Log-Viewer</translation>
     </message>
@@ -81552,237 +81552,237 @@
         <translation>Inizializzazione strumenti...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
+        <location filename="../UI/UserInterface.py" line="1642"/>
         <source>Quit</source>
         <translation>Esci</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
+        <location filename="../UI/UserInterface.py" line="1642"/>
         <source>&amp;Quit</source>
         <translation>&amp;Esci</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1638"/>
+        <location filename="../UI/UserInterface.py" line="1648"/>
         <source>Quit the IDE</source>
         <translation>Esci dall&apos;IDE</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1639"/>
+        <location filename="../UI/UserInterface.py" line="1649"/>
         <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Esci dall&apos;IDE&lt;/b&gt;&lt;p&gt;Esci dall&apos;IDE. Ogni cambiamento non salvato dovrebbe essere salvato prima. Ogni programma python in debug verrà fermato e le impostazioni scritte su disco.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>What&apos;s This?</source>
         <translation>Cos&apos;è questo ?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>&amp;What&apos;s This?</source>
         <translation>C&amp;os&apos;è Questo ?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2122"/>
+        <location filename="../UI/UserInterface.py" line="2132"/>
         <source>Context sensitive help</source>
         <translation>Help sensibile al contesto</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2123"/>
+        <location filename="../UI/UserInterface.py" line="2133"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mostra helo sensibile al contesto&lt;/b&gt;&lt;p&gt;Nella modalità Cos&apos;è Questo, il cursore del mouse mostra una freccia con un punto interrogativo e puoi premere sugli elementi dell&apos;interfaccia per avere una breve descrizione di cosa fanno e come usarli. Nel dialoghi questa funzionalità è accessibile usando il bottone di help contestuale nella fisestra del titolo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>Helpviewer</source>
         <translation>Visualizzatore Help</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>&amp;Helpviewer...</source>
         <translation>Visualizzatore &amp;Help...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2140"/>
+        <location filename="../UI/UserInterface.py" line="2150"/>
         <source>Open the helpviewer window</source>
         <translation>Apri il visualizzatore di help</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2160"/>
+        <location filename="../UI/UserInterface.py" line="2170"/>
         <source>Show Versions</source>
         <translation>Mostra versione</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2160"/>
+        <location filename="../UI/UserInterface.py" line="2170"/>
         <source>Show &amp;Versions</source>
         <translation>Mostra &amp;Versione</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2164"/>
+        <location filename="../UI/UserInterface.py" line="2174"/>
         <source>Display version information</source>
         <translation>Mostra informazioni sulla versione</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2166"/>
+        <location filename="../UI/UserInterface.py" line="2176"/>
         <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mostra versioni&lt;/b&gt;&lt;p&gt;Mostra delle informazioni sulla versione.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3818"/>
+        <location filename="../UI/UserInterface.py" line="3828"/>
         <source>Report Bug</source>
         <translation>Segnala Bug</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2225"/>
+        <location filename="../UI/UserInterface.py" line="2235"/>
         <source>Report &amp;Bug...</source>
         <translation>Segnala &amp;Bug...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2229"/>
+        <location filename="../UI/UserInterface.py" line="2239"/>
         <source>Report a bug</source>
         <translation>Segnala un bug</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2230"/>
+        <location filename="../UI/UserInterface.py" line="2240"/>
         <source>&lt;b&gt;Report Bug...&lt;/b&gt;&lt;p&gt;Opens a dialog to report a bug.&lt;/p&gt;</source>
         <translation>&lt;b&gt;&gt;Segnala Bug...&lt;/b&gt;&lt;p&gt;Apre un dialogo per segnalare un bug.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3361"/>
+        <location filename="../UI/UserInterface.py" line="3371"/>
         <source>Unittest</source>
         <translation>Unittest</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2252"/>
+        <location filename="../UI/UserInterface.py" line="2262"/>
         <source>&amp;Unittest...</source>
         <translation>&amp;Unittest...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2257"/>
+        <location filename="../UI/UserInterface.py" line="2267"/>
         <source>Start unittest dialog</source>
         <translation>Avvia dialogo unittest</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2517"/>
+        <location filename="../UI/UserInterface.py" line="2527"/>
         <source>Preferences</source>
         <translation>Preferenze</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2517"/>
+        <location filename="../UI/UserInterface.py" line="2527"/>
         <source>&amp;Preferences...</source>
         <translation>&amp;Preferenze...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2522"/>
+        <location filename="../UI/UserInterface.py" line="2532"/>
         <source>Set the prefered configuration</source>
         <translation>Imposta la configurazione preferita</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2524"/>
+        <location filename="../UI/UserInterface.py" line="2534"/>
         <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Preferenze&lt;/b&gt;&lt;p&gt;Imposta i valori di configurazione dell&apos;applicazione ai valori preferiti&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2622"/>
+        <location filename="../UI/UserInterface.py" line="2632"/>
         <source>Keyboard Shortcuts</source>
         <translation>Scorciatoie da tastiera</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2622"/>
+        <location filename="../UI/UserInterface.py" line="2632"/>
         <source>Keyboard &amp;Shortcuts...</source>
         <translation>&amp;Scorciatoie da tastiera...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2627"/>
-        <source>Set the keyboard shortcuts</source>
-        <translation>Imposta le scorciatoie da tastiera</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2629"/>
-        <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Scorciatoie da tastiera&lt;/b&gt;&lt;p&gt;Imposta le scorciatoie da tastiera dell&apos;applicazione con i valori personalizzati.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6313"/>
-        <source>Export Keyboard Shortcuts</source>
-        <translation>Esporta scorciatoie da tastiera</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2637"/>
+        <source>Set the keyboard shortcuts</source>
+        <translation>Imposta le scorciatoie da tastiera</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2639"/>
+        <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Scorciatoie da tastiera&lt;/b&gt;&lt;p&gt;Imposta le scorciatoie da tastiera dell&apos;applicazione con i valori personalizzati.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6333"/>
+        <source>Export Keyboard Shortcuts</source>
+        <translation>Esporta scorciatoie da tastiera</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2647"/>
         <source>&amp;Export Keyboard Shortcuts...</source>
         <translation>&amp;Esporta scorciatoie da tastiera...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2642"/>
+        <location filename="../UI/UserInterface.py" line="2652"/>
         <source>Export the keyboard shortcuts</source>
         <translation>Esporta le scorciatoie da tastiera</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2644"/>
+        <location filename="../UI/UserInterface.py" line="2654"/>
         <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Esporta scorciatoie da tastiera&lt;/b&gt;&lt;p&gt;Esporta le scorciatoie da tastiera dell&apos;applicazione.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6329"/>
+        <location filename="../UI/UserInterface.py" line="6349"/>
         <source>Import Keyboard Shortcuts</source>
         <translation>Importa scorciatoie da tastiera</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2651"/>
+        <location filename="../UI/UserInterface.py" line="2661"/>
         <source>&amp;Import Keyboard Shortcuts...</source>
         <translation>&amp;Importa scorciatoie da tastiera...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2656"/>
+        <location filename="../UI/UserInterface.py" line="2666"/>
         <source>Import the keyboard shortcuts</source>
         <translation>Importa le scorciatoie da tastiera</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2658"/>
+        <location filename="../UI/UserInterface.py" line="2668"/>
         <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Importa scorciatoie da tastiera&lt;/b&gt;&lt;p&gt;Importa le scorciatoie da tastiera dell&apos;applicazione.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3098"/>
+        <location filename="../UI/UserInterface.py" line="3108"/>
         <source>E&amp;xtras</source>
         <translation>E&amp;xtra</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3212"/>
+        <location filename="../UI/UserInterface.py" line="3222"/>
         <source>&amp;Window</source>
         <translation>&amp;Finestre</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3287"/>
+        <location filename="../UI/UserInterface.py" line="3297"/>
         <source>&amp;Help</source>
         <translation>&amp;Help</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3360"/>
+        <location filename="../UI/UserInterface.py" line="3370"/>
         <source>Tools</source>
         <translation>Strumenti</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5220"/>
+        <location filename="../UI/UserInterface.py" line="5237"/>
         <source>Help</source>
         <translation>Aiuto</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3362"/>
+        <location filename="../UI/UserInterface.py" line="3372"/>
         <source>Settings</source>
         <translation>Impostazioni</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3273"/>
+        <location filename="../UI/UserInterface.py" line="3283"/>
         <source>&amp;Toolbars</source>
         <translation>&amp;Toolbar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5348"/>
+        <location filename="../UI/UserInterface.py" line="5365"/>
         <source>Problem</source>
         <translation>Problema</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5543"/>
+        <location filename="../UI/UserInterface.py" line="5560"/>
         <source>Process Generation Error</source>
         <translation>Errore Generazione Processo</translation>
     </message>
@@ -81792,102 +81792,102 @@
         <translation>Inizializzazione Single Application Server...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2258"/>
+        <location filename="../UI/UserInterface.py" line="2268"/>
         <source>&lt;b&gt;Unittest&lt;/b&gt;&lt;p&gt;Perform unit tests. The dialog gives you the ability to select and run a unittest suite.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Unittes&lt;/b&gt;&lt;p&gt;Esegui unit test. Il dialogo offre la possibilità di selezionare ed eseguire uno unittest.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2266"/>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>Unittest Restart</source>
         <translation>Riavvia Unittest</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2266"/>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>&amp;Restart Unittest...</source>
         <translation>&amp;Riavvia Unittest...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2271"/>
+        <location filename="../UI/UserInterface.py" line="2281"/>
         <source>Restart last unittest</source>
         <translation>Riavvia l&apos;ultima unittest</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2272"/>
+        <location filename="../UI/UserInterface.py" line="2282"/>
         <source>&lt;b&gt;Restart Unittest&lt;/b&gt;&lt;p&gt;Restart the unittest performed last.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Riavvia Unittest&lt;/b&gt;&lt;p&gt;Riavvia l&apos;ultima unittest eseguita.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2296"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Unittest Script</source>
         <translation>Script unittest</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2296"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Unittest &amp;Script...</source>
         <translation>&amp;Script Unittest...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2301"/>
-        <source>Run unittest with current script</source>
-        <translation>Esegui unittest con lo script corrente</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2303"/>
-        <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Script Unittest&lt;/b&gt;&lt;p&gt;Esegui unittest con lo script corrente.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2311"/>
+        <source>Run unittest with current script</source>
+        <translation>Esegui unittest con lo script corrente</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2313"/>
+        <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Script Unittest&lt;/b&gt;&lt;p&gt;Esegui unittest con lo script corrente.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2321"/>
         <source>Unittest Project</source>
         <translation>Progetto Unittest</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2311"/>
+        <location filename="../UI/UserInterface.py" line="2321"/>
         <source>Unittest &amp;Project...</source>
         <translation>&amp;Progetto Unittest...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2316"/>
+        <location filename="../UI/UserInterface.py" line="2326"/>
         <source>Run unittest with current project</source>
         <translation>Esegui unittest con il progetto corrente</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2318"/>
+        <location filename="../UI/UserInterface.py" line="2328"/>
         <source>&lt;b&gt;Unittest Project&lt;/b&gt;&lt;p&gt;Run unittest with current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Progetto Unittest&lt;/b&gt;&lt;p&gt;Esegui unittest con il progetto corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2406"/>
+        <location filename="../UI/UserInterface.py" line="2416"/>
         <source>Compare Files</source>
         <translation>Confronta file</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2406"/>
+        <location filename="../UI/UserInterface.py" line="2416"/>
         <source>&amp;Compare Files...</source>
         <translation>&amp;Confronta file...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2424"/>
+        <location filename="../UI/UserInterface.py" line="2434"/>
         <source>Compare two files</source>
         <translation>Confronta due file</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2412"/>
+        <location filename="../UI/UserInterface.py" line="2422"/>
         <source>&lt;b&gt;Compare Files&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Confronta file&lt;/b&gt;&lt;p&gt;Apre un dialogo per confrontare due file.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2419"/>
+        <location filename="../UI/UserInterface.py" line="2429"/>
         <source>Compare Files side by side</source>
         <translation>Confronta file affiancati</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2425"/>
+        <location filename="../UI/UserInterface.py" line="2435"/>
         <source>&lt;b&gt;Compare Files side by side&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files and show the result side by side.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Confronta file affiancati&lt;/b&gt;&lt;p&gt;Apri un dialogo per confrontare due file e mostrare i risultati affiancati.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3154"/>
+        <location filename="../UI/UserInterface.py" line="3164"/>
         <source>&amp;Unittest</source>
         <translation>&amp;Unittest</translation>
     </message>
@@ -81897,137 +81897,137 @@
         <translation type="obsolete">Non c&apos;è uno script principale definito per il progetto. Esco</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6897"/>
+        <location filename="../UI/UserInterface.py" line="6917"/>
         <source>Drop Error</source>
         <translation>Errore Drop</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
+        <location filename="../UI/UserInterface.py" line="1824"/>
         <source>File-Browser</source>
         <translation>File Browser</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1710"/>
+        <location filename="../UI/UserInterface.py" line="1720"/>
         <source>Edit Profile</source>
         <translation>Modifica profilo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1716"/>
+        <location filename="../UI/UserInterface.py" line="1726"/>
         <source>Activate the edit view profile</source>
         <translation>Attiva il profilo della vista di editing</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1718"/>
+        <location filename="../UI/UserInterface.py" line="1728"/>
         <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Profilo di edit&lt;/p&gt;&lt;p&gt;Attiva il &quot;Profilo di Edit&quot;. Le finestre da mostrare, se il profilo è attivo, possono essere configurate con il dialogo &quot;Configura Profili.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1727"/>
+        <location filename="../UI/UserInterface.py" line="1737"/>
         <source>Debug Profile</source>
         <translation>Profilo Debug</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1733"/>
+        <location filename="../UI/UserInterface.py" line="1743"/>
         <source>Activate the debug view profile</source>
         <translation>Attiva profilo Debug</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1735"/>
+        <location filename="../UI/UserInterface.py" line="1745"/>
         <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Profilo di debug&lt;/p&gt;&lt;p&gt;Attiva il &quot;Profilo di Debug&quot;. Le finestre da mostrare, se il profilo è attivo, possono essere configurate con il dialogo &quot;Configura Profili.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2590"/>
+        <location filename="../UI/UserInterface.py" line="2600"/>
         <source>View Profiles</source>
         <translation>Vista Profili</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2590"/>
+        <location filename="../UI/UserInterface.py" line="2600"/>
         <source>&amp;View Profiles...</source>
         <translation>&amp;Vista profili...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2595"/>
+        <location filename="../UI/UserInterface.py" line="2605"/>
         <source>Configure view profiles</source>
         <translation>Configura i profili</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2597"/>
+        <location filename="../UI/UserInterface.py" line="2607"/>
         <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vista Profili&lt;/b&gt;&lt;p&gt;Configura la visualizzazione dei profili. Con questo dialogo si possono impostare la visibilità delle varie finestre per i profili predefiniti.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2379"/>
+        <location filename="../UI/UserInterface.py" line="2389"/>
         <source>UI Previewer</source>
         <translation>Anteprima UI</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2379"/>
+        <location filename="../UI/UserInterface.py" line="2389"/>
         <source>&amp;UI Previewer...</source>
         <translation>Antreprima &amp;UI...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2384"/>
+        <location filename="../UI/UserInterface.py" line="2394"/>
         <source>Start the UI Previewer</source>
         <translation>Avvia UI Previewer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2385"/>
+        <location filename="../UI/UserInterface.py" line="2395"/>
         <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
         <translation>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Avvia UI Previewer.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2392"/>
+        <location filename="../UI/UserInterface.py" line="2402"/>
         <source>Translations Previewer</source>
         <translation>Anteprima traduzioni</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2392"/>
+        <location filename="../UI/UserInterface.py" line="2402"/>
         <source>&amp;Translations Previewer...</source>
         <translation>Anteprima &amp;Traduzioni...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2397"/>
+        <location filename="../UI/UserInterface.py" line="2407"/>
         <source>Start the Translations Previewer</source>
         <translation>Avvia l&apos;anteprima delle traduzioni</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2399"/>
+        <location filename="../UI/UserInterface.py" line="2409"/>
         <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Anteprima traduzioni&lt;/b&gt;&lt;p&gt;Avvia l&apos;anteprima delle traduzioni.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>Shell</source>
         <translation>Shell</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>&amp;Shell</source>
         <translation>&amp;Shell</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2561"/>
+        <location filename="../UI/UserInterface.py" line="2571"/>
         <source>Reload APIs</source>
         <translation>Ricarica APIs</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2561"/>
+        <location filename="../UI/UserInterface.py" line="2571"/>
         <source>Reload &amp;APIs</source>
         <translation>Ricarica &amp;APIs</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2565"/>
+        <location filename="../UI/UserInterface.py" line="2575"/>
         <source>Reload the API information</source>
         <translation>Ricarica le informazioni delle API</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2567"/>
+        <location filename="../UI/UserInterface.py" line="2577"/>
         <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ricarica APIs&lt;/b&gt;&lt;p&gt;Ricarica le informazioni delle API.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1849"/>
+        <location filename="../UI/UserInterface.py" line="1859"/>
         <source>Task-Viewer</source>
         <translation>Task-Viewer</translation>
     </message>
@@ -82042,77 +82042,77 @@
         <translation type="obsolete">Leggi task</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5220"/>
+        <location filename="../UI/UserInterface.py" line="5237"/>
         <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
         <translation>Attualmente nessun visualizzatore personalizzato è selezionato. Per favore usa il dialogo delle preferenze per specificarne uno.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5883"/>
+        <location filename="../UI/UserInterface.py" line="5900"/>
         <source>Documentation Missing</source>
         <translation>Documentazione mancante</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3818"/>
+        <location filename="../UI/UserInterface.py" line="3828"/>
         <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
         <translation>L&apos;indirizzo di posta o il server si posta sono vuoti. Per cortesia configura le opzioni per l&apos;Email nel dialogo delle preferenze.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
+        <location filename="../UI/UserInterface.py" line="1878"/>
         <source>Template-Viewer</source>
         <translation>Templates-Viewer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
+        <location filename="../UI/UserInterface.py" line="1754"/>
         <source>Alt+Shift+P</source>
         <translation>Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
+        <location filename="../UI/UserInterface.py" line="1789"/>
         <source>Alt+Shift+D</source>
         <translation>Alt+Shift+D</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>Alt+Shift+S</source>
         <translation>Alt+Shift+S</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
+        <location filename="../UI/UserInterface.py" line="1824"/>
         <source>Alt+Shift+F</source>
         <translation>Alt+Shift+M</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1849"/>
+        <location filename="../UI/UserInterface.py" line="1859"/>
         <source>Alt+Shift+T</source>
         <translation>Alt+Shift+T</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
+        <location filename="../UI/UserInterface.py" line="1771"/>
         <source>Alt+Shift+M</source>
         <translation>Alt+Shift+M</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2716"/>
-        <source>Activate current editor</source>
-        <translation>Attiva editor corrente</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2716"/>
-        <source>Alt+Shift+E</source>
-        <translation>Alt+Shift+E</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2726"/>
+        <source>Activate current editor</source>
+        <translation>Attiva editor corrente</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2726"/>
+        <source>Alt+Shift+E</source>
+        <translation>Alt+Shift+E</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2736"/>
         <source>Ctrl+Alt+Tab</source>
         <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2735"/>
+        <location filename="../UI/UserInterface.py" line="2745"/>
         <source>Shift+Ctrl+Alt+Tab</source>
         <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
         <source>Alt+Shift+G</source>
         <translation>Alt+Shift+G</translation>
     </message>
@@ -82132,7 +82132,7 @@
         <translation type="obsolete">Apri documentazione su Qt4</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2949"/>
+        <location filename="../UI/UserInterface.py" line="2959"/>
         <source>Eric API Documentation</source>
         <translation>Documentazione API di Eric</translation>
     </message>
@@ -82142,12 +82142,12 @@
         <translation type="obsolete">Documentazione API di &amp;Eric</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2953"/>
+        <location filename="../UI/UserInterface.py" line="2963"/>
         <source>Open Eric API Documentation</source>
         <translation>Apri documentazione API di Eric</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5254"/>
+        <location filename="../UI/UserInterface.py" line="5271"/>
         <source>&lt;p&gt;Could not start the help viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Non posso avviare il visualizzatore di help.&lt;br&gt;Assicurarsi che sia disponibile come &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
@@ -82157,43 +82157,43 @@
         <translation>Registrazione Oggetti...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
+        <location filename="../UI/UserInterface.py" line="1754"/>
         <source>Project-Viewer</source>
         <translation>Project-Viewer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
+        <location filename="../UI/UserInterface.py" line="1789"/>
         <source>Debug-Viewer</source>
         <translation>Debug-Viewer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
+        <location filename="../UI/UserInterface.py" line="1642"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
+        <location filename="../UI/UserInterface.py" line="1754"/>
         <source>&amp;Project-Viewer</source>
         <translation>&amp;Project-Viewer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>Shift+F1</source>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>F1</source>
         <translation>F1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2176"/>
+        <location filename="../UI/UserInterface.py" line="2186"/>
         <source>Check for Updates</source>
         <translation>Controlla per aggiornamenti</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2173"/>
+        <location filename="../UI/UserInterface.py" line="2183"/>
         <source>Check for &amp;Updates...</source>
         <translation>Controlla per &amp;Aggiornamenti...</translation>
     </message>
@@ -82208,27 +82208,27 @@
         <translation type="obsolete">Apri documentazione su PyQt4</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3171"/>
+        <location filename="../UI/UserInterface.py" line="3181"/>
         <source>Select Tool Group</source>
         <translation>Seleziona Tool Group</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3182"/>
+        <location filename="../UI/UserInterface.py" line="3192"/>
         <source>Se&amp;ttings</source>
         <translation>Impos&amp;tazioni</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3364"/>
+        <location filename="../UI/UserInterface.py" line="3374"/>
         <source>Profiles</source>
         <translation>Profili</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4174"/>
+        <location filename="../UI/UserInterface.py" line="4184"/>
         <source>&amp;Builtin Tools</source>
         <translation>Tool &amp;Builtin</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5866"/>
+        <location filename="../UI/UserInterface.py" line="5883"/>
         <source>Documentation</source>
         <translation>Documentazione</translation>
     </message>
@@ -82238,12 +82238,12 @@
         <translation type="obsolete">&lt;p&gt;L&apos;inizio della documentazione di PySide non è stato configurato.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7240"/>
+        <location filename="../UI/UserInterface.py" line="7261"/>
         <source>Error during updates check</source>
         <translation>Errore nel controllo per gli update</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7221"/>
+        <location filename="../UI/UserInterface.py" line="7242"/>
         <source>Update available</source>
         <translation>Aggiornamento disponibile</translation>
     </message>
@@ -82253,42 +82253,42 @@
         <translation type="obsolete">&lt;h3&gt;Numeri di versione&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7279"/>
+        <location filename="../UI/UserInterface.py" line="7300"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4219"/>
+        <location filename="../UI/UserInterface.py" line="4229"/>
         <source>Configure Tool Groups ...</source>
         <translation>Configura Tools Groups...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4223"/>
+        <location filename="../UI/UserInterface.py" line="4233"/>
         <source>Configure current Tool Group ...</source>
         <translation>Configura Tools Groups correnti...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2579"/>
+        <location filename="../UI/UserInterface.py" line="2589"/>
         <source>Show external tools</source>
         <translation>Mostra tool esterni</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2574"/>
+        <location filename="../UI/UserInterface.py" line="2584"/>
         <source>Show external &amp;tools</source>
         <translation>Mostra toll &amp;esterni</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7062"/>
+        <location filename="../UI/UserInterface.py" line="7082"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Cancella</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7240"/>
+        <location filename="../UI/UserInterface.py" line="7261"/>
         <source>Could not perform updates check.</source>
         <translation>Non posso controllare per gli update.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7316"/>
+        <location filename="../UI/UserInterface.py" line="7337"/>
         <source>First time usage</source>
         <translation>Primo avvio</translation>
     </message>
@@ -82298,52 +82298,52 @@
         <translation>Inizializzazione Gestore Plugin...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3135"/>
+        <location filename="../UI/UserInterface.py" line="3145"/>
         <source>P&amp;lugins</source>
         <translation>P&amp;lugins</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3365"/>
+        <location filename="../UI/UserInterface.py" line="3375"/>
         <source>Plugins</source>
         <translation>Plugins</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2753"/>
+        <location filename="../UI/UserInterface.py" line="2763"/>
         <source>Plugin Infos</source>
         <translation>Informazioni su Plugin</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2757"/>
+        <location filename="../UI/UserInterface.py" line="2767"/>
         <source>Show Plugin Infos</source>
         <translation>Mostra informazioni sui Plugin</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2758"/>
+        <location filename="../UI/UserInterface.py" line="2768"/>
         <source>&lt;b&gt;Plugin Infos...&lt;/b&gt;&lt;p&gt;This opens a dialog, that show some information about loaded plugins.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Informazioni sui Plugin...&lt;/b&gt;&lt;p&gt;Apre un dialogo per mostrare le informazioni sul plugin caricati.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2753"/>
+        <location filename="../UI/UserInterface.py" line="2763"/>
         <source>&amp;Plugin Infos...</source>
         <translation>Informazioni su &amp;Plugin...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4191"/>
+        <location filename="../UI/UserInterface.py" line="4201"/>
         <source>&amp;Plugin Tools</source>
         <translation>Informazioni sui &amp;Plugin Tools</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2784"/>
+        <location filename="../UI/UserInterface.py" line="2794"/>
         <source>Uninstall Plugin</source>
         <translation>Disinstalla Plugin</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2779"/>
+        <location filename="../UI/UserInterface.py" line="2789"/>
         <source>&amp;Uninstall Plugin...</source>
         <translation>Disinstalla Pl&amp;ugin...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2785"/>
+        <location filename="../UI/UserInterface.py" line="2795"/>
         <source>&lt;b&gt;Uninstall Plugin...&lt;/b&gt;&lt;p&gt;This opens a dialog to uninstall a plugin.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Disinstalla Plugin...&lt;/b&gt;&lt;p&gt;Apre un dialogo per disinstallare un plugin.&lt;/p&gt;</translation>
     </message>
@@ -82353,107 +82353,107 @@
         <translation>Attivazione Plugin...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3108"/>
+        <location filename="../UI/UserInterface.py" line="3118"/>
         <source>Wi&amp;zards</source>
         <translation>Wi&amp;zards</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4340"/>
+        <location filename="../UI/UserInterface.py" line="4350"/>
         <source>&amp;Show all</source>
         <translation>Mo&amp;stra tutti</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4342"/>
+        <location filename="../UI/UserInterface.py" line="4352"/>
         <source>&amp;Hide all</source>
         <translation>Nascondi &amp;tutti</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2184"/>
+        <location filename="../UI/UserInterface.py" line="2194"/>
         <source>Show downloadable versions</source>
         <translation>Mostra versioni scaricabili</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2184"/>
+        <location filename="../UI/UserInterface.py" line="2194"/>
         <source>Show &amp;downloadable versions...</source>
         <translation>Mostra &amp;versioni scaricabili...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2188"/>
+        <location filename="../UI/UserInterface.py" line="2198"/>
         <source>Show the versions available for download</source>
         <translation>Mostra le versioni disponibili per il download</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7264"/>
+        <location filename="../UI/UserInterface.py" line="7285"/>
         <source>&lt;h3&gt;Available versions&lt;/h3&gt;&lt;table&gt;</source>
         <translation>&lt;h3&gt;Versioni disponibili&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2792"/>
+        <location filename="../UI/UserInterface.py" line="2802"/>
         <source>Plugin Repository</source>
         <translation>Repository Plugin</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2792"/>
+        <location filename="../UI/UserInterface.py" line="2802"/>
         <source>Plugin &amp;Repository...</source>
         <translation>&amp;Repository Plugin...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2797"/>
+        <location filename="../UI/UserInterface.py" line="2807"/>
         <source>Show Plugins available for download</source>
         <translation>Mostra Plugin disponibili per il download</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2799"/>
+        <location filename="../UI/UserInterface.py" line="2809"/>
         <source>&lt;b&gt;Plugin Repository...&lt;/b&gt;&lt;p&gt;This opens a dialog, that shows a list of plugins available on the Internet.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Repository Plugin...&lt;/b&gt;&lt;p&gt;Apre un dialogo che mostra i plugin disponibili.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2771"/>
+        <location filename="../UI/UserInterface.py" line="2781"/>
         <source>Install Plugins</source>
         <translation>Installa Plugin</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2766"/>
+        <location filename="../UI/UserInterface.py" line="2776"/>
         <source>&amp;Install Plugins...</source>
         <translation>&amp;Installa Plugin...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2772"/>
+        <location filename="../UI/UserInterface.py" line="2782"/>
         <source>&lt;b&gt;Install Plugins...&lt;/b&gt;&lt;p&gt;This opens a dialog to install or update plugins.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Installa Plugin...&lt;b&gt;&lt;p&gt;Apre un dialogo per installare o aggiornare i plugin.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2451"/>
+        <location filename="../UI/UserInterface.py" line="2461"/>
         <source>Mini Editor</source>
         <translation>Mini Editor</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2446"/>
+        <location filename="../UI/UserInterface.py" line="2456"/>
         <source>Mini &amp;Editor...</source>
         <translation>Mini &amp;Editor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2452"/>
+        <location filename="../UI/UserInterface.py" line="2462"/>
         <source>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Open a dialog with a simplified editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Apre un dialogo con un semplice editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2607"/>
+        <location filename="../UI/UserInterface.py" line="2617"/>
         <source>Toolbars</source>
         <translation>Toolbars</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2607"/>
+        <location filename="../UI/UserInterface.py" line="2617"/>
         <source>Tool&amp;bars...</source>
         <translation>Tool&amp;bars...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2612"/>
+        <location filename="../UI/UserInterface.py" line="2622"/>
         <source>Configure toolbars</source>
         <translation>Configura toolbars</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2613"/>
+        <location filename="../UI/UserInterface.py" line="2623"/>
         <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configura le toolbars. Con questo dialogo puoi cambiare le azioni mostrate sulle varie toolbar e definire le tue.&lt;/p&gt;</translation>
     </message>
@@ -82463,252 +82463,252 @@
         <translation>Ripristino toolbarmanager...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
+        <location filename="../UI/UserInterface.py" line="1771"/>
         <source>Multiproject-Viewer</source>
         <translation>Multiproject-Viewer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
+        <location filename="../UI/UserInterface.py" line="1771"/>
         <source>&amp;Multiproject-Viewer</source>
         <translation>&amp;Multiproject-Viewer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5488"/>
+        <location filename="../UI/UserInterface.py" line="5505"/>
         <source>External Tools</source>
         <translation>Tool esterni</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1669"/>
+        <location filename="../UI/UserInterface.py" line="1679"/>
         <source>Save session</source>
         <translation>Salva sessione</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6611"/>
+        <location filename="../UI/UserInterface.py" line="6631"/>
         <source>Read session</source>
         <translation>Leggi sessione</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3537"/>
+        <location filename="../UI/UserInterface.py" line="3547"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Questa zona della barra di stato mostra l&apos;encoding usato dall&apos;editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3551"/>
+        <location filename="../UI/UserInterface.py" line="3561"/>
         <source>&lt;p&gt;This part of the status bar displays an indication of the current editors files writability.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Questa zona della barra di stato mostra la possibilità di scrittura del file.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
+        <location filename="../UI/UserInterface.py" line="2247"/>
         <source>Request Feature</source>
         <translation>Richiedi funzionalità</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
+        <location filename="../UI/UserInterface.py" line="2247"/>
         <source>Request &amp;Feature...</source>
         <translation>Richiedi &amp;funzionalità...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2241"/>
+        <location filename="../UI/UserInterface.py" line="2251"/>
         <source>Send a feature request</source>
         <translation>Invia una richiesta di funzionalità</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2243"/>
+        <location filename="../UI/UserInterface.py" line="2253"/>
         <source>&lt;b&gt;Request Feature...&lt;/b&gt;&lt;p&gt;Opens a dialog to send a feature request.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Richiedi funzionalità...&lt;/b&gt;&lt;p&gt;Apre un dialogo per mandare una richiesta di funzionalità.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3530"/>
+        <location filename="../UI/UserInterface.py" line="3540"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Questa zona della barra di stato mostra il linguaggio usato dall&apos;editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3558"/>
+        <location filename="../UI/UserInterface.py" line="3568"/>
         <source>&lt;p&gt;This part of the status bar displays the line number of the current editor.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Questa parte della barra di stato mostra il numero di linea.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3565"/>
+        <location filename="../UI/UserInterface.py" line="3575"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position of the current editor.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Questa parte della barra di stato mostra la posizione del cursore.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1911"/>
+        <location filename="../UI/UserInterface.py" line="1921"/>
         <source>Horizontal Toolbox</source>
         <translation>Barra dei comandi orizzontale</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
+        <location filename="../UI/UserInterface.py" line="1878"/>
         <source>Alt+Shift+A</source>
         <translation>Alt+Shift+A</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1911"/>
+        <location filename="../UI/UserInterface.py" line="1921"/>
         <source>&amp;Horizontal Toolbox</source>
         <translation>Toolbox &amp;Orizzontale</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1915"/>
-        <source>Toggle the Horizontal Toolbox window</source>
-        <translation>Abilita/Disabilita una finestra la toolbox orizzontale</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1917"/>
-        <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Abilita/Disabilita la finestra della toolbox orizzontale&lt;/b&gt;&lt;p&gt;Se la finestra della toolbox orizzontale è nascosta verrà mostrata. Se è mostrata verrà chiusa.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4138"/>
-        <source>Restart application</source>
-        <translation>Riavvia applicazione</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="4138"/>
-        <source>The application needs to be restarted. Do it now?</source>
-        <translation>L&apos;applicazione necessita di un riavvio. Farlo ora ?</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3144"/>
-        <source>Configure...</source>
-        <translation>Configura...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3544"/>
-        <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Questa zona della barra di stato mostra l&apos;eol usato dall&apos;editor.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2744"/>
-        <source>Switch between tabs</source>
-        <translation>Cicla tra le linguette</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2744"/>
-        <source>Ctrl+1</source>
-        <translation>Ctrl+1</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2533"/>
-        <source>Export Preferences</source>
-        <translation>Esporta preferenze</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2533"/>
-        <source>E&amp;xport Preferences...</source>
-        <translation>E&amp;sporta preferenze...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2538"/>
-        <source>Export the current configuration</source>
-        <translation>Esporta la configurazione attuale</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2540"/>
-        <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Esporta preferenze&lt;/b&gt;&lt;p&gt;Esporta la configurazione attuale su un file.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2547"/>
-        <source>Import Preferences</source>
-        <translation>Importa preferenze</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2547"/>
-        <source>I&amp;mport Preferences...</source>
-        <translation>I&amp;mporta preferenze...</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2552"/>
-        <source>Import a previously exported configuration</source>
-        <translation>Importa una configurazione precedentemente esportata</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2554"/>
-        <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Importa preferenze&lt;/b&gt;&lt;p&gt;Importa una configurazione precedentemente esportata.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2726"/>
-        <source>Show next</source>
-        <translation>Mostra successivo</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2735"/>
-        <source>Show previous</source>
-        <translation>Mostra precedente</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1925"/>
+        <source>Toggle the Horizontal Toolbox window</source>
+        <translation>Abilita/Disabilita una finestra la toolbox orizzontale</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1927"/>
+        <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Abilita/Disabilita la finestra della toolbox orizzontale&lt;/b&gt;&lt;p&gt;Se la finestra della toolbox orizzontale è nascosta verrà mostrata. Se è mostrata verrà chiusa.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4148"/>
+        <source>Restart application</source>
+        <translation>Riavvia applicazione</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="4148"/>
+        <source>The application needs to be restarted. Do it now?</source>
+        <translation>L&apos;applicazione necessita di un riavvio. Farlo ora ?</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3154"/>
+        <source>Configure...</source>
+        <translation>Configura...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3554"/>
+        <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Questa zona della barra di stato mostra l&apos;eol usato dall&apos;editor.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2754"/>
+        <source>Switch between tabs</source>
+        <translation>Cicla tra le linguette</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2754"/>
+        <source>Ctrl+1</source>
+        <translation>Ctrl+1</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2543"/>
+        <source>Export Preferences</source>
+        <translation>Esporta preferenze</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2543"/>
+        <source>E&amp;xport Preferences...</source>
+        <translation>E&amp;sporta preferenze...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2548"/>
+        <source>Export the current configuration</source>
+        <translation>Esporta la configurazione attuale</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2550"/>
+        <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Esporta preferenze&lt;/b&gt;&lt;p&gt;Esporta la configurazione attuale su un file.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2557"/>
+        <source>Import Preferences</source>
+        <translation>Importa preferenze</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2557"/>
+        <source>I&amp;mport Preferences...</source>
+        <translation>I&amp;mporta preferenze...</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2562"/>
+        <source>Import a previously exported configuration</source>
+        <translation>Importa una configurazione precedentemente esportata</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2564"/>
+        <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Importa preferenze&lt;/b&gt;&lt;p&gt;Importa una configurazione precedentemente esportata.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2736"/>
+        <source>Show next</source>
+        <translation>Mostra successivo</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2745"/>
+        <source>Show previous</source>
+        <translation>Mostra precedente</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <source>Left Sidebar</source>
         <translation>Barra laterale sinistra</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1925"/>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <source>&amp;Left Sidebar</source>
         <translation>Barra &amp;laterale sinistra</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1929"/>
+        <location filename="../UI/UserInterface.py" line="1939"/>
         <source>Toggle the left sidebar window</source>
         <translation>Abilita/Disabilita la finestra della barra laterale sinistra</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1930"/>
+        <location filename="../UI/UserInterface.py" line="1940"/>
         <source>&lt;b&gt;Toggle the left sidebar window&lt;/b&gt;&lt;p&gt;If the left sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Abilita/Disabilita la finestra della barra laterale sinistra&lt;/b&gt;&lt;p&gt;Se la finestra della barra laterale sinistra è nascosta verrà mostrata. Se è mostrata verrà chiusa.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1952"/>
+        <location filename="../UI/UserInterface.py" line="1962"/>
         <source>Bottom Sidebar</source>
         <translation>Barra in basso</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1952"/>
+        <location filename="../UI/UserInterface.py" line="1962"/>
         <source>&amp;Bottom Sidebar</source>
         <translation>Barra in &amp;basso</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1956"/>
+        <location filename="../UI/UserInterface.py" line="1966"/>
         <source>Toggle the bottom sidebar window</source>
         <translation>Abilita/Disabilita la finestra della barra in basso</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1958"/>
+        <location filename="../UI/UserInterface.py" line="1968"/>
         <source>&lt;b&gt;Toggle the bottom sidebar window&lt;/b&gt;&lt;p&gt;If the bottom sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Abilita/Disabilita la finestra della barra in basso&lt;/b&gt;&lt;p&gt;Se la finestra della barra in basso è nascosta verrà mostrata. Se è mostrata verrà chiusa.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
+        <location filename="../UI/UserInterface.py" line="1789"/>
         <source>&amp;Debug-Viewer</source>
         <translation>&amp;Debug-Viewer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2433"/>
+        <location filename="../UI/UserInterface.py" line="2443"/>
         <source>SQL Browser</source>
         <translation>SQL Browser</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2433"/>
+        <location filename="../UI/UserInterface.py" line="2443"/>
         <source>SQL &amp;Browser...</source>
         <translation>SQL &amp;Browser...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2438"/>
+        <location filename="../UI/UserInterface.py" line="2448"/>
         <source>Browse a SQL database</source>
         <translation>Naviga un database SQL</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2439"/>
+        <location filename="../UI/UserInterface.py" line="2449"/>
         <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
         <translation>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Naviga un database SQL.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2488"/>
+        <location filename="../UI/UserInterface.py" line="2498"/>
         <source>Icon Editor</source>
         <translation>Editor di icone</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2488"/>
+        <location filename="../UI/UserInterface.py" line="2498"/>
         <source>&amp;Icon Editor...</source>
         <translation>Editor di &amp;icone...</translation>
     </message>
@@ -82733,95 +82733,95 @@
         <translation type="obsolete">Apri documentazione PySide</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1598"/>
+        <location filename="../UI/UserInterface.py" line="1608"/>
         <source>{0} - Passive Mode</source>
         <translation>{0} - Passive Debug Mode</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1605"/>
+        <location filename="../UI/UserInterface.py" line="1615"/>
         <source>{0} - {1} - Passive Mode</source>
         <translation>{0} -{1} Passive Debug Mode</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1609"/>
+        <location filename="../UI/UserInterface.py" line="1619"/>
         <source>{0} - {1} - {2} - Passive Mode</source>
         <translation>{0} -{1} - {2} - Passive Debug Mode</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3636"/>
+        <location filename="../UI/UserInterface.py" line="3646"/>
         <source>External Tools/{0}</source>
         <translation>Tool Esterni/{0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5348"/>
+        <location filename="../UI/UserInterface.py" line="5365"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist or is zero length.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; non esiste o ha lunghezza zero.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5073"/>
+        <location filename="../UI/UserInterface.py" line="5090"/>
         <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Non posso avviare Qt-Designer.&lt;br&gt;Assicurarsi che sia disponibile come &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5143"/>
+        <location filename="../UI/UserInterface.py" line="5160"/>
         <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Non posso avviare Qt-Linguist.&lt;br&gt;Assicurarsi che sia disponibile come &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5187"/>
+        <location filename="../UI/UserInterface.py" line="5204"/>
         <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Non posso avviare Qt-Assistant.&lt;br&gt;Assicurarsi che sia disponibile come &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5234"/>
+        <location filename="../UI/UserInterface.py" line="5251"/>
         <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Non posso avviare il visualizzatore personalizzato.&lt;br&gt;Assicurarsi che sia disponibile come &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5304"/>
+        <location filename="../UI/UserInterface.py" line="5321"/>
         <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Non posso avviare UI Previewer.&lt;br&gt;Assicurarsi che sia disponibile come &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5361"/>
+        <location filename="../UI/UserInterface.py" line="5378"/>
         <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Non posso avviare l&apos;anteprima delle traduzioni.&lt;br&gt;Assicurarsi che sia disponibile come &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5384"/>
+        <location filename="../UI/UserInterface.py" line="5401"/>
         <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Non posso avviare SQL Browser.&lt;br&gt;Assicurarsi che sia disponibile come &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5479"/>
+        <location filename="../UI/UserInterface.py" line="5496"/>
         <source>No tool entry found for external tool &apos;{0}&apos; in tool group &apos;{1}&apos;.</source>
         <translation>Nessun elemento per il tool esterno &apos;{0}&apos; trovato nel gruppo &apos;{1}&apos;.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5488"/>
+        <location filename="../UI/UserInterface.py" line="5505"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation>Nessun gruppo &apos;{0}&apos; trovato.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5527"/>
+        <location filename="../UI/UserInterface.py" line="5544"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation>Avvio processo &apos;{0} {1}&apos;.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5543"/>
+        <location filename="../UI/UserInterface.py" line="5560"/>
         <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Non posso avviare l&apos;elemento degli strumenti &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Assicurarsi che sia disponibile come &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5621"/>
+        <location filename="../UI/UserInterface.py" line="5638"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation>Il processo &apos;{0}&apos; è terminato.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5883"/>
+        <location filename="../UI/UserInterface.py" line="5900"/>
         <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; could not be found.&lt;/p&gt;</source>
         <translation>&lt;p&gt;L&apos;inizio della documentazione &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; non viene trovato.&lt;/p&gt;</translation>
     </message>
@@ -82831,57 +82831,57 @@
         <translation type="obsolete">&lt;p&gt;Il file task &lt;b&gt;{0}&lt;/b&gt; non può essere scritto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6518"/>
+        <location filename="../UI/UserInterface.py" line="6538"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file task &lt;b&gt;{0}&lt;/b&gt; non può essere letto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6556"/>
+        <location filename="../UI/UserInterface.py" line="6576"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file sessione &lt;b&gt;{0}&lt;/b&gt; non può essere scritto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6611"/>
+        <location filename="../UI/UserInterface.py" line="6631"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file sessione &lt;b&gt;{0}&lt;/b&gt; non può essere letto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6897"/>
+        <location filename="../UI/UserInterface.py" line="6917"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; non è un file.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7071"/>
+        <location filename="../UI/UserInterface.py" line="7091"/>
         <source>Trying host {0}</source>
         <translation>Tento su host {0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1118"/>
+        <location filename="../UI/UserInterface.py" line="1123"/>
         <source>Cooperation</source>
         <translation>Cooperazione</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Alt+Shift+O</source>
         <translation>Alt+Shift+O</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1174"/>
+        <location filename="../UI/UserInterface.py" line="1179"/>
         <source>Symbols</source>
         <translation>Simboli</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2004"/>
+        <location filename="../UI/UserInterface.py" line="2014"/>
         <source>Alt+Shift+Y</source>
         <translation>Alt+Shift+Y</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1183"/>
+        <location filename="../UI/UserInterface.py" line="1188"/>
         <source>Numbers</source>
         <translation>Numeri</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
+        <location filename="../UI/UserInterface.py" line="2033"/>
         <source>Alt+Shift+B</source>
         <translation>Alt+Shift+B</translation>
     </message>
@@ -82891,7 +82891,7 @@
         <translation type="obsolete">File scorciatoi tastiera (*.e4k)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2927"/>
+        <location filename="../UI/UserInterface.py" line="2937"/>
         <source>Python 3 Documentation</source>
         <translation>Documentazione Python 3</translation>
     </message>
@@ -82901,7 +82901,7 @@
         <translation type="obsolete">Documentazione Python &amp;3</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2931"/>
+        <location filename="../UI/UserInterface.py" line="2941"/>
         <source>Open Python 3 Documentation</source>
         <translation>Apri documentazione Python 3</translation>
     </message>
@@ -82926,27 +82926,27 @@
         <translation type="obsolete">&lt;b&gt;Documentazione Python 2&lt;/b&gt;&lt;p&gt;Mostra la documentazione Python 2. Se non è configurata una directory per la documentazione, viene assunto che la posizione della documentazione sia nella directory doc nella locazione dell&apos;eseguibile Python 2 su Windows e &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; su Unix. Imposta PYTHONDOCDIR2 nel tuo ambiente per sovrascrivere questi valori.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7129"/>
+        <location filename="../UI/UserInterface.py" line="7150"/>
         <source>Error getting versions information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7122"/>
+        <location filename="../UI/UserInterface.py" line="7143"/>
         <source>The versions information could not be downloaded. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6086"/>
+        <location filename="../UI/UserInterface.py" line="6103"/>
         <source>Open Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6086"/>
+        <location filename="../UI/UserInterface.py" line="6103"/>
         <source>Could not start a web browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7129"/>
+        <location filename="../UI/UserInterface.py" line="7150"/>
         <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -82971,363 +82971,363 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
+        <location filename="../UI/UserInterface.py" line="1701"/>
         <source>New Window</source>
         <translation type="unfinished">Nuova finestra</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
+        <location filename="../UI/UserInterface.py" line="1701"/>
         <source>New &amp;Window</source>
         <translation type="unfinished">Nuova &amp;Finestra</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
+        <location filename="../UI/UserInterface.py" line="1701"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2280"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <source>Unittest Rerun Failed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2280"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <source>Rerun Failed Tests...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2285"/>
+        <location filename="../UI/UserInterface.py" line="2295"/>
         <source>Rerun failed tests of the last run</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2287"/>
+        <location filename="../UI/UserInterface.py" line="2297"/>
         <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last unittest run.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2419"/>
+        <location filename="../UI/UserInterface.py" line="2429"/>
         <source>Compare &amp;Files side by side...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2502"/>
+        <location filename="../UI/UserInterface.py" line="2512"/>
         <source>Snapshot</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2502"/>
+        <location filename="../UI/UserInterface.py" line="2512"/>
         <source>&amp;Snapshot...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2507"/>
+        <location filename="../UI/UserInterface.py" line="2517"/>
         <source>Take snapshots of a screen region</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2509"/>
+        <location filename="../UI/UserInterface.py" line="2519"/>
         <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5456"/>
+        <location filename="../UI/UserInterface.py" line="5473"/>
         <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7335"/>
+        <location filename="../UI/UserInterface.py" line="7356"/>
         <source>Select Workspace Directory</source>
         <translation type="unfinished">Seleziona cartella di lavoro</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1886"/>
+        <location filename="../UI/UserInterface.py" line="1896"/>
         <source>Left Toolbox</source>
         <translation type="unfinished">Barra degli strumenti sinistra</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1898"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <source>Right Toolbox</source>
         <translation type="unfinished">Barra degli strumenti destra</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
+        <location filename="../UI/UserInterface.py" line="1760"/>
         <source>Switch the input focus to the Project-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1752"/>
+        <location filename="../UI/UserInterface.py" line="1762"/>
         <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1767"/>
+        <location filename="../UI/UserInterface.py" line="1777"/>
         <source>Switch the input focus to the Multiproject-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1769"/>
+        <location filename="../UI/UserInterface.py" line="1779"/>
         <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
+        <location filename="../UI/UserInterface.py" line="1795"/>
         <source>Switch the input focus to the Debug-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1787"/>
+        <location filename="../UI/UserInterface.py" line="1797"/>
         <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1803"/>
+        <location filename="../UI/UserInterface.py" line="1813"/>
         <source>Switch the input focus to the Shell window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1805"/>
+        <location filename="../UI/UserInterface.py" line="1815"/>
         <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
+        <location filename="../UI/UserInterface.py" line="1824"/>
         <source>&amp;File-Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
+        <location filename="../UI/UserInterface.py" line="1830"/>
         <source>Switch the input focus to the File-Browser window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1822"/>
+        <location filename="../UI/UserInterface.py" line="1832"/>
         <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
         <source>Lo&amp;g-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1837"/>
+        <location filename="../UI/UserInterface.py" line="1847"/>
         <source>Switch the input focus to the Log-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
-        <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1849"/>
+        <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1859"/>
         <source>&amp;Task-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1855"/>
+        <location filename="../UI/UserInterface.py" line="1865"/>
         <source>Switch the input focus to the Task-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
+        <location filename="../UI/UserInterface.py" line="1878"/>
         <source>Templ&amp;ate-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1874"/>
+        <location filename="../UI/UserInterface.py" line="1884"/>
         <source>Switch the input focus to the Template-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1876"/>
-        <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1886"/>
+        <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1896"/>
         <source>&amp;Left Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1889"/>
+        <location filename="../UI/UserInterface.py" line="1899"/>
         <source>Toggle the Left Toolbox window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1890"/>
+        <location filename="../UI/UserInterface.py" line="1900"/>
         <source>&lt;b&gt;Toggle the Left Toolbox window&lt;/b&gt;&lt;p&gt;If the Left Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1898"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <source>&amp;Right Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1902"/>
+        <location filename="../UI/UserInterface.py" line="1912"/>
         <source>Toggle the Right Toolbox window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1903"/>
+        <location filename="../UI/UserInterface.py" line="1913"/>
         <source>&lt;b&gt;Toggle the Right Toolbox window&lt;/b&gt;&lt;p&gt;If the Right Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1948"/>
         <source>Right Sidebar</source>
         <translation type="unfinished">Barra laterale destra</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1948"/>
         <source>&amp;Right Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1942"/>
+        <location filename="../UI/UserInterface.py" line="1952"/>
         <source>Toggle the right sidebar window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1944"/>
+        <location filename="../UI/UserInterface.py" line="1954"/>
         <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Cooperation-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Co&amp;operation-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1973"/>
+        <location filename="../UI/UserInterface.py" line="1983"/>
         <source>Switch the input focus to the Cooperation-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="1985"/>
         <source>&lt;b&gt;Activate Cooperation-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Cooperation-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2004"/>
+        <location filename="../UI/UserInterface.py" line="2014"/>
         <source>Symbols-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="2014"/>
+        <source>S&amp;ymbols-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2020"/>
+        <source>Switch the input focus to the Symbols-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2022"/>
+        <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2033"/>
+        <source>Numbers-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2033"/>
+        <source>Num&amp;bers-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2039"/>
+        <source>Switch the input focus to the Numbers-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2041"/>
+        <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3231"/>
+        <source>&amp;Windows</source>
+        <translation type="unfinished">&amp;Finestre</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1867"/>
+        <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1996"/>
+        <source>IRC</source>
+        <translation type="unfinished">IRC</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1996"/>
+        <source>&amp;IRC</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2002"/>
+        <source>Switch the input focus to the IRC window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="2004"/>
-        <source>S&amp;ymbols-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2010"/>
-        <source>Switch the input focus to the Symbols-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2012"/>
-        <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
-        <source>Numbers-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
-        <source>Num&amp;bers-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2029"/>
-        <source>Switch the input focus to the Numbers-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2031"/>
-        <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3221"/>
-        <source>&amp;Windows</source>
-        <translation type="unfinished">&amp;Finestre</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1857"/>
-        <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
-        <source>IRC</source>
-        <translation type="unfinished">IRC</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
-        <source>&amp;IRC</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1992"/>
-        <source>Switch the input focus to the IRC window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
         <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2338"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Qt-Designer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2338"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Qt-&amp;Designer...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2343"/>
+        <location filename="../UI/UserInterface.py" line="2353"/>
         <source>Start Qt-Designer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2344"/>
+        <location filename="../UI/UserInterface.py" line="2354"/>
         <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2364"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Qt-Linguist</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2364"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Qt-&amp;Linguist...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2369"/>
+        <location filename="../UI/UserInterface.py" line="2379"/>
         <source>Start Qt-Linguist</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2370"/>
+        <location filename="../UI/UserInterface.py" line="2380"/>
         <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2858"/>
+        <location filename="../UI/UserInterface.py" line="2868"/>
         <source>Qt5 Documentation</source>
         <translation type="unfinished">Documentazione Qt4 {5 ?}</translation>
     </message>
@@ -83337,57 +83337,57 @@
         <translation type="obsolete">Documentazione Qt&amp;4 {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2862"/>
+        <location filename="../UI/UserInterface.py" line="2872"/>
         <source>Open Qt5 Documentation</source>
         <translation type="unfinished">Apri documentazione su Qt4 {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2666"/>
+        <location filename="../UI/UserInterface.py" line="2676"/>
         <source>Manage SSL Certificates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2666"/>
+        <location filename="../UI/UserInterface.py" line="2676"/>
         <source>Manage SSL Certificates...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2671"/>
+        <location filename="../UI/UserInterface.py" line="2681"/>
         <source>Manage the saved SSL certificates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2673"/>
+        <location filename="../UI/UserInterface.py" line="2683"/>
         <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2682"/>
+        <location filename="../UI/UserInterface.py" line="2692"/>
         <source>Edit Message Filters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2682"/>
+        <location filename="../UI/UserInterface.py" line="2692"/>
         <source>Edit Message Filters...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2687"/>
+        <location filename="../UI/UserInterface.py" line="2697"/>
         <source>Edit the message filters used to suppress unwanted messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2689"/>
+        <location filename="../UI/UserInterface.py" line="2699"/>
         <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2888"/>
+        <location filename="../UI/UserInterface.py" line="2898"/>
         <source>PyQt5 Documentation</source>
         <translation type="unfinished">Documentazione PyQt4 {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2892"/>
+        <location filename="../UI/UserInterface.py" line="2902"/>
         <source>Open PyQt5 Documentation</source>
         <translation type="unfinished">Apri documentazione su PyQt4 {5 ?}</translation>
     </message>
@@ -83397,32 +83397,32 @@
         <translation type="obsolete">&lt;p&gt;L&apos;inizio della documentazione di PyQt4 non è stato configurato.&lt;/p&gt; {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2933"/>
+        <location filename="../UI/UserInterface.py" line="2943"/>
         <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7062"/>
+        <location filename="../UI/UserInterface.py" line="7082"/>
         <source>%v/%m</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2203"/>
+        <location filename="../UI/UserInterface.py" line="2213"/>
         <source>Show Error Log</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2199"/>
+        <location filename="../UI/UserInterface.py" line="2209"/>
         <source>Show Error &amp;Log...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2204"/>
+        <location filename="../UI/UserInterface.py" line="2214"/>
         <source>&lt;b&gt;Show Error Log...&lt;/b&gt;&lt;p&gt;Opens a dialog showing the most recent error log.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7066"/>
+        <location filename="../UI/UserInterface.py" line="7086"/>
         <source>Version Check</source>
         <translation type="unfinished"></translation>
     </message>
@@ -83502,67 +83502,67 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4194"/>
+        <location filename="../UI/UserInterface.py" line="4204"/>
         <source>&amp;User Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4266"/>
+        <location filename="../UI/UserInterface.py" line="4276"/>
         <source>No User Tools Configured</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2459"/>
+        <location filename="../UI/UserInterface.py" line="2469"/>
         <source>Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2459"/>
+        <location filename="../UI/UserInterface.py" line="2469"/>
         <source>&amp;Hex Editor...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2705"/>
+        <location filename="../UI/UserInterface.py" line="2715"/>
         <source>Clear private data</source>
         <translation type="unfinished">Pulisci dati privati</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2707"/>
+        <location filename="../UI/UserInterface.py" line="2717"/>
         <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1665"/>
+        <location filename="../UI/UserInterface.py" line="1675"/>
         <source>Save session...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1670"/>
+        <location filename="../UI/UserInterface.py" line="1680"/>
         <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6650"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <source>Load session</source>
         <translation type="unfinished">Carica sessione</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1678"/>
+        <location filename="../UI/UserInterface.py" line="1688"/>
         <source>Load session...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1683"/>
+        <location filename="../UI/UserInterface.py" line="1693"/>
         <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6703"/>
+        <location filename="../UI/UserInterface.py" line="6723"/>
         <source>Crash Session found!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6703"/>
+        <location filename="../UI/UserInterface.py" line="6723"/>
         <source>A session file of a crashed session was found. Shall this session be restored?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -83577,448 +83577,448 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7209"/>
+        <location filename="../UI/UserInterface.py" line="7230"/>
         <source>Update Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7209"/>
+        <location filename="../UI/UserInterface.py" line="7230"/>
         <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2042"/>
+        <location filename="../UI/UserInterface.py" line="2052"/>
         <source>Code Documentation Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2863"/>
+        <location filename="../UI/UserInterface.py" line="2873"/>
         <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2894"/>
+        <location filename="../UI/UserInterface.py" line="2904"/>
         <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2970"/>
+        <location filename="../UI/UserInterface.py" line="2980"/>
         <source>PySide2 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2974"/>
+        <location filename="../UI/UserInterface.py" line="2984"/>
         <source>Open PySide2 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2976"/>
+        <location filename="../UI/UserInterface.py" line="2986"/>
         <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5866"/>
+        <location filename="../UI/UserInterface.py" line="5883"/>
         <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2813"/>
+        <location filename="../UI/UserInterface.py" line="2823"/>
         <source>Virtualenv Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2807"/>
+        <location filename="../UI/UserInterface.py" line="2817"/>
         <source>&amp;Virtualenv Manager...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2815"/>
+        <location filename="../UI/UserInterface.py" line="2825"/>
         <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2830"/>
+        <location filename="../UI/UserInterface.py" line="2840"/>
         <source>Virtualenv Configurator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2824"/>
+        <location filename="../UI/UserInterface.py" line="2834"/>
         <source>Virtualenv &amp;Configurator...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2832"/>
+        <location filename="../UI/UserInterface.py" line="2842"/>
         <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3228"/>
+        <location filename="../UI/UserInterface.py" line="3238"/>
         <source>Left Side</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3240"/>
+        <location filename="../UI/UserInterface.py" line="3250"/>
         <source>Bottom Side</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3247"/>
+        <location filename="../UI/UserInterface.py" line="3257"/>
         <source>Right Side</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3267"/>
+        <location filename="../UI/UserInterface.py" line="3277"/>
         <source>Plug-ins</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
+        <location filename="../UI/UserInterface.py" line="1659"/>
         <source>Restart</source>
         <translation type="unfinished">Riavvio</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
+        <location filename="../UI/UserInterface.py" line="1659"/>
         <source>Ctrl+Shift+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1655"/>
+        <location filename="../UI/UserInterface.py" line="1665"/>
         <source>Restart the IDE</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1656"/>
+        <location filename="../UI/UserInterface.py" line="1666"/>
         <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6043"/>
+        <location filename="../UI/UserInterface.py" line="6060"/>
         <source>Start Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="2090"/>
+        <source>Conda</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2072"/>
+        <source>PyPI</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3586"/>
+        <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2108"/>
+        <source>MicroPython</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1996"/>
+        <source>Ctrl+Alt+Shift+I</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2052"/>
+        <source>Ctrl+Alt+Shift+D</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2058"/>
+        <source>Switch the input focus to the Code Documentation Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2061"/>
+        <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2072"/>
+        <source>Ctrl+Alt+Shift+P</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2078"/>
+        <source>Switch the input focus to the PyPI window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="2080"/>
-        <source>Conda</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2062"/>
-        <source>PyPI</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3576"/>
-        <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2098"/>
-        <source>MicroPython</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
-        <source>Ctrl+Alt+Shift+I</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2042"/>
-        <source>Ctrl+Alt+Shift+D</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2048"/>
-        <source>Switch the input focus to the Code Documentation Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2051"/>
-        <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2062"/>
-        <source>Ctrl+Alt+Shift+P</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2068"/>
-        <source>Switch the input focus to the PyPI window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2070"/>
         <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2080"/>
+        <location filename="../UI/UserInterface.py" line="2090"/>
         <source>Ctrl+Alt+Shift+C</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2086"/>
+        <location filename="../UI/UserInterface.py" line="2096"/>
         <source>Switch the input focus to the Conda window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2088"/>
-        <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2098"/>
+        <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2108"/>
         <source>Ctrl+Alt+Shift+M</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2104"/>
+        <location filename="../UI/UserInterface.py" line="2114"/>
         <source>Switch the input focus to the MicroPython window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2106"/>
+        <location filename="../UI/UserInterface.py" line="2116"/>
         <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3225"/>
+        <location filename="../UI/UserInterface.py" line="3235"/>
         <source>Central Park</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3745"/>
+        <location filename="../UI/UserInterface.py" line="3755"/>
         <source>&lt;h2&gt;Version Numbers&lt;/h2&gt;&lt;table&gt;</source>
         <translation type="unfinished">&lt;h3&gt;Numeri di versione&lt;/h3&gt;&lt;table&gt; {2&gt;?} {2&gt;?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5082"/>
+        <location filename="../UI/UserInterface.py" line="5099"/>
         <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5152"/>
+        <location filename="../UI/UserInterface.py" line="5169"/>
         <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5196"/>
+        <location filename="../UI/UserInterface.py" line="5213"/>
         <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2211"/>
+        <location filename="../UI/UserInterface.py" line="2221"/>
         <source>Show Install Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2211"/>
+        <location filename="../UI/UserInterface.py" line="2221"/>
         <source>Show Install &amp;Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2215"/>
+        <location filename="../UI/UserInterface.py" line="2225"/>
         <source>Show Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2217"/>
+        <location filename="../UI/UserInterface.py" line="2227"/>
         <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2873"/>
+        <location filename="../UI/UserInterface.py" line="2883"/>
         <source>Qt6 Documentation</source>
         <translation type="unfinished">Documentazione Qt4 {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2877"/>
+        <location filename="../UI/UserInterface.py" line="2887"/>
         <source>Open Qt6 Documentation</source>
         <translation type="unfinished">Apri documentazione su Qt4 {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2878"/>
+        <location filename="../UI/UserInterface.py" line="2888"/>
         <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2905"/>
+        <location filename="../UI/UserInterface.py" line="2915"/>
         <source>PyQt6 Documentation</source>
         <translation type="unfinished">Documentazione PyQt4 {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2909"/>
+        <location filename="../UI/UserInterface.py" line="2919"/>
         <source>Open PyQt6 Documentation</source>
         <translation type="unfinished">Apri documentazione su PyQt4 {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2911"/>
+        <location filename="../UI/UserInterface.py" line="2921"/>
         <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2990"/>
+        <location filename="../UI/UserInterface.py" line="3000"/>
         <source>PySide6 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2994"/>
+        <location filename="../UI/UserInterface.py" line="3004"/>
         <source>Open PySide6 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2996"/>
+        <location filename="../UI/UserInterface.py" line="3006"/>
         <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5761"/>
+        <location filename="../UI/UserInterface.py" line="5778"/>
         <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1697"/>
+        <location filename="../UI/UserInterface.py" line="1707"/>
         <source>Open a new eric instance</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1699"/>
+        <location filename="../UI/UserInterface.py" line="1709"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2142"/>
+        <location filename="../UI/UserInterface.py" line="2152"/>
         <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is search in the Qt help collection.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2177"/>
+        <location filename="../UI/UserInterface.py" line="2187"/>
         <source>&lt;b&gt;Check for Updates...&lt;/b&gt;&lt;p&gt;Checks the internet for updates of eric.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2190"/>
+        <location filename="../UI/UserInterface.py" line="2200"/>
         <source>&lt;b&gt;Show downloadable versions...&lt;/b&gt;&lt;p&gt;Shows the eric versions available for download from the internet.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2464"/>
-        <source>Start the eric Hex Editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2466"/>
-        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2474"/>
+        <source>Start the eric Hex Editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2476"/>
+        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2484"/>
         <source>eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2474"/>
+        <location filename="../UI/UserInterface.py" line="2484"/>
         <source>eric &amp;Web Browser...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2479"/>
+        <location filename="../UI/UserInterface.py" line="2489"/>
         <source>Start the eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2481"/>
+        <location filename="../UI/UserInterface.py" line="2491"/>
         <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2493"/>
+        <location filename="../UI/UserInterface.py" line="2503"/>
         <source>Start the eric Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2495"/>
+        <location filename="../UI/UserInterface.py" line="2505"/>
         <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2581"/>
+        <location filename="../UI/UserInterface.py" line="2591"/>
         <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2955"/>
+        <location filename="../UI/UserInterface.py" line="2965"/>
         <source>&lt;b&gt;Eric API Documentation&lt;/b&gt;&lt;p&gt;Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5979"/>
+        <location filename="../UI/UserInterface.py" line="5996"/>
         <source>The eric web browser could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6043"/>
+        <location filename="../UI/UserInterface.py" line="6060"/>
         <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7221"/>
+        <location filename="../UI/UserInterface.py" line="7242"/>
         <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7199"/>
+        <location filename="../UI/UserInterface.py" line="7220"/>
         <source>You are using a snapshot release of eric. A more up-to-date stable release might be available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7233"/>
+        <location filename="../UI/UserInterface.py" line="7254"/>
         <source>eric is up to date</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7233"/>
+        <location filename="../UI/UserInterface.py" line="7254"/>
         <source>You are using the latest version of eric</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7316"/>
+        <location filename="../UI/UserInterface.py" line="7337"/>
         <source>eric has not been configured yet. The configuration dialog will be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6294"/>
+        <location filename="../UI/UserInterface.py" line="6314"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard Shortcuts File (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6313"/>
+        <location filename="../UI/UserInterface.py" line="6333"/>
         <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6329"/>
+        <location filename="../UI/UserInterface.py" line="6349"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6518"/>
+        <location filename="../UI/UserInterface.py" line="6538"/>
         <source>Read Tasks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6627"/>
+        <location filename="../UI/UserInterface.py" line="6647"/>
         <source>Save Session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6584"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>Read Session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6650"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -84099,7 +84099,7 @@
 <context>
     <name>Utilities</name>
     <message>
-        <location filename="../Utilities/__init__.py" line="1453"/>
+        <location filename="../Utilities/__init__.py" line="1454"/>
         <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;Puoi usare i codici % come segnaposti nella stringa. I codici supportati sono: &lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;colonna del cursore nell&apos;editor attuale&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory dell&apos;editor attuale&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;nome file dell&apos;editor corrente&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;directory home dell&apos;utente attuale&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;linea del cursore dell&apos;editor attuale&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;percorso del progetto attuale&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;testo selezionato dell&apos;editor attuale&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username dell&apos;utente attuale&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;Segno percentuale&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</translation>
     </message>
@@ -84421,7 +84421,7 @@
 <context>
     <name>VariablesViewer</name>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="958"/>
+        <location filename="../Debugger/VariablesViewer.py" line="965"/>
         <source>Global Variables</source>
         <translation>Variabili globali</translation>
     </message>
@@ -84431,12 +84431,12 @@
         <translation type="obsolete">Globali</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="959"/>
+        <location filename="../Debugger/VariablesViewer.py" line="966"/>
         <source>&lt;b&gt;The Global Variables Viewer Window&lt;/b&gt;&lt;p&gt;This window displays the global variables of the debugged program.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Finestra di visualizzazione delle variabili globali&lt;/b&gt;&lt;p&gt;Questa finestra mostra le variabili globali del programma in debug.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="965"/>
+        <location filename="../Debugger/VariablesViewer.py" line="972"/>
         <source>Local Variables</source>
         <translation>Variabili locali</translation>
     </message>
@@ -84446,7 +84446,7 @@
         <translation type="obsolete">Locali</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="966"/>
+        <location filename="../Debugger/VariablesViewer.py" line="973"/>
         <source>&lt;b&gt;The Local Variables Viewer Window&lt;/b&gt;&lt;p&gt;This window displays the local variables of the debugged program.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Finestra di visualizzazione delle variabili locali&lt;/b&gt;&lt;p&gt;Questa finestra mostra le variabili locali del programma in debug.&lt;/p&gt;</translation>
     </message>
@@ -84461,12 +84461,12 @@
         <translation type="obsolete">Tipo</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1083"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1090"/>
         <source>Show Details...</source>
         <translation>Mostra dettagli...</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1098"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1105"/>
         <source>Configure...</source>
         <translation>Configura...</translation>
     </message>
@@ -84476,7 +84476,7 @@
         <translation>{0} elementi</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1096"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1103"/>
         <source>Refresh</source>
         <translation type="unfinished"></translation>
     </message>
@@ -84486,22 +84486,22 @@
         <translation type="obsolete">Raggruppa tutto</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1085"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1092"/>
         <source>Expand</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1086"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1093"/>
         <source>Collapse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1087"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1094"/>
         <source>Collapse All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1099"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1106"/>
         <source>Variables Type Filter...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -85190,7 +85190,7 @@
         <translation>Errore Generazione Processo</translation>
     </message>
     <message>
-        <location filename="../VCS/VersionControl.py" line="761"/>
+        <location filename="../VCS/VersionControl.py" line="764"/>
         <source>Repository status checking is switched off</source>
         <translation>Il controllo dello stato del repository è spento</translation>
     </message>
@@ -85203,1605 +85203,1605 @@
 <context>
     <name>ViewManager</name>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>New</source>
         <translation>Nuovo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>&amp;New</source>
         <translation>&amp;Nuova</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="592"/>
+        <location filename="../ViewManager/ViewManager.py" line="593"/>
         <source>Open an empty editor window</source>
         <translation>Apri una finestra vuota</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="595"/>
+        <location filename="../ViewManager/ViewManager.py" line="596"/>
         <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="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>Open</source>
         <translation>Apri</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>&amp;Open...</source>
         <translation>&amp;Apri...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>Close</source>
         <translation>Chiudi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>&amp;Close</source>
         <translation>&amp;Chiudi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="632"/>
+        <location filename="../ViewManager/ViewManager.py" line="633"/>
         <source>Close the current window</source>
         <translation>Chiudi la finestra attuale</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="636"/>
         <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="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="644"/>
         <source>Close All</source>
         <translation>Chiudi tutti</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="644"/>
         <source>Clos&amp;e All</source>
         <translation>Chiudi &amp;tutti</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="647"/>
+        <location filename="../ViewManager/ViewManager.py" line="648"/>
         <source>Close all editor windows</source>
         <translation>Chiudi tutte le finestre dell&apos;editor</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="650"/>
+        <location filename="../ViewManager/ViewManager.py" line="651"/>
         <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="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>Save</source>
         <translation>Salva</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>&amp;Save</source>
         <translation>&amp;Salva</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="669"/>
+        <location filename="../ViewManager/ViewManager.py" line="670"/>
         <source>Save the current file</source>
         <translation>Salva il file corrente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="671"/>
+        <location filename="../ViewManager/ViewManager.py" line="672"/>
         <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="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Save as</source>
         <translation>Salva come</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Save &amp;as...</source>
         <translation>S&amp;alva come...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="686"/>
+        <location filename="../ViewManager/ViewManager.py" line="687"/>
         <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="688"/>
+        <location filename="../ViewManager/ViewManager.py" line="689"/>
         <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="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="714"/>
         <source>Save all</source>
         <translation>Salva tutto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="718"/>
+        <location filename="../ViewManager/ViewManager.py" line="719"/>
         <source>Save all files</source>
         <translation>Salva tutti i file</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="720"/>
+        <location filename="../ViewManager/ViewManager.py" line="721"/>
         <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="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>Print</source>
         <translation>Stampa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>&amp;Print</source>
         <translation>Stam&amp;pa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="737"/>
+        <location filename="../ViewManager/ViewManager.py" line="738"/>
         <source>Print the current file</source>
         <translation>Stampa il file attuale</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="739"/>
+        <location filename="../ViewManager/ViewManager.py" line="740"/>
         <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="789"/>
+        <location filename="../ViewManager/ViewManager.py" line="790"/>
         <source>Open &amp;Recent Files</source>
         <translation>Apri file &amp;recenti</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="792"/>
+        <location filename="../ViewManager/ViewManager.py" line="793"/>
         <source>Open &amp;Bookmarked Files</source>
         <translation>Apri file presenti nel &amp;Bookmark</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Undo</source>
         <translation>Undo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>&amp;Undo</source>
         <translation>&amp;Undo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="896"/>
+        <location filename="../ViewManager/ViewManager.py" line="897"/>
         <source>Undo the last change</source>
         <translation>Annulla l&apos;ultima modifica</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="898"/>
+        <location filename="../ViewManager/ViewManager.py" line="899"/>
         <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="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>Redo</source>
         <translation>Rifai</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>&amp;Redo</source>
         <translation>&amp;Rifai</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="914"/>
+        <location filename="../ViewManager/ViewManager.py" line="915"/>
         <source>Redo the last change</source>
         <translation>Rifai ultima modifica</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="916"/>
+        <location filename="../ViewManager/ViewManager.py" line="917"/>
         <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="933"/>
+        <location filename="../ViewManager/ViewManager.py" line="934"/>
         <source>Revert to last saved state</source>
         <translation>Ritorna all&apos;ultimo stato salvato</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="924"/>
+        <location filename="../ViewManager/ViewManager.py" line="925"/>
         <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="935"/>
+        <location filename="../ViewManager/ViewManager.py" line="936"/>
         <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="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Cut</source>
         <translation>Taglia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Cu&amp;t</source>
         <translation>&amp;Taglia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="955"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Cut the selection</source>
         <translation>Taglia la selezione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="958"/>
         <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="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Copy</source>
         <translation>Copia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>&amp;Copy</source>
         <translation>&amp;Copia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="976"/>
         <source>Copy the selection</source>
         <translation>Copia la selezione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="977"/>
+        <location filename="../ViewManager/ViewManager.py" line="978"/>
         <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="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Paste</source>
         <translation>Incolla</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>&amp;Paste</source>
         <translation>&amp;Incolla</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="995"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <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="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="998"/>
         <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="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>Clear</source>
         <translation>Pulisci</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1014"/>
+        <location filename="../ViewManager/ViewManager.py" line="1015"/>
         <source>Clear all text</source>
         <translation>Pulisci tutto il testo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1016"/>
+        <location filename="../ViewManager/ViewManager.py" line="1017"/>
         <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="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>Indent</source>
         <translation>Identa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>&amp;Indent</source>
         <translation>&amp;Identa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1049"/>
+        <location filename="../ViewManager/ViewManager.py" line="1050"/>
         <source>Indent line</source>
         <translation>Identa riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1051"/>
+        <location filename="../ViewManager/ViewManager.py" line="1052"/>
         <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="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>Unindent</source>
         <translation>Annulla identazione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>U&amp;nindent</source>
         <translation>A&amp;nnulla identazione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1068"/>
+        <location filename="../ViewManager/ViewManager.py" line="1069"/>
         <source>Unindent line</source>
         <translation>Annulla identazione riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1070"/>
+        <location filename="../ViewManager/ViewManager.py" line="1071"/>
         <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="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>Comment</source>
         <translation>Commenta</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>C&amp;omment</source>
         <translation>C&amp;ommenta</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1104"/>
+        <location filename="../ViewManager/ViewManager.py" line="1105"/>
         <source>Comment Line or Selection</source>
         <translation>Commenta Riga o Selezione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1106"/>
+        <location filename="../ViewManager/ViewManager.py" line="1107"/>
         <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="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Uncomment</source>
         <translation>Annulla commenta</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Unco&amp;mment</source>
         <translation>Annulla co&amp;mmenta</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1123"/>
+        <location filename="../ViewManager/ViewManager.py" line="1124"/>
         <source>Uncomment Line or Selection</source>
         <translation>Annulla commenta Riga o Selezione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1125"/>
+        <location filename="../ViewManager/ViewManager.py" line="1126"/>
         <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="1156"/>
+        <location filename="../ViewManager/ViewManager.py" line="1157"/>
         <source>Stream Comment</source>
         <translation>Streaml commento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1161"/>
+        <location filename="../ViewManager/ViewManager.py" line="1162"/>
         <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="1164"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <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="1173"/>
+        <location filename="../ViewManager/ViewManager.py" line="1174"/>
         <source>Box Comment</source>
         <translation>Box Comment</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1178"/>
+        <location filename="../ViewManager/ViewManager.py" line="1179"/>
         <source>Box Comment Line or Selection</source>
         <translation>Box Comment Riga o Selezione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1180"/>
+        <location filename="../ViewManager/ViewManager.py" line="1181"/>
         <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="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Select to brace</source>
         <translation>Seleziona fino alla parentesi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Select to &amp;brace</source>
         <translation>Seleziona fino alla &amp;parentesi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1196"/>
+        <location filename="../ViewManager/ViewManager.py" line="1197"/>
         <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="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>Select all</source>
         <translation>Seleziona tutti</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>&amp;Select all</source>
         <translation>&amp;Seleziona tutto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1215"/>
+        <location filename="../ViewManager/ViewManager.py" line="1216"/>
         <source>Select all text</source>
         <translation>Seleziona tutto il testo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>Deselect all</source>
         <translation>Deseleziona tutti</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>&amp;Deselect all</source>
         <translation>&amp;Deseleziona tutti</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1232"/>
+        <location filename="../ViewManager/ViewManager.py" line="1233"/>
         <source>Deselect all text</source>
         <translation>Deseleziona tutto il testo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1249"/>
+        <location filename="../ViewManager/ViewManager.py" line="1250"/>
         <source>Convert Line End Characters</source>
         <translation>Converti il carattere di Line End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1242"/>
+        <location filename="../ViewManager/ViewManager.py" line="1243"/>
         <source>Convert &amp;Line End Characters</source>
         <translation>Converti il carattere di &amp;Line End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1251"/>
+        <location filename="../ViewManager/ViewManager.py" line="1252"/>
         <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="1265"/>
+        <location filename="../ViewManager/ViewManager.py" line="1266"/>
         <source>Shorten empty lines</source>
         <translation>Abbrevia righe vuote</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1267"/>
+        <location filename="../ViewManager/ViewManager.py" line="1268"/>
         <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="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1277"/>
         <source>&amp;Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2748"/>
+        <location filename="../ViewManager/ViewManager.py" line="2749"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1283"/>
+        <location filename="../ViewManager/ViewManager.py" line="1284"/>
         <source>Complete current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1285"/>
+        <location filename="../ViewManager/ViewManager.py" line="1286"/>
         <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="1452"/>
+        <location filename="../ViewManager/ViewManager.py" line="1453"/>
         <source>Move left one character</source>
         <translation>Muovi a sinistra di 1 carattere</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1452"/>
+        <location filename="../ViewManager/ViewManager.py" line="1453"/>
         <source>Left</source>
         <translation>Sinistra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1466"/>
+        <location filename="../ViewManager/ViewManager.py" line="1467"/>
         <source>Move right one character</source>
         <translation>Muovi a destra di 1 carattere</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1466"/>
+        <location filename="../ViewManager/ViewManager.py" line="1467"/>
         <source>Right</source>
         <translation>Destra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1481"/>
         <source>Move up one line</source>
         <translation>Muovi in alto di una riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1481"/>
         <source>Up</source>
         <translation>Su</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1492"/>
+        <location filename="../ViewManager/ViewManager.py" line="1493"/>
         <source>Move down one line</source>
         <translation>Muovi in basso di una riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1492"/>
+        <location filename="../ViewManager/ViewManager.py" line="1493"/>
         <source>Down</source>
         <translation>Giù</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1504"/>
+        <location filename="../ViewManager/ViewManager.py" line="1505"/>
         <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="1538"/>
+        <location filename="../ViewManager/ViewManager.py" line="1539"/>
         <source>Alt+Left</source>
         <translation>Alt+Sinistra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1518"/>
+        <location filename="../ViewManager/ViewManager.py" line="1519"/>
         <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="2418"/>
+        <location filename="../ViewManager/ViewManager.py" line="2419"/>
         <source>Alt+Right</source>
         <translation>Alt+Destra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1532"/>
+        <location filename="../ViewManager/ViewManager.py" line="1533"/>
         <source>Move left one word</source>
         <translation>Muovi a sinistra una parola</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1583"/>
+        <location filename="../ViewManager/ViewManager.py" line="1584"/>
         <source>Ctrl+Left</source>
         <translation>Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1547"/>
+        <location filename="../ViewManager/ViewManager.py" line="1548"/>
         <source>Move right one word</source>
         <translation>Muovi a destra una parola</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2173"/>
         <source>Ctrl+Right</source>
         <translation>Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2373"/>
+        <location filename="../ViewManager/ViewManager.py" line="2374"/>
         <source>Home</source>
         <translation>Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1586"/>
+        <location filename="../ViewManager/ViewManager.py" line="1587"/>
         <source>Alt+Home</source>
         <translation>Alt+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2388"/>
+        <location filename="../ViewManager/ViewManager.py" line="2389"/>
         <source>End</source>
         <translation>Fine</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1609"/>
+        <location filename="../ViewManager/ViewManager.py" line="1610"/>
         <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="1699"/>
+        <location filename="../ViewManager/ViewManager.py" line="1700"/>
         <source>Ctrl+Down</source>
         <translation>Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1621"/>
+        <location filename="../ViewManager/ViewManager.py" line="1622"/>
         <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="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1683"/>
         <source>Ctrl+Up</source>
         <translation>Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1632"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Move up one paragraph</source>
         <translation>Muovi in alto di un paragrafo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1632"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Alt+Up</source>
         <translation>Alt+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1641"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Move down one paragraph</source>
         <translation>Muovi in basso di un paragrafo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1641"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Alt+Down</source>
         <translation>Alt+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1653"/>
+        <location filename="../ViewManager/ViewManager.py" line="1654"/>
         <source>Move up one page</source>
         <translation>Muovi in alto di una pagina</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1653"/>
+        <location filename="../ViewManager/ViewManager.py" line="1654"/>
         <source>PgUp</source>
         <translation>PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1662"/>
+        <location filename="../ViewManager/ViewManager.py" line="1663"/>
         <source>Move down one page</source>
         <translation>Muovi in basso di una pagina</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1662"/>
+        <location filename="../ViewManager/ViewManager.py" line="1663"/>
         <source>PgDown</source>
         <translation>PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1685"/>
+        <location filename="../ViewManager/ViewManager.py" line="1686"/>
         <source>Ctrl+Home</source>
         <translation>Ctrl+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1702"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>Ctrl+End</source>
         <translation>Ctrl+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1708"/>
+        <location filename="../ViewManager/ViewManager.py" line="1709"/>
         <source>Indent one level</source>
         <translation>Indenta un livello</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1708"/>
+        <location filename="../ViewManager/ViewManager.py" line="1709"/>
         <source>Tab</source>
         <translation>Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1717"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Unindent one level</source>
         <translation>Deindenta di un livello</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1717"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Shift+Tab</source>
         <translation>Shift+Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1728"/>
         <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="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1728"/>
         <source>Shift+Left</source>
         <translation>Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1742"/>
+        <location filename="../ViewManager/ViewManager.py" line="1743"/>
         <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="1742"/>
+        <location filename="../ViewManager/ViewManager.py" line="1743"/>
         <source>Shift+Right</source>
         <translation>Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1757"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Extend selection up one line</source>
         <translation>Estendi selezione in alto di una riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1757"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Shift+Up</source>
         <translation>Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1772"/>
+        <location filename="../ViewManager/ViewManager.py" line="1773"/>
         <source>Extend selection down one line</source>
         <translation>Estendi selezione in basso di una riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1772"/>
+        <location filename="../ViewManager/ViewManager.py" line="1773"/>
         <source>Shift+Down</source>
         <translation>Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1787"/>
+        <location filename="../ViewManager/ViewManager.py" line="1788"/>
         <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="1823"/>
+        <location filename="../ViewManager/ViewManager.py" line="1824"/>
         <source>Alt+Shift+Left</source>
         <translation>Alt+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1802"/>
         <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="2433"/>
+        <location filename="../ViewManager/ViewManager.py" line="2434"/>
         <source>Alt+Shift+Right</source>
         <translation>Alt+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1815"/>
+        <location filename="../ViewManager/ViewManager.py" line="1816"/>
         <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="2527"/>
+        <location filename="../ViewManager/ViewManager.py" line="2528"/>
         <source>Ctrl+Shift+Left</source>
         <translation>Ctrl+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1832"/>
+        <location filename="../ViewManager/ViewManager.py" line="1833"/>
         <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="2189"/>
+        <location filename="../ViewManager/ViewManager.py" line="2190"/>
         <source>Ctrl+Shift+Right</source>
         <translation>Ctrl+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1861"/>
+        <location filename="../ViewManager/ViewManager.py" line="1862"/>
         <source>Shift+Home</source>
         <translation>Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2293"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Alt+Shift+Home</source>
         <translation>Alt+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1878"/>
+        <location filename="../ViewManager/ViewManager.py" line="1879"/>
         <source>Shift+End</source>
         <translation>Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1884"/>
+        <location filename="../ViewManager/ViewManager.py" line="1885"/>
         <source>Extend selection up one paragraph</source>
         <translation>Estendi selezione in alto di un paragrafo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1884"/>
+        <location filename="../ViewManager/ViewManager.py" line="1885"/>
         <source>Alt+Shift+Up</source>
         <translation>Alt+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1897"/>
+        <location filename="../ViewManager/ViewManager.py" line="1898"/>
         <source>Extend selection down one paragraph</source>
         <translation>Estendi selezione in basso di un paragrafo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1897"/>
+        <location filename="../ViewManager/ViewManager.py" line="1898"/>
         <source>Alt+Shift+Down</source>
         <translation>Alt+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1910"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Extend selection up one page</source>
         <translation>Estendi selezione in alto di una pagina</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1910"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Shift+PgUp</source>
         <translation>Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1922"/>
+        <location filename="../ViewManager/ViewManager.py" line="1923"/>
         <source>Extend selection down one page</source>
         <translation>Estendi selezione in basso di una pagina</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1922"/>
+        <location filename="../ViewManager/ViewManager.py" line="1923"/>
         <source>Shift+PgDown</source>
         <translation>Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1949"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Ctrl+Shift+Home</source>
         <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1966"/>
+        <location filename="../ViewManager/ViewManager.py" line="1967"/>
         <source>Ctrl+Shift+End</source>
         <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1972"/>
+        <location filename="../ViewManager/ViewManager.py" line="1973"/>
         <source>Delete previous character</source>
         <translation>Cancella caratteri precedenti</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1972"/>
+        <location filename="../ViewManager/ViewManager.py" line="1973"/>
         <source>Backspace</source>
         <translation>Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2003"/>
+        <location filename="../ViewManager/ViewManager.py" line="2004"/>
         <source>Delete current character</source>
         <translation>Cancella il carattere corrente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2003"/>
+        <location filename="../ViewManager/ViewManager.py" line="2004"/>
         <source>Del</source>
         <translation>Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2017"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <source>Delete word to left</source>
         <translation>Cancella parola a sinistra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2017"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <source>Ctrl+Backspace</source>
         <translation>Ctrl+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2028"/>
+        <location filename="../ViewManager/ViewManager.py" line="2029"/>
         <source>Delete word to right</source>
         <translation>Cancella parola a destra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2028"/>
+        <location filename="../ViewManager/ViewManager.py" line="2029"/>
         <source>Ctrl+Del</source>
         <translation>Ctrl+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2038"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Delete line to left</source>
         <translation>Cancella riga a sinistra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2038"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation>Ctrl+Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2049"/>
+        <location filename="../ViewManager/ViewManager.py" line="2050"/>
         <source>Delete line to right</source>
         <translation>Cancella riga a destra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2058"/>
+        <location filename="../ViewManager/ViewManager.py" line="2059"/>
         <source>Ctrl+Shift+Del</source>
         <translation>Ctrl+Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Insert new line</source>
         <translation>Inserisci riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Return</source>
         <translation>Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Delete current line</source>
         <translation>Cancella riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Ctrl+Shift+L</source>
         <translation>Ctrl+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2098"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Duplicate current line</source>
         <translation>Duplica riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2098"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Ctrl+D</source>
         <translation>Ctrl+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2109"/>
+        <location filename="../ViewManager/ViewManager.py" line="2110"/>
         <source>Swap current and previous lines</source>
         <translation>Scambia la riga con quella precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2109"/>
+        <location filename="../ViewManager/ViewManager.py" line="2110"/>
         <source>Ctrl+T</source>
         <translation>Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2132"/>
+        <location filename="../ViewManager/ViewManager.py" line="2133"/>
         <source>Cut current line</source>
         <translation>Taglia riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2132"/>
+        <location filename="../ViewManager/ViewManager.py" line="2133"/>
         <source>Alt+Shift+L</source>
         <translation>Alt+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2142"/>
+        <location filename="../ViewManager/ViewManager.py" line="2143"/>
         <source>Copy current line</source>
         <translation>Copia riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2142"/>
+        <location filename="../ViewManager/ViewManager.py" line="2143"/>
         <source>Ctrl+Shift+T</source>
         <translation>Ctrl+Shift+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2153"/>
+        <location filename="../ViewManager/ViewManager.py" line="2154"/>
         <source>Toggle insert/overtype</source>
         <translation>Scambia inserisci/sovrascrivi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2153"/>
+        <location filename="../ViewManager/ViewManager.py" line="2154"/>
         <source>Ins</source>
         <translation>Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2717"/>
+        <location filename="../ViewManager/ViewManager.py" line="2718"/>
         <source>Convert selection to lower case</source>
         <translation>Converti selezione in minuscolo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2717"/>
+        <location filename="../ViewManager/ViewManager.py" line="2718"/>
         <source>Alt+Shift+U</source>
         <translation>Alt+Shift+U</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2729"/>
+        <location filename="../ViewManager/ViewManager.py" line="2730"/>
         <source>Convert selection to upper case</source>
         <translation>Converti selezione in maiuscolo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2729"/>
+        <location filename="../ViewManager/ViewManager.py" line="2730"/>
         <source>Ctrl+Shift+U</source>
         <translation>Ctrl+Shift+U</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2175"/>
+        <location filename="../ViewManager/ViewManager.py" line="2176"/>
         <source>Alt+End</source>
         <translation>Alt+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2195"/>
+        <location filename="../ViewManager/ViewManager.py" line="2196"/>
         <source>Formfeed</source>
         <translation>Formfeed</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2204"/>
+        <location filename="../ViewManager/ViewManager.py" line="2205"/>
         <source>Escape</source>
         <translation>Escape</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2204"/>
+        <location filename="../ViewManager/ViewManager.py" line="2205"/>
         <source>Esc</source>
         <translation>Esc</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2213"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <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="2213"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <source>Alt+Ctrl+Down</source>
         <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2229"/>
+        <location filename="../ViewManager/ViewManager.py" line="2230"/>
         <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="2229"/>
+        <location filename="../ViewManager/ViewManager.py" line="2230"/>
         <source>Alt+Ctrl+Up</source>
         <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2244"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <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="2244"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <source>Alt+Ctrl+Left</source>
         <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2262"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <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="2262"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Alt+Ctrl+Right</source>
         <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2318"/>
+        <location filename="../ViewManager/ViewManager.py" line="2319"/>
         <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="2333"/>
+        <location filename="../ViewManager/ViewManager.py" line="2334"/>
         <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="3296"/>
+        <location filename="../ViewManager/ViewManager.py" line="3297"/>
         <source>Search</source>
         <translation>Ricerca</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2849"/>
+        <location filename="../ViewManager/ViewManager.py" line="2850"/>
         <source>&amp;Search...</source>
         <translation>&amp;Ricerca...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2857"/>
+        <location filename="../ViewManager/ViewManager.py" line="2858"/>
         <source>Search for a text</source>
         <translation>Cerca per un testo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2859"/>
+        <location filename="../ViewManager/ViewManager.py" line="2860"/>
         <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="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>Replace</source>
         <translation>Rimpiazza</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>&amp;Replace...</source>
         <translation>&amp;Rimpiazza...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2982"/>
+        <location filename="../ViewManager/ViewManager.py" line="2983"/>
         <source>Replace some text</source>
         <translation>Sostituisci del testo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2984"/>
+        <location filename="../ViewManager/ViewManager.py" line="2985"/>
         <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="3070"/>
+        <location filename="../ViewManager/ViewManager.py" line="3071"/>
         <source>Goto Line</source>
         <translation>Vai a riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3062"/>
+        <location filename="../ViewManager/ViewManager.py" line="3063"/>
         <source>&amp;Goto Line...</source>
         <translation>Vai a ri&amp;ga...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3072"/>
+        <location filename="../ViewManager/ViewManager.py" line="3073"/>
         <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="3089"/>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
         <source>Goto Brace</source>
         <translation>Vai alla parentesi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3081"/>
+        <location filename="../ViewManager/ViewManager.py" line="3082"/>
         <source>Goto &amp;Brace</source>
         <translation>Vai alla &amp;parentesi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3091"/>
+        <location filename="../ViewManager/ViewManager.py" line="3092"/>
         <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="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Search in Files</source>
         <translation>Cerca nei file</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Search in &amp;Files...</source>
         <translation>Cerca nei &amp;file...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3177"/>
+        <location filename="../ViewManager/ViewManager.py" line="3178"/>
         <source>Search for a text in files</source>
         <translation>Cerca un testo nei file</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3179"/>
+        <location filename="../ViewManager/ViewManager.py" line="3180"/>
         <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="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom in</source>
         <translation>Ingrandisci</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom &amp;in</source>
         <translation>Ingrand&amp;isci</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3344"/>
-        <source>Zoom in on the text</source>
-        <translation>Ingrandisci nel testo</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3346"/>
+        <source>Zoom in on the text</source>
+        <translation>Ingrandisci nel testo</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3348"/>
         <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="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom out</source>
         <translation>Riduci</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom &amp;out</source>
         <translation>Rid&amp;uci</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3363"/>
-        <source>Zoom out on the text</source>
-        <translation>Riduci il testo</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3365"/>
+        <source>Zoom out on the text</source>
+        <translation>Riduci il testo</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3367"/>
         <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="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>Zoom</source>
         <translation>Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>&amp;Zoom</source>
         <translation>&amp;Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3400"/>
-        <source>Zoom the text</source>
-        <translation>Ingrandisci il testo</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3402"/>
+        <source>Zoom the text</source>
+        <translation>Ingrandisci il testo</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3404"/>
         <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="3415"/>
-        <source>Toggle all folds</source>
-        <translation>Abilita/Disabilita tutti i raggruppamenti</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3411"/>
-        <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="3417"/>
+        <source>Toggle all folds</source>
+        <translation>Abilita/Disabilita tutti i raggruppamenti</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3413"/>
+        <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="3419"/>
         <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="3447"/>
-        <source>Toggle current fold</source>
-        <translation>Abilita/Disabilita il raggruppamento corrente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3443"/>
-        <source>Toggle &amp;current fold</source>
-        <translation>Abilita/Disabilita il raggruppamento &amp;corrente</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3449"/>
+        <source>Toggle current fold</source>
+        <translation>Abilita/Disabilita il raggruppamento corrente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3445"/>
+        <source>Toggle &amp;current fold</source>
+        <translation>Abilita/Disabilita il raggruppamento &amp;corrente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3451"/>
         <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="3479"/>
-        <source>Remove all highlights</source>
-        <translation>Rimuovi tutti gli highlight</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3481"/>
+        <source>Remove all highlights</source>
+        <translation>Rimuovi tutti gli highlight</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3483"/>
         <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="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3529"/>
         <source>Split view</source>
         <translation>Dividi vista</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3529"/>
         <source>&amp;Split view</source>
         <translation>Dividi vi&amp;sta</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3532"/>
-        <source>Add a split to the view</source>
-        <translation>Aggiungi un divisione alla vista</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3534"/>
+        <source>Add a split to the view</source>
+        <translation>Aggiungi un divisione alla vista</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3536"/>
         <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="3542"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Arrange horizontally</source>
         <translation>Sistema orizzontalmente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3542"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Arrange &amp;horizontally</source>
         <translation>Sistema o&amp;rizzontalmente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation>Sistema le finestre divise orizzontalmente</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3548"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation>Sistema le finestre divise orizzontalmente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3550"/>
         <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="3557"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>Remove split</source>
         <translation>Rimuovi divisione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3557"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>&amp;Remove split</source>
         <translation>&amp;Rimuovi divisione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3562"/>
-        <source>Remove the current split</source>
-        <translation>Rimuovi la divisione corrente</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3564"/>
+        <source>Remove the current split</source>
+        <translation>Rimuovi la divisione corrente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3566"/>
         <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="3754"/>
-        <source>Start Macro Recording</source>
-        <translation>Avvia registrazione della macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3748"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation>Avvia regis&amp;trazione della macro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3756"/>
+        <source>Start Macro Recording</source>
+        <translation>Avvia registrazione della macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3750"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation>Avvia regis&amp;trazione della macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3758"/>
         <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="3768"/>
-        <source>Stop Macro Recording</source>
-        <translation>Interrompi registrazione macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3764"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation>Interrom&amp;pi registrazione macro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3770"/>
+        <source>Stop Macro Recording</source>
+        <translation>Interrompi registrazione macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3766"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation>Interrom&amp;pi registrazione macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3772"/>
         <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="3782"/>
-        <source>Run Macro</source>
-        <translation>Esegui Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3778"/>
-        <source>&amp;Run Macro</source>
-        <translation>Esegui Mac&amp;ro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3784"/>
+        <source>Run Macro</source>
+        <translation>Esegui Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3780"/>
+        <source>&amp;Run Macro</source>
+        <translation>Esegui Mac&amp;ro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <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="3796"/>
-        <source>Delete Macro</source>
-        <translation>Cancella Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3792"/>
-        <source>&amp;Delete Macro</source>
-        <translation>Canc&amp;ella Macro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Delete Macro</source>
+        <translation>Cancella Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3794"/>
+        <source>&amp;Delete Macro</source>
+        <translation>Canc&amp;ella Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3800"/>
         <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="3810"/>
-        <source>Load Macro</source>
-        <translation>Carica Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3806"/>
-        <source>&amp;Load Macro</source>
-        <translation>C&amp;arica Macro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3812"/>
+        <source>Load Macro</source>
+        <translation>Carica Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3808"/>
+        <source>&amp;Load Macro</source>
+        <translation>C&amp;arica Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3814"/>
         <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="3824"/>
-        <source>Save Macro</source>
-        <translation>Salva Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3820"/>
-        <source>&amp;Save Macro</source>
-        <translation>&amp;Salva Macro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3826"/>
+        <source>Save Macro</source>
+        <translation>Salva Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
+        <source>&amp;Save Macro</source>
+        <translation>&amp;Salva Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3828"/>
         <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="3868"/>
-        <source>Toggle Bookmark</source>
-        <translation>Inverti bookmark</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3860"/>
-        <source>&amp;Toggle Bookmark</source>
-        <translation>Inver&amp;ti bookmark</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3870"/>
+        <source>Toggle Bookmark</source>
+        <translation>Inverti bookmark</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
+        <source>&amp;Toggle Bookmark</source>
+        <translation>Inver&amp;ti bookmark</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3872"/>
         <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="3887"/>
-        <source>Next Bookmark</source>
-        <translation>Prossimo segnalibro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3879"/>
-        <source>&amp;Next Bookmark</source>
-        <translation>Prossimo seg&amp;nalibro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3889"/>
+        <source>Next Bookmark</source>
+        <translation>Prossimo segnalibro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3881"/>
+        <source>&amp;Next Bookmark</source>
+        <translation>Prossimo seg&amp;nalibro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3891"/>
         <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="3905"/>
-        <source>Previous Bookmark</source>
-        <translation>Segnalibro precedente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3897"/>
-        <source>&amp;Previous Bookmark</source>
-        <translation>Segnalibro &amp;precedente</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3907"/>
+        <source>Previous Bookmark</source>
+        <translation>Segnalibro precedente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3899"/>
+        <source>&amp;Previous Bookmark</source>
+        <translation>Segnalibro &amp;precedente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3909"/>
         <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="3922"/>
-        <source>Clear Bookmarks</source>
-        <translation>Pulisci segnalibri</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3915"/>
-        <source>&amp;Clear Bookmarks</source>
-        <translation>Pulis&amp;ci segnalibri</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3924"/>
+        <source>Clear Bookmarks</source>
+        <translation>Pulisci segnalibri</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
+        <source>&amp;Clear Bookmarks</source>
+        <translation>Pulis&amp;ci segnalibri</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3926"/>
         <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="4133"/>
+        <location filename="../ViewManager/ViewManager.py" line="4135"/>
         <source>&amp;Bookmarks</source>
         <translation>Segnali&amp;bri</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4377"/>
         <source>File Modified</source>
         <translation>File modificato</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5219"/>
+        <location filename="../ViewManager/ViewManager.py" line="5221"/>
         <source>&amp;Clear</source>
         <translation>Pulis&amp;ci</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5213"/>
+        <location filename="../ViewManager/ViewManager.py" line="5215"/>
         <source>&amp;Add</source>
         <translation>&amp;Aggiungi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5216"/>
+        <location filename="../ViewManager/ViewManager.py" line="5218"/>
         <source>&amp;Edit...</source>
         <translation>&amp;Modifica...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Search File</source>
         <translation>Cerca File</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Search &amp;File...</source>
         <translation>Cerca &amp;File...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="771"/>
+        <location filename="../ViewManager/ViewManager.py" line="772"/>
         <source>Search for a file</source>
         <translation>Cerca un file</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="773"/>
+        <location filename="../ViewManager/ViewManager.py" line="774"/>
         <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="1294"/>
+        <location filename="../ViewManager/ViewManager.py" line="1295"/>
         <source>Complete from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1304"/>
+        <location filename="../ViewManager/ViewManager.py" line="1305"/>
         <source>Complete current word from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1307"/>
+        <location filename="../ViewManager/ViewManager.py" line="1308"/>
         <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="1317"/>
+        <location filename="../ViewManager/ViewManager.py" line="1318"/>
         <source>Complete from APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1328"/>
         <source>Complete current word from APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1330"/>
+        <location filename="../ViewManager/ViewManager.py" line="1331"/>
         <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="3938"/>
-        <source>Goto Syntax Error</source>
-        <translation>Vai all&apos;errore di sintassi</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3932"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation>&amp;Vai all&apos;errore di sintassi</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3940"/>
+        <source>Goto Syntax Error</source>
+        <translation>Vai all&apos;errore di sintassi</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3934"/>
+        <source>&amp;Goto Syntax Error</source>
+        <translation>&amp;Vai all&apos;errore di sintassi</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3942"/>
         <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="3953"/>
-        <source>Clear Syntax Errors</source>
-        <translation>Pulisci errori di sintassi</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3948"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation>Pulisci errori di &amp;sintassi</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3955"/>
+        <source>Clear Syntax Errors</source>
+        <translation>Pulisci errori di sintassi</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3950"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation>Pulisci errori di &amp;sintassi</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3957"/>
         <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="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1984"/>
+        <location filename="../ViewManager/ViewManager.py" line="1985"/>
         <source>Shift+Backspace</source>
         <translation>Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4023"/>
-        <source>Next uncovered line</source>
-        <translation>Prossima linea non analizzata</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4017"/>
-        <source>&amp;Next uncovered line</source>
-        <translation>Prossima linea &amp;non analizzata</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4025"/>
+        <source>Next uncovered line</source>
+        <translation>Prossima linea non analizzata</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4019"/>
+        <source>&amp;Next uncovered line</source>
+        <translation>Prossima linea &amp;non analizzata</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4027"/>
         <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="4042"/>
-        <source>Previous uncovered line</source>
-        <translation>Linea non analizzata precedente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4034"/>
-        <source>&amp;Previous uncovered line</source>
-        <translation>Linea non analizzata &amp;precedente</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4044"/>
+        <source>Previous uncovered line</source>
+        <translation>Linea non analizzata precedente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
+        <source>&amp;Previous uncovered line</source>
+        <translation>Linea non analizzata &amp;precedente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4046"/>
         <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="611"/>
+        <location filename="../ViewManager/ViewManager.py" line="612"/>
         <source>Open a file</source>
         <translation>Apri un file</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="613"/>
+        <location filename="../ViewManager/ViewManager.py" line="614"/>
         <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>
@@ -86874,450 +86874,450 @@
         <translation type="obsolete">&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="1079"/>
+        <location filename="../ViewManager/ViewManager.py" line="1080"/>
         <source>Smart indent</source>
         <translation>Smart indent</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1085"/>
+        <location filename="../ViewManager/ViewManager.py" line="1086"/>
         <source>Smart indent Line or Selection</source>
         <translation>Smart indent di una Linea o Selezione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1087"/>
+        <location filename="../ViewManager/ViewManager.py" line="1088"/>
         <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="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>Next split</source>
         <translation>Prossima divisione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>&amp;Next split</source>
         <translation>Prossima divisio&amp;ne</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3579"/>
-        <source>Move to the next split</source>
-        <translation>Vai alla prossima divisione</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3581"/>
+        <source>Move to the next split</source>
+        <translation>Vai alla prossima divisione</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3583"/>
         <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="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Previous split</source>
         <translation>Divisione precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>&amp;Previous split</source>
         <translation>Divisione &amp;precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3595"/>
-        <source>Move to the previous split</source>
-        <translation>Vai alla divisione precedente</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3597"/>
+        <source>Move to the previous split</source>
+        <translation>Vai alla divisione precedente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3599"/>
         <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="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Enter</source>
         <translation>Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1350"/>
+        <location filename="../ViewManager/ViewManager.py" line="1351"/>
         <source>Complete current word from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1340"/>
+        <location filename="../ViewManager/ViewManager.py" line="1341"/>
         <source>Complete from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1353"/>
+        <location filename="../ViewManager/ViewManager.py" line="1354"/>
         <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="3431"/>
-        <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="3425"/>
-        <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="3433"/>
+        <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="3427"/>
+        <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="3435"/>
         <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="2351"/>
+        <location filename="../ViewManager/ViewManager.py" line="2352"/>
         <source>Duplicate current selection</source>
         <translation>Duplica la selezione corrente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2351"/>
+        <location filename="../ViewManager/ViewManager.py" line="2352"/>
         <source>Ctrl+Shift+D</source>
         <translation>Ctrl+Shift+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation>Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Ctrl+Shift+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation>Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Alt+Ctrl+F</source>
         <comment>File|Search File</comment>
         <translation>Alt+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="787"/>
+        <location filename="../ViewManager/ViewManager.py" line="788"/>
         <source>&amp;File</source>
         <translation>&amp;File</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="840"/>
+        <location filename="../ViewManager/ViewManager.py" line="841"/>
         <source>File</source>
         <translation>File</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="924"/>
+        <location filename="../ViewManager/ViewManager.py" line="925"/>
         <source>Ctrl+Y</source>
         <comment>Edit|Revert</comment>
         <translation>Ctrl+Y</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>Ctrl+I</source>
         <comment>Edit|Indent</comment>
         <translation>Ctrl+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>Ctrl+Shift+I</source>
         <comment>Edit|Unindent</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>Ctrl+M</source>
         <comment>Edit|Comment</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Alt+Ctrl+M</source>
         <comment>Edit|Uncomment</comment>
         <translation>Alt+Ctrl+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Ctrl+E</source>
         <comment>Edit|Select to brace</comment>
         <translation>Ctrl+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select all</comment>
         <translation>Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>Alt+Ctrl+A</source>
         <comment>Edit|Deselect all</comment>
         <translation>Alt+Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2758"/>
+        <location filename="../ViewManager/ViewManager.py" line="2759"/>
         <source>&amp;Edit</source>
         <translation>&amp;Edita</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2817"/>
+        <location filename="../ViewManager/ViewManager.py" line="2818"/>
         <source>Edit</source>
         <translation>Modifica</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2849"/>
+        <location filename="../ViewManager/ViewManager.py" line="2850"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation>Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation>Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3062"/>
+        <location filename="../ViewManager/ViewManager.py" line="3063"/>
         <source>Ctrl+G</source>
         <comment>Search|Goto Line</comment>
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3081"/>
+        <location filename="../ViewManager/ViewManager.py" line="3082"/>
         <source>Ctrl+L</source>
         <comment>Search|Goto Brace</comment>
         <translation>Ctrl+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation>Shift+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation>Ctrl+#</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation>Ctrl+Alt+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation>Ctrl+Alt+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3683"/>
         <source>&amp;View</source>
         <translation>&amp;Visualizza</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3718"/>
+        <location filename="../ViewManager/ViewManager.py" line="3720"/>
         <source>View</source>
         <translation>Visualizza</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3842"/>
+        <location filename="../ViewManager/ViewManager.py" line="3844"/>
         <source>&amp;Macros</source>
         <translation>&amp;Macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3860"/>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation>Alt+Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3879"/>
+        <location filename="../ViewManager/ViewManager.py" line="3881"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation>Ctrl+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3897"/>
+        <location filename="../ViewManager/ViewManager.py" line="3899"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3915"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation>Alt+Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4179"/>
+        <location filename="../ViewManager/ViewManager.py" line="4181"/>
         <source>Bookmarks</source>
         <translation>Segnalibri</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4333"/>
         <source>Open files</source>
         <translation>Apri Files</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4060"/>
-        <source>Next Task</source>
-        <translation>Task seguente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4054"/>
-        <source>&amp;Next Task</source>
-        <translation>Task segue&amp;nte</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4062"/>
+        <source>Next Task</source>
+        <translation>Task seguente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4056"/>
+        <source>&amp;Next Task</source>
+        <translation>Task segue&amp;nte</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4064"/>
         <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="4077"/>
-        <source>Previous Task</source>
-        <translation>Task Precedente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4070"/>
-        <source>&amp;Previous Task</source>
-        <translation>Task &amp;Precedente</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4079"/>
+        <source>Previous Task</source>
+        <translation>Task Precedente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4072"/>
+        <source>&amp;Previous Task</source>
+        <translation>Task &amp;Precedente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4081"/>
         <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="3262"/>
+        <location filename="../ViewManager/ViewManager.py" line="3263"/>
         <source>&amp;Search</source>
         <translation>&amp;Ricerca</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>Search next</source>
         <translation>Cerca seguente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>Search &amp;next</source>
         <translation>Cerca segue&amp;nte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation>F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Search previous</source>
         <translation>Cerca precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Search &amp;previous</source>
         <translation>Cerca &amp;precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation>Shift+F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1198"/>
+        <location filename="../ViewManager/ViewManager.py" line="1199"/>
         <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="1217"/>
+        <location filename="../ViewManager/ViewManager.py" line="1218"/>
         <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="1234"/>
+        <location filename="../ViewManager/ViewManager.py" line="1235"/>
         <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="863"/>
+        <location filename="../ViewManager/ViewManager.py" line="864"/>
         <source>Export as</source>
         <translation>Esporta come</translation>
     </message>
@@ -87327,69 +87327,69 @@
         <translation type="obsolete">Quicksearch Textedit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>Calltip</source>
         <translation>Calltip</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>&amp;Calltip</source>
         <translation>&amp;Calltip</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>Meta+Alt+Space</source>
         <comment>Edit|Calltip</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1370"/>
+        <location filename="../ViewManager/ViewManager.py" line="1371"/>
         <source>Show Calltips</source>
         <translation>Mostra Calltip</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1372"/>
+        <location filename="../ViewManager/ViewManager.py" line="1373"/>
         <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="2878"/>
+        <location filename="../ViewManager/ViewManager.py" line="2879"/>
         <source>Search next occurrence of text</source>
         <translation>Cerca prossima ricorrenza del testo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2880"/>
+        <location filename="../ViewManager/ViewManager.py" line="2881"/>
         <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="2898"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>Search previous occurrence of text</source>
         <translation>Cerca la precedente  ricorrenza del testo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2900"/>
+        <location filename="../ViewManager/ViewManager.py" line="2901"/>
         <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="2910"/>
+        <location filename="../ViewManager/ViewManager.py" line="2911"/>
         <source>Clear search markers</source>
         <translation>Pulisci marcatori di ricerca</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2910"/>
+        <location filename="../ViewManager/ViewManager.py" line="2911"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation>Ctrl+3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Clear all displayed search markers</source>
         <translation>Pulisci tutti i marcatori di ricerca mostrati</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2920"/>
+        <location filename="../ViewManager/ViewManager.py" line="2921"/>
         <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>
@@ -87409,956 +87409,956 @@
         <translation type="obsolete">&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="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="749"/>
         <source>Print Preview</source>
         <translation>Anteprima Stampa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="753"/>
+        <location filename="../ViewManager/ViewManager.py" line="754"/>
         <source>Print preview of the current file</source>
         <translation>Antreprima del file corrente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="755"/>
+        <location filename="../ViewManager/ViewManager.py" line="756"/>
         <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="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <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="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <source>Shift+Return</source>
         <translation>Shift+Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <source>Shift+Enter</source>
         <translation>Shift+Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Replace in Files</source>
         <translation>Sostituisci nei file</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Replace in F&amp;iles...</source>
         <translation>Sostituisci nei f&amp;ile...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation>Shift+Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3196"/>
+        <location filename="../ViewManager/ViewManager.py" line="3197"/>
         <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="3198"/>
+        <location filename="../ViewManager/ViewManager.py" line="3199"/>
         <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="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4221"/>
+        <location filename="../ViewManager/ViewManager.py" line="4223"/>
         <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="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>Automatic spell checking</source>
         <translation>Controllo sintassi automatico</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>&amp;Automatic spell checking</source>
         <translation>Controllo sintassi &amp;automatico</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4239"/>
-        <source>(De-)Activate automatic spell checking</source>
-        <translation>(Dis-)Attiva il controllo sintassi automatico</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4241"/>
+        <source>(De-)Activate automatic spell checking</source>
+        <translation>(Dis-)Attiva il controllo sintassi automatico</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4243"/>
         <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="4308"/>
+        <location filename="../ViewManager/ViewManager.py" line="4310"/>
         <source>Spelling</source>
         <translation>Spelling</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4377"/>
         <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="4774"/>
+        <location filename="../ViewManager/ViewManager.py" line="4776"/>
         <source>Line: {0:5}</source>
         <translation>Linea: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4780"/>
+        <location filename="../ViewManager/ViewManager.py" line="4782"/>
         <source>Pos: {0:5}</source>
         <translation>Pos: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3970"/>
+        <location filename="../ViewManager/ViewManager.py" line="3972"/>
         <source>Next warning message</source>
         <translation>Warning successivo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3964"/>
+        <location filename="../ViewManager/ViewManager.py" line="3966"/>
         <source>&amp;Next warning message</source>
         <translation>Warni&amp;ng successivo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3989"/>
+        <location filename="../ViewManager/ViewManager.py" line="3991"/>
         <source>Previous warning message</source>
         <translation>Messaggio di warning precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3981"/>
+        <location filename="../ViewManager/ViewManager.py" line="3983"/>
         <source>&amp;Previous warning message</source>
         <translation>Messaggio di warning &amp;precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4007"/>
+        <location filename="../ViewManager/ViewManager.py" line="4009"/>
         <source>Clear Warning Messages</source>
         <translation>Pulisci messaggi di warning</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4000"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>Pulisci messaggi di &amp;warning</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1031"/>
+        <location filename="../ViewManager/ViewManager.py" line="1032"/>
         <source>Join Lines</source>
         <translation>Unisci linee</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1024"/>
+        <location filename="../ViewManager/ViewManager.py" line="1025"/>
         <source>Ctrl+J</source>
         <comment>Edit|Join Lines</comment>
         <translation>Ctrl+J</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1033"/>
+        <location filename="../ViewManager/ViewManager.py" line="1034"/>
         <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="3110"/>
+        <location filename="../ViewManager/ViewManager.py" line="3111"/>
         <source>Goto Last Edit Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3099"/>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3099"/>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <source>Ctrl+Shift+G</source>
         <comment>Search|Goto Last Edit Location</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3113"/>
+        <location filename="../ViewManager/ViewManager.py" line="3114"/>
         <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="3122"/>
+        <location filename="../ViewManager/ViewManager.py" line="3123"/>
         <source>Goto Previous Method or Class</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3122"/>
+        <location filename="../ViewManager/ViewManager.py" line="3123"/>
         <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="3132"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <source>Go to the previous method or class definition</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3136"/>
+        <location filename="../ViewManager/ViewManager.py" line="3137"/>
         <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="3146"/>
+        <location filename="../ViewManager/ViewManager.py" line="3147"/>
         <source>Goto Next Method or Class</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3146"/>
+        <location filename="../ViewManager/ViewManager.py" line="3147"/>
         <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="3156"/>
+        <location filename="../ViewManager/ViewManager.py" line="3157"/>
         <source>Go to the next method or class definition</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3158"/>
+        <location filename="../ViewManager/ViewManager.py" line="3159"/>
         <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="3605"/>
+        <location filename="../ViewManager/ViewManager.py" line="3607"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3610"/>
-        <source>Preview the current file in the web browser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3612"/>
+        <source>Preview the current file in the web browser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3614"/>
         <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="1461"/>
+        <location filename="../ViewManager/ViewManager.py" line="1462"/>
         <source>Meta+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1474"/>
+        <location filename="../ViewManager/ViewManager.py" line="1475"/>
         <source>Meta+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1486"/>
+        <location filename="../ViewManager/ViewManager.py" line="1487"/>
         <source>Meta+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1498"/>
+        <location filename="../ViewManager/ViewManager.py" line="1499"/>
         <source>Meta+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1559"/>
+        <location filename="../ViewManager/ViewManager.py" line="1560"/>
         <source>Move to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1575"/>
+        <location filename="../ViewManager/ViewManager.py" line="1576"/>
         <source>Move to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1592"/>
+        <location filename="../ViewManager/ViewManager.py" line="1593"/>
         <source>Move to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1600"/>
+        <location filename="../ViewManager/ViewManager.py" line="1601"/>
         <source>Meta+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1668"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Meta+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1674"/>
+        <location filename="../ViewManager/ViewManager.py" line="1675"/>
         <source>Move to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1692"/>
         <source>Move to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1737"/>
         <source>Meta+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1751"/>
+        <location filename="../ViewManager/ViewManager.py" line="1752"/>
         <source>Meta+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1766"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Meta+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1781"/>
+        <location filename="../ViewManager/ViewManager.py" line="1782"/>
         <source>Meta+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1849"/>
+        <location filename="../ViewManager/ViewManager.py" line="1850"/>
         <source>Extend selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1867"/>
+        <location filename="../ViewManager/ViewManager.py" line="1868"/>
         <source>Extend selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1875"/>
+        <location filename="../ViewManager/ViewManager.py" line="1876"/>
         <source>Meta+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1932"/>
+        <location filename="../ViewManager/ViewManager.py" line="1933"/>
         <source>Meta+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1939"/>
         <source>Extend selection to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1946"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Ctrl+Shift+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1955"/>
+        <location filename="../ViewManager/ViewManager.py" line="1956"/>
         <source>Extend selection to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1963"/>
+        <location filename="../ViewManager/ViewManager.py" line="1964"/>
         <source>Ctrl+Shift+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1981"/>
+        <location filename="../ViewManager/ViewManager.py" line="1982"/>
         <source>Meta+H</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1990"/>
+        <location filename="../ViewManager/ViewManager.py" line="1991"/>
         <source>Delete previous character if not at start of line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2011"/>
+        <location filename="../ViewManager/ViewManager.py" line="2012"/>
         <source>Meta+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2055"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Meta+K</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2164"/>
+        <location filename="../ViewManager/ViewManager.py" line="2165"/>
         <source>Move to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Extend selection to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2223"/>
+        <location filename="../ViewManager/ViewManager.py" line="2224"/>
         <source>Meta+Alt+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2238"/>
+        <location filename="../ViewManager/ViewManager.py" line="2239"/>
         <source>Meta+Alt+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2256"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <source>Meta+Alt+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2275"/>
         <source>Meta+Alt+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2280"/>
+        <location filename="../ViewManager/ViewManager.py" line="2281"/>
         <source>Extend rectangular selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2299"/>
+        <location filename="../ViewManager/ViewManager.py" line="2300"/>
         <source>Extend rectangular selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2309"/>
+        <location filename="../ViewManager/ViewManager.py" line="2310"/>
         <source>Meta+Alt+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2312"/>
+        <location filename="../ViewManager/ViewManager.py" line="2313"/>
         <source>Alt+Shift+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2333"/>
+        <location filename="../ViewManager/ViewManager.py" line="2334"/>
         <source>Alt+Shift+PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2345"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <source>Meta+Alt+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2365"/>
+        <location filename="../ViewManager/ViewManager.py" line="2366"/>
         <source>Scroll to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2380"/>
+        <location filename="../ViewManager/ViewManager.py" line="2381"/>
         <source>Scroll to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2395"/>
+        <location filename="../ViewManager/ViewManager.py" line="2396"/>
         <source>Scroll vertically to center current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2403"/>
+        <location filename="../ViewManager/ViewManager.py" line="2404"/>
         <source>Meta+L</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2410"/>
+        <location filename="../ViewManager/ViewManager.py" line="2411"/>
         <source>Move to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2425"/>
+        <location filename="../ViewManager/ViewManager.py" line="2426"/>
         <source>Extend selection to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2441"/>
+        <location filename="../ViewManager/ViewManager.py" line="2442"/>
         <source>Move to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2453"/>
+        <location filename="../ViewManager/ViewManager.py" line="2454"/>
         <source>Extend selection to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2465"/>
+        <location filename="../ViewManager/ViewManager.py" line="2466"/>
         <source>Move to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2473"/>
+        <location filename="../ViewManager/ViewManager.py" line="2474"/>
         <source>Meta+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2480"/>
+        <location filename="../ViewManager/ViewManager.py" line="2481"/>
         <source>Extend selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2491"/>
+        <location filename="../ViewManager/ViewManager.py" line="2492"/>
         <source>Meta+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2498"/>
+        <location filename="../ViewManager/ViewManager.py" line="2499"/>
         <source>Extend rectangular selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2508"/>
+        <location filename="../ViewManager/ViewManager.py" line="2509"/>
         <source>Meta+Alt+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2516"/>
+        <location filename="../ViewManager/ViewManager.py" line="2517"/>
         <source>Extend selection to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2535"/>
+        <location filename="../ViewManager/ViewManager.py" line="2536"/>
         <source>Move to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2549"/>
+        <location filename="../ViewManager/ViewManager.py" line="2550"/>
         <source>Extend selection to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2564"/>
+        <location filename="../ViewManager/ViewManager.py" line="2565"/>
         <source>Move to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2581"/>
+        <location filename="../ViewManager/ViewManager.py" line="2582"/>
         <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="2598"/>
+        <location filename="../ViewManager/ViewManager.py" line="2599"/>
         <source>Move to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2612"/>
+        <location filename="../ViewManager/ViewManager.py" line="2613"/>
         <source>Extend selection to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2627"/>
+        <location filename="../ViewManager/ViewManager.py" line="2628"/>
         <source>Stuttered move up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2639"/>
+        <location filename="../ViewManager/ViewManager.py" line="2640"/>
         <source>Stuttered extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2652"/>
+        <location filename="../ViewManager/ViewManager.py" line="2653"/>
         <source>Stuttered move down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2664"/>
+        <location filename="../ViewManager/ViewManager.py" line="2665"/>
         <source>Stuttered extend selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2677"/>
+        <location filename="../ViewManager/ViewManager.py" line="2678"/>
         <source>Delete right to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2685"/>
+        <location filename="../ViewManager/ViewManager.py" line="2686"/>
         <source>Alt+Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2692"/>
+        <location filename="../ViewManager/ViewManager.py" line="2693"/>
         <source>Move selected lines up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2704"/>
+        <location filename="../ViewManager/ViewManager.py" line="2705"/>
         <source>Move selected lines down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2318"/>
+        <location filename="../ViewManager/ViewManager.py" line="2319"/>
         <source>Alt+Shift+PgUp</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1134"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Toggle Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1134"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Ctrl+Shift+M</source>
         <comment>Edit|Toggle Comment</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1142"/>
+        <location filename="../ViewManager/ViewManager.py" line="1143"/>
         <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="1146"/>
+        <location filename="../ViewManager/ViewManager.py" line="1147"/>
         <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="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Zoom reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished">&amp;Reset zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation type="unfinished">Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3381"/>
+        <location filename="../ViewManager/ViewManager.py" line="3383"/>
         <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="3383"/>
+        <location filename="../ViewManager/ViewManager.py" line="3385"/>
         <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="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="714"/>
         <source>Save a&amp;ll</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4094"/>
-        <source>Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4088"/>
-        <source>&amp;Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4096"/>
+        <source>Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4090"/>
+        <source>&amp;Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <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="4112"/>
-        <source>Previous Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4105"/>
-        <source>&amp;Previous Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4114"/>
+        <source>Previous Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4107"/>
+        <source>&amp;Previous Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4116"/>
         <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="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Check spelling</source>
         <translation type="unfinished">Controllo sillabazione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Check &amp;spelling...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4223"/>
+        <location filename="../ViewManager/ViewManager.py" line="4225"/>
         <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="4272"/>
-        <source>Edit Dictionary</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4274"/>
+        <source>Edit Dictionary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4276"/>
         <source>Project Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4277"/>
+        <location filename="../ViewManager/ViewManager.py" line="4279"/>
         <source>Project Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4282"/>
+        <location filename="../ViewManager/ViewManager.py" line="4284"/>
         <source>User Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4285"/>
+        <location filename="../ViewManager/ViewManager.py" line="4287"/>
         <source>User Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6255"/>
+        <location filename="../ViewManager/ViewManager.py" line="6257"/>
         <source>Edit Spelling Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6232"/>
+        <location filename="../ViewManager/ViewManager.py" line="6234"/>
         <source>Editing {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6214"/>
+        <location filename="../ViewManager/ViewManager.py" line="6216"/>
         <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="6243"/>
+        <location filename="../ViewManager/ViewManager.py" line="6245"/>
         <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="6255"/>
+        <location filename="../ViewManager/ViewManager.py" line="6257"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2929"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>Search current word forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2929"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2940"/>
+        <location filename="../ViewManager/ViewManager.py" line="2941"/>
         <source>Search next occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2943"/>
+        <location filename="../ViewManager/ViewManager.py" line="2944"/>
         <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="2952"/>
+        <location filename="../ViewManager/ViewManager.py" line="2953"/>
         <source>Search current word backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2952"/>
+        <location filename="../ViewManager/ViewManager.py" line="2953"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2963"/>
+        <location filename="../ViewManager/ViewManager.py" line="2964"/>
         <source>Search previous occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2966"/>
+        <location filename="../ViewManager/ViewManager.py" line="2967"/>
         <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="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <source>Search in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <source>Search in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <source>Meta+Ctrl+Alt+F</source>
         <comment>Search|Search Open Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3220"/>
+        <location filename="../ViewManager/ViewManager.py" line="3221"/>
         <source>Search for a text in open files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3222"/>
+        <location filename="../ViewManager/ViewManager.py" line="3223"/>
         <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="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <source>Replace in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <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="3242"/>
+        <location filename="../ViewManager/ViewManager.py" line="3243"/>
         <source>Search for a text in open files and replace it</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3244"/>
+        <location filename="../ViewManager/ViewManager.py" line="3245"/>
         <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="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <source>Replace in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1399"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Sort</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1399"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Ctrl+Alt+S</source>
         <comment>Edit|Sort</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1406"/>
+        <location filename="../ViewManager/ViewManager.py" line="1407"/>
         <source>Sort the lines containing the rectangular selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1409"/>
+        <location filename="../ViewManager/ViewManager.py" line="1410"/>
         <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="4801"/>
+        <location filename="../ViewManager/ViewManager.py" line="4803"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4808"/>
+        <location filename="../ViewManager/ViewManager.py" line="4810"/>
         <source>EOL Mode: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3491"/>
         <source>New Document View</source>
         <translation type="unfinished">Nuova vista Documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3491"/>
         <source>New &amp;Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3494"/>
-        <source>Open a new view of the current document</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3496"/>
+        <source>Open a new view of the current document</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3498"/>
         <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="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3508"/>
         <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="3513"/>
+        <location filename="../ViewManager/ViewManager.py" line="3515"/>
         <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="3516"/>
+        <location filename="../ViewManager/ViewManager.py" line="3518"/>
         <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="3972"/>
+        <location filename="../ViewManager/ViewManager.py" line="3974"/>
         <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="3991"/>
+        <location filename="../ViewManager/ViewManager.py" line="3993"/>
         <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="4009"/>
+        <location filename="../ViewManager/ViewManager.py" line="4011"/>
         <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="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1277"/>
         <source>Ctrl+Space</source>
         <comment>Edit|Complete</comment>
         <translation type="unfinished">Ctrl+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1294"/>
+        <location filename="../ViewManager/ViewManager.py" line="1295"/>
         <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="1317"/>
+        <location filename="../ViewManager/ViewManager.py" line="1318"/>
         <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="1340"/>
+        <location filename="../ViewManager/ViewManager.py" line="1341"/>
         <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="697"/>
+        <location filename="../ViewManager/ViewManager.py" line="698"/>
         <source>Save Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="697"/>
+        <location filename="../ViewManager/ViewManager.py" line="698"/>
         <source>Save &amp;Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="702"/>
+        <location filename="../ViewManager/ViewManager.py" line="703"/>
         <source>Save a copy of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="704"/>
+        <location filename="../ViewManager/ViewManager.py" line="705"/>
         <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>
@@ -88369,141 +88369,141 @@
         <translation type="unfinished">Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2995"/>
         <source>Replace and Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2995"/>
         <source>Meta+R</source>
         <comment>Search|Replace and Search</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3004"/>
+        <location filename="../ViewManager/ViewManager.py" line="3005"/>
         <source>Replace the found text and search the next occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3007"/>
+        <location filename="../ViewManager/ViewManager.py" line="3008"/>
         <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="3018"/>
+        <location filename="../ViewManager/ViewManager.py" line="3019"/>
         <source>Replace Occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3018"/>
+        <location filename="../ViewManager/ViewManager.py" line="3019"/>
         <source>Ctrl+Meta+R</source>
         <comment>Search|Replace Occurrence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3028"/>
+        <location filename="../ViewManager/ViewManager.py" line="3029"/>
         <source>Replace the found text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3030"/>
+        <location filename="../ViewManager/ViewManager.py" line="3031"/>
         <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="3040"/>
+        <location filename="../ViewManager/ViewManager.py" line="3041"/>
         <source>Replace All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3040"/>
+        <location filename="../ViewManager/ViewManager.py" line="3041"/>
         <source>Shift+Meta+R</source>
         <comment>Search|Replace All</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3050"/>
+        <location filename="../ViewManager/ViewManager.py" line="3051"/>
         <source>Replace search text occurrences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3052"/>
+        <location filename="../ViewManager/ViewManager.py" line="3053"/>
         <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="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1382"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1382"/>
         <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="1389"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Show Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1392"/>
         <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="3462"/>
-        <source>Clear all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3458"/>
-        <source>Clear &amp;all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3464"/>
+        <source>Clear all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3460"/>
+        <source>Clear &amp;all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3466"/>
         <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="2120"/>
+        <location filename="../ViewManager/ViewManager.py" line="2121"/>
         <source>Reverse selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2120"/>
+        <location filename="../ViewManager/ViewManager.py" line="2121"/>
         <source>Meta+Alt+R</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3622"/>
+        <location filename="../ViewManager/ViewManager.py" line="3624"/>
         <source>Python AST Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3627"/>
-        <source>Show the AST for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3629"/>
+        <source>Show the AST for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3631"/>
         <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="3639"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>Python Disassembly Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3646"/>
-        <source>Show the Disassembly for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3648"/>
+        <source>Show the Disassembly for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3650"/>
         <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>
@@ -88523,23 +88523,23 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1418"/>
+        <location filename="../ViewManager/ViewManager.py" line="1419"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1418"/>
+        <location filename="../ViewManager/ViewManager.py" line="1419"/>
         <source>Ctrl+Alt+D</source>
         <comment>Edit|Generate Docstring</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1425"/>
+        <location filename="../ViewManager/ViewManager.py" line="1426"/>
         <source>Generate a docstring for the current function/method</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1428"/>
+        <location filename="../ViewManager/ViewManager.py" line="1429"/>
         <source>&lt;b&gt;Generate Docstring&lt;/b&gt;&lt;p&gt;Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -89020,32 +89020,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="342"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="346"/>
         <source>&lt;virtualenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="360"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="364"/>
         <source>&lt;No suitable virtualenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="362"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="366"/>
         <source>virtualenv Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="396"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="400"/>
         <source>&lt;pyvenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="416"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="420"/>
         <source>&lt;No suitable pyvenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="418"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="422"/>
         <source>pyvenv Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -89180,7 +89180,7 @@
         <translation type="unfinished">File Testo(*.txt);;Tutti i file (*)</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="430"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="434"/>
         <source>conda Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -89215,85 +89215,85 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="110"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="112"/>
         <source>Executing: {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="154"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="163"/>
         <source>Failed
 
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="164"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="173"/>
         <source>
 pyvenv finished.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="166"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="175"/>
         <source>
 virtualenv finished.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="191"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="200"/>
         <source>No suitable pyvenv program could be started.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="195"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="204"/>
         <source>No suitable virtualenv program could be started.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="259"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="268"/>
         <source>
 Writing log file &apos;{0}&apos;.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="264"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="273"/>
         <source>Output:
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="269"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="278"/>
         <source>Errors:
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="272"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="281"/>
         <source>The logfile &apos;{0}&apos; could not be written.
 Reason: {1}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="302"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="311"/>
         <source>Done.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="292"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="301"/>
         <source>
 Writing script file &apos;{0}&apos;.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="299"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="308"/>
         <source>The script file &apos;{0}&apos; could not be written.
 Reason: {1}
 </source>
@@ -89753,82 +89753,82 @@
 <context>
     <name>WatchPointViewer</name>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="47"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="49"/>
         <source>Watchpoints</source>
         <translation>Punti controllo</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="174"/>
-        <source>Add</source>
-        <translation>Aggiungi</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="143"/>
-        <source>Enable</source>
-        <translation>Abilita</translation>
-    </message>
-    <message>
         <location filename="../Debugger/WatchPointViewer.py" line="178"/>
-        <source>Enable all</source>
-        <translation>Abilita tutto</translation>
+        <source>Add</source>
+        <translation>Aggiungi</translation>
     </message>
     <message>
         <location filename="../Debugger/WatchPointViewer.py" line="147"/>
-        <source>Disable</source>
-        <translation>Disabilita</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="183"/>
-        <source>Disable all</source>
-        <translation>Disabilita tutto</translation>
+        <source>Enable</source>
+        <translation>Abilita</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="182"/>
+        <source>Enable all</source>
+        <translation>Abilita tutto</translation>
     </message>
     <message>
         <location filename="../Debugger/WatchPointViewer.py" line="151"/>
+        <source>Disable</source>
+        <translation>Disabilita</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="187"/>
+        <source>Disable all</source>
+        <translation>Disabilita tutto</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="155"/>
         <source>Delete</source>
         <translation>Cancella</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="188"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="192"/>
         <source>Delete all</source>
         <translation>Cancella tutto</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="176"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="180"/>
         <source>Enable selected</source>
         <translation>Abilita selezionati</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="181"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="185"/>
         <source>Disable selected</source>
         <translation>Disabilita selezionati</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="186"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="190"/>
         <source>Delete selected</source>
         <translation>Cancella selezionati</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="141"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="145"/>
         <source>Edit...</source>
         <translation>Modifica...</translation>
     </message>
     <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="253"/>
+        <source>Watch expression already exists</source>
+        <translation>L&apos;espressione di controllo esiste già</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="195"/>
+        <source>Configure...</source>
+        <translation>Configura...</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="244"/>
+        <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; already exists.&lt;/p&gt;</source>
+        <translation>&lt;p&gt;L&apos;espressione &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; esiste già.&lt;/p&gt;</translation>
+    </message>
+    <message>
         <location filename="../Debugger/WatchPointViewer.py" line="249"/>
-        <source>Watch expression already exists</source>
-        <translation>L&apos;espressione di controllo esiste già</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="191"/>
-        <source>Configure...</source>
-        <translation>Configura...</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="240"/>
-        <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; already exists.&lt;/p&gt;</source>
-        <translation>&lt;p&gt;L&apos;espressione &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; esiste già.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="245"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
         <translation>&lt;p&gt;L&apos;espressione  &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; per la variabile &lt;b&gt;{1}&lt;/b&gt; esiste già.&lt;/p&gt;</translation>
     </message>
@@ -90308,33 +90308,33 @@
         <translation type="unfinished">Seleziona tutti</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="42"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="43"/>
         <source>Info</source>
         <translation type="unfinished">Info</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="43"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="45"/>
         <source>Warning</source>
         <translation type="unfinished">Attenzione</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="44"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="47"/>
         <source>Error</source>
         <translation type="unfinished">Errore</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="97"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="100"/>
         <source>[{0}] {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="102"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="105"/>
         <source> at line {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="107"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="110"/>
         <source>URL: {0}
 </source>
         <translation type="unfinished"></translation>
@@ -90905,12 +90905,12 @@
         <translation type="unfinished"> s</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="185"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="188"/>
         <source>Suspicuous URL detected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="185"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="188"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -91149,12 +91149,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="702"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="706"/>
         <source>SSL Info</source>
         <translation type="unfinished">Informazioni SSL</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="702"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="706"/>
         <source>This site does not contain SSL information.</source>
         <translation type="unfinished">Questo sito non contiene informazioni SSL.</translation>
     </message>
@@ -91220,107 +91220,107 @@
         <translation type="unfinished">Mostra un menù di navigazione</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="135"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="136"/>
         <source>Show a navigation menu for closed tabs</source>
         <translation type="unfinished">Mostra un menù di navigazione per le schede chiuse</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="149"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="152"/>
         <source>Open a new web browser tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="163"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="166"/>
         <source>New Tab</source>
         <translation type="unfinished">Nuova scheda</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="167"/>
-        <source>Move Left</source>
-        <translation type="unfinished">Muovi a sinistra</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="170"/>
+        <source>Move Left</source>
+        <translation type="unfinished">Muovi a sinistra</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="173"/>
         <source>Move Right</source>
         <translation type="unfinished">Muovi a destra</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="174"/>
-        <source>Duplicate Page</source>
-        <translation type="unfinished">Duplica pagina</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="177"/>
-        <source>Close</source>
-        <translation type="unfinished">Chiudi</translation>
+        <source>Duplicate Page</source>
+        <translation type="unfinished">Duplica pagina</translation>
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="180"/>
+        <source>Close</source>
+        <translation type="unfinished">Chiudi</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="183"/>
         <source>Close Others</source>
         <translation type="unfinished">Chiudi altri</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="211"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="214"/>
         <source>Close All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="186"/>
-        <source>Print Preview</source>
-        <translation type="unfinished">Anteprima Stampa</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="189"/>
-        <source>Print</source>
-        <translation type="unfinished">Stampa</translation>
+        <source>Print Preview</source>
+        <translation type="unfinished">Anteprima Stampa</translation>
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="192"/>
+        <source>Print</source>
+        <translation type="unfinished">Stampa</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="195"/>
         <source>Print as PDF</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="213"/>
-        <source>Reload All</source>
-        <translation type="unfinished">Ricarica tutto</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="216"/>
+        <source>Reload All</source>
+        <translation type="unfinished">Ricarica tutto</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="219"/>
         <source>Bookmark All Tabs</source>
         <translation type="unfinished">Aggiungi ai segnalibri tutte le linguette</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="220"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="223"/>
         <source>Restore Closed Tab</source>
         <translation type="unfinished">Ricarica scheda chiusa</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="456"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="459"/>
         <source>...</source>
         <translation type="unfinished">...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="912"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="922"/>
         <source>Loading...</source>
         <translation type="unfinished">Caricamento...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="921"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="931"/>
         <source>Finished loading</source>
         <translation type="unfinished">Caricamento terminato</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="888"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="898"/>
         <source>Failed to load</source>
         <translation type="unfinished">Caricamento fallito</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
         <source>Are you sure you want to close the window?</source>
         <translation type="unfinished">Sei sicuro di voler chiudere la finestra ?</translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
         <source>Are you sure you want to close the window?
 You have %n tab(s) open.</source>
         <translation type="unfinished">
@@ -91331,47 +91331,47 @@
         </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="969"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="979"/>
         <source>&amp;Quit</source>
         <translation type="unfinished">&amp;Esci</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="982"/>
         <source>C&amp;lose Current Tab</source>
         <translation type="unfinished">C&amp;hiudi scheda corrente</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1153"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1165"/>
         <source>Restore All Closed Tabs</source>
         <translation type="unfinished">Ricarica tutte le schede chiuse</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1155"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1167"/>
         <source>Clear List</source>
         <translation type="unfinished">Pulisci lista</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="250"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="253"/>
         <source>Unmute Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="254"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="257"/>
         <source>Mute Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="753"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="763"/>
         <source>Print to PDF</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="703"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="713"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="753"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="763"/>
         <source>&lt;p&gt;The PDF could not be written to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Error:&lt;/b&gt; {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -91379,7 +91379,7 @@
 <context>
     <name>WebBrowserTools</name>
     <message>
-        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="250"/>
+        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="254"/>
         <source>&lt;unknown&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -91597,7 +91597,7 @@
         <translation type="unfinished">Aggiungi alla toolbar delle ricerche web</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1791"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1816"/>
         <source>Try reloading the page or closing some tabs to make more memory available.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -91617,22 +91617,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1780"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1797"/>
         <source>Render Process terminated abnormally</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1783"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1804"/>
         <source>The render process crashed while loading this page.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1786"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1811"/>
         <source>The render process was killed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1788"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1813"/>
         <source>The render process terminated while loading this page.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -91642,37 +91642,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1914"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1939"/>
         <source>Web Archive (*.mhtml *.mht)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1915"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1940"/>
         <source>HTML File (*.html *.htm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1916"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1941"/>
         <source>HTML File with all resources (*.html *.htm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1939"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1964"/>
         <source>Save Web Page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1731"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1742"/>
         <source>Empty Page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2289"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2321"/>
         <source>Quota Request</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2289"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2321"/>
         <source>&lt;p&gt; Allow the website at &lt;b&gt;{0}&lt;/b&gt; to use &lt;b&gt;{1}&lt;/b&gt; of persistent storage?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -91801,1214 +91801,1214 @@
         <translation type="unfinished">Contenuti</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1467"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1472"/>
         <source>Index</source>
         <translation type="unfinished">Indice</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1480"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1485"/>
         <source>Search</source>
         <translation type="unfinished">Ricerca</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1743"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1748"/>
         <source>JavaScript Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>New Tab</source>
         <translation type="unfinished">Nuova scheda</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>&amp;New Tab</source>
         <translation type="unfinished">&amp;Nuova scheda</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>Ctrl+T</source>
         <comment>File|New Tab</comment>
         <translation type="unfinished">Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="666"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="671"/>
         <source>Open a new web browser tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="667"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="672"/>
         <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>New Window</source>
         <translation type="unfinished">Nuova finestra</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>New &amp;Window</source>
         <translation type="unfinished">Nuova &amp;Finestra</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>Ctrl+N</source>
         <comment>File|New Window</comment>
         <translation type="unfinished">Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="680"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="685"/>
         <source>Open a new web browser window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="681"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="686"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new web browser window in the current privacy mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>New Private Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="689"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="694"/>
         <source>New &amp;Private Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="689"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="694"/>
         <source>Ctrl+Shift+P</source>
         <comment>File|New Private Window</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="695"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="700"/>
         <source>Open a new private web browser window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="697"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="702"/>
         <source>&lt;b&gt;New Private Window&lt;/b&gt;&lt;p&gt;This opens a new private web browser window by starting a new web browser instance in private mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2503"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2508"/>
         <source>Open File</source>
         <translation type="unfinished">Apri File</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="705"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="710"/>
         <source>&amp;Open File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="705"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="710"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation type="unfinished">Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="711"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="716"/>
         <source>Open a file for display</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="712"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="717"/>
         <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new file for display. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Open File in New Tab</source>
         <translation type="unfinished">Apri il file in una nuova scheda</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Open File in New &amp;Tab</source>
         <translation type="unfinished">Apri file in una nuova &amp;scheda</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Shift+Ctrl+O</source>
         <comment>File|Open in new tab</comment>
         <translation type="unfinished">Ctrl+Shift+O</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="726"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="731"/>
         <source>Open a file for display in a new tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="733"/>
         <source>&lt;b&gt;Open File in New Tab&lt;/b&gt;&lt;p&gt;This opens a new file for display in a new tab. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="754"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="759"/>
         <source>Save Page Screen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="754"/>
-        <source>Save Page Screen...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="759"/>
+        <source>Save Page Screen...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="764"/>
         <source>Save the visible part of the current page as a screen shot</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="772"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="777"/>
         <source>Import Bookmarks</source>
         <translation type="unfinished">Importa Segnalibri</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="772"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="777"/>
         <source>&amp;Import Bookmarks...</source>
         <translation type="unfinished">&amp;Importa Segnalibri...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="776"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="781"/>
         <source>Import bookmarks from other browsers</source>
         <translation type="unfinished">Importa segnalibri da altri browser</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="778"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="783"/>
         <source>&lt;b&gt;Import Bookmarks&lt;/b&gt;&lt;p&gt;Import bookmarks from other browsers.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Importa segnalibri&lt;/b&gt;&lt;p&gt;Importa segnalibri da un altro browser.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="786"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="791"/>
         <source>Export Bookmarks</source>
         <translation type="unfinished">Esporta segnalibri</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="786"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="791"/>
         <source>&amp;Export Bookmarks...</source>
         <translation type="unfinished">&amp;Esporta Segnalibri...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="790"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="795"/>
         <source>Export the bookmarks into a file</source>
         <translation type="unfinished">Esporta i segnalibri in un file</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="792"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="797"/>
         <source>&lt;b&gt;Export Bookmarks&lt;/b&gt;&lt;p&gt;Export the bookmarks into a file.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Esporta segnalibri&lt;/b&gt;&lt;p&gt;Esporta segnalibri in un file.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2122"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2127"/>
         <source>Print</source>
         <translation type="unfinished">Stampa</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="800"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="805"/>
         <source>&amp;Print</source>
         <translation type="unfinished">Stam&amp;pa</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="800"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="805"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation type="unfinished">Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="806"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="811"/>
         <source>Print the displayed help</source>
         <translation type="unfinished">Stampa l&apos;help mostrato</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="807"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="812"/>
         <source>&lt;b&gt;Print&lt;/b&gt;&lt;p&gt;Print the displayed help text.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Stampa&lt;/b&gt;&lt;p&gt;Stampa il testo di help visualizzato.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="814"/>
-        <source>Print as PDF</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="819"/>
+        <source>Print as PDF</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="824"/>
         <source>Print the displayed help as PDF</source>
         <translation type="unfinished">Stampa l&apos;help visualizzato come PDF</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="821"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="826"/>
         <source>&lt;b&gt;Print as PDF&lt;/b&gt;&lt;p&gt;Print the displayed help text as a PDF file.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Stampa come PDF&lt;/b&gt;&lt;p&gt;Stampa il testo di aiuto visualizzato come file PDF.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="829"/>
-        <source>Print Preview</source>
-        <translation type="unfinished">Anteprima Stampa</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="834"/>
+        <source>Print Preview</source>
+        <translation type="unfinished">Anteprima Stampa</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="839"/>
         <source>Print preview of the displayed help</source>
         <translation type="unfinished">Vai alla schermata di help iniziale</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="836"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="841"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the displayed help text.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Stampa Preview&lt;/b&gt;&lt;p&gt;Stampa la preview del testo di help mostrato.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>Close</source>
         <translation type="unfinished">Chiudi</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>&amp;Close</source>
         <translation type="unfinished">&amp;Chiudi</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation type="unfinished">Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="864"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="869"/>
         <source>Close the current help window</source>
         <translation type="unfinished">Chiudi l&apos;attuale finestra di help</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="866"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="871"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="873"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="878"/>
         <source>Close All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="873"/>
-        <source>Close &amp;All</source>
-        <translation type="unfinished">Chiudi &amp;tutti</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="877"/>
-        <source>Close all help windows</source>
-        <translation type="unfinished">Chiudi tutte le finestre di help</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="878"/>
+        <source>Close &amp;All</source>
+        <translation type="unfinished">Chiudi &amp;tutti</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="882"/>
+        <source>Close all help windows</source>
+        <translation type="unfinished">Chiudi tutte le finestre di help</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="883"/>
         <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all web browser windows except the first one.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="886"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="891"/>
         <source>Quit</source>
         <translation type="unfinished">Esci</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2854"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2859"/>
         <source>&amp;Quit</source>
         <translation type="unfinished">&amp;Esci</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="886"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="891"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished">Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>Backward</source>
         <translation type="unfinished">Indietro</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>&amp;Backward</source>
         <translation type="unfinished">&amp;Indietro</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>Alt+Left</source>
         <comment>Go|Backward</comment>
         <translation type="unfinished">Alt+Sinistra</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="906"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="911"/>
         <source>Move one screen backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="907"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="912"/>
         <source>&lt;b&gt;Backward&lt;/b&gt;&lt;p&gt;Moves one screen backward. If none is available, this action is disabled.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>Forward</source>
         <translation type="unfinished">Avanti</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>&amp;Forward</source>
         <translation type="unfinished">A&amp;vanti</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>Alt+Right</source>
         <comment>Go|Forward</comment>
         <translation type="unfinished">Alt+Destra</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="921"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="926"/>
         <source>Move one screen forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="923"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="928"/>
         <source>&lt;b&gt;Forward&lt;/b&gt;&lt;p&gt;Moves one screen forward. If none is available, this action is disabled.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>Home</source>
         <translation type="unfinished">Home</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>&amp;Home</source>
         <translation type="unfinished">&amp;Home</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>Ctrl+Home</source>
         <comment>Go|Home</comment>
         <translation type="unfinished">Ctrl+Home</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="939"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="944"/>
         <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>Reload</source>
         <translation type="unfinished">Ricarica</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>&amp;Reload</source>
         <translation type="unfinished">&amp;Ricarica</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>Ctrl+R</source>
         <comment>Go|Reload</comment>
         <translation type="unfinished">Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>F5</source>
         <comment>Go|Reload</comment>
         <translation type="unfinished">F5</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="953"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="958"/>
         <source>Reload the current screen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="955"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="960"/>
         <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Stop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>&amp;Stop</source>
         <translation type="unfinished">&amp;Stop</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Ctrl+.</source>
         <comment>Go|Stop</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Esc</source>
         <comment>Go|Stop</comment>
         <translation type="unfinished">Esc</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="969"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="974"/>
         <source>Stop loading</source>
         <translation type="unfinished">Ferma caricamento</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="970"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="975"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Ferma il caricamento della linguetta corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>Copy</source>
         <translation type="unfinished">Copia</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>&amp;Copy</source>
         <translation type="unfinished">&amp;Copia</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished">Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="983"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="988"/>
         <source>Copy the selected text</source>
         <translation type="unfinished">Copia il testo selezionato</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="984"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="989"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Copia&lt;/b&gt;&lt;p&gt;Copia il testo selezionato nella clipboard.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Cut</source>
         <translation type="unfinished">Taglia</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Cu&amp;t</source>
         <translation type="unfinished">&amp;Taglia</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished">Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="997"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1002"/>
         <source>Cut the selected text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="998"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1003"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>Paste</source>
         <translation type="unfinished">Incolla</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>&amp;Paste</source>
         <translation type="unfinished">&amp;Incolla</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished">Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1011"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1016"/>
         <source>Paste text from the clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1012"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1017"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>Undo</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>&amp;Undo</source>
         <translation type="unfinished">&amp;Undo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished">Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1025"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1030"/>
         <source>Undo the last edit action</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1026"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1031"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>Redo</source>
         <translation type="unfinished">Rifai</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>&amp;Redo</source>
         <translation type="unfinished">&amp;Rifai</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation type="unfinished">Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1039"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1044"/>
         <source>Redo the last edit action</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1040"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1045"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>Select All</source>
         <translation type="unfinished">Seleziona tutti</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>&amp;Select All</source>
         <translation type="unfinished">&amp;Seleziona tutto</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation type="unfinished">Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1053"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1058"/>
         <source>Select all text</source>
         <translation type="unfinished">Seleziona tutto il testo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1054"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1059"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>Find...</source>
         <translation type="unfinished">Trova...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>&amp;Find...</source>
         <translation type="unfinished">&amp;Trova...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>Ctrl+F</source>
         <comment>Edit|Find</comment>
         <translation type="unfinished">Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1080"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1085"/>
         <source>Find text in page</source>
         <translation type="unfinished">Trova testo nella pagina</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1081"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1086"/>
         <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Trova&lt;/b&gt;&lt;p&gt;Trova il testo nella pagina corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>Find next</source>
         <translation type="unfinished">Trova successivo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>Find &amp;next</source>
         <translation type="unfinished">Trova &amp;successivo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>F3</source>
         <comment>Edit|Find next</comment>
         <translation type="unfinished">F3</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1094"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1099"/>
         <source>Find next occurrence of text in page</source>
         <translation type="unfinished">Trova la prossima ricorrenza del testo nella pagina</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1096"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1101"/>
         <source>&lt;b&gt;Find next&lt;/b&gt;&lt;p&gt;Find the next occurrence of text in the current page.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Trova prossimo&lt;/b&gt;&lt;p&gt;Trova la prossima ricorrenza del testo nella pagina corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Find previous</source>
         <translation type="unfinished">Trova precedente</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Find &amp;previous</source>
         <translation type="unfinished">Trova &amp;precedente</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Shift+F3</source>
         <comment>Edit|Find previous</comment>
         <translation type="unfinished">Shift+F3</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1109"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1114"/>
         <source>Find previous occurrence of text in page</source>
         <translation type="unfinished">Trova la precedente ricorrenza del testo nella pagina</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1111"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1116"/>
         <source>&lt;b&gt;Find previous&lt;/b&gt;&lt;p&gt;Find the previous occurrence of text in the current page.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Trova precedente&lt;/b&gt;&lt;p&gt;Trova la precedente ricorrenza del testo nella pagina corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
         <source>Manage Bookmarks</source>
         <translation type="unfinished">Gestisci segnalibri</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
         <source>&amp;Manage Bookmarks...</source>
         <translation type="unfinished">&amp;Gestisci segnalibri...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
         <source>Ctrl+Shift+B</source>
         <comment>Help|Manage bookmarks</comment>
         <translation type="unfinished">Ctrl+Shift+B</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1130"/>
         <source>Open a dialog to manage the bookmarks.</source>
         <translation type="unfinished">Apri un dialogo per gestire i segnalibri.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1127"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1132"/>
         <source>&lt;b&gt;Manage Bookmarks...&lt;/b&gt;&lt;p&gt;Open a dialog to manage the bookmarks.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Gestisci segnalibri...&lt;/b&gt;&lt;p&gt;Apri un dialogo per gestire i segnalibri.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Add Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Add &amp;Bookmark...</source>
         <translation type="unfinished">&amp;Aggiungi segnalibro...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Ctrl+D</source>
         <comment>Help|Add bookmark</comment>
         <translation type="unfinished">Ctrl+D</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1142"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1147"/>
         <source>Open a dialog to add a bookmark.</source>
         <translation type="unfinished">Apri un dialogo per aggiungere un segnalibro.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1144"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1149"/>
         <source>&lt;b&gt;Add Bookmark&lt;/b&gt;&lt;p&gt;Open a dialog to add the current URL as a bookmark.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Aggiungi segnalibro&lt;/b&gt;&lt;p&gt;Apri un dialogo per aggiungere l&apos;URL corrente come segnalibro.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1151"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1156"/>
         <source>Add Folder</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1151"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1156"/>
         <source>Add &amp;Folder...</source>
         <translation type="unfinished">Aggiungi &amp;Cartella...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1155"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1160"/>
         <source>Open a dialog to add a new bookmarks folder.</source>
         <translation type="unfinished">Apri un dialogo per aggiungere una nuova cartella di segnalibri.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1157"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1162"/>
         <source>&lt;b&gt;Add Folder...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Aggiungi cartella...&lt;/b&gt;&lt;p&gt;Apri un dialogo per aggiungere una nuova cartella di segnalibri.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1165"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1170"/>
         <source>Bookmark All Tabs</source>
         <translation type="unfinished">Aggiungi ai segnalibri tutte le linguette</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1165"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1170"/>
         <source>Bookmark All Tabs...</source>
         <translation type="unfinished">Aggiungi ai segnalibri tutte le linguette...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1169"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1174"/>
         <source>Bookmark all open tabs.</source>
         <translation type="unfinished">Aggiungi ai segnalibri tutte lelinguette aperte.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1171"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1176"/>
         <source>&lt;b&gt;Bookmark All Tabs...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder for all open tabs.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Aggiungi ai segnalibri tutte le linguette...&lt;/b&gt;&lt;p&gt;Apri un dialogo per aggiungere ai segnalibri tutte le linguette aperte.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished">Cos&apos;è questo ?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished">C&amp;os&apos;è Questo ?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished">Shift+F1</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1185"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1190"/>
         <source>Context sensitive help</source>
         <translation type="unfinished">Help sensibile al contesto</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1186"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1191"/>
         <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="../WebBrowser/WebBrowserWindow.py" line="1197"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1202"/>
         <source>About</source>
         <translation type="unfinished">About</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1197"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1202"/>
         <source>&amp;About</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1201"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1206"/>
         <source>Display information about this software</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1203"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1208"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Mostra alcune informazioni su questo software.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1210"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1215"/>
         <source>About Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1210"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1215"/>
         <source>About &amp;Qt</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1214"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1219"/>
         <source>Display information about the Qt toolkit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1216"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1221"/>
         <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="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom in</source>
         <translation type="unfinished">Ingrandisci</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom &amp;in</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished">Ctrl++</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1230"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1235"/>
         <source>Zoom in on the web page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1231"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1236"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the web page. This makes the web page bigger.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom out</source>
         <translation type="unfinished">Riduci</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom &amp;out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished">Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1246"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1251"/>
         <source>Zoom out on the web page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1247"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1252"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the web page. This makes the web page smaller.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Zoom reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation type="unfinished">Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1261"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1266"/>
         <source>Reset the zoom of the web page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1263"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1268"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the web page. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1271"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1276"/>
         <source>Show page source</source>
         <translation type="unfinished">Mostra sorgente pagina</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1271"/>
-        <source>Ctrl+U</source>
-        <translation type="unfinished">Ctrl+U</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1276"/>
+        <source>Ctrl+U</source>
+        <translation type="unfinished">Ctrl+U</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1281"/>
         <source>Show the page source in an editor</source>
         <translation type="unfinished">Mostra il sorgente della pagina in un editor</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1278"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1283"/>
         <source>&lt;b&gt;Show page source&lt;/b&gt;&lt;p&gt;Show the page source in an editor.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Mostra sorgente pagina&lt;/b&gt;&lt;p&gt;Mostra il sorgente della pagina nell&apos;editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1286"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1291"/>
         <source>Full Screen</source>
         <translation type="unfinished">Tutto schermo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1286"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1291"/>
         <source>&amp;Full Screen</source>
         <translation type="unfinished">&amp;Tutto schermo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1296"/>
-        <source>F11</source>
-        <translation type="unfinished">F11</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1301"/>
-        <source>Show next tab</source>
-        <translation type="unfinished">Mostra linguetta successiva</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1301"/>
+        <source>F11</source>
+        <translation type="unfinished">F11</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1306"/>
+        <source>Show next tab</source>
+        <translation type="unfinished">Mostra linguetta successiva</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1306"/>
         <source>Ctrl+Alt+Tab</source>
         <translation type="unfinished">Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1310"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1315"/>
         <source>Show previous tab</source>
         <translation type="unfinished">Mostra la linguetta precedente</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1310"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1315"/>
         <source>Shift+Ctrl+Alt+Tab</source>
         <translation type="unfinished">Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1319"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1324"/>
         <source>Switch between tabs</source>
         <translation type="unfinished">Cicla tra le linguette</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1319"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1324"/>
         <source>Ctrl+1</source>
         <translation type="unfinished">Ctrl+1</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1328"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1333"/>
         <source>Preferences</source>
         <translation type="unfinished">Preferenze</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1328"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1333"/>
         <source>&amp;Preferences...</source>
         <translation type="unfinished">&amp;Preferenze...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1332"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1337"/>
         <source>Set the prefered configuration</source>
         <translation type="unfinished">Imposta la configurazione preferita</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1334"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1339"/>
         <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Preferenze&lt;/b&gt;&lt;p&gt;Imposta i valori di configurazione dell&apos;applicazione ai valori preferiti&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1342"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1347"/>
         <source>Languages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1342"/>
-        <source>&amp;Languages...</source>
-        <translation type="unfinished">&amp;Lingue...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1347"/>
+        <source>&amp;Languages...</source>
+        <translation type="unfinished">&amp;Lingue...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1352"/>
         <source>Configure the accepted languages for web pages</source>
         <translation type="unfinished">Configura le lingue accettare per le pagine web</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1349"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1354"/>
         <source>&lt;b&gt;Languages&lt;/b&gt;&lt;p&gt;Configure the accepted languages for web pages.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Lingue&lt;/b&gt;&lt;p&gt;Configura le lingue accettare per le pagine web.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1357"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1362"/>
         <source>Cookies</source>
         <translation type="unfinished">Cookies</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1357"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1362"/>
         <source>C&amp;ookies...</source>
         <translation type="unfinished">C&amp;ookie...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1361"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1366"/>
         <source>Configure cookies handling</source>
         <translation type="unfinished">Configura la gestione dei cookie</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1363"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1368"/>
         <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configura la gestione dei cookie.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1371"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1376"/>
         <source>Personal Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1371"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1376"/>
         <source>Personal Information...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1377"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1382"/>
         <source>Configure personal information for completing form fields</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1379"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1384"/>
         <source>&lt;b&gt;Personal Information...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the personal information used for completing form fields.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1388"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1393"/>
         <source>GreaseMonkey Scripts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1388"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1393"/>
         <source>GreaseMonkey Scripts...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1394"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1399"/>
         <source>Configure the GreaseMonkey Scripts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1396"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1401"/>
         <source>&lt;b&gt;GreaseMonkey Scripts...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available GreaseMonkey Scripts.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1405"/>
-        <source>Edit Message Filters</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1405"/>
-        <source>Edit Message Filters...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1410"/>
+        <source>Edit Message Filters</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1410"/>
+        <source>Edit Message Filters...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1415"/>
         <source>Edit the message filters used to suppress unwanted messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1412"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1417"/>
         <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1422"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1427"/>
         <source>Edit HTML5 Feature Permissions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1422"/>
-        <source>Edit HTML5 Feature Permissions...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1427"/>
+        <source>Edit HTML5 Feature Permissions...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1432"/>
         <source>Edit the remembered HTML5 feature permissions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1429"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1434"/>
         <source>&lt;b&gt;Edit HTML5 Feature Permissions&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the remembered HTML5 feature permissions.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1439"/>
-        <source>Sync with Table of Contents</source>
-        <translation type="unfinished">Sincronizza con l&apos;indice</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1444"/>
+        <source>Sync with Table of Contents</source>
+        <translation type="unfinished">Sincronizza con l&apos;indice</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1449"/>
         <source>Synchronizes the table of contents with current page</source>
         <translation type="unfinished">Sincronizza l&apos;indice con il contenuto della pagina attuale</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1446"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1451"/>
         <source>&lt;b&gt;Sync with Table of Contents&lt;/b&gt;&lt;p&gt;Synchronizes the table of contents with current page.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Sincronizza con l&apos;indice&lt;/b&gt;&lt;p&gt;Sincronizza l&apos;indice con il contenuto della pagina attuale.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1454"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1459"/>
         <source>Table of Contents</source>
         <translation type="unfinished">Indice dei contenuti</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1458"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1463"/>
         <source>Shows the table of contents window</source>
         <translation type="unfinished">Mostra la finestra dell&apos;indice dei contenuti</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1460"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1465"/>
         <source>&lt;b&gt;Table of Contents&lt;/b&gt;&lt;p&gt;Shows the table of contents window.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Indice dei contenuti&lt;/b&gt;&lt;p&gt;Mostra la finestra dell&apos;indice dei contenuti.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1471"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1476"/>
         <source>Shows the index window</source>
         <translation type="unfinished">Mostra la finestra dell&apos;indice</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1473"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1478"/>
         <source>&lt;b&gt;Index&lt;/b&gt;&lt;p&gt;Shows the index window.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Indice&lt;/b&gt;&lt;p&gt;Mostra la finestra dell&apos;indice.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1484"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1489"/>
         <source>Shows the search window</source>
         <translation type="unfinished">Mostra la finestra di ricerca</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1486"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1491"/>
         <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Cerca&lt;/b&gt;&lt;p&gt;Mostra la finestra di ricerca&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1494"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1499"/>
         <source>Manage QtHelp Documents</source>
         <translation type="unfinished">Gestisci i documenti QtHelp</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1494"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1499"/>
         <source>Manage QtHelp &amp;Documents</source>
         <translation type="unfinished">Gestisci i &amp;Documenti QtHelp</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1498"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1503"/>
         <source>Shows a dialog to manage the QtHelp documentation set</source>
         <translation type="unfinished">Mostra un dialogo per gestire i documenti QtHelp</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1500"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1505"/>
         <source>&lt;b&gt;Manage QtHelp Documents&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the QtHelp documentation set.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Gestisci i documenti QtHelp&lt;/b&gt;&lt;p&gt;Mostra un dialogo per gestire i documenti QtHelp.&lt;/p&gt;</translation>
     </message>
@@ -93033,449 +93033,449 @@
         <translation type="obsolete">&lt;b&gt;Gestisci i filtri QtHelp&lt;/b&gt;&lt;p&gt;Mostra un dialogo per gestire i filtri QtHelp.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1509"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1514"/>
         <source>Reindex Documentation</source>
         <translation type="unfinished">Reindicizza la documentazione</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1509"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1514"/>
         <source>&amp;Reindex Documentation</source>
         <translation type="unfinished">&amp;Reindicizza la documentazione</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1513"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1518"/>
         <source>Reindexes the documentation set</source>
         <translation type="unfinished">Reindicizza l&apos;insieme della documentazione</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1520"/>
         <source>&lt;b&gt;Reindex Documentation&lt;/b&gt;&lt;p&gt;Reindexes the documentation set.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Reindicizza la documentazione&lt;/b&gt;&lt;p&gt;Reindicizza l&apos;insieme della documentazione&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1529"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1534"/>
         <source>Clear private data</source>
         <translation type="unfinished">Pulisci dati privati</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1531"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1536"/>
         <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like browsing history, search history or the favicons database.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Pulisci dati privati&lt;/b&gt;&lt;p&gt;Pulische i dati privati come la cronologia di navigazione, cronologia ricerche o il database delle favicon.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/>
-        <source>Clear icons database</source>
-        <translation type="unfinished">Pulisci il database delle icone</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/>
-        <source>Clear &amp;icons database</source>
-        <translation type="unfinished">Pulisci database delle &amp;icone</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1545"/>
+        <source>Clear icons database</source>
+        <translation type="unfinished">Pulisci il database delle icone</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1545"/>
+        <source>Clear &amp;icons database</source>
+        <translation type="unfinished">Pulisci database delle &amp;icone</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1550"/>
         <source>Clear the database of favicons</source>
         <translation type="unfinished">Pulisci il database delle favicone</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1547"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1552"/>
         <source>&lt;b&gt;Clear icons database&lt;/b&gt;&lt;p&gt;Clears the database of favicons of previously visited URLs.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Pulisci il database delle icone&lt;/b&gt;&lt;p&gt;Pulisci il databse delle favicons dei siti visitati precedentemente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1555"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1560"/>
         <source>Manage saved Favicons</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1561"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/>
         <source>Show a dialog to manage the saved favicons</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1563"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1568"/>
         <source>&lt;b&gt;Manage saved Favicons&lt;/b&gt;&lt;p&gt;This shows a dialog to manage the saved favicons of previously visited URLs.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1576"/>
         <source>Configure Search Engines</source>
         <translation type="unfinished">Configura motori di ricerca</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/>
-        <source>Configure Search &amp;Engines...</source>
-        <translation type="unfinished">Configura motori di &amp;ricerca...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1576"/>
+        <source>Configure Search &amp;Engines...</source>
+        <translation type="unfinished">Configura motori di &amp;ricerca...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/>
         <source>Configure the available search engines</source>
         <translation type="unfinished">Configura i motori di ricerca disponibili</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1578"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1583"/>
         <source>&lt;b&gt;Configure Search Engines...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available search engines.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Configura motori di ricerca...&lt;/b&gt;&lt;p&gt;Apri un dialogo per configurare i motori di ricerca disponibi.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1592"/>
         <source>Manage Saved Passwords</source>
         <translation type="unfinished">Gestisci password salvate</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1592"/>
         <source>Manage Saved Passwords...</source>
         <translation type="unfinished">Gestisci password salvate...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1593"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/>
         <source>Manage the saved passwords</source>
         <translation type="unfinished">Gestisci le password salvate</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1595"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1600"/>
         <source>&lt;b&gt;Manage Saved Passwords...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved passwords.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Gestisci password salvate...&lt;/b&gt;&lt;p&gt;Apre un dialogo per gestire le password salvate.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1602"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/>
         <source>Ad Block</source>
         <translation type="unfinished">Ad Block</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1602"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/>
         <source>&amp;Ad Block...</source>
         <translation type="unfinished">&amp;Ad Block...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1608"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1613"/>
         <source>Configure AdBlock subscriptions and rules</source>
         <translation type="unfinished">Configura le regole di sottoscrizione di AdBlock</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1610"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1615"/>
         <source>&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure AdBlock subscriptions and rules.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Apre un dialogo per configurare le regole di sottoscrizione di AdBlock.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1618"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/>
         <source>Manage SSL Certificate Errors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1618"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/>
         <source>Manage SSL Certificate Errors...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1624"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1629"/>
         <source>Manage the accepted SSL certificate Errors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1626"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/>
         <source>&lt;b&gt;Manage SSL Certificate Errors...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the accepted SSL certificate errors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1651"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1656"/>
         <source>Downloads</source>
         <translation type="unfinished">Downloads</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1655"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1660"/>
         <source>Shows the downloads window</source>
         <translation type="unfinished">Mostra la finestra dei download</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1657"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1662"/>
         <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Download&lt;/b&gt;&lt;p&gt;Mostra la finestra dei download.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>RSS Feeds Dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>&amp;RSS Feeds Dialog...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>Ctrl+Shift+F</source>
         <comment>Help|RSS Feeds Dialog</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1671"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1676"/>
         <source>Open a dialog showing the configured RSS feeds.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1673"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1678"/>
         <source>&lt;b&gt;RSS Feeds Dialog...&lt;/b&gt;&lt;p&gt;Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>Siteinfo Dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>&amp;Siteinfo Dialog...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>Ctrl+Shift+I</source>
         <comment>Help|Siteinfo Dialog</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1688"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1693"/>
         <source>Open a dialog showing some information about the current site.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1690"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1695"/>
         <source>&lt;b&gt;Siteinfo Dialog...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the current site.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1703"/>
         <source>Manage User Agent Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1703"/>
         <source>Manage &amp;User Agent Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1702"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1707"/>
         <source>Shows a dialog to manage the User Agent settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1704"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1709"/>
         <source>&lt;b&gt;Manage User Agent Settings&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the User Agent settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1712"/>
-        <source>Synchronize data</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1712"/>
-        <source>&amp;Synchronize Data...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1717"/>
+        <source>Synchronize data</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1717"/>
+        <source>&amp;Synchronize Data...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1722"/>
         <source>Shows a dialog to synchronize data via the network</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1719"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1724"/>
         <source>&lt;b&gt;Synchronize Data...&lt;/b&gt;&lt;p&gt;This shows a dialog to synchronize data via the network.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/>
         <source>Manage Saved Zoom Values</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/>
         <source>Manage Saved Zoom Values...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1734"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1739"/>
         <source>Manage the saved zoom values</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1736"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1741"/>
         <source>&lt;b&gt;Manage Saved Zoom Values...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved zoom values.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1747"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1752"/>
         <source>Toggle the JavaScript console window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1749"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1754"/>
         <source>&lt;b&gt;JavaScript Console&lt;/b&gt;&lt;p&gt;This toggles the JavaScript console window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1910"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1915"/>
         <source>&amp;File</source>
         <translation type="unfinished">&amp;File</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1942"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1947"/>
         <source>&amp;Edit</source>
         <translation type="unfinished">&amp;Edita</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2181"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2186"/>
         <source>&amp;View</source>
         <translation type="unfinished">&amp;Visualizza</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1969"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1974"/>
         <source>Text Encoding</source>
         <translation type="unfinished">Codifica testo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1981"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1986"/>
         <source>H&amp;istory</source>
         <translation type="unfinished">Cronolog&amp;ia</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1998"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2003"/>
         <source>&amp;Bookmarks</source>
         <translation type="unfinished">Segnali&amp;bri</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2014"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2019"/>
         <source>&amp;Settings</source>
         <translation type="unfinished">Impo&amp;stazioni</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2046"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2051"/>
         <source>Global User Agent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2212"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2217"/>
         <source>&amp;Tools</source>
         <translation type="unfinished">&amp;Tools</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2087"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2092"/>
         <source>&amp;Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2236"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2241"/>
         <source>File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2261"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2266"/>
         <source>Edit</source>
         <translation type="unfinished">Modifica</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2274"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2279"/>
         <source>View</source>
         <translation type="unfinished">Visualizza</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2284"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2289"/>
         <source>Find</source>
         <translation type="unfinished">Trova</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2293"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2298"/>
         <source>Filter</source>
         <translation type="unfinished">Filtro</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2303"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2308"/>
         <source>Filtered by: </source>
         <translation type="unfinished">Filtrato per:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2311"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2316"/>
         <source>Settings</source>
         <translation type="unfinished">Impostazioni</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2323"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2328"/>
         <source>Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2332"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2337"/>
         <source>Help</source>
         <translation type="unfinished">Aiuto</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2339"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2344"/>
         <source>VirusTotal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1785"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1790"/>
         <source>Scan current site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4613"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4626"/>
         <source>IP Address Report</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4623"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4636"/>
         <source>Domain Report</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>&lt;p&gt;Could not start the process.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Non posso avviare il processo.&lt;br&gt;Assicurarsi sia disponibile come &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>OK</source>
         <translation type="unfinished">OK</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2667"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2672"/>
         <source>Saved Tabs</source>
         <translation type="unfinished">Salva Linguette</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3392"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3399"/>
         <source>Could not find an associated content.</source>
         <translation type="unfinished">Non posso trovare un contenuto associato.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3486"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3493"/>
         <source>Updating search index</source>
         <translation type="unfinished">Aggiornamento indice di ricerca</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3560"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3567"/>
         <source>Looking for Documentation...</source>
         <translation type="unfinished">Ricerca documentazione...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3590"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3597"/>
         <source>Unfiltered</source>
         <translation type="unfinished">Non filtrato</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3607"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3614"/>
         <source>Help Engine</source>
         <translation type="unfinished">Motore di help</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4144"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4151"/>
         <source>ISO</source>
         <translation type="unfinished">ISO</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4148"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4155"/>
         <source>Windows</source>
         <translation type="unfinished">Windows</translation>
     </message>
@@ -93485,306 +93485,306 @@
         <translation type="obsolete">ISCII</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4146"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4153"/>
         <source>Unicode</source>
         <translation type="unfinished">Unicode</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4154"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4161"/>
         <source>Other</source>
         <translation type="unfinished">Altro</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4150"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4157"/>
         <source>IBM</source>
         <translation type="unfinished">IBM</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4578"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4591"/>
         <source>VirusTotal Scan</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4578"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4591"/>
         <source>&lt;p&gt;The VirusTotal scan could not be scheduled.&lt;p&gt;
 &lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4604"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4617"/>
         <source>Enter a valid IPv4 address in dotted quad notation:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4613"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4626"/>
         <source>The given IP address is not in dotted quad notation.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4623"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4636"/>
         <source>Enter a valid domain name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1757"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1762"/>
         <source>Tab Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1761"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1766"/>
         <source>Shows the tab manager window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1763"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1768"/>
         <source>&lt;b&gt;Tab Manager&lt;/b&gt;&lt;p&gt;Shows the tab manager window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
         <source>Save As</source>
         <translation type="unfinished">Salva come</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
         <source>&amp;Save As...</source>
         <translation type="unfinished">&amp;Salva come...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation type="unfinished">Ctrl+Shift+S</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="743"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="748"/>
         <source>Save the current page to disk</source>
         <translation type="unfinished">Salva la pagina corrente su disco</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="745"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="750"/>
         <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current page to disk.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Salva come...&lt;/b&gt;&lt;p&gt;Salva la pagina corrente su disco.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1061"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1066"/>
         <source>Unselect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1071"/>
+        <source>Clear current selection</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1072"/>
+        <source>&lt;b&gt;Unselect&lt;/b&gt;&lt;p&gt;Clear the selection of the current browser.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1066"/>
-        <source>Clear current selection</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1067"/>
-        <source>&lt;b&gt;Unselect&lt;/b&gt;&lt;p&gt;Clear the selection of the current browser.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1061"/>
         <source>Alt+Ctrl+A</source>
         <comment>Edit|Unselect</comment>
         <translation type="unfinished">Alt+Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2503"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2508"/>
         <source>HTML Files (*.html *.htm *.mhtml *.mht);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="937"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="942"/>
         <source>Move to the initial screen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1293"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1298"/>
         <source>Meta+Ctrl+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2218"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2223"/>
         <source>&amp;VirusTotal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2183"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2188"/>
         <source>&amp;Windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2081"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2086"/>
         <source>&amp;Toolbars</source>
         <translation type="unfinished">&amp;Toolbar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2116"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2121"/>
         <source>Save</source>
         <translation type="unfinished">Salva</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2140"/>
         <source>Show All History...</source>
         <translation type="unfinished">Mostra tutta la cronologia...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4186"/>
         <source>Menu Bar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4184"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4191"/>
         <source>Bookmarks</source>
         <translation type="unfinished">Segnalibri</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4189"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4196"/>
         <source>Status Bar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4203"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4210"/>
         <source>&amp;Show all</source>
         <translation type="unfinished">Mo&amp;stra tutti</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4205"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4212"/>
         <source>&amp;Hide all</source>
         <translation type="unfinished">Nascondi &amp;tutti</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="844"/>
-        <source>Send Page Link</source>
-        <translation type="unfinished">Invia collegamento pagina</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="849"/>
+        <source>Send Page Link</source>
+        <translation type="unfinished">Invia collegamento pagina</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="854"/>
         <source>Send the link of the current page via email</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="851"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="856"/>
         <source>&lt;b&gt;Send Page Link&lt;/b&gt;&lt;p&gt;Send the link of the current page via email.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1771"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1776"/>
         <source>Session Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1771"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1776"/>
         <source>Session Manager...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1775"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1780"/>
         <source>Shows the session manager window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1777"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1782"/>
         <source>&lt;b&gt;Session Manager&lt;/b&gt;&lt;p&gt;Shows the session manager window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2109"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2114"/>
         <source>Sessions</source>
         <translation type="unfinished">Sessioni</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2845"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2850"/>
         <source>Are you sure you want to close the web browser?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2845"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2850"/>
         <source>Are you sure you want to close the web browser?
 You have {0} windows with {1} tabs open.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1635"/>
-        <source>Manage Safe Browsing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1635"/>
-        <source>Manage Safe Browsing...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1642"/>
-        <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/>
+        <source>Manage Safe Browsing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/>
+        <source>Manage Safe Browsing...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1647"/>
+        <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1645"/>
         <source>Configure Safe Browsing and manage local cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="762"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="767"/>
         <source>&lt;b&gt;Save Page Screen...&lt;/b&gt;&lt;p&gt;Saves the visible part of the current page as a screen shot.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1823"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1828"/>
         <source>Keyboard Shortcuts</source>
         <translation type="unfinished">Scorciatoie da tastiera</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1823"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1828"/>
         <source>Keyboard &amp;Shortcuts...</source>
         <translation type="unfinished">&amp;Scorciatoie da tastiera...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1829"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1834"/>
         <source>Set the keyboard shortcuts</source>
         <translation type="unfinished">Imposta le scorciatoie da tastiera</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1831"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1836"/>
         <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Scorciatoie da tastiera&lt;/b&gt;&lt;p&gt;Imposta le scorciatoie da tastiera dell&apos;applicazione con i valori personalizzati.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5009"/>
         <source>Export Keyboard Shortcuts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1839"/>
-        <source>&amp;Export Keyboard Shortcuts...</source>
-        <translation type="unfinished">&amp;Esporta scorciatoie da tastiera...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1844"/>
+        <source>&amp;Export Keyboard Shortcuts...</source>
+        <translation type="unfinished">&amp;Esporta scorciatoie da tastiera...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1849"/>
         <source>Export the keyboard shortcuts</source>
         <translation type="unfinished">Esporta le scorciatoie da tastiera</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1846"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1851"/>
         <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Esporta scorciatoie da tastiera&lt;/b&gt;&lt;p&gt;Esporta le scorciatoie da tastiera dell&apos;applicazione.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5007"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5025"/>
         <source>Import Keyboard Shortcuts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1853"/>
-        <source>&amp;Import Keyboard Shortcuts...</source>
-        <translation type="unfinished">&amp;Importa scorciatoie da tastiera...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1858"/>
+        <source>&amp;Import Keyboard Shortcuts...</source>
+        <translation type="unfinished">&amp;Importa scorciatoie da tastiera...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1863"/>
         <source>Import the keyboard shortcuts</source>
         <translation type="unfinished">Importa le scorciatoie da tastiera</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1860"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1865"/>
         <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Importa scorciatoie da tastiera&lt;/b&gt;&lt;p&gt;Importa le scorciatoie da tastiera dell&apos;applicazione.&lt;/p&gt;</translation>
     </message>
@@ -93794,37 +93794,37 @@
         <translation type="obsolete">File scorciatoi tastiera (*.e4k)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1867"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1872"/>
         <source>Protocol Handler Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1867"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1872"/>
         <source>Protocol Handler Manager...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1871"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1876"/>
         <source>Shows the protocol handler manager window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1873"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1878"/>
         <source>&lt;b&gt;Protocol Handler Manager&lt;/b&gt;&lt;p&gt;Shows the protocol handler manager window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4141"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4148"/>
         <source>System</source>
         <translation type="unfinished">Sistema</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4152"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4159"/>
         <source>Apple</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2189"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2194"/>
         <source>QtHelp</source>
         <translation type="unfinished">QtHelp</translation>
     </message>
@@ -93834,37 +93834,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3570"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3577"/>
         <source>eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="892"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="897"/>
         <source>Quit the eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="893"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="898"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2544"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2549"/>
         <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chrome {2}.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4972"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4990"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard Shortcuts File (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5009"/>
         <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5007"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5025"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -94288,12 +94288,12 @@
 <context>
     <name>eric6</name>
     <message>
-        <location filename="../eric6.py" line="397"/>
+        <location filename="../eric6.py" line="398"/>
         <source>Starting...</source>
         <translation type="unfinished">Inizio...</translation>
     </message>
     <message>
-        <location filename="../eric6.py" line="402"/>
+        <location filename="../eric6.py" line="403"/>
         <source>Generating Main Window...</source>
         <translation type="unfinished">Generazione Main Window...</translation>
     </message>
--- a/eric6/i18n/eric6_pt.ts	Tue Mar 02 19:22:12 2021 +0100
+++ b/eric6/i18n/eric6_pt.ts	Tue Mar 02 19:49:43 2021 +0100
@@ -112,22 +112,22 @@
         <translation>Ações</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="166"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="167"/>
         <source>Learn more about writing rules...</source>
         <translation>Aprender mais acerca de escrever regras...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="159"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="160"/>
         <source>Update Subscription</source>
         <translation>Atualizar a Subscrição</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="146"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="147"/>
         <source>Browse Subscriptions...</source>
         <translation>Navegar nas Subscrições...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="243"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="244"/>
         <source>Remove Subscription</source>
         <translation>Retirar Subscrição</translation>
     </message>
@@ -142,37 +142,37 @@
         <translation>Procurar...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="139"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="140"/>
         <source>Add Rule</source>
         <translation>Adicionar Regra</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="142"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="143"/>
         <source>Remove Rule</source>
         <translation>Retirar Regra</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="154"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="155"/>
         <source>Disable Subscription</source>
         <translation>Inabilitar Subscrição</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="156"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="157"/>
         <source>Enable Subscription</source>
         <translation>Habilitar Subscrição</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="162"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="163"/>
         <source>Update All Subscriptions</source>
         <translation>Atualizar Todas as Subscrições</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="233"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="234"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt; and all subscriptions requiring it?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</source>
         <translation>&lt;p&gt;Tem a certeza de que quer retirar a subscrição &lt;b&gt;{0}&lt;/b&gt; e todas as subscrições que dependam dela?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="240"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="241"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Tem a certeza de que quer retirar a subscrição &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</translation>
     </message>
@@ -286,17 +286,17 @@
 <context>
     <name>AdBlockManager</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="232"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="233"/>
         <source>Custom Rules</source>
         <translation>Regras Personalizadas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="334"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="335"/>
         <source>Subscribe?</source>
         <translation>Subscrever?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="334"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="335"/>
         <source>&lt;p&gt;Subscribe to this AdBlock subscription?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Subscrever a esta subscrição AdBlock?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
@@ -304,7 +304,7 @@
 <context>
     <name>AdBlockSubscription</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="291"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="294"/>
         <source>Load subscription rules</source>
         <translation>Carregar regras de subscrição</translation>
     </message>
@@ -314,17 +314,17 @@
         <translation type="obsolete">Incapaz de abrir o ficheiro adblock &apos;{0}&apos; para leitura.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="500"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="503"/>
         <source>Downloading subscription rules</source>
         <translation>A descarregar regras de subscrição</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="397"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="400"/>
         <source>&lt;p&gt;Subscription rules could not be downloaded.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Não se pôde descarregar as regras de subscrição.&lt;/p&gt;&lt;p&gt;Erro: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="410"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="413"/>
         <source>Got empty subscription rules.</source>
         <translation>Obtidas regras de subscrição vazias.</translation>
     </message>
@@ -334,27 +334,27 @@
         <translation type="obsolete">Impossível abrir o ficheiro adblock &apos;{0}&apos; para escritura.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="523"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="527"/>
         <source>Saving subscription rules</source>
         <translation>A guardar regras de subscrição</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="291"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="294"/>
         <source>AdBlock file &apos;{0}&apos; does not start with [Adblock.</source>
         <translation>O ficheiro AdBlock &apos;{0}&apos; não começa com [Adblock.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="500"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="503"/>
         <source>&lt;p&gt;AdBlock subscription &lt;b&gt;{0}&lt;/b&gt; has a wrong checksum.&lt;br/&gt;Found: {1}&lt;br/&gt;Calculated: {2}&lt;br/&gt;Use it anyway?&lt;/p&gt;</source>
         <translation>&lt;p&gt;A subscrição de AdBlock &lt;b&gt;{0}&lt;/b&gt; tem uma soma de verificação errada. &lt;br/&gt;Encontrado: {1}&lt;br/&gt;Calculado: {2}&lt;br/&gt;Usar de qualquer modo?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="281"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="284"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for reading.</source>
         <translation>Incapaz de ler o ficheiro AdBlock {0} para leitura.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="523"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="527"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for writing.</source>
         <translation>Incapaz de abrir o ficheiro AdBlock {0} para escritura.</translation>
     </message>
@@ -362,27 +362,27 @@
 <context>
     <name>AdBlockTreeWidget</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="123"/>
         <source>Add Custom Rule</source>
         <translation>Adicionar Regra Personalizada</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="123"/>
         <source>Write your rule here:</source>
         <translation>Escrever a sua regra aqui:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="164"/>
-        <source>Add Rule</source>
-        <translation>Adicionar Regra</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="166"/>
+        <source>Add Rule</source>
+        <translation>Adicionar Regra</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="168"/>
         <source>Remove Rule</source>
         <translation>Retirar Regra</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="219"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="227"/>
         <source>{0} (recently updated)</source>
         <translation>{0} (atualizado recentemente)</translation>
     </message>
@@ -1168,7 +1168,7 @@
         <translation>Introduzir uma pequena descrição para o projeto</translation>
     </message>
     <message>
-        <location filename="../MultiProject/AddProjectDialog.py" line="64"/>
+        <location filename="../MultiProject/AddProjectDialog.py" line="65"/>
         <source>Project Properties</source>
         <translation>Propriedades do Projeto</translation>
     </message>
@@ -1638,17 +1638,17 @@
 <context>
     <name>BackgroundService</name>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="134"/>
+        <location filename="../Utilities/BackgroundService.py" line="135"/>
         <source>{0} not configured.</source>
         <translation>{0} sem configurar.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="189"/>
+        <location filename="../Utilities/BackgroundService.py" line="190"/>
         <source>Restart background client?</source>
         <translation>Reiniciar cliente de fundo?</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="189"/>
+        <location filename="../Utilities/BackgroundService.py" line="190"/>
         <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It&apos;s used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;&apos;Yes&apos;&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Retry&apos;&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;No&apos;&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
         <translation>&lt;p&gt;O cliente de fundo para &lt;b&gt;{0}&lt;/b&gt; parou devido a uma exceção. Usa-se por varios complementos tais como os diferentes verificadores.&lt;/p&gt;&lt;p&gt;Selecionar&lt;ul&gt;&lt;li&gt;&lt;b&gt;&apos;Sim&apos;&lt;/b&gt; para reiniciar o cliente mas abandona o último trabalho&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Reintentar&apos;&lt;/b&gt; para reiniciar o cliente e o último trabalho&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Não&apos;&lt;/b&gt; para deixar o cliente apagado.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Nota: O cliente pode reiniciar-se abrindo e confirmando a caixa de diálogo de preferências ou recarregando/alterando o projeto.&lt;/p&gt;</translation>
     </message>
@@ -1658,22 +1658,22 @@
         <translation type="obsolete">Um erro no cliente de fundo de Eric parou o serviço.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="444"/>
+        <location filename="../Utilities/BackgroundService.py" line="445"/>
         <source>Eric&apos;s background client disconnected because of an unknown reason.</source>
         <translation type="unfinished">Cliente de fundo de Eric desconectou-se por motivo desconhecido.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="450"/>
+        <location filename="../Utilities/BackgroundService.py" line="451"/>
         <source>Background client disconnected.</source>
         <translation>Cliente de fundo desconectado.</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="450"/>
+        <location filename="../Utilities/BackgroundService.py" line="451"/>
         <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
         <translation>Cliente de fundo para &lt;b&gt;{0}&lt;/b&gt; desconetou-se por um motivo desconhecido. &lt;br&gt;Deveria reiniciar-se?</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="215"/>
+        <location filename="../Utilities/BackgroundService.py" line="216"/>
         <source>An error in Eric&apos;s background client stopped the service.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1925,7 +1925,7 @@
         <translation>Pressionar para apagar as entradas selecionadas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="173"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="174"/>
         <source>&amp;Delete</source>
         <translation>&amp;Apagar</translation>
     </message>
@@ -1940,62 +1940,62 @@
         <translation>Adicionar &amp;Diretório</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="155"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="156"/>
         <source>&amp;Open</source>
         <translation>A&amp;brir</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="157"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="158"/>
         <source>Open in New &amp;Tab</source>
         <translation>Abrir num &amp;Separador Novo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="168"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="169"/>
         <source>Edit &amp;Name</source>
         <translation>Editar &amp;Nome</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="171"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="172"/>
         <source>Edit &amp;Address</source>
         <translation>Editar &amp;Direção</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="342"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="355"/>
         <source>New Folder</source>
         <translation>Diretório Novo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="177"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="178"/>
         <source>&amp;Properties...</source>
         <translation>&amp;Propriedades...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="162"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="163"/>
         <source>Open in New &amp;Window</source>
         <translation>Abrir numa Nova &amp;Janela</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="164"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="165"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation>Abrir numa Nova Janela Pri&amp;vada</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="159"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="160"/>
         <source>Open in New &amp;Background Tab</source>
         <translation>Abrir num Novo Separador de &amp;Fundo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="181"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="182"/>
         <source>New &amp;Folder...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="334"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="347"/>
         <source>New Bookmark Folder</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="334"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="347"/>
         <source>Enter title for new bookmark folder:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2314,72 +2314,72 @@
 <context>
     <name>BreakPointViewer</name>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="52"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="54"/>
         <source>Breakpoints</source>
         <translation>Pontos de Interrupção</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="192"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="198"/>
         <source>Add</source>
         <translation>Adicionar</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="159"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="165"/>
         <source>Edit...</source>
         <translation>Editar...</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="161"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="167"/>
         <source>Enable</source>
         <translation>Habilitar</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="196"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="202"/>
         <source>Enable all</source>
         <translation>Habilitar tudo</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="164"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="170"/>
         <source>Disable</source>
         <translation>Inabilitar</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="201"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="207"/>
         <source>Disable all</source>
         <translation>Inabilitar tudo</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="168"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="174"/>
         <source>Delete</source>
         <translation>Apagar</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="206"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="212"/>
         <source>Delete all</source>
         <translation>Apagar tudo</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="171"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="177"/>
         <source>Goto</source>
         <translation>Ir a</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="209"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="215"/>
         <source>Configure...</source>
         <translation>Configurar...</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="194"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="200"/>
         <source>Enable selected</source>
         <translation>Habilitar seleção</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="199"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="205"/>
         <source>Disable selected</source>
         <translation>Inabilitar seleção</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="204"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="210"/>
         <source>Delete selected</source>
         <translation>Apagar seleção</translation>
     </message>
@@ -2392,22 +2392,22 @@
         <translation>Navegador de Ficheiros</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="282"/>
+        <location filename="../UI/Browser.py" line="284"/>
         <source>Open</source>
         <translation>Abrir</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="231"/>
+        <location filename="../UI/Browser.py" line="233"/>
         <source>Run unittest...</source>
         <translation>Executar teste unitário...</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="314"/>
+        <location filename="../UI/Browser.py" line="316"/>
         <source>Copy Path to Clipboard</source>
         <translation>Copiar Rota à Área de Transferência</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="261"/>
+        <location filename="../UI/Browser.py" line="263"/>
         <source>Open in Icon Editor</source>
         <translation>Abrir no Editor de Ícones</translation>
     </message>
@@ -2417,27 +2417,27 @@
         <translation type="obsolete">Configurar...</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="340"/>
+        <location filename="../UI/Browser.py" line="342"/>
         <source>New toplevel directory...</source>
         <translation>Diretório de nível superior novo...</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="296"/>
+        <location filename="../UI/Browser.py" line="298"/>
         <source>Add as toplevel directory</source>
         <translation>Adicionar como diretório de nível superior</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="299"/>
+        <location filename="../UI/Browser.py" line="301"/>
         <source>Remove from toplevel</source>
         <translation>Retirar do nível superior</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="303"/>
+        <location filename="../UI/Browser.py" line="305"/>
         <source>Refresh directory</source>
         <translation>Atualizar diretório</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="307"/>
+        <location filename="../UI/Browser.py" line="309"/>
         <source>Find in this directory</source>
         <translation>Encontrar neste diretório</translation>
     </message>
@@ -2447,17 +2447,17 @@
         <translation type="obsolete">Encontrar&amp;&amp;Substituir neste diretório</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="642"/>
+        <location filename="../UI/Browser.py" line="644"/>
         <source>New toplevel directory</source>
         <translation>Diretório de nível superior novo</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="326"/>
+        <location filename="../UI/Browser.py" line="328"/>
         <source>Goto</source>
         <translation>Ir a</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="433"/>
+        <location filename="../UI/Browser.py" line="435"/>
         <source>Line {0}</source>
         <translation>Linha {0}</translation>
     </message>
@@ -2467,152 +2467,152 @@
         <translation>&lt;b&gt;A Janela de Navegação&lt;/b&gt;&lt;p&gt;Permite navegar facilmente pela hierarquia dos diretório e ficheiros do sistema, identificar os programas de Python e abri-los na janela do Visor de Fontes. A janela mostra várias hierarquias separadas.&lt;/p&gt;&lt;p&gt;Apenas se mostrará a primeira hierarquia se está aberto um programa para depurar e o seu diretório raíz é o diretório que o contém. Geralmente, os distintos ficheiros que formam uma aplicação Python mantêm-se no mesmo diretório, deste modo a hierarquia dá acesso à maior parte do que se necessite.&lt;/p&gt;&lt;p&gt;A hierarquia seguinte utiliza-se para navagar facilmente nos diretórios especificados pela variável Python &lt;tt&gt;sys.path&lt;/tt&gt;.&lt;/p&gt;&lt;p&gt;As hierarquias restantes permitem navegar no seu sistema como um todo. Num sistema UNIX haverá uma hierarquia com &lt;tt&gt;/&lt;/tt&gt; como raíz e outra com o diretório do usuário. Num sistema Windows haverá uma hierarquia para cada unidade de disco no sistema.&lt;/p&gt;&lt;p&gt;Os programas Python (como aqueles que têm a extensão &lt;tt&gt;.py&lt;/tt&gt;) identificam-se nas hierarquias com um ícone Python. Um clique com o botão direito do rato frará aparecer um menú que permitirá abrir o ficheiro numa janela do Visor de Fontes, abrir para depurar ou usá-lo para executar um teste unitário.&lt;/p&gt;&lt;p&gt;O menú contextual de uma classe, função ou método permite abrir o ficheiro definindo esta classe, função ou método e assegurará que a linha de código correta esteja visível.&lt;/p&gt;&lt;p&gt;Os ficheiros de Qt-Designer (como os que têm extensão &lt;tt&gt;.ui&lt;/tt&gt;) aparecem com o ícone de Designer. O menú contextual destes ficheiros permite abrí-los com Qt-Designer.&lt;/p&gt;&lt;p&gt;Os ficheiros de Qt-Linguist (como os que têm extensão &lt;tt&gt;.ts&lt;/tt&gt;) aparecem com o ícone de Linguist. O menú contextual destes ficheiros permite abrí-los com Qt-Linguist.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="553"/>
+        <location filename="../UI/Browser.py" line="555"/>
         <source>Show Mime-Type</source>
         <translation>Mostrar Tipos MIME</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="526"/>
+        <location filename="../UI/Browser.py" line="528"/>
         <source>The mime type of the file could not be determined.</source>
         <translation>O tipo MIME do ficheiro não pôde ser identificado.</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="544"/>
+        <location filename="../UI/Browser.py" line="546"/>
         <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.</source>
         <translation>O ficheiro tem o tipo MIME &lt;b&gt;{0}&lt;/b&gt;.</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="553"/>
+        <location filename="../UI/Browser.py" line="555"/>
         <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt; Shall it be added to the list of text mime types?</source>
         <translation>O ficheiro tem o tipo MIME &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt;Deverá ser adicionado à lista de tipos MIME de texto?</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="258"/>
+        <location filename="../UI/Browser.py" line="260"/>
         <source>Open in Hex Editor</source>
         <translation>Abrir com Editor Hexadecimal</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="310"/>
+        <location filename="../UI/Browser.py" line="312"/>
         <source>Find &amp;&amp; Replace in this directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="239"/>
+        <location filename="../UI/Browser.py" line="241"/>
         <source>Refresh Source File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="212"/>
+        <location filename="../UI/Browser.py" line="214"/>
         <source>Show Hidden Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="219"/>
-        <source>New</source>
-        <translation type="unfinished">Novo</translation>
-    </message>
-    <message>
         <location filename="../UI/Browser.py" line="221"/>
+        <source>New</source>
+        <translation type="unfinished">Novo</translation>
+    </message>
+    <message>
+        <location filename="../UI/Browser.py" line="223"/>
         <source>Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="224"/>
+        <location filename="../UI/Browser.py" line="226"/>
         <source>File</source>
         <translation type="unfinished">Ficheiro</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="321"/>
+        <location filename="../UI/Browser.py" line="323"/>
         <source>Delete</source>
         <translation type="unfinished">Apagar</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="879"/>
+        <location filename="../UI/Browser.py" line="881"/>
         <source>New Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="861"/>
+        <location filename="../UI/Browser.py" line="863"/>
         <source>Name for new directory:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="902"/>
+        <location filename="../UI/Browser.py" line="904"/>
         <source>A file or directory named &lt;b&gt;{0}&lt;/b&gt; exists already. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="879"/>
+        <location filename="../UI/Browser.py" line="881"/>
         <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="913"/>
+        <location filename="../UI/Browser.py" line="915"/>
         <source>New File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="894"/>
+        <location filename="../UI/Browser.py" line="896"/>
         <source>Name for new file:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="913"/>
+        <location filename="../UI/Browser.py" line="915"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="942"/>
+        <location filename="../UI/Browser.py" line="944"/>
         <source>Do you really want to move this file to the trash?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="946"/>
+        <location filename="../UI/Browser.py" line="948"/>
         <source>Do you really want to delete this file?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1043"/>
+        <location filename="../UI/Browser.py" line="1045"/>
         <source>Delete File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1043"/>
+        <location filename="../UI/Browser.py" line="1045"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="979"/>
+        <location filename="../UI/Browser.py" line="981"/>
         <source>Do you really want to move this directory to the trash?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="983"/>
+        <location filename="../UI/Browser.py" line="985"/>
         <source>Do you really want to delete this directory?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1000"/>
+        <location filename="../UI/Browser.py" line="1002"/>
         <source>Delete Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1000"/>
+        <location filename="../UI/Browser.py" line="1002"/>
         <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1023"/>
+        <location filename="../UI/Browser.py" line="1025"/>
         <source>Do you really want to move these files to the trash?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1027"/>
+        <location filename="../UI/Browser.py" line="1029"/>
         <source>Do you really want to delete these files?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1032"/>
+        <location filename="../UI/Browser.py" line="1034"/>
         <source>Delete Files</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2625,27 +2625,27 @@
         <translation>Nome</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="653"/>
+        <location filename="../UI/BrowserModel.py" line="660"/>
         <source>Coding: {0}</source>
         <translation>Codificação: {0}</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="660"/>
+        <location filename="../UI/BrowserModel.py" line="667"/>
         <source>Globals</source>
         <translation>Globais</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="759"/>
+        <location filename="../UI/BrowserModel.py" line="766"/>
         <source>Attributes</source>
         <translation>Atributos</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="769"/>
+        <location filename="../UI/BrowserModel.py" line="776"/>
         <source>Class Attributes</source>
         <translation>Atributos da Classe</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="666"/>
+        <location filename="../UI/BrowserModel.py" line="673"/>
         <source>Imports</source>
         <translation>Importações</translation>
     </message>
@@ -2668,7 +2668,7 @@
         <translation>Gravar</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="71"/>
+        <location filename="../Debugger/CallStackViewer.py" line="72"/>
         <source>File: {0}
 Line: {1}
 {2}{3}</source>
@@ -2677,34 +2677,34 @@
 {2}{3}</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="73"/>
+        <location filename="../Debugger/CallStackViewer.py" line="74"/>
         <source>File: {0}
 Line: {1}</source>
         <translation>Ficheiro: {0}
 Linha: {1}</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="202"/>
+        <location filename="../Debugger/CallStackViewer.py" line="203"/>
         <source>Save Call Stack Info</source>
         <translation>Gravar Informação da Pilha de Chamadas</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="188"/>
+        <location filename="../Debugger/CallStackViewer.py" line="189"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation>Ficheiros de Texto (*.txt);;Ficheiros Todos (*)</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="202"/>
+        <location filename="../Debugger/CallStackViewer.py" line="203"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="224"/>
+        <location filename="../Debugger/CallStackViewer.py" line="225"/>
         <source>Error saving Call Stack Info</source>
         <translation>Erro ao gravar a Informação da Pilha de Chamadas</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="224"/>
+        <location filename="../Debugger/CallStackViewer.py" line="225"/>
         <source>&lt;p&gt;The call stack info could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;A informação da pilha de chamadas não se pôde escrever em &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Razão: {1}&lt;/p&gt;</translation>
     </message>
@@ -2714,7 +2714,7 @@
         <translation>Pilha de Chamadas</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="213"/>
+        <location filename="../Debugger/CallStackViewer.py" line="214"/>
         <source>Call Stack of &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3422,32 +3422,32 @@
 <context>
     <name>CodeDocumentationViewer</name>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="208"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="211"/>
         <source>Code Info Provider:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="221"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="227"/>
         <source>Select the code info provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="223"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="229"/>
         <source>&lt;disabled&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="404"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="410"/>
         <source>No documentation available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="425"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="431"/>
         <source>No source code documentation provider has been registered. This function has been disabled.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="430"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="436"/>
         <source>This function has been disabled.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3579,32 +3579,32 @@
         <translation type="obsolete">Expandir tudo</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="193"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="205"/>
         <source>files</source>
         <translation>ficheiros</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="195"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="207"/>
         <source>lines</source>
         <translation>linhas</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="197"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="209"/>
         <source>bytes</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="199"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="211"/>
         <source>comments</source>
         <translation>comentários</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="203"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="215"/>
         <source>empty lines</source>
         <translation>linhas vazias</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="205"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="217"/>
         <source>non-commentary lines</source>
         <translation>linhas não-comentário</translation>
     </message>
@@ -3614,17 +3614,17 @@
         <translation>%v/%m Ficheiros</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="201"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="213"/>
         <source>comment lines</source>
         <translation>linhas comentário</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="52"/>
-        <source>Collapse All</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../DataViews/CodeMetricsDialog.py" line="54"/>
+        <source>Collapse All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="56"/>
         <source>Expand All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3873,7 +3873,7 @@
         <translation>Pressionar para mostrar todos os ficheiros que tenham algum problema</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="244"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="246"/>
         <source>Error: {0}</source>
         <translation>Erro: {0}</translation>
     </message>
@@ -3883,7 +3883,7 @@
         <translation>Corrigir: {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1037"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1044"/>
         <source>No issues found.</source>
         <translation>Não se encontraram problemas.</translation>
     </message>
@@ -3908,12 +3908,12 @@
         <translation>Mostrar ignorado</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="963"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="968"/>
         <source>{0} (ignored)</source>
         <translation>{0} (ignorado)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="856"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="861"/>
         <source>Preparing files...</source>
         <translation>A preparar ficheiros...</translation>
     </message>
@@ -3923,12 +3923,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="217"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="219"/>
         <source>Errors</source>
         <translation>Erros</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="895"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="900"/>
         <source>Transferring data...</source>
         <translation>A transferir dados...</translation>
     </message>
@@ -4033,7 +4033,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1040"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1047"/>
         <source>No files found (check your ignore list).</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4343,12 +4343,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2004"/>
         <source>Commented Code Whitelist Pattern</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2004"/>
         <source>Enter a Commented Code Whitelist Pattern</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5215,7 +5215,7 @@
 <context>
     <name>CondaExecDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="96"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="102"/>
         <source>Conda Execution</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5242,45 +5242,45 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="96"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="102"/>
         <source>The conda executable could not be started. Is it configured correctly?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="103"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="109"/>
         <source>Operation started.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="134"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="143"/>
         <source>Operation finished.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="154"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="163"/>
         <source>Conda command &apos;{0}&apos; did not return success.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="164"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="173"/>
         <source>
 Conda Message: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="203"/>
-        <source>{0} (Size: {1})</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="208"/>
-        <source>Fetching {0} ...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../CondaInterface/CondaExecDialog.py" line="212"/>
+        <source>{0} (Size: {1})</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="217"/>
+        <source>Fetching {0} ...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="221"/>
         <source> Done.
 </source>
         <translation type="unfinished"></translation>
@@ -5289,7 +5289,7 @@
 <context>
     <name>CondaExportDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="209"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="211"/>
         <source>Generate Requirements</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5369,27 +5369,27 @@
         <translation type="unfinished">Atualiza&amp;r</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="209"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="211"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished">Ficheiros de Texto (*.txt);;Ficheiros Todos (*)</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="109"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="111"/>
         <source>The requirements were changed. Do you want to overwrite these changes?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="140"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="142"/>
         <source>No output generated by conda.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="177"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="179"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; already exists. Do you want to overwrite it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="189"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="191"/>
         <source>&lt;p&gt;The requirements could not be written to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5576,7 +5576,7 @@
 <context>
     <name>CondaPackageDetailsDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaPackageDetailsWidget.py" line="91"/>
+        <location filename="../CondaInterface/CondaPackageDetailsWidget.py" line="93"/>
         <source>Package Details</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5792,132 +5792,132 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="123"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="125"/>
         <source>Clean</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="124"/>
-        <source>All</source>
-        <translation type="unfinished">Tudo</translation>
-    </message>
-    <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="126"/>
-        <source>Cache</source>
-        <translation type="unfinished"></translation>
+        <source>All</source>
+        <translation type="unfinished">Tudo</translation>
     </message>
     <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="128"/>
+        <source>Cache</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="130"/>
         <source>Lock Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="131"/>
-        <source>Packages</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="133"/>
+        <source>Packages</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="135"/>
         <source>Tarballs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="136"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="138"/>
         <source>About Conda...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="139"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="141"/>
         <source>Update Conda</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="575"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="581"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="144"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="146"/>
         <source>Install Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="147"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="149"/>
         <source>Generate Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="150"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="152"/>
         <source>Create Environment from Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="617"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="623"/>
         <source>Clone Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="662"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="668"/>
         <source>Delete Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="160"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="162"/>
         <source>Edit User Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="164"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="166"/>
         <source>Configure...</source>
         <translation type="unfinished">Configurar...</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="221"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="223"/>
         <source>Getting installed packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="234"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="236"/>
         <source>Getting outdated packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="256"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="260"/>
         <source>{0} (Build: {1})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="397"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="403"/>
         <source>Conda Search Package Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="555"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="561"/>
         <source>Package Specifications (separated by whitespace):</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="575"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="581"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished">Ficheiros de Texto (*.txt);;Ficheiros Todos (*)</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="641"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="647"/>
         <source>Create Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="662"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="668"/>
         <source>&lt;p&gt;Shall the environment &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="687"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="693"/>
         <source>Edit Configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="687"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="693"/>
         <source>The configuration file &quot;{0}&quot; does not exist or is not writable.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6168,24 +6168,24 @@
         <translation>Gestor de Vista</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="571"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="578"/>
         <source>Preferences</source>
         <translation>Preferências</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="576"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="584"/>
         <source>Please select an entry of the list 
 to display the configuration page.</source>
         <translation>Por favor selecione uma entrada da lista 
 para mostrar a página de configuração.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="661"/>
         <source>Configuration Page Error</source>
         <translation>Erro na Página de Configuração</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
+        <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;A página de configuração &lt;b&gt;{0}&lt;/b&gt; não pôde ser carregada.&lt;/p&gt;</translation>
     </message>
@@ -6408,17 +6408,17 @@
         <translation>Estado</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="82"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="87"/>
         <source>Allow</source>
         <translation>Permitir</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="91"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="96"/>
         <source>Block</source>
         <translation>Bloquear</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="100"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="105"/>
         <source>Allow For Session</source>
         <translation>Permitir na Sessão</translation>
     </message>
@@ -6612,7 +6612,7 @@
         <translation type="unfinished">Domínio:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="175"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="176"/>
         <source>&lt;no cookie selected&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6657,37 +6657,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="143"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="144"/>
         <source>Remove All Cookies</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="143"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="144"/>
         <source>Do you really want to remove all stored cookies?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="177"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="178"/>
         <source>Remove Cookies</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="186"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="187"/>
         <source>Secure connections only</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="188"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="189"/>
         <source>All connections</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="190"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="191"/>
         <source>Session Cookie</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="197"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="198"/>
         <source>Remove Cookie</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6974,57 +6974,57 @@
         <translation>Filtrar &amp;com:</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="135"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="136"/>
         <source>Create Dialog Code</source>
         <translation>Criar Código de Caixa de Diálogo</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="135"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="136"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; exists but does not contain any classes.</source>
         <translation>O ficheiro &lt;b&gt;{0}&lt;/b&gt; existe mas não tem classes.</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="225"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="226"/>
         <source>uic error</source>
         <translation>erro uic</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="216"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="217"/>
         <source>&lt;p&gt;There was an error loading the form &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Houve um erro ao carregar o form &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="578"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="580"/>
         <source>Code Generation</source>
         <translation>Geração de Código</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="448"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="449"/>
         <source>&lt;p&gt;Could not open the code template file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Não se pode abrir o ficheiro modelo de código &quot;{0}&quot;&lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="485"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="486"/>
         <source>&lt;p&gt;Could not open the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Não se pode abrir o ficheiro fonte &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="578"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="580"/>
         <source>&lt;p&gt;Could not write the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Não se pode escrever o ficheiro fonte &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="225"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="226"/>
         <source>&lt;p&gt;The project specific Python interpreter &lt;b&gt;{0}&lt;/b&gt; could not be started or did not finish within 30 seconds.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="401"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="402"/>
         <source>&lt;p&gt;Code generation for project language &quot;{0}&quot; is not supported.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="437"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="438"/>
         <source>&lt;p&gt;No code template file available for project type &quot;{0}&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7067,17 +7067,17 @@
         <translation>alterado</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="865"/>
+        <location filename="../Debugger/DebugServer.py" line="867"/>
         <source>Connection from illegal host</source>
         <translation>Conexão desde anfitrião ilegal</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="865"/>
+        <location filename="../Debugger/DebugServer.py" line="867"/>
         <source>&lt;p&gt;A connection was attempted by the illegal host &lt;b&gt;{0}&lt;/b&gt;. Accept this connection?&lt;/p&gt;</source>
         <translation>&lt;p&gt;O anfitrião ilegal &lt;b&gt;{0}&lt;/b&gt; tentou conectar. Aceitar esta conexão?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1875"/>
+        <location filename="../Debugger/DebugServer.py" line="1877"/>
         <source>
 Not connected
 </source>
@@ -7086,36 +7086,36 @@
 </translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="2144"/>
+        <location filename="../Debugger/DebugServer.py" line="2146"/>
         <source>Passive debug connection received
 </source>
         <translation>Conexão de depuração passiva recebida
 </translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="2158"/>
+        <location filename="../Debugger/DebugServer.py" line="2160"/>
         <source>Passive debug connection closed
 </source>
         <translation>Conexão de depuração passiva fechada
 </translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="351"/>
+        <location filename="../Debugger/DebugServer.py" line="353"/>
         <source>Register Debugger Interface</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="351"/>
+        <location filename="../Debugger/DebugServer.py" line="353"/>
         <source>&lt;p&gt;The debugger interface &lt;b&gt;{0}&lt;/b&gt; has already been registered. Ignoring this request.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1601"/>
         <source>Start Debugger</source>
         <translation type="unfinished">Iniciar o Depurador</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1601"/>
         <source>&lt;p&gt;The debugger type &lt;b&gt;{0}&lt;/b&gt; is not supported or not configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7123,7 +7123,7 @@
 <context>
     <name>DebugUI</name>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1961"/>
+        <location filename="../Debugger/DebugUI.py" line="1964"/>
         <source>Run Script</source>
         <translation>Executar Script</translation>
     </message>
@@ -7143,7 +7143,7 @@
         <translation>&lt;b&gt;Executar Script&lt;/b&gt;&lt;p&gt;Definir os argumentos da linha de comandos e executar o script fora do depurador. Poderão gravar-se primeiro as alterações que estejam por gravar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1973"/>
+        <location filename="../Debugger/DebugUI.py" line="1976"/>
         <source>Run Project</source>
         <translation>Executar Projeto</translation>
     </message>
@@ -7153,406 +7153,406 @@
         <translation>Executar &amp;Projeto...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="220"/>
+        <location filename="../Debugger/DebugUI.py" line="221"/>
         <source>Run the current Project</source>
         <translation>Executar Projeto actual</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="221"/>
+        <location filename="../Debugger/DebugUI.py" line="222"/>
         <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Executar Projeto&lt;/b&gt;&lt;p&gt;Definir os argumentos da linha de comandos e executar o projeto atual fora do depurador. Poderão gravar-se primeiro as alterações dos ficheiros do projeto que estejam por gravar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="231"/>
+        <location filename="../Debugger/DebugUI.py" line="232"/>
         <source>Coverage run of Script</source>
         <translation>Execução Cobertura de Script</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="231"/>
+        <location filename="../Debugger/DebugUI.py" line="232"/>
         <source>Coverage run of Script...</source>
         <translation>Execução Cobertura de Script...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="236"/>
+        <location filename="../Debugger/DebugUI.py" line="237"/>
         <source>Perform a coverage run of the current Script</source>
         <translation>Realizar execução de cobertura do Script actual</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="238"/>
+        <location filename="../Debugger/DebugUI.py" line="239"/>
         <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="247"/>
+        <location filename="../Debugger/DebugUI.py" line="248"/>
         <source>Coverage run of Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="247"/>
+        <location filename="../Debugger/DebugUI.py" line="248"/>
         <source>Coverage run of Project...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="252"/>
+        <location filename="../Debugger/DebugUI.py" line="253"/>
         <source>Perform a coverage run of the current Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="254"/>
+        <location filename="../Debugger/DebugUI.py" line="255"/>
         <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="264"/>
+        <location filename="../Debugger/DebugUI.py" line="265"/>
         <source>Profile Script</source>
         <translation>Perfilar Script</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="264"/>
+        <location filename="../Debugger/DebugUI.py" line="265"/>
         <source>Profile Script...</source>
         <translation>Perfilar Script...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="268"/>
-        <source>Profile the current Script</source>
-        <translation>Perfilar o Script atual</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="269"/>
+        <source>Profile the current Script</source>
+        <translation>Perfilar o Script atual</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="270"/>
         <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Perfilar Script&lt;/b&gt;&lt;p&gt;Define os argumentos da linha de comandos e perfila o script. Antes, poderá gravar as alterações.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="277"/>
+        <location filename="../Debugger/DebugUI.py" line="278"/>
         <source>Profile Project</source>
         <translation>Perfilar Projeto</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="277"/>
+        <location filename="../Debugger/DebugUI.py" line="278"/>
         <source>Profile Project...</source>
         <translation>Perfilar Projeto...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="282"/>
+        <location filename="../Debugger/DebugUI.py" line="283"/>
         <source>Profile the current Project</source>
         <translation>Perfilar o Projeto atual</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="284"/>
+        <location filename="../Debugger/DebugUI.py" line="285"/>
         <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Perfilar Projeto&lt;/b&gt;&lt;p&gt;Define os argumentos da linha de comandos e perfila o projeto atual. Poderá gravar antes os ficheiros alterados por gravar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2094"/>
+        <location filename="../Debugger/DebugUI.py" line="2097"/>
         <source>Debug Script</source>
         <translation>Depurar Script</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="293"/>
+        <location filename="../Debugger/DebugUI.py" line="294"/>
         <source>&amp;Debug Script...</source>
         <translation>&amp;Depurar Script...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="298"/>
-        <source>Debug the current Script</source>
-        <translation>Depurar o Script atual</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="299"/>
+        <source>Debug the current Script</source>
+        <translation>Depurar o Script atual</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="300"/>
         <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Depurar Script&lt;/b&gt;&lt;p&gt;Definir os argumentos da linha de comandos e definir a linha atual para que seja a primeira instrução Python executável da janela do editor atual. Poderão gravar-se primeiro as alterações que estejam por gravar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2111"/>
+        <location filename="../Debugger/DebugUI.py" line="2114"/>
         <source>Debug Project</source>
         <translation>Depurar projeto</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="309"/>
+        <location filename="../Debugger/DebugUI.py" line="310"/>
         <source>Debug &amp;Project...</source>
         <translation>Depurar &amp;Projeto...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="314"/>
-        <source>Debug the current Project</source>
-        <translation>Depurar o Projeto atual</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="316"/>
+        <source>Debug the current Project</source>
+        <translation>Depurar o Projeto atual</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="318"/>
         <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Depurar Projeto&lt;/b&gt;&lt;p&gt;Definir os argumentos da linha de comandos e definir a linha atual para que seja a primeira instrução Python executável do script principal do projeto atual. Poderão gravar-se primeiro as alterações dos ficheiros do projeto que estejam por gravar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="330"/>
+        <location filename="../Debugger/DebugUI.py" line="332"/>
         <source>Restart the last debugged script</source>
         <translation>Reiniciar o último script depurado</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="347"/>
+        <location filename="../Debugger/DebugUI.py" line="349"/>
         <source>Stop the running script.</source>
         <translation>Parar o script em execução.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="357"/>
+        <location filename="../Debugger/DebugUI.py" line="359"/>
         <source>Continue</source>
         <translation>Continuar</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="357"/>
+        <location filename="../Debugger/DebugUI.py" line="359"/>
         <source>&amp;Continue</source>
         <translation>&amp;Continuar</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="362"/>
-        <source>Continue running the program from the current line</source>
-        <translation>Continuar a execução do programa a partir da linha atual</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="364"/>
+        <source>Continue running the program from the current line</source>
+        <translation>Continuar a execução do programa a partir da linha atual</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="366"/>
         <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continuar a execução do programa a partir da linha atual. O programa parará quando terine ou alcance outro ponto de interrupção.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="373"/>
+        <location filename="../Debugger/DebugUI.py" line="375"/>
         <source>Continue to Cursor</source>
         <translation>Continuar até ao cursor</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="373"/>
+        <location filename="../Debugger/DebugUI.py" line="375"/>
         <source>Continue &amp;To Cursor</source>
         <translation>Continuar a&amp;té ao cursor</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="378"/>
-        <source>Continue running the program from the current line to the current cursor position</source>
-        <translation>Continuar a execução do programa a partir da linha atual até à posição atual do cursor</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="381"/>
+        <source>Continue running the program from the current line to the current cursor position</source>
+        <translation>Continuar a execução do programa a partir da linha atual até à posição atual do cursor</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="384"/>
         <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Continuar até Cursor&lt;/b&gt;&lt;p&gt;Continuar a execução do programa desde a linha atual até à posição atual do cursor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="426"/>
+        <location filename="../Debugger/DebugUI.py" line="429"/>
         <source>Single Step</source>
         <translation>Passo Único</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="426"/>
+        <location filename="../Debugger/DebugUI.py" line="429"/>
         <source>Sin&amp;gle Step</source>
         <translation>Passo &amp;Único</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="431"/>
+        <location filename="../Debugger/DebugUI.py" line="434"/>
         <source>Execute a single Python statement</source>
         <translation>Executar uma única instrução Python</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="432"/>
+        <location filename="../Debugger/DebugUI.py" line="435"/>
         <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Passo Único&lt;/b&gt;&lt;p&gt;Executa uma.única instrução Python. Se a instrução é um &lt;tt&gt;import&lt;tt&gt;, um construtor de classe, uma chamada de função ou método, então o controlo é devolvido ao depurador na instrução seguinte.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="442"/>
+        <location filename="../Debugger/DebugUI.py" line="445"/>
         <source>Step Over</source>
         <translation>Saltar</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="442"/>
+        <location filename="../Debugger/DebugUI.py" line="445"/>
         <source>Step &amp;Over</source>
         <translation>&amp;Saltar</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="447"/>
-        <source>Execute a single Python statement staying in the current frame</source>
-        <translation>Executar uma única instrução Python e ficar no marco atual</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="450"/>
+        <source>Execute a single Python statement staying in the current frame</source>
+        <translation>Executar uma única instrução Python e ficar no marco atual</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="453"/>
         <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="461"/>
+        <location filename="../Debugger/DebugUI.py" line="464"/>
         <source>Step Out</source>
         <translation>Sair</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="461"/>
+        <location filename="../Debugger/DebugUI.py" line="464"/>
         <source>Step Ou&amp;t</source>
         <translation>Sai&amp;r</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="466"/>
-        <source>Execute Python statements until leaving the current frame</source>
-        <translation>Executar instruções Python até sair do marco atual</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="469"/>
+        <source>Execute Python statements until leaving the current frame</source>
+        <translation>Executar instruções Python até sair do marco atual</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="472"/>
         <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="480"/>
+        <location filename="../Debugger/DebugUI.py" line="483"/>
         <source>Stop</source>
         <translation>Parar</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="480"/>
+        <location filename="../Debugger/DebugUI.py" line="483"/>
         <source>&amp;Stop</source>
         <translation>&amp;Parar</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="485"/>
+        <location filename="../Debugger/DebugUI.py" line="488"/>
         <source>Stop debugging</source>
         <translation>Parar de depurar</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="486"/>
+        <location filename="../Debugger/DebugUI.py" line="489"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Parar&lt;/b&gt;&lt;p&gt;Parar a sessão de depuração.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="493"/>
+        <location filename="../Debugger/DebugUI.py" line="496"/>
         <source>Variables Type Filter</source>
         <translation>Filtro do Tipo de Varáveis</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="493"/>
+        <location filename="../Debugger/DebugUI.py" line="496"/>
         <source>Varia&amp;bles Type Filter...</source>
         <translation>Filtro do Tipo de &amp;Variáveis...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="497"/>
+        <location filename="../Debugger/DebugUI.py" line="500"/>
         <source>Configure variables type filter</source>
         <translation>Configurar o filtro de tipo de variáveis</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="499"/>
+        <location filename="../Debugger/DebugUI.py" line="502"/>
         <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Filtro de Tipo de Variáveis&lt;/b&gt;&lt;p&gt;Configurar o filtro do tipo de variáveis. Apenas se mostrarão as variáveis que não estejam selecionadas, na janela global ou local, durante a sessão de depuração.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="509"/>
+        <location filename="../Debugger/DebugUI.py" line="512"/>
         <source>Exceptions Filter</source>
         <translation>Filtro de Exceções</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="509"/>
+        <location filename="../Debugger/DebugUI.py" line="512"/>
         <source>&amp;Exceptions Filter...</source>
         <translation>Filtro de &amp;Exceções...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="513"/>
+        <location filename="../Debugger/DebugUI.py" line="516"/>
         <source>Configure exceptions filter</source>
         <translation>Configurar filtro de exceções</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="515"/>
+        <location filename="../Debugger/DebugUI.py" line="518"/>
         <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Filtro de Exceções&lt;/b&gt;&lt;p&gt;Configurar o filtro de exceções. Apenas os tipos de exceções que estão listadas serão ressaltadas durante a sessão de depuração.&lt;/p&gt;&lt;p&gt;Por favor tenha em conta que todas as exceções sem tratamento serão ressaltadas independentemente da lista do filtro.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="526"/>
+        <location filename="../Debugger/DebugUI.py" line="529"/>
         <source>Ignored Exceptions</source>
         <translation>Exceções Ignoradas</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="526"/>
+        <location filename="../Debugger/DebugUI.py" line="529"/>
         <source>&amp;Ignored Exceptions...</source>
         <translation>Exceções &amp;Ignoradas...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="530"/>
+        <location filename="../Debugger/DebugUI.py" line="533"/>
         <source>Configure ignored exceptions</source>
         <translation>Configurar exceções ignoradas</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="532"/>
+        <location filename="../Debugger/DebugUI.py" line="535"/>
         <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Exceções Ignoradas&lt;/b&gt;&lt;p&gt;Configura as exceções ignoradas. Apenas os tipos de exceções que não estão listadas são realçadas durante uma sessão de depuração.&lt;/p&gt;&lt;p&gt;Note-se que não se podem ignorar as exceções sem tratamento.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="551"/>
+        <location filename="../Debugger/DebugUI.py" line="554"/>
         <source>Toggle Breakpoint</source>
         <translation>Alternar Pontos de Interrupção</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="545"/>
+        <location filename="../Debugger/DebugUI.py" line="548"/>
         <source>Shift+F11</source>
         <comment>Debug|Toggle Breakpoint</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="552"/>
+        <location filename="../Debugger/DebugUI.py" line="555"/>
         <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Alternar Ponto de Interrupção&lt;/b&gt;&lt;p&gt;Alterna um ponto de instrução na linha atual do editor atual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="566"/>
+        <location filename="../Debugger/DebugUI.py" line="569"/>
         <source>Edit Breakpoint</source>
         <translation>Editar o Ponto de Interrupção</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="560"/>
+        <location filename="../Debugger/DebugUI.py" line="563"/>
         <source>Edit Breakpoint...</source>
         <translation>Editar o Ponto de Interrupção...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="560"/>
+        <location filename="../Debugger/DebugUI.py" line="563"/>
         <source>Shift+F12</source>
         <comment>Debug|Edit Breakpoint</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="567"/>
+        <location filename="../Debugger/DebugUI.py" line="570"/>
         <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Editar Ponto de Interrupção&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo para editar as propriedades dos pontos de interrupção. Funciona na linha atual do editor atual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="582"/>
+        <location filename="../Debugger/DebugUI.py" line="585"/>
         <source>Next Breakpoint</source>
         <translation>Ponto de Interrupção Seguinte</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="575"/>
+        <location filename="../Debugger/DebugUI.py" line="578"/>
         <source>Ctrl+Shift+PgDown</source>
         <comment>Debug|Next Breakpoint</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="583"/>
+        <location filename="../Debugger/DebugUI.py" line="586"/>
         <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ponto de Interrupção Seguinte&lt;/b&gt;&lt;p&gt;Vai ao próximo ponto de interrupção do editor atual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="597"/>
+        <location filename="../Debugger/DebugUI.py" line="600"/>
         <source>Previous Breakpoint</source>
         <translation>Ponto de Interrupção Anterior</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="590"/>
+        <location filename="../Debugger/DebugUI.py" line="593"/>
         <source>Ctrl+Shift+PgUp</source>
         <comment>Debug|Previous Breakpoint</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="598"/>
+        <location filename="../Debugger/DebugUI.py" line="601"/>
         <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ponto de Interrupção Anterior&lt;/b&gt;&lt;p&gt;Vai ao ponto de interrupção anterior do editor atual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="610"/>
+        <location filename="../Debugger/DebugUI.py" line="613"/>
         <source>Clear Breakpoints</source>
         <translation>Limpar Pontos de Interrupção</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="611"/>
+        <location filename="../Debugger/DebugUI.py" line="614"/>
         <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Limpar Pontos de Interrupção&lt;/b&gt;&lt;p&gt;Limpar pontos de interrupção dos editores todos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="637"/>
+        <location filename="../Debugger/DebugUI.py" line="640"/>
         <source>&amp;Debug</source>
         <translation>&amp;Depurar</translation>
     </message>
@@ -7562,172 +7562,172 @@
         <translation type="obsolete">&amp;Iniciar</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="641"/>
+        <location filename="../Debugger/DebugUI.py" line="644"/>
         <source>&amp;Breakpoints</source>
         <translation>Pontos de &amp;Interrupção</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="684"/>
+        <location filename="../Debugger/DebugUI.py" line="687"/>
         <source>Start</source>
         <translation>Iniciar</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="698"/>
+        <location filename="../Debugger/DebugUI.py" line="701"/>
         <source>Debug</source>
         <translation>Depurar</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1169"/>
+        <location filename="../Debugger/DebugUI.py" line="1172"/>
         <source>The program being debugged contains an unspecified syntax error.</source>
         <translation>O programa a depurar tem um erro de sintaxe não especificado.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1188"/>
+        <location filename="../Debugger/DebugUI.py" line="1191"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; tem um erro de sintaxe &lt;b&gt;{1}&lt;/b&gt; na linha &lt;b&gt;{2}&lt;/b&gt;, caráter &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1212"/>
+        <location filename="../Debugger/DebugUI.py" line="1215"/>
         <source>An unhandled exception occured. See the shell window for details.</source>
         <translation>Ocurreu uma exceção sem tratamento. Ver a janela da shell para mais detalhes.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1262"/>
+        <location filename="../Debugger/DebugUI.py" line="1265"/>
         <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
         <translation>&lt;p&gt;O programa depurado provocou a exceção &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;br&gt;Ficheiro: &lt;b&gt;{2}&lt;/b&gt;, Linha :&lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Interromper aqui?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1277"/>
+        <location filename="../Debugger/DebugUI.py" line="1280"/>
         <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;/p&gt;</source>
         <translation>&lt;p&gt;O programa depurado provocou a exceção &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1345"/>
+        <location filename="../Debugger/DebugUI.py" line="1348"/>
         <source>The program being debugged has terminated unexpectedly.</source>
         <translation>O programa a depurar acabou inesperadamente.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1452"/>
+        <location filename="../Debugger/DebugUI.py" line="1455"/>
         <source>Breakpoint Condition Error</source>
         <translation>Erro de Condição de Ponto de Interrupção</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1452"/>
+        <location filename="../Debugger/DebugUI.py" line="1455"/>
         <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
         <translation>&lt;p&gt;A condição do ponto de interrupção &lt;b&gt;{0}, {1}&lt;/b&gt;tem um erro de sintaxe.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1491"/>
+        <location filename="../Debugger/DebugUI.py" line="1494"/>
         <source>Watch Expression Error</source>
         <translation>Observar Erro de Expressão</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1491"/>
+        <location filename="../Debugger/DebugUI.py" line="1494"/>
         <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1521"/>
+        <location filename="../Debugger/DebugUI.py" line="1524"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; already exists.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1526"/>
+        <location filename="../Debugger/DebugUI.py" line="1529"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1531"/>
+        <location filename="../Debugger/DebugUI.py" line="1534"/>
         <source>Watch expression already exists</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1700"/>
+        <location filename="../Debugger/DebugUI.py" line="1703"/>
         <source>Coverage of Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1687"/>
+        <location filename="../Debugger/DebugUI.py" line="1690"/>
         <source>Coverage of Script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1973"/>
+        <location filename="../Debugger/DebugUI.py" line="1976"/>
         <source>There is no main script defined for the current project. Aborting</source>
         <translation>O projeto atual não tem um script principal definido. A cancelar</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1837"/>
+        <location filename="../Debugger/DebugUI.py" line="1840"/>
         <source>Profile of Project</source>
         <translation>Perfil de Projeto</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1824"/>
+        <location filename="../Debugger/DebugUI.py" line="1827"/>
         <source>Profile of Script</source>
         <translation>Perfil do Script</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2111"/>
+        <location filename="../Debugger/DebugUI.py" line="2114"/>
         <source>There is no main script defined for the current project. No debugging possible.</source>
         <translation>O projeto atual não tem um script principal definido. Impossível depurar.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1141"/>
+        <location filename="../Debugger/DebugUI.py" line="1144"/>
         <source>Program terminated</source>
         <translation>Programa Terminado</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="326"/>
+        <location filename="../Debugger/DebugUI.py" line="328"/>
         <source>Restart</source>
         <translation>Reiniciar</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="332"/>
+        <location filename="../Debugger/DebugUI.py" line="334"/>
         <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Reiniciar&lt;/b&gt;&lt;p&gt;Define os argumentos da linha de comandos e define a linha atual como a primeira instrução Python executável do último script depurado. Poderão gravar-se primeiro as alterações não gravadas.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="348"/>
+        <location filename="../Debugger/DebugUI.py" line="350"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Parar&lt;/b&gt;&lt;p&gt;Parar o script em execução na instalação de retaguarda do depurador.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1331"/>
+        <location filename="../Debugger/DebugUI.py" line="1334"/>
         <source>&lt;p&gt;The program generate the signal &quot;{0}&quot;.&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1122"/>
+        <location filename="../Debugger/DebugUI.py" line="1125"/>
         <source>Message: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="406"/>
+        <location filename="../Debugger/DebugUI.py" line="409"/>
         <source>Move Instruction Pointer to Cursor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="406"/>
+        <location filename="../Debugger/DebugUI.py" line="409"/>
         <source>&amp;Jump To Cursor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="411"/>
-        <source>Skip the code from the current line to the current cursor position</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="414"/>
+        <source>Skip the code from the current line to the current cursor position</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="417"/>
         <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It&apos;s not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1409"/>
+        <location filename="../Debugger/DebugUI.py" line="1412"/>
         <source>No locals available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="639"/>
+        <location filename="../Debugger/DebugUI.py" line="642"/>
         <source>Sta&amp;rt</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7737,32 +7737,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="389"/>
+        <location filename="../Debugger/DebugUI.py" line="392"/>
         <source>Continue Until</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="389"/>
+        <location filename="../Debugger/DebugUI.py" line="392"/>
         <source>Continue &amp;Until</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="394"/>
-        <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="397"/>
+        <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="400"/>
         <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1127"/>
+        <location filename="../Debugger/DebugUI.py" line="1130"/>
         <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1131"/>
+        <location filename="../Debugger/DebugUI.py" line="1134"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8180,22 +8180,22 @@
         <translation>Interromper sempre nas exceções</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="282"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="283"/>
         <source>Add allowed host</source>
         <translation>Adicionar anfitrião permitido</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305"/>
         <source>Enter the IP address of an allowed host</source>
         <translation>Introduzir a direção IP de um anfitrião permitido</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="316"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318"/>
         <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;A direção &lt;b&gt;{0}&lt;/b&gt; não é um direção IP v4 ou IP v6 válida. A cancelar...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="316"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318"/>
         <source>Edit allowed host</source>
         <translation>Editar anfitrião permitido</translation>
     </message>
@@ -8529,7 +8529,7 @@
         <translation>Não definir a codificação do cliente de depuração</translation>
     </message>
     <message>
-        <location filename="../Project/DebuggerPropertiesDialog.py" line="129"/>
+        <location filename="../Project/DebuggerPropertiesDialog.py" line="130"/>
         <source>All Files (*)</source>
         <translation>Ficheiros Todos (*)</translation>
     </message>
@@ -9406,7 +9406,7 @@
 <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="316"/>
         <source>.desktop Wizard</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9741,22 +9741,22 @@
         <translation type="unfinished">Preencher desde Projeto</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>FreeDesktop Standard .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>KDE Plasma MetaData .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>Ubuntu Unity QuickList .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="316"/>
         <source>Only one of &apos;Only Show In&apos; or  &apos;Not Show In&apos; allowed.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9847,17 +9847,17 @@
         <translation>Pressionar para abrir o ficheiro descarregado</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="220"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="223"/>
         <source>Download canceled: {0}</source>
         <translation>Descarga cancelada: {0}</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="210"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="213"/>
         <source>Save File</source>
         <translation>Gravar Ficheiro</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="249"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="252"/>
         <source>Download directory ({0}) couldn&apos;t be created.</source>
         <translation>O diretório de descarga ({0}) não pôde ser criado.</translation>
     </message>
@@ -9877,17 +9877,17 @@
         <translation type="obsolete">Erro de Rede: {0}</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="439"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="442"/>
         <source>?</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="452"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="455"/>
         <source>{0} of {1} - Stopped</source>
         <translation>{0} de {1} - Parado</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="193"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="196"/>
         <source>VirusTotal scan scheduled: {0}</source>
         <translation>Escaneio de VirusTotal programado: {0}</translation>
     </message>
@@ -9913,7 +9913,7 @@
 MD5: {2}</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="448"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="451"/>
         <source>{0} downloaded</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9923,7 +9923,7 @@
         <translation type="unfinished">Data e Hora</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="437"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="440"/>
         <source>{0} of {1} ({2}/sec) {3}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9954,7 +9954,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="168"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="169"/>
         <source>There are %n downloads in progress.
 Do you want to quit anyway?</source>
         <translation>
@@ -9975,37 +9975,37 @@
         <translation type="obsolete">Tentar de Novo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="107"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="108"/>
         <source>Open</source>
         <translation>Abrir</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="111"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="112"/>
         <source>Cancel</source>
         <translation>Cancelar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="115"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="116"/>
         <source>Open Containing Folder</source>
         <translation>Abrir o Diretório Contentor</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="119"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="120"/>
         <source>Go to Download Page</source>
         <translation>Ir à página de Descargas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="122"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="123"/>
         <source>Copy Download Link</source>
         <translation>Copia Vínculo de Descarga</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="126"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="127"/>
         <source>Select All</source>
         <translation>Selecionar Tudo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="135"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="136"/>
         <source>Remove From List</source>
         <translation>Retirar da Lista</translation>
     </message>
@@ -10018,32 +10018,32 @@
         </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="257"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="258"/>
         <source>Suspicuous URL detected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="257"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="258"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="588"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="589"/>
         <source>Download Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="500"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="501"/>
         <source>Downloads finished</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="500"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="501"/>
         <source>All files have been downloaded.</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="622"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="623"/>
         <source>{0}% of %n file(s) ({1}) {2}</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -10051,7 +10051,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="629"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="630"/>
         <source>{0}% - Download Manager</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10191,27 +10191,27 @@
 <context>
     <name>E5GoogleMail</name>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="159"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="160"/>
         <source>The client secrets file is not present. Has the Gmail API been enabled?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="196"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="197"/>
         <source>OAuth2 Authorization Code</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="196"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="197"/>
         <source>Enter the OAuth2 authorization code:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="240"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="241"/>
         <source>No authorized session available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="258"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="259"/>
         <source>Message #{0} sent.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10219,7 +10219,7 @@
 <context>
     <name>E5GraphicsView</name>
     <message>
-        <location filename="../E5Graphics/E5GraphicsView.py" line="57"/>
+        <location filename="../E5Graphics/E5GraphicsView.py" line="59"/>
         <source>&lt;b&gt;Graphics View&lt;/b&gt;
 &lt;p&gt;This graphics view is used to show a diagram. 
 There are various actions available to manipulate the 
@@ -10251,7 +10251,7 @@
 </translation>
     </message>
     <message>
-        <location filename="../E5Graphics/E5GraphicsView.py" line="415"/>
+        <location filename="../E5Graphics/E5GraphicsView.py" line="417"/>
         <source>{0}, Page {1}</source>
         <translation>{0}, Página {1}</translation>
     </message>
@@ -10747,12 +10747,12 @@
         <translation>&lt;b&gt;Conetar a proxy &apos;{0}&apos; usando:&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5NetworkProxyFactory.py" line="227"/>
+        <location filename="../E5Network/E5NetworkProxyFactory.py" line="229"/>
         <source>Proxy Configuration Error</source>
         <translation>Erro na Configuração de Proxy</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5NetworkProxyFactory.py" line="227"/>
+        <location filename="../E5Network/E5NetworkProxyFactory.py" line="229"/>
         <source>Proxy usage was activated but no proxy host for protocol &apos;{0}&apos; configured.</source>
         <translation>O uso de proxy foi ativado mas não há um anfitrião configurado para o protocolo &apos;{0}&apos;.</translation>
     </message>
@@ -10760,32 +10760,32 @@
 <context>
     <name>E5PathPickerBase</name>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="161"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="162"/>
         <source>Enter Path Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="158"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="159"/>
         <source>Enter Path Names separated by &apos;;&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="499"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="500"/>
         <source>Choose a file to open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="501"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="502"/>
         <source>Choose files to open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="506"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="507"/>
         <source>Choose a file to save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="508"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="509"/>
         <source>Choose a directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10851,32 +10851,32 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="107"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="117"/>
         <source>Process canceled.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="121"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="134"/>
         <source>Process finished successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="123"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="136"/>
         <source>Process crashed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="125"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="138"/>
         <source>Process finished with exit code {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="179"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="192"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="179"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="192"/>
         <source>&lt;p&gt;The process &lt;b&gt;{0}&lt;/b&gt; could not be started.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10965,12 +10965,12 @@
         <translation type="unfinished">&amp;Ver...</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="80"/>
+        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="82"/>
         <source>(Unknown)</source>
         <translation type="unfinished">(desconhecido)</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="82"/>
+        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="84"/>
         <source>(Unknown common name)</source>
         <translation type="unfinished">(Nome comum desconhecido)</translation>
     </message>
@@ -11058,72 +11058,72 @@
         <translation>Gravou certificados que identificam estas autoridades certificadoras:</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="300"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="305"/>
         <source>(Unknown)</source>
         <translation>(desconhecido)</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="302"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="307"/>
         <source>(Unknown common name)</source>
         <translation>(Nome comum desconhecido)</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="150"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="152"/>
         <source>Delete Server Certificate</source>
         <translation>Apagar Certificado de Servidor</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="150"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="152"/>
         <source>&lt;p&gt;Shall the server certificate really be deleted?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;&lt;p&gt;If the server certificate is deleted, the normal security checks will be reinstantiated and the server has to present a valid certificate.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Quer realmente apagar o certificado do servidor?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;&lt;p&gt;Se apaga o certificado do servidor, as verificações normais de segurança serão reinstanciadas e o servidor terá que apresentar um certificado válido.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="489"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="495"/>
         <source>Import Certificate</source>
         <translation>Importar Certificado</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="399"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="405"/>
         <source>&lt;p&gt;The certificate &lt;b&gt;{0}&lt;/b&gt; already exists. Skipping.&lt;/p&gt;</source>
         <translation>&lt;p&gt;O certificado &lt;b&gt;{0}&lt;/b&gt; já existe. Ignorando.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="354"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="359"/>
         <source>Delete CA Certificate</source>
         <translation>Apagar Certificado CA</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="354"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="359"/>
         <source>&lt;p&gt;Shall the CA certificate really be deleted?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;&lt;p&gt;If the CA certificate is deleted, the browser will not trust any certificate issued by this CA.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Quer realmente apagar o certificado CA?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;&lt;p&gt;Se apaga o certificado CA, o navegador não confiará em nenhum certificado emitido por este CA.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="499"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="505"/>
         <source>Export Certificate</source>
         <translation>Exportar Certificado</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="440"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="446"/>
         <source>Certificate File (PEM) (*.pem);;Certificate File (DER) (*.der)</source>
         <translation>Ficheiro Certificado (PEM) (*.pem);;Ficheiro Certificado (DER) (*.der)</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="456"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="462"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="467"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="473"/>
         <source>&lt;p&gt;The certificate could not be written to file &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;O certificado não se pode escrever no ficheiro &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Erro: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="489"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="495"/>
         <source>Certificate Files (*.pem *.crt *.der *.cer *.ca);;All Files (*)</source>
         <translation>Ficheiros Certificado (*.pem *.crt *.cer *.ca);;Ficheiros Todos (*)</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="499"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="505"/>
         <source>&lt;p&gt;The certificate could not be read from file &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Não se pôde ler o certificado desde o ficheiro &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Erro: {1}&lt;/p&gt;</translation>
     </message>
@@ -11219,7 +11219,7 @@
         <translation>Impressão Digital MD5:</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesInfoWidget.py" line="151"/>
+        <location filename="../E5Network/E5SslCertificatesInfoWidget.py" line="156"/>
         <source>&lt;not part of the certificate&gt;</source>
         <translation>&lt;Não faz parte do certificado&gt;</translation>
     </message>
@@ -11227,42 +11227,42 @@
 <context>
     <name>E5SslErrorHandler</name>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="141"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="142"/>
         <source>SSL Errors</source>
         <translation>Erros SSL</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="141"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="142"/>
         <source>&lt;p&gt;SSL Errors for &lt;br /&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Do you want to ignore these errors?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Erros de SSL para &lt;br /&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Deseja ignorar estes erros?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="156"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="157"/>
         <source>Certificates</source>
         <translation>Certificados</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="156"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="157"/>
         <source>&lt;p&gt;Certificates:&lt;br/&gt;{0}&lt;br/&gt;Do you want to accept all these certificates?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Certificados: &lt;br/&gt;{0}&lt;br/&gt;Deseja aceitar estes certificados todos?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="210"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="212"/>
         <source>Name: {0}</source>
         <translation>Nome: {0}</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="220"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="223"/>
         <source>&lt;br/&gt;Organization: {0}</source>
         <translation>&lt;br/&gt;Organização: {0}</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="230"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="234"/>
         <source>&lt;br/&gt;Issuer: {0}</source>
         <translation>&lt;br/&gt;Remitente: {0}</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="239"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="244"/>
         <source>&lt;br/&gt;Not valid before: {0}&lt;br/&gt;Valid Until: {1}</source>
         <translation>&lt;br/&gt;Inválido antes de: {0}&lt;br/&gt;Válido Até: {1}</translation>
     </message>
@@ -11270,55 +11270,55 @@
 <context>
     <name>E5SslInfoWidget</name>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="55"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="56"/>
         <source>Identity</source>
         <translation>Identidade</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="65"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="66"/>
         <source>Warning: this site is NOT carrying a certificate.</source>
         <translation>Aviso: este sítio NÃO tem certificado.</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="73"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="74"/>
         <source>The certificate for this site is valid and has been verified by:
 {0}</source>
         <translation>O certificado deste sítio é válido e confirmado por:
 {0}</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="89"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="90"/>
         <source>Certificate Information</source>
         <translation>Informação do Certificado</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="104"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="105"/>
         <source>Encryption</source>
         <translation>Criptografia</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="115"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="116"/>
         <source>Your connection to &quot;{0}&quot; is NOT encrypted.
 </source>
         <translation>A conexão a &quot;{0}&quot; NÃO está encriptada.</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="124"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="125"/>
         <source>Your connection to &quot;{0}&quot; is encrypted.</source>
         <translation>A conexão a &quot;{0}&quot; está encriptada.</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="143"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="144"/>
         <source>unknown</source>
         <translation>desconhecido</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="166"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="167"/>
         <source>It uses protocol: {0}</source>
         <translation>Utiliza protocolo: {0}</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="173"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="174"/>
         <source>It is encrypted using {0} at {1} bits, with {2} for message authentication and {3} as key exchange mechanism.
 
 </source>
@@ -11327,7 +11327,7 @@
 </translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="80"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="81"/>
         <source>The certificate for this site is NOT valid.</source>
         <translation>O certificado deste sítio NÃO é válido.</translation>
     </message>
@@ -11370,12 +11370,12 @@
         <translation>Retirar &amp;Tudo</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5StringListEditWidget.py" line="99"/>
+        <location filename="../E5Gui/E5StringListEditWidget.py" line="100"/>
         <source>Add Entry</source>
         <translation>Adicionar Entrada</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5StringListEditWidget.py" line="99"/>
+        <location filename="../E5Gui/E5StringListEditWidget.py" line="100"/>
         <source>Enter the entry to add to the list:</source>
         <translation>Introduzir entrada a adicionar à lista:</translation>
     </message>
@@ -11393,32 +11393,32 @@
 <context>
     <name>E5TextEditSearchWidget</name>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="81"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="83"/>
         <source>Find:</source>
         <translation>Encontrar:</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="104"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="107"/>
         <source>Match case</source>
         <translation>Coincidir maiúsculas/minúsculas</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="109"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="112"/>
         <source>Whole word</source>
         <translation>Palavra completa</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="119"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="122"/>
         <source>Press to find the previous occurrence</source>
         <translation>Pressionar para encontrar a ocurrência anterior</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="126"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="129"/>
         <source>Press to find the next occurrence</source>
         <translation>Pressionar para encontrar a ocurrência seguinte</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="341"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="347"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation>&apos;{0}&apos; não foi encontrada.</translation>
     </message>
@@ -11534,42 +11534,42 @@
         <translation>Pressionar para baixar a ação selecionada.</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="84"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="85"/>
         <source>--Separator--</source>
         <translation>--Separador--</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="145"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="151"/>
         <source>New Toolbar</source>
         <translation>Nova Barra de Ferramentas</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="137"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="143"/>
         <source>Toolbar Name:</source>
         <translation>Nome da Barra de Ferramentas:</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="208"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="214"/>
         <source>A toolbar with the name &lt;b&gt;{0}&lt;/b&gt; already exists.</source>
         <translation>Já existe uma barra de ferramentas &lt;b&gt;{0}&lt;/b&gt;.</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="170"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="176"/>
         <source>Remove Toolbar</source>
         <translation>Retirar Barra de Ferramentas</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="170"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="176"/>
         <source>Should the toolbar &lt;b&gt;{0}&lt;/b&gt; really be removed?</source>
         <translation>A barra de ferramentas &lt;b&gt;{0}&lt;/b&gt; deve realmente ser retirada?</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="208"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="214"/>
         <source>Rename Toolbar</source>
         <translation>Renomear Barra de Ferramentas</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="197"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="203"/>
         <source>New Toolbar Name:</source>
         <translation>Nome da Nova Barra de Ferramentas:</translation>
     </message>
@@ -11577,7 +11577,7 @@
 <context>
     <name>E5XmlRpcClient</name>
     <message>
-        <location filename="../E5Network/E5XmlRpcClient.py" line="108"/>
+        <location filename="../E5Network/E5XmlRpcClient.py" line="111"/>
         <source>SSL Error</source>
         <translation>Erro SSL</translation>
     </message>
@@ -11673,7 +11673,7 @@
         <translation>Quant. a Ignorar:</translation>
     </message>
     <message>
-        <location filename="../Debugger/EditBreakpointDialog.py" line="86"/>
+        <location filename="../Debugger/EditBreakpointDialog.py" line="87"/>
         <source>Add Breakpoint</source>
         <translation>Adicionar Ponto de Interrupção</translation>
     </message>
@@ -11754,817 +11754,817 @@
 <context>
     <name>Editor</name>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3146"/>
+        <location filename="../QScintilla/Editor.py" line="3153"/>
         <source>Open File</source>
         <translation>Abrir Ficheiro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="389"/>
+        <location filename="../QScintilla/Editor.py" line="391"/>
         <source>&lt;p&gt;The size of the file &lt;b&gt;{0}&lt;/b&gt; is &lt;b&gt;{1} KB&lt;/b&gt;. Do you really want to load it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;O tamanho do ficheiro &lt;b&gt;{0}&lt;/b&gt; é &lt;b&gt;{1} KB&lt;/b&gt;. Tem a certeza de que  o quer carregar?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="478"/>
+        <location filename="../QScintilla/Editor.py" line="480"/>
         <source>&lt;b&gt;A Source Editor Window&lt;/b&gt;&lt;p&gt;This window is used to display and edit a source file.  You can open as many of these as you like. The name of the file is displayed in the window&apos;s titlebar.&lt;/p&gt;&lt;p&gt;In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.&lt;/p&gt;&lt;p&gt;In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.&lt;/p&gt;&lt;p&gt;These actions can be reversed via the context menu.&lt;/p&gt;&lt;p&gt;Ctrl clicking on a syntax error marker shows some info about this error.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="795"/>
+        <location filename="../QScintilla/Editor.py" line="797"/>
         <source>Undo</source>
         <translation>Desfazer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="798"/>
+        <location filename="../QScintilla/Editor.py" line="800"/>
         <source>Redo</source>
         <translation>Refazer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="801"/>
+        <location filename="../QScintilla/Editor.py" line="803"/>
         <source>Revert to last saved state</source>
         <translation>Voltar ao último estado guardado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="805"/>
+        <location filename="../QScintilla/Editor.py" line="807"/>
         <source>Cut</source>
         <translation>Cortar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="808"/>
+        <location filename="../QScintilla/Editor.py" line="810"/>
         <source>Copy</source>
         <translation>Copiar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="811"/>
+        <location filename="../QScintilla/Editor.py" line="813"/>
         <source>Paste</source>
         <translation>Colar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="819"/>
+        <location filename="../QScintilla/Editor.py" line="821"/>
         <source>Indent</source>
         <translation>Indentar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="822"/>
+        <location filename="../QScintilla/Editor.py" line="824"/>
         <source>Unindent</source>
         <translation>Tirar Indentação</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="825"/>
+        <location filename="../QScintilla/Editor.py" line="827"/>
         <source>Comment</source>
         <translation>Comentar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="828"/>
+        <location filename="../QScintilla/Editor.py" line="830"/>
         <source>Uncomment</source>
         <translation>Descomentar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="831"/>
+        <location filename="../QScintilla/Editor.py" line="833"/>
         <source>Stream Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="834"/>
+        <location filename="../QScintilla/Editor.py" line="836"/>
         <source>Box Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="842"/>
-        <source>Select to brace</source>
-        <translation>Selecionar até parentesis</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="844"/>
+        <source>Select to brace</source>
+        <translation>Selecionar até parentesis</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="846"/>
         <source>Select all</source>
         <translation>Selecionar tudo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="845"/>
+        <location filename="../QScintilla/Editor.py" line="847"/>
         <source>Deselect all</source>
         <translation>Desselecionar tudo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7935"/>
+        <location filename="../QScintilla/Editor.py" line="7978"/>
         <source>Check spelling...</source>
         <translation>Verificação ortográfica...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="853"/>
+        <location filename="../QScintilla/Editor.py" line="855"/>
         <source>Check spelling of selection...</source>
         <translation>Verificação ortográfica da seleção...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="857"/>
+        <location filename="../QScintilla/Editor.py" line="859"/>
         <source>Remove from dictionary</source>
         <translation>Retirar do dicionário</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="863"/>
+        <location filename="../QScintilla/Editor.py" line="865"/>
         <source>Shorten empty lines</source>
         <translation>Encolher linhas vazias</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="870"/>
+        <location filename="../QScintilla/Editor.py" line="872"/>
         <source>Use Monospaced Font</source>
         <translation>Usar Tipo de Letra de Tamanho Único</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="875"/>
+        <location filename="../QScintilla/Editor.py" line="877"/>
         <source>Autosave enabled</source>
         <translation>Ativado autogravar </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="879"/>
+        <location filename="../QScintilla/Editor.py" line="881"/>
         <source>Typing aids enabled</source>
         <translation>Habilitada a ajuda à escritura</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="918"/>
+        <location filename="../QScintilla/Editor.py" line="920"/>
         <source>Close</source>
         <translation>Fechar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="924"/>
+        <location filename="../QScintilla/Editor.py" line="926"/>
         <source>Save</source>
         <translation>Gravar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="927"/>
+        <location filename="../QScintilla/Editor.py" line="929"/>
         <source>Save As...</source>
         <translation>Gravar Como...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="940"/>
+        <location filename="../QScintilla/Editor.py" line="942"/>
         <source>Print Preview</source>
         <translation>Antevisão da Impressão</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="943"/>
+        <location filename="../QScintilla/Editor.py" line="945"/>
         <source>Print</source>
         <translation>Imprimir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="972"/>
-        <source>Complete from Document</source>
-        <translation type="unfinished">desde Documento</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="974"/>
-        <source>Complete from APIs</source>
-        <translation type="unfinished">desde APIs</translation>
+        <source>Complete from Document</source>
+        <translation type="unfinished">desde Documento</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="976"/>
+        <source>Complete from APIs</source>
+        <translation type="unfinished">desde APIs</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="978"/>
         <source>Complete from Document and APIs</source>
         <translation type="unfinished">desde Documento e APIs</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="894"/>
+        <location filename="../QScintilla/Editor.py" line="896"/>
         <source>Calltip</source>
         <translation>Dica</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="990"/>
+        <location filename="../QScintilla/Editor.py" line="992"/>
         <source>Check</source>
         <translation>Verificar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1010"/>
-        <source>Show</source>
-        <translation>Mostrar</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1012"/>
+        <source>Show</source>
+        <translation>Mostrar</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1014"/>
         <source>Code metrics...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1013"/>
-        <source>Code coverage...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1015"/>
+        <source>Code coverage...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1017"/>
         <source>Show code coverage annotations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1018"/>
+        <location filename="../QScintilla/Editor.py" line="1020"/>
         <source>Hide code coverage annotations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1021"/>
+        <location filename="../QScintilla/Editor.py" line="1023"/>
         <source>Profile data...</source>
         <translation>Dados de Perfil...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1034"/>
-        <source>Diagrams</source>
-        <translation>Diagramas</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1036"/>
-        <source>Class Diagram...</source>
-        <translation>Diagrama de Classes...</translation>
+        <source>Diagrams</source>
+        <translation>Diagramas</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1038"/>
-        <source>Package Diagram...</source>
-        <translation>Diagrama do Pacote...</translation>
+        <source>Class Diagram...</source>
+        <translation>Diagrama de Classes...</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1040"/>
-        <source>Imports Diagram...</source>
-        <translation>Diagrama de Imports...</translation>
+        <source>Package Diagram...</source>
+        <translation>Diagrama do Pacote...</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1042"/>
+        <source>Imports Diagram...</source>
+        <translation>Diagrama de Imports...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1044"/>
         <source>Application Diagram...</source>
         <translation>Diagrama da Aplicação...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1060"/>
+        <location filename="../QScintilla/Editor.py" line="1062"/>
         <source>Languages</source>
         <translation>Linguagens</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1193"/>
+        <location filename="../QScintilla/Editor.py" line="1195"/>
         <source>No Language</source>
         <translation>Nenhuma Linguagem</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1089"/>
+        <location filename="../QScintilla/Editor.py" line="1091"/>
         <source>Guessed</source>
         <translation>Adivinhado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
+        <location filename="../QScintilla/Editor.py" line="1431"/>
         <source>Alternatives</source>
         <translation>Alternativas</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1109"/>
+        <location filename="../QScintilla/Editor.py" line="1111"/>
         <source>Encodings</source>
         <translation>Codificações</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1150"/>
+        <location filename="../QScintilla/Editor.py" line="1152"/>
         <source>End-of-Line Type</source>
         <translation>Tipo do Fim-de-Linha</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1154"/>
+        <location filename="../QScintilla/Editor.py" line="1156"/>
         <source>Unix</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1161"/>
+        <location filename="../QScintilla/Editor.py" line="1163"/>
         <source>Windows</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1168"/>
+        <location filename="../QScintilla/Editor.py" line="1170"/>
         <source>Macintosh</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1218"/>
+        <location filename="../QScintilla/Editor.py" line="1220"/>
         <source>Export as</source>
         <translation>Exportar como</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1240"/>
-        <source>Toggle bookmark</source>
-        <translation>Alternar marcadores</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1242"/>
-        <source>Next bookmark</source>
-        <translation>Marcador seguinte</translation>
+        <source>Toggle bookmark</source>
+        <translation>Alternar marcadores</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1244"/>
-        <source>Previous bookmark</source>
-        <translation>Marcador anterior</translation>
+        <source>Next bookmark</source>
+        <translation>Marcador seguinte</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1246"/>
+        <source>Previous bookmark</source>
+        <translation>Marcador anterior</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1248"/>
         <source>Clear all bookmarks</source>
         <translation>Limpar os marcadores todos</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1255"/>
-        <source>Toggle breakpoint</source>
-        <translation>Alternar pontos de interrupção</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1257"/>
+        <source>Toggle breakpoint</source>
+        <translation>Alternar pontos de interrupção</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1259"/>
         <source>Toggle temporary breakpoint</source>
         <translation>Alternar pontos de interrupção temporais</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1260"/>
+        <location filename="../QScintilla/Editor.py" line="1262"/>
         <source>Edit breakpoint...</source>
         <translation>Editar ponto de interrupção...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5656"/>
+        <location filename="../QScintilla/Editor.py" line="5696"/>
         <source>Enable breakpoint</source>
         <translation>Habilitar pontos de interrupção</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1265"/>
-        <source>Next breakpoint</source>
-        <translation>Ponto de interrupção seguinte</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1267"/>
+        <source>Next breakpoint</source>
+        <translation>Ponto de interrupção seguinte</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1269"/>
         <source>Previous breakpoint</source>
         <translation>Ponto de interrupção anterior</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1272"/>
+        <location filename="../QScintilla/Editor.py" line="1274"/>
         <source>Clear all breakpoints</source>
         <translation>Apagar todos os pontos de interrupção</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1320"/>
+        <location filename="../QScintilla/Editor.py" line="1322"/>
         <source>Goto syntax error</source>
         <translation>Ir ao erro de sintaxe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1324"/>
+        <location filename="../QScintilla/Editor.py" line="1326"/>
         <source>Show syntax error message</source>
         <translation>Mostrar a mensagem de erro de sintaxe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1329"/>
+        <location filename="../QScintilla/Editor.py" line="1331"/>
         <source>Clear syntax error</source>
         <translation>Limpar o erro de sintaxe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1334"/>
+        <location filename="../QScintilla/Editor.py" line="1336"/>
         <source>Next warning</source>
         <translation>Aviso seguinte</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1338"/>
+        <location filename="../QScintilla/Editor.py" line="1340"/>
         <source>Previous warning</source>
         <translation>Aviso anterior</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1342"/>
+        <location filename="../QScintilla/Editor.py" line="1344"/>
         <source>Show warning message</source>
         <translation>Mostrar mensagem de aviso</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1346"/>
+        <location filename="../QScintilla/Editor.py" line="1348"/>
         <source>Clear warnings</source>
         <translation>Limpar avisos</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1351"/>
+        <location filename="../QScintilla/Editor.py" line="1353"/>
         <source>Next uncovered line</source>
         <translation>Linha seguinte sem cobrir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1355"/>
+        <location filename="../QScintilla/Editor.py" line="1357"/>
         <source>Previous uncovered line</source>
         <translation>Linha anterior sem cobrir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1360"/>
+        <location filename="../QScintilla/Editor.py" line="1362"/>
         <source>Next task</source>
         <translation>Tarefa seguinte</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1364"/>
+        <location filename="../QScintilla/Editor.py" line="1366"/>
         <source>Previous task</source>
         <translation>Tarefa anterior</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1414"/>
+        <location filename="../QScintilla/Editor.py" line="1416"/>
         <source>Export source</source>
         <translation>Exportar fonte</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1406"/>
+        <location filename="../QScintilla/Editor.py" line="1408"/>
         <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Não está disponível um exportador para formato &lt;b&gt;{0}&lt;/b&gt;. A cancelar...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1414"/>
+        <location filename="../QScintilla/Editor.py" line="1416"/>
         <source>No export format given. Aborting...</source>
         <translation>Não foi dado o formato para exportar. A cancelar...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1425"/>
+        <location filename="../QScintilla/Editor.py" line="1427"/>
         <source>Alternatives ({0})</source>
         <translation>Alternativas ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1445"/>
+        <location filename="../QScintilla/Editor.py" line="1447"/>
         <source>Pygments Lexer</source>
         <translation>Analizador Léxico Pygments</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1445"/>
+        <location filename="../QScintilla/Editor.py" line="1447"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>Selecionar o analizador léxico Pygments a aplicar.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1989"/>
+        <location filename="../QScintilla/Editor.py" line="1991"/>
         <source>Modification of Read Only file</source>
         <translation>Modificação do ficheiro de Apenas Leitura</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1989"/>
+        <location filename="../QScintilla/Editor.py" line="1991"/>
         <source>You are attempting to change a read only file. Please save to a different file first.</source>
         <translation>Tenta alterar um ficheiro de Apenas Leitura. Por favor guarde-o primeiro num ficheiro diferente. </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2711"/>
+        <location filename="../QScintilla/Editor.py" line="2715"/>
         <source>Printing...</source>
         <translation>A imprimir...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2728"/>
+        <location filename="../QScintilla/Editor.py" line="2735"/>
         <source>Printing completed</source>
         <translation>Impressão completa</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2730"/>
+        <location filename="../QScintilla/Editor.py" line="2737"/>
         <source>Error while printing</source>
         <translation>Erro durante a impressão</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2733"/>
+        <location filename="../QScintilla/Editor.py" line="2740"/>
         <source>Printing aborted</source>
         <translation>Impressão cancelada</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3088"/>
+        <location filename="../QScintilla/Editor.py" line="3095"/>
         <source>File Modified</source>
         <translation>Ficheiro Modificado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3088"/>
+        <location filename="../QScintilla/Editor.py" line="3095"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; tem alterações por gravar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3146"/>
+        <location filename="../QScintilla/Editor.py" line="3153"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Não se pôde abrir o ficheiro &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt; Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3333"/>
+        <location filename="../QScintilla/Editor.py" line="3340"/>
         <source>Save File</source>
         <translation>Gravar Ficheiro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3270"/>
+        <location filename="../QScintilla/Editor.py" line="3277"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; não se pôde gravar. &lt;br/&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3333"/>
+        <location filename="../QScintilla/Editor.py" line="3340"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4811"/>
+        <location filename="../QScintilla/Editor.py" line="4838"/>
         <source>Autocompletion</source>
         <translation>Autocompletar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4811"/>
+        <location filename="../QScintilla/Editor.py" line="4838"/>
         <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="5659"/>
+        <location filename="../QScintilla/Editor.py" line="5699"/>
         <source>Disable breakpoint</source>
         <translation>Inabilitar ponto de interrupção</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6034"/>
+        <location filename="../QScintilla/Editor.py" line="6074"/>
         <source>Code Coverage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6034"/>
+        <location filename="../QScintilla/Editor.py" line="6074"/>
         <source>Please select a coverage file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6097"/>
+        <location filename="../QScintilla/Editor.py" line="6137"/>
         <source>Show Code Coverage Annotations</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6090"/>
+        <location filename="../QScintilla/Editor.py" line="6130"/>
         <source>All lines have been covered.</source>
         <translation>Foram cobertas as linhas todas.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6097"/>
+        <location filename="../QScintilla/Editor.py" line="6137"/>
         <source>There is no coverage file available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6214"/>
+        <location filename="../QScintilla/Editor.py" line="6254"/>
         <source>Profile Data</source>
         <translation>Dados de Perfil</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6214"/>
+        <location filename="../QScintilla/Editor.py" line="6254"/>
         <source>Please select a profile file</source>
         <translation>Escolha um ficheiro de perfil por favor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6376"/>
+        <location filename="../QScintilla/Editor.py" line="6416"/>
         <source>Syntax Error</source>
         <translation>Erro de Sintaxe</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6376"/>
+        <location filename="../QScintilla/Editor.py" line="6416"/>
         <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="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Macro Name</source>
         <translation>Nome de Macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Select a macro name:</source>
         <translation>Selecionar um nome de macro:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6793"/>
+        <location filename="../QScintilla/Editor.py" line="6833"/>
         <source>Load macro file</source>
         <translation>Carregar ficheiro macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6835"/>
+        <location filename="../QScintilla/Editor.py" line="6875"/>
         <source>Macro files (*.macro)</source>
         <translation>Ficheiros Macro (*.macro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6815"/>
+        <location filename="../QScintilla/Editor.py" line="6855"/>
         <source>Error loading macro</source>
         <translation>Erro ao carregar macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6806"/>
+        <location filename="../QScintilla/Editor.py" line="6846"/>
         <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="6815"/>
+        <location filename="../QScintilla/Editor.py" line="6855"/>
         <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="6835"/>
+        <location filename="../QScintilla/Editor.py" line="6875"/>
         <source>Save macro file</source>
         <translation>Gravar ficheiro macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6852"/>
+        <location filename="../QScintilla/Editor.py" line="6892"/>
         <source>Save macro</source>
         <translation>Gravar macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6852"/>
+        <location filename="../QScintilla/Editor.py" line="6892"/>
         <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="6867"/>
+        <location filename="../QScintilla/Editor.py" line="6907"/>
         <source>Error saving macro</source>
         <translation>Erro ao gravar macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6867"/>
+        <location filename="../QScintilla/Editor.py" line="6907"/>
         <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="6880"/>
+        <location filename="../QScintilla/Editor.py" line="6920"/>
         <source>Start Macro Recording</source>
         <translation>Iniciar Registo de Macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6880"/>
+        <location filename="../QScintilla/Editor.py" line="6920"/>
         <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="6906"/>
+        <location filename="../QScintilla/Editor.py" line="6946"/>
         <source>Macro Recording</source>
         <translation>Gravação de Macro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6906"/>
+        <location filename="../QScintilla/Editor.py" line="6946"/>
         <source>Enter name of the macro:</source>
         <translation>Introduza o nome de macro:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7076"/>
+        <location filename="../QScintilla/Editor.py" line="7116"/>
         <source>File changed</source>
         <translation>Ficheiro alterado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7267"/>
+        <location filename="../QScintilla/Editor.py" line="7310"/>
         <source>{0} (ro)</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7408"/>
+        <location filename="../QScintilla/Editor.py" line="7451"/>
         <source>Drop Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7408"/>
+        <location filename="../QScintilla/Editor.py" line="7451"/>
         <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="7429"/>
+        <location filename="../QScintilla/Editor.py" line="7472"/>
         <source>Resources</source>
         <translation>Recursos</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7431"/>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
         <source>Add file...</source>
         <translation>Adicionar Ficheiro...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7433"/>
+        <location filename="../QScintilla/Editor.py" line="7476"/>
         <source>Add files...</source>
         <translation>Adicionar Ficheiros...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7435"/>
+        <location filename="../QScintilla/Editor.py" line="7478"/>
         <source>Add aliased file...</source>
         <translation>Adicionar ficheiro com pseudónimo...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7438"/>
+        <location filename="../QScintilla/Editor.py" line="7481"/>
         <source>Add localized resource...</source>
         <translation>Adicionar recursos localizado...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7442"/>
+        <location filename="../QScintilla/Editor.py" line="7485"/>
         <source>Add resource frame</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7461"/>
-        <source>Add file resource</source>
-        <translation>Adicionar recurso de ficheiro</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7477"/>
-        <source>Add file resources</source>
-        <translation>Adicionar recursos de ficheiro</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="7504"/>
+        <source>Add file resource</source>
+        <translation>Adicionar recurso de ficheiro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7520"/>
+        <source>Add file resources</source>
+        <translation>Adicionar recursos de ficheiro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7547"/>
         <source>Add aliased file resource</source>
         <translation>Adicionar recurso de ficheiro com pseudónimo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7504"/>
+        <location filename="../QScintilla/Editor.py" line="7547"/>
         <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="7570"/>
+        <location filename="../QScintilla/Editor.py" line="7613"/>
         <source>Package Diagram</source>
         <translation>Diagrama do Pacote</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7570"/>
+        <location filename="../QScintilla/Editor.py" line="7613"/>
         <source>Include class attributes?</source>
         <translation>Incluir atributos de classes?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7592"/>
+        <location filename="../QScintilla/Editor.py" line="7635"/>
         <source>Imports Diagram</source>
         <translation>Diagrama de Imports</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7592"/>
+        <location filename="../QScintilla/Editor.py" line="7635"/>
         <source>Include imports from external modules?</source>
         <translation>Incluir imports de módulos externos?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7606"/>
+        <location filename="../QScintilla/Editor.py" line="7649"/>
         <source>Application Diagram</source>
         <translation>Diagrama da Aplicação</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7606"/>
+        <location filename="../QScintilla/Editor.py" line="7649"/>
         <source>Include module names?</source>
         <translation>Incluir nome dos módulos?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7938"/>
+        <location filename="../QScintilla/Editor.py" line="7981"/>
         <source>Add to dictionary</source>
         <translation>Adicionar dicionário</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7940"/>
+        <location filename="../QScintilla/Editor.py" line="7983"/>
         <source>Ignore All</source>
         <translation>Ignorar Tudo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6653"/>
+        <location filename="../QScintilla/Editor.py" line="6693"/>
         <source>Warning: {0}</source>
         <translation>Aviso: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6660"/>
+        <location filename="../QScintilla/Editor.py" line="6700"/>
         <source>Error: {0}</source>
         <translation>Erro: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7072"/>
+        <location filename="../QScintilla/Editor.py" line="7112"/>
         <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="5222"/>
+        <location filename="../QScintilla/Editor.py" line="5262"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="936"/>
+        <location filename="../QScintilla/Editor.py" line="938"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation>Abrir ficheiro de &apos;rejeição&apos;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1046"/>
+        <location filename="../QScintilla/Editor.py" line="1048"/>
         <source>Load Diagram...</source>
         <translation>Carregar Diagrama...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1369"/>
+        <location filename="../QScintilla/Editor.py" line="1371"/>
         <source>Next change</source>
         <translation>Alteração seguinte</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1373"/>
+        <location filename="../QScintilla/Editor.py" line="1375"/>
         <source>Previous change</source>
         <translation>Alteração anterior</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8356"/>
+        <location filename="../QScintilla/Editor.py" line="8399"/>
         <source>Sort Lines</source>
         <translation>Ordenar Linhas</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8356"/>
+        <location filename="../QScintilla/Editor.py" line="8399"/>
         <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="6588"/>
+        <location filename="../QScintilla/Editor.py" line="6628"/>
         <source>Warning</source>
         <translation>Aviso</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6588"/>
+        <location filename="../QScintilla/Editor.py" line="6628"/>
         <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="6650"/>
+        <location filename="../QScintilla/Editor.py" line="6690"/>
         <source>Style: {0}</source>
         <translation>Estilo: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="910"/>
+        <location filename="../QScintilla/Editor.py" line="912"/>
         <source>New Document View</source>
         <translation>Vista de Documento Novo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="913"/>
+        <location filename="../QScintilla/Editor.py" line="915"/>
         <source>New Document View (with new split)</source>
         <translation>Vista de Documento Novo (com divisão nova)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1000"/>
+        <location filename="../QScintilla/Editor.py" line="1002"/>
         <source>Tools</source>
         <translation>Ferramentas</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1131"/>
+        <location filename="../QScintilla/Editor.py" line="1133"/>
         <source>Re-Open With Encoding</source>
         <translation>Reabrir Com Codificação</translation>
     </message>
@@ -12574,117 +12574,117 @@
         <translation type="obsolete">&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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="886"/>
+        <location filename="../QScintilla/Editor.py" line="888"/>
         <source>Automatic Completion enabled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="966"/>
+        <location filename="../QScintilla/Editor.py" line="968"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4943"/>
+        <location filename="../QScintilla/Editor.py" line="4980"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4943"/>
+        <location filename="../QScintilla/Editor.py" line="4980"/>
         <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="5222"/>
+        <location filename="../QScintilla/Editor.py" line="5262"/>
         <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="8445"/>
+        <location filename="../QScintilla/Editor.py" line="8488"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8445"/>
+        <location filename="../QScintilla/Editor.py" line="8488"/>
         <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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="930"/>
+        <location filename="../QScintilla/Editor.py" line="932"/>
         <source>Save Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="969"/>
+        <location filename="../QScintilla/Editor.py" line="971"/>
         <source>Clear Completions Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="896"/>
+        <location filename="../QScintilla/Editor.py" line="898"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1377"/>
+        <location filename="../QScintilla/Editor.py" line="1379"/>
         <source>Clear changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="815"/>
+        <location filename="../QScintilla/Editor.py" line="817"/>
         <source>Execute Selection In Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8566"/>
+        <location filename="../QScintilla/Editor.py" line="8609"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8566"/>
+        <location filename="../QScintilla/Editor.py" line="8609"/>
         <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/Editor.py" line="1281"/>
+        <location filename="../QScintilla/Editor.py" line="1283"/>
         <source>Toggle all folds</source>
         <translation type="unfinished">Alternar as dobras todas</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1286"/>
+        <location filename="../QScintilla/Editor.py" line="1288"/>
         <source>Toggle all folds (including children)</source>
         <translation type="unfinished">Alternar as dobras todas (incluindo filhos)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1291"/>
+        <location filename="../QScintilla/Editor.py" line="1293"/>
         <source>Toggle current fold</source>
         <translation type="unfinished">Alternar a dobra atual</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1297"/>
+        <location filename="../QScintilla/Editor.py" line="1299"/>
         <source>Expand (including children)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1302"/>
+        <location filename="../QScintilla/Editor.py" line="1304"/>
         <source>Collapse (including children)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1308"/>
+        <location filename="../QScintilla/Editor.py" line="1310"/>
         <source>Clear all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1189"/>
+        <location filename="../QScintilla/Editor.py" line="1191"/>
         <source>Spell Check Languages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7106"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8760"/>
+        <location filename="../QScintilla/Editor.py" line="8803"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
@@ -13076,82 +13076,82 @@
 <context>
     <name>EditorButtonsWidget</name>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="174"/>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="176"/>
         <source>Bold</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="176"/>
-        <source>Italic</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="178"/>
+        <source>Italic</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="180"/>
         <source>Strike Through</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="181"/>
-        <source>Header 1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="183"/>
-        <source>Header 2</source>
+        <source>Header 1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="185"/>
-        <source>Header 3</source>
+        <source>Header 2</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="187"/>
+        <source>Header 3</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="189"/>
         <source>Header</source>
         <translation type="unfinished">Cabeçalho</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="192"/>
-        <source>Inline Code</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="194"/>
-        <source>Code Block</source>
+        <source>Inline Code</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="196"/>
+        <source>Code Block</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="198"/>
         <source>Quote</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="199"/>
-        <source>Add Hyperlink</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="201"/>
-        <source>Add Horizontal Line</source>
+        <source>Add Hyperlink</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="203"/>
+        <source>Add Horizontal Line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="205"/>
         <source>Add Image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="206"/>
-        <source>Add Bulleted List</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="208"/>
+        <source>Add Bulleted List</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="210"/>
         <source>Add Numbered List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="274"/>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="276"/>
         <source>Level {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -14107,12 +14107,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="243"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="244"/>
         <source>Tab and Indent Override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="243"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="244"/>
         <source>Shall the selected entries really be removed?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -14313,7 +14313,7 @@
         <translation>Selecionar preenchimento até ao fim de linha.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="426"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="427"/>
         <source>Fill to end of line</source>
         <translation>Preencher até fim de linha</translation>
     </message>
@@ -14423,22 +14423,22 @@
         <translation>Apenas Tamanho</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="424"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="425"/>
         <source>Enabled</source>
         <translation>Habilitado</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="425"/>
-        <source>Disabled</source>
-        <translation>Inabilitado</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="426"/>
+        <source>Disabled</source>
+        <translation>Inabilitado</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="427"/>
         <source>Select fill to end of line for all styles</source>
         <translation>Selecionar encher até ao fim de linha para todos os estilos</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="591"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="592"/>
         <source>Export Highlighting Styles</source>
         <translation>Exportar Estilos de Realce</translation>
     </message>
@@ -14453,7 +14453,7 @@
         <translation type="obsolete">&lt;p&gt;Os estilos de realce não se poderam exportar ao ficheiro &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="642"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="643"/>
         <source>Import Highlighting Styles</source>
         <translation>Importar Estilos de Realce</translation>
     </message>
@@ -14508,27 +14508,27 @@
         <translation type="obsolete">Ficheiro estilos de realce (*.e4h) {6h?}</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="783"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="784"/>
         <source>Delete Sub-Style</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="783"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="784"/>
         <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="823"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="824"/>
         <source>{0} - Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="851"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="852"/>
         <source>Reset Sub-Styles to Default</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="851"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="852"/>
         <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>
@@ -14578,27 +14578,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="548"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="549"/>
         <source>Highlighting Styles File (*.ehj);;XML Highlighting Styles File (*.e6h)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="567"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="568"/>
         <source>&lt;p&gt;The highlighting styles file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="591"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="592"/>
         <source>&lt;p&gt;The highlighting styles 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="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="610"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="611"/>
         <source>Highlighting Styles File (*.ehj);;XML Highlighting Styles File (*.e6h *.e4h)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="642"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="643"/>
         <source>&lt;p&gt;The highlighting styles 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>
@@ -14809,47 +14809,47 @@
 <context>
     <name>EditorOutlineView</name>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="268"/>
+        <location filename="../QScintilla/EditorOutline.py" line="269"/>
         <source>Goto</source>
         <translation type="unfinished">Ir a</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="310"/>
+        <location filename="../QScintilla/EditorOutline.py" line="311"/>
         <source>Refresh</source>
         <translation type="unfinished">Atualizar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="314"/>
+        <location filename="../QScintilla/EditorOutline.py" line="315"/>
         <source>Copy Path to Clipboard</source>
         <translation type="unfinished">Copiar Rota à Área de Transferência</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="319"/>
+        <location filename="../QScintilla/EditorOutline.py" line="320"/>
         <source>Expand All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="323"/>
+        <location filename="../QScintilla/EditorOutline.py" line="324"/>
         <source>Collapse All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="328"/>
+        <location filename="../QScintilla/EditorOutline.py" line="329"/>
         <source>Increment Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="332"/>
+        <location filename="../QScintilla/EditorOutline.py" line="333"/>
         <source>Decrement Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="390"/>
+        <location filename="../QScintilla/EditorOutline.py" line="391"/>
         <source>Line {0}</source>
         <translation type="unfinished">Linha {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="336"/>
+        <location filename="../QScintilla/EditorOutline.py" line="337"/>
         <source>Set Default Width</source>
         <translation type="unfinished"></translation>
     </message>
@@ -16407,32 +16407,32 @@
         <translation>Selecionar como as linhas enroladas são apresentadas</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="59"/>
         <source>Word Boundary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="60"/>
-        <source>Character Boundary</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="62"/>
+        <source>Character Boundary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="65"/>
         <source>No Indicator</source>
         <translation>Sem Indicador</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="64"/>
-        <source>Indicator by Text</source>
-        <translation>Indicador por Texto</translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="66"/>
-        <source>Indicator by Margin</source>
-        <translation>Indicador por Margem</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="68"/>
+        <source>Indicator by Text</source>
+        <translation>Indicador por Texto</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="71"/>
+        <source>Indicator by Margin</source>
+        <translation>Indicador por Margem</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="74"/>
         <source>Indicator in Line Number Margin</source>
         <translation>Indicador na Margem dos Números de linha</translation>
     </message>
@@ -16688,22 +16688,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="72"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="78"/>
         <source>Fixed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="74"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="80"/>
         <source>Aligned</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="76"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="82"/>
         <source>Aligned plus One</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="79"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="85"/>
         <source>Aligned plus Two</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17382,37 +17382,37 @@
         <translation>Enviar</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="133"/>
+        <location filename="../UI/EmailDialog.py" line="134"/>
         <source>Close dialog</source>
         <translation>Caixa de diálogo de fecho</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="133"/>
+        <location filename="../UI/EmailDialog.py" line="134"/>
         <source>Do you really want to close the dialog?</source>
         <translation>Tem a certeza de que quer fechar a caixa de diálogo?</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="321"/>
+        <location filename="../UI/EmailDialog.py" line="322"/>
         <source>Mail Server Password</source>
         <translation>Senha do Servidor de Correio</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="321"/>
+        <location filename="../UI/EmailDialog.py" line="322"/>
         <source>Enter your mail server password</source>
         <translation>Introduzir a senha do seu servidor de correio</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="341"/>
+        <location filename="../UI/EmailDialog.py" line="342"/>
         <source>&lt;p&gt;Authentication failed.&lt;br&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Falho na autenticação. &lt;br&gt;Razão: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="410"/>
+        <location filename="../UI/EmailDialog.py" line="411"/>
         <source>&lt;p&gt;Message could not be sent.&lt;br&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Não se pôde enviar a mensagem. &lt;br&gt;Razão: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="423"/>
+        <location filename="../UI/EmailDialog.py" line="424"/>
         <source>Attach file</source>
         <translation>Anexar ficheiro</translation>
     </message>
@@ -17422,22 +17422,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="157"/>
+        <location filename="../UI/EmailDialog.py" line="158"/>
         <source>Gmail API Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="366"/>
+        <location filename="../UI/EmailDialog.py" line="367"/>
         <source>Send Message</source>
         <translation type="unfinished">Enviar Mensagem</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="151"/>
+        <location filename="../UI/EmailDialog.py" line="152"/>
         <source>&lt;p&gt;The Google Mail Client API is not installed. Use &lt;code&gt;{0}&lt;/code&gt; to install it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="410"/>
+        <location filename="../UI/EmailDialog.py" line="411"/>
         <source>Send Message via Gmail</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18011,22 +18011,22 @@
 &lt;p&gt;Mostra os erros do comando gerador de Ericapi.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="82"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="84"/>
         <source>{0} - {1}</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="89"/>
         <source>Process Generation Error</source>
         <translation>Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="89"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="128"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="137"/>
         <source>
 {0} finished.
 </source>
@@ -18360,7 +18360,7 @@
         <translation>Gerar coleção de ficheiros QtHelp</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="62"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="63"/>
         <source>&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot;&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;&lt;html&gt;&lt;head&gt;&lt;title&gt;&lt;/title&gt;&lt;/head&gt;&lt;body style=&quot;background-color:{BodyBgColor};color:{BodyColor}&quot;&gt;&lt;h1 style=&quot;background-color:{Level1HeaderBgColor};color:{Level1HeaderColor}&quot;&gt;Level 1 Header&lt;/h1&gt;&lt;h3 style=&quot;background-color:{Level2HeaderBgColor};color:{Level2HeaderColor}&quot;&gt;Level 2 Header&lt;/h3&gt;&lt;h2 style=&quot;background-color:{CFBgColor};color:{CFColor}&quot;&gt;Class and Function Header&lt;/h2&gt;Standard body text with &lt;a style=&quot;color:{LinkColor}&quot;&gt;some links&lt;/a&gt; embedded.&lt;/body&gt;&lt;/html&gt;</source>
         <translation>&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//PT&quot;&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;&lt;html&gt;&lt;head&gt;&lt;title&gt;&lt;/title&gt;&lt;/head&gt;&lt;body style=&quot;background-color:{BodyBgColor};color:{BodyColor}&quot;&gt;&lt;h1 style=&quot;background-color:{Level1HeaderBgColor};color:{Level1HeaderColor}&quot;&gt;Cabeçalho de Nível 1&lt;/h1&gt;&lt;h3 style=&quot;background-color:{Level2HeaderBgColor};color:{Level2HeaderColor}&quot;&gt;Cabeçalho de Nível 2&lt;/h3&gt;&lt;h2 style=&quot;background-color:{CFBgColor};color:{CFColor}&quot;&gt;Cabeçalho de classe e função&lt;/h2&gt;Corpo de texto normal com &lt;a style=&quot;color:{LinkColor}&quot;&gt;alguns vínculos&lt;/a&gt; incorporados.&lt;/body&gt;&lt;/html&gt;</translation>
     </message>
@@ -18462,22 +18462,22 @@
 &lt;p&gt;Mostra os erros do comando gerador de Ericdoc.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="82"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="84"/>
         <source>{0} - {1}</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="89"/>
         <source>Process Generation Error</source>
         <translation>Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="89"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="129"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="138"/>
         <source>
 {0} finished.
 </source>
@@ -18486,7 +18486,7 @@
 </translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="120"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="126"/>
         <source>
 {0} crashed.
 </source>
@@ -18574,17 +18574,17 @@
         <translation>Ignorar mas Manter</translation>
     </message>
     <message>
-        <location filename="../UI/ErrorLogDialog.py" line="44"/>
+        <location filename="../UI/ErrorLogDialog.py" line="45"/>
         <source>Delete</source>
         <translation>Apagar</translation>
     </message>
     <message>
-        <location filename="../UI/ErrorLogDialog.py" line="45"/>
-        <source>Close</source>
-        <translation>Fechar</translation>
-    </message>
-    <message>
         <location filename="../UI/ErrorLogDialog.py" line="46"/>
+        <source>Close</source>
+        <translation>Fechar</translation>
+    </message>
+    <message>
+        <location filename="../UI/ErrorLogDialog.py" line="47"/>
         <source>Error Log</source>
         <translation>Registo de Erro</translation>
     </message>
@@ -19112,22 +19112,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="110"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="111"/>
         <source>Allow</source>
         <translation type="unfinished">Permitir</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="111"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="112"/>
         <source>Deny</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="133"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="134"/>
         <source>{0} wants to use an unknown feature.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="108"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="109"/>
         <source>Remember</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19175,12 +19175,12 @@
         <translation type="unfinished">Notificações</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="161"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="165"/>
         <source>Host</source>
         <translation type="unfinished">Anfitrião</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="162"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="166"/>
         <source>Permission</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19190,17 +19190,17 @@
         <translation type="obsolete">Retirar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="68"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="69"/>
         <source>Geolocation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="186"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="191"/>
         <source>Allow</source>
         <translation type="unfinished">Permitir</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="187"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="193"/>
         <source>Deny</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19215,32 +19215,32 @@
         <translation type="unfinished">Retirar &amp;Tudo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="83"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="85"/>
         <source>Microphone</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="98"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="101"/>
         <source>Camera</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="113"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="117"/>
         <source>Microphone &amp;&amp; Camera</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="129"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="133"/>
         <source>Mouse Lock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="147"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="151"/>
         <source>Desktop Video</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="163"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="167"/>
         <source>Desktop Audio &amp;&amp; Video</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19296,17 +19296,17 @@
         <translation>Adicionar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="86"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="87"/>
         <source>Add RSS Feed</source>
         <translation>Adicionar Fonte RSS</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="81"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="82"/>
         <source>The feed was added successfully.</source>
         <translation> fonte foi adicionada com êxito.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="86"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="87"/>
         <source>The feed was already added before.</source>
         <translation>A fonte já tinha sido adicionada antes.</translation>
     </message>
@@ -19364,67 +19364,67 @@
         <translation>&amp;Apagar Fonte</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="182"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="183"/>
         <source>Duplicate Feed URL</source>
         <translation>URL da Fonte Duplicada</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="182"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="183"/>
         <source>A feed with the URL {0} exists already. Aborting...</source>
         <translation>Já existe uma fonte com URL {0}. A cancelar...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="204"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="205"/>
         <source>Delete Feed</source>
         <translation>Apagar Fonte</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="204"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="205"/>
         <source>&lt;p&gt;Do you really want to delete the feed &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Tem a certeza de que quer apagar a fonte &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="316"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="317"/>
         <source>Error fetching feed</source>
         <translation>Erro ao trazer feed</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="346"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="347"/>
         <source>&amp;Open</source>
         <translation>A&amp;brir</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="348"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="349"/>
         <source>Open in New &amp;Tab</source>
         <translation>Abrir num &amp;Separador Novo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="359"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="360"/>
         <source>&amp;Copy URL to Clipboard</source>
         <translation>&amp;Copiar URL para Área de Transferência</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="366"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="367"/>
         <source>&amp;Show error data</source>
         <translation>&amp;Mostrar dados do erro</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="483"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="490"/>
         <source>Error loading feed</source>
         <translation>Erro ao carregar fonte</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="350"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="351"/>
         <source>Open in New &amp;Background Tab</source>
         <translation type="unfinished">Abrir num Novo Separador de &amp;Fundo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="353"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="354"/>
         <source>Open in New &amp;Window</source>
         <translation type="unfinished">Abrir numa Nova &amp;Janela</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="355"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="356"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation type="unfinished">Abrir numa Nova Janela Pri&amp;vada</translation>
     </message>
@@ -20132,42 +20132,42 @@
         <translation>Encontrar</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="740"/>
+        <location filename="../UI/FindFileDialog.py" line="744"/>
         <source>Replace in Files</source>
         <translation>Substituir em Ficheiros</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="450"/>
+        <location filename="../UI/FindFileDialog.py" line="453"/>
         <source>Invalid search expression</source>
         <translation>Expressão de pesquisa inválida</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="450"/>
+        <location filename="../UI/FindFileDialog.py" line="453"/>
         <source>&lt;p&gt;The search expression is not valid.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;A expressão de pesquisa não é válida.&lt;/p&gt;&lt;p&gt;Erro: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="699"/>
+        <location filename="../UI/FindFileDialog.py" line="703"/>
         <source>&lt;p&gt;Could not read the file &lt;b&gt;{0}&lt;/b&gt;. Skipping it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Não se pôde ler o ficheiro &lt;b&gt;{0}&lt;/b&gt;. Ignorando-o.&lt;/p&gt;&lt;p&gt;Razão: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="740"/>
+        <location filename="../UI/FindFileDialog.py" line="744"/>
         <source>&lt;p&gt;Could not save the file &lt;b&gt;{0}&lt;/b&gt;. Skipping it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Não se pôde gravar o ficheiro &lt;b&gt;{0}&lt;/b&gt;. Ignorando-o.&lt;/p&gt;&lt;p&gt;Razão: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="767"/>
+        <location filename="../UI/FindFileDialog.py" line="771"/>
         <source>Open</source>
         <translation>Abrir</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="768"/>
+        <location filename="../UI/FindFileDialog.py" line="772"/>
         <source>Copy Path to Clipboard</source>
         <translation>Copiar Rota à Área de Transferência</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="714"/>
+        <location filename="../UI/FindFileDialog.py" line="718"/>
         <source>&lt;p&gt;The current and the original hash of the file &lt;b&gt;{0}&lt;/b&gt; are different. Skipping it.&lt;/p&gt;&lt;p&gt;Hash 1: {1}&lt;/p&gt;&lt;p&gt;Hash 2: {2}&lt;/p&gt;</source>
         <translation></translation>
     </message>
@@ -20177,13 +20177,13 @@
         <translation>%v/%m Ficheiros</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="573"/>
+        <location filename="../UI/FindFileDialog.py" line="576"/>
         <source>{0} / {1}</source>
         <comment>occurrences / files</comment>
         <translation></translation>
     </message>
     <message numerus="yes">
-        <location filename="../UI/FindFileDialog.py" line="574"/>
+        <location filename="../UI/FindFileDialog.py" line="577"/>
         <source>%n occurrence(s)</source>
         <translation>
             <numerusform>uma ocurrência</numerusform>
@@ -20191,7 +20191,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../UI/FindFileDialog.py" line="574"/>
+        <location filename="../UI/FindFileDialog.py" line="577"/>
         <source>%n file(s)</source>
         <translation>
             <numerusform>um ficheiro</numerusform>
@@ -20312,7 +20312,7 @@
         <translation>Pressionar para parar a procura</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileNameDialog.py" line="58"/>
+        <location filename="../UI/FindFileNameDialog.py" line="59"/>
         <source>Opens the selected file</source>
         <translation>Abre o ficheiro selecionado</translation>
     </message>
@@ -21384,7 +21384,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitArchiveDataDialog.py" line="83"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitArchiveDataDialog.py" line="85"/>
         <source>Select Archive File</source>
         <translation type="unfinished">Selecionar Ficheiro Arquivo</translation>
     </message>
@@ -21462,22 +21462,22 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="52"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="54"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished">Atualiza&amp;r</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="54"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="56"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="173"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="173"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
@@ -21598,12 +21598,12 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
@@ -21813,7 +21813,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBranchPushDialog.py" line="34"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBranchPushDialog.py" line="35"/>
         <source>&lt;all branches&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -22127,7 +22127,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitCopyDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitCopyDialog.py" line="90"/>
         <source>Select target</source>
         <translation type="unfinished">Selecionar destino</translation>
     </message>
@@ -22195,12 +22195,12 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="115"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="115"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
@@ -22263,37 +22263,37 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="82"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="88"/>
         <source>Additional Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="110"/>
         <source>Process canceled.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="112"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="125"/>
         <source>Process finished successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="127"/>
         <source>Process crashed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="129"/>
         <source>Process finished with exit code {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="182"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="182"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
@@ -22336,82 +22336,82 @@
         <translation type="unfinished">Pressionar para atualizar o ecrã</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="90"/>
         <source>Working Tree to Staging Area</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="89"/>
-        <source>Staging Area to HEAD Commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="90"/>
-        <source>Working Tree to HEAD Commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="91"/>
-        <source>Working to Staging (top) and Staging to HEAD (bottom)</source>
+        <source>Staging Area to HEAD Commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="92"/>
+        <source>Working Tree to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="93"/>
+        <source>Working to Staging (top) and Staging to HEAD (bottom)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="95"/>
         <source>Stash Contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="96"/>
         <source>Stash Contents of {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="166"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="168"/>
         <source>Difference ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="174"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="174"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="198"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="200"/>
         <source>There is no difference.</source>
         <translation type="unfinished">Não há diferenças.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="219"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="225"/>
         <source>&lt;Start&gt;</source>
         <translation type="unfinished">&lt;Inicio&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="220"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="226"/>
         <source>&lt;End&gt;</source>
         <translation type="unfinished">&lt;Fim&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="355"/>
         <source>Save Diff</source>
         <translation type="unfinished">Gravar Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="314"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="322"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="331"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="339"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="355"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;O ficheiro remendo &lt;b&gt;{0}&lt;/b&gt; não se pôde gravar.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
@@ -22570,12 +22570,12 @@
         <translation type="unfinished">Gráfico</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="110"/>
         <source>Commit ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="111"/>
         <source>Author</source>
         <translation type="unfinished">Autor</translation>
     </message>
@@ -22585,7 +22585,7 @@
         <translation type="unfinished">Data</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="112"/>
         <source>Committer</source>
         <translation type="unfinished"></translation>
     </message>
@@ -22595,7 +22595,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="110"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="113"/>
         <source>Subject</source>
         <translation type="unfinished"></translation>
     </message>
@@ -22670,7 +22670,7 @@
         <translation type="unfinished">Copiar de</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2095"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2113"/>
         <source>Differences</source>
         <translation type="unfinished">Diferenças</translation>
     </message>
@@ -22730,328 +22730,328 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="97"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished">Atualiza&amp;r</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="96"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="99"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
         <source>Find</source>
         <translation type="unfinished">Encontrar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="108"/>
         <source>Filter</source>
         <translation type="unfinished">Filtro</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="111"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="114"/>
         <source>File</source>
         <translation type="unfinished">Ficheiro</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="131"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit ID&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2} &amp;lt;{3}&amp;gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5} &amp;lt;{6}&amp;gt;&lt;/td&gt;&lt;/tr&gt;{7}&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;{9}&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="140"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Pais&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="143"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Children&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation type="unfinished"></translation>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Pais&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="146"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Ramos&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Children&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="149"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Etiquetas&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Ramos&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="152"/>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Etiquetas&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="155"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Message&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="203"/>
-        <source>Added</source>
-        <translation type="unfinished">Adicionado</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="204"/>
-        <source>Deleted</source>
-        <translation type="unfinished">Apagado</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="205"/>
-        <source>Modified</source>
-        <translation type="unfinished">Alterado</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="206"/>
-        <source>Copied</source>
-        <translation type="unfinished"></translation>
+        <source>Added</source>
+        <translation type="unfinished">Adicionado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="207"/>
-        <source>Renamed</source>
-        <translation type="unfinished"></translation>
+        <source>Deleted</source>
+        <translation type="unfinished">Apagado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="208"/>
-        <source>Type changed</source>
-        <translation type="unfinished"></translation>
+        <source>Modified</source>
+        <translation type="unfinished">Alterado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="209"/>
-        <source>Unmerged</source>
+        <source>Copied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="210"/>
+        <source>Renamed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="211"/>
+        <source>Type changed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="212"/>
+        <source>Unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="213"/>
         <source>Unknown</source>
         <translation type="unfinished">Desconhecido</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="246"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="249"/>
         <source>Show Commit ID Column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="248"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="251"/>
         <source>Press to show the commit ID column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="256"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="259"/>
         <source>Show Author Columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="258"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="261"/>
         <source>Press to show the author columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="266"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="269"/>
         <source>Show Committer Columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="268"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="271"/>
         <source>Press to show the committer columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="276"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="279"/>
         <source>Show Branches Column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="278"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="281"/>
         <source>Press to show the branches column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="286"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="289"/>
         <source>Show Tags Column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="291"/>
         <source>Press to show the Tags column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="315"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="318"/>
         <source>Copy Commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="317"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="320"/>
         <source>Cherry-pick the selected commits to the current branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="322"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="325"/>
         <source>Tag</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="324"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="327"/>
         <source>Tag the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1789"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1807"/>
         <source>Branch</source>
         <translation type="unfinished">Ramo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="328"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="331"/>
         <source>Create a new branch at the selected commit.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="330"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="333"/>
         <source>Branch &amp;&amp; Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="332"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="335"/>
         <source>Create a new branch at the selected commit and switch the work tree to it.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1859"/>
         <source>Switch</source>
         <translation type="unfinished">Mudar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="338"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="341"/>
         <source>Switch the working directory to the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1867"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1885"/>
         <source>Show Short Log</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="344"/>
-        <source>Show a dialog with a log output for release notes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="347"/>
+        <source>Show a dialog with a log output for release notes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="350"/>
         <source>Describe</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="349"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="352"/>
         <source>Show the most recent tag reachable from a commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="634"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="639"/>
         <source>The git process did not finish within 30s.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="637"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="642"/>
         <source>Could not start the git executable.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="640"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="645"/>
         <source>Git Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="756"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="761"/>
         <source>{0} ({1}%)</source>
         <comment>action, confidence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="819"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="827"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="819"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="827"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1262"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1280"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1274"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1292"/>
         <source>&lt;a href=&quot;sbsdiff:{0}_{1}&quot;&gt;Side-by-Side Compare&lt;/a&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1721"/>
         <source>Copy Changesets</source>
         <translation type="unfinished">Copiar Conjuntos de Alterações</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1859"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1867"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1885"/>
         <source>Select a branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1820"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1838"/>
         <source>Select a default branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1820"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1838"/>
         <source>Branch &amp; Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2049"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2067"/>
         <source>Find Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2049"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2067"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2127"/>
         <source>Differences to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2124"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2142"/>
         <source>Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2150"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2168"/>
         <source>There is no difference.</source>
         <translation type="unfinished">Não há diferenças.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2312"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2330"/>
         <source>Save Diff</source>
         <translation type="unfinished">Gravar Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2279"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2297"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2296"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2314"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2312"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2330"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;O ficheiro remendo &lt;b&gt;{0}&lt;/b&gt; não se pôde gravar.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
@@ -23233,12 +23233,12 @@
  obtido do repositório e posto neste diretório.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="87"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="88"/>
         <source>Select Repository-Directory</source>
         <translation type="unfinished">Selecionar o Diretorio do Repositorio</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="102"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="103"/>
         <source>Select Project Directory</source>
         <translation type="unfinished">Selecionar o Diretório do Projeto</translation>
     </message>
@@ -23395,7 +23395,7 @@
 <context>
     <name>GitPatchFilesDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="82"/>
         <source>Patch Files</source>
         <translation type="unfinished"></translation>
     </message>
@@ -23450,7 +23450,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="82"/>
         <source>Patch Files (*.diff *.patch);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -23488,12 +23488,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
@@ -25518,22 +25518,22 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="54"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="56"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished">Atualiza&amp;r</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="56"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="58"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="198"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="198"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
@@ -25725,12 +25725,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="144"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="148"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="144"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="148"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
@@ -26029,57 +26029,57 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="60"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="63"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished">Atualiza&amp;r</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="62"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="65"/>
         <source>Press to refresh the list of stashes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="77"/>
-        <source>Show</source>
-        <translation type="unfinished">Mostrar</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="80"/>
+        <source>Show</source>
+        <translation type="unfinished">Mostrar</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="83"/>
         <source>Restore &amp;&amp; Keep</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="82"/>
-        <source>Restore &amp;&amp; Delete</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="85"/>
-        <source>Create Branch</source>
-        <translation type="unfinished">Criar Ramo</translation>
+        <source>Restore &amp;&amp; Delete</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="88"/>
+        <source>Create Branch</source>
+        <translation type="unfinished">Criar Ramo</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="91"/>
         <source>Delete</source>
         <translation type="unfinished">Apagar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="93"/>
         <source>Delete All</source>
         <translation type="unfinished">Apagar Tudo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="176"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="183"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="176"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="183"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="363"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="377"/>
         <source>%n file(s) changed</source>
         <translation type="unfinished">
             <numerusform>um ficheiro alterado</numerusform>
@@ -26087,7 +26087,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="365"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="379"/>
         <source>%n line(s) inserted</source>
         <translation type="unfinished">
             <numerusform>uma linha inserida</numerusform>
@@ -26095,7 +26095,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="367"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="381"/>
         <source>%n line(s) deleted</source>
         <translation type="unfinished">
             <numerusform>uma linha apagada</numerusform>
@@ -26164,7 +26164,7 @@
 <context>
     <name>GitStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="379"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="386"/>
         <source>Git Status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26190,7 +26190,7 @@
         <translation type="unfinished">Selecionar estado das entradas a mostrar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="647"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="665"/>
         <source>Commit</source>
         <translation type="unfinished">Cometido</translation>
     </message>
@@ -26275,312 +26275,312 @@
         <translation type="unfinished">Pressionar para atualizar o visor de estado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="102"/>
         <source>Stage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="106"/>
         <source>Revert Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="110"/>
         <source>Stage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="112"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="114"/>
         <source>Revert Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="120"/>
         <source>Unstage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="122"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="124"/>
         <source>Unstage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="163"/>
-        <source>added</source>
-        <translation type="unfinished">adicionado</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="164"/>
-        <source>copied</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="165"/>
-        <source>deleted</source>
-        <translation type="unfinished">apagado</translation>
+        <source>added</source>
+        <translation type="unfinished">adicionado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="166"/>
-        <source>modified</source>
-        <translation type="unfinished">alterado</translation>
+        <source>copied</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="167"/>
-        <source>renamed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="169"/>
-        <source>not tracked</source>
-        <translation type="unfinished">sem rastrear</translation>
+        <source>deleted</source>
+        <translation type="unfinished">apagado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="168"/>
-        <source>unmerged</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="162"/>
-        <source>unmodified</source>
-        <translation type="unfinished"></translation>
+        <source>modified</source>
+        <translation type="unfinished">alterado</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="169"/>
+        <source>renamed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="171"/>
+        <source>not tracked</source>
+        <translation type="unfinished">sem rastrear</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
+        <source>unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="164"/>
+        <source>unmodified</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="172"/>
         <source>ignored</source>
         <translation type="unfinished">ignorado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="188"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="190"/>
         <source>Commit the selected changes</source>
         <translation type="unfinished">Cometer as alterações selecionadas</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="189"/>
-        <source>Amend</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="191"/>
-        <source>Amend the latest commit with the selected changes</source>
+        <source>Amend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="193"/>
-        <source>Select all for commit</source>
-        <translation type="unfinished">Selecionar tudo para cometer</translation>
+        <source>Amend the latest commit with the selected changes</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="195"/>
+        <source>Select all for commit</source>
+        <translation type="unfinished">Selecionar tudo para cometer</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="197"/>
         <source>Unselect all from commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="688"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="706"/>
         <source>Add</source>
         <translation type="unfinished">Adicionar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="201"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="203"/>
         <source>Add the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="202"/>
-        <source>Stage changes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="204"/>
-        <source>Stages all changes of the selected files</source>
+        <source>Stage changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="206"/>
-        <source>Unstage changes</source>
+        <source>Stages all changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="208"/>
+        <source>Unstage changes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210"/>
         <source>Unstages all changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="824"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="842"/>
         <source>Differences</source>
         <translation type="unfinished">Diferenças</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="215"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="217"/>
         <source>Shows the differences of the selected entry in a separate dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="218"/>
-        <source>Differences Side-By-Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="220"/>
+        <source>Differences Side-By-Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="222"/>
         <source>Shows the differences of the selected entry side-by-side in a separate dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789"/>
         <source>Revert</source>
         <translation type="unfinished">Anular</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="228"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="230"/>
         <source>Reverts the changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="233"/>
-        <source>Forget missing</source>
-        <translation type="unfinished">Esquecer desaparecidos</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="235"/>
-        <source>Forgets about the selected missing files</source>
-        <translation type="unfinished"></translation>
+        <source>Forget missing</source>
+        <translation type="unfinished">Esquecer desaparecidos</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="237"/>
-        <source>Restore missing</source>
-        <translation type="unfinished">Restaurar desaparecidos</translation>
+        <source>Forgets about the selected missing files</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="239"/>
+        <source>Restore missing</source>
+        <translation type="unfinished">Restaurar desaparecidos</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="241"/>
         <source>Restores the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244"/>
-        <source>Edit file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="246"/>
+        <source>Edit file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="248"/>
         <source>Edit the selected conflicting file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="251"/>
-        <source>Adjust column sizes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253"/>
+        <source>Adjust column sizes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="255"/>
         <source>Adjusts the width of all columns to their contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="414"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="414"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="581"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="599"/>
         <source>all</source>
         <translation type="unfinished">tudo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="647"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="665"/>
         <source>There are no entries selected to be committed.</source>
         <translation type="unfinished">Não há entradas selecionadas a cometer.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="688"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="706"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation type="unfinished">Não existem entradas sem versão disponíveis/selecionadas.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="710"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="728"/>
         <source>Stage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="710"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="728"/>
         <source>There are no stageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="732"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="750"/>
         <source>Unstage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="732"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="750"/>
         <source>There are no unstageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="754"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="772"/>
         <source>Forget Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="795"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="813"/>
         <source>There are no missing entries available/selected.</source>
         <translation type="unfinished">Não existem entradas desaparecidas disponíveis/selcionadas.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789"/>
         <source>There are no uncommitted, unstaged changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="795"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="813"/>
         <source>Restore Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="824"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="842"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation type="unfinished">Não há aterações por cometer disponíveis/selecionadas.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="876"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
         <source>Working Tree to Staging Area</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="855"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="873"/>
         <source>Staging Area to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="877"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="895"/>
         <source>Working Tree to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="879"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="897"/>
         <source>Side-by-Side Difference</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="879"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="897"/>
         <source>Select the compare method.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1188"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1212"/>
         <source>Revert selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1190"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1214"/>
         <source>Revert hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1191"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1215"/>
         <source>Are you sure you want to revert the selected changes?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26677,12 +26677,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="103"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="105"/>
         <source>Select Submodule Repository Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="129"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="131"/>
         <source>Select Submodule Directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -27067,12 +27067,12 @@
 &lt;p&gt;Mostra uma lista das etiquetas ou ramos do projeto.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="95"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="97"/>
         <source>Commit</source>
         <translation type="unfinished">Cometido</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="95"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="97"/>
         <source>Name</source>
         <translation type="unfinished">Nome</translation>
     </message>
@@ -27122,22 +27122,22 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="92"/>
         <source>Annotation Message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="96"/>
         <source>Git Branches List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="133"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="133"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
@@ -28277,7 +28277,7 @@
 <context>
     <name>HelpDocsInstaller</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpDocsInstaller.py" line="239"/>
+        <location filename="../WebBrowser/QtHelp/HelpDocsInstaller.py" line="241"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be registered. &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 registar. &lt;br/&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
@@ -28496,22 +28496,22 @@
         <translation>&amp;Procurar por:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="205"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="211"/>
         <source>Open Link</source>
         <translation>Abrir Vínculo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="206"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="212"/>
         <source>Open Link in New Tab</source>
         <translation>Abrir Vínculo Num Separador Novo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="207"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="213"/>
         <source>Open Link in Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="209"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="215"/>
         <source>Open Link in New Window</source>
         <translation type="unfinished"></translation>
     </message>
@@ -28590,22 +28590,22 @@
 <context>
     <name>HelpSearchWidget</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="145"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="150"/>
         <source>Open Link</source>
         <translation>Abrir Vínculo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="146"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="151"/>
         <source>Open Link in New Tab</source>
         <translation>Abrir Vínculo Num Separador Novo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="147"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="152"/>
         <source>Open Link in Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="149"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="154"/>
         <source>Open Link in New Window</source>
         <translation type="unfinished"></translation>
     </message>
@@ -28767,22 +28767,22 @@
 <context>
     <name>HelpTocWidget</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="158"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="164"/>
         <source>Open Link</source>
         <translation>Abrir Vínculo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="159"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="165"/>
         <source>Open Link in New Tab</source>
         <translation>Abrir Vínculo Num Separador Novo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="160"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="166"/>
         <source>Open Link in Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="162"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="168"/>
         <source>Open Link in New Window</source>
         <translation type="unfinished"></translation>
     </message>
@@ -31412,12 +31412,12 @@
         <translation type="unfinished">Ajuda</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="798"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="801"/>
         <source>&lt;p&gt;This part of the status bar displays the edit mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="806"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="810"/>
         <source>&lt;p&gt;This part of the status bar displays the read only mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -31427,109 +31427,109 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="790"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="792"/>
         <source>&lt;p&gt;This part of the status bar displays the size of the binary data.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="862"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="867"/>
         <source>ro</source>
         <translation type="unfinished">ro</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="862"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="867"/>
         <source>rw</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="880"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="885"/>
         <source>Overwrite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="880"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="885"/>
         <source>Insert</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="942"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="947"/>
         <source>Open binary file in new window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1061"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1066"/>
         <source>All Files (*)</source>
         <translation type="unfinished">Ficheiros Todos (*)</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="963"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="968"/>
         <source>The loaded file has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="981"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="986"/>
         <source>The file &apos;{0}&apos; does not exist.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="988"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="993"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1014"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1019"/>
         <source>Open binary file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1071"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1076"/>
         <source>Save binary file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1156"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1161"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1181"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1186"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1187"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1192"/>
         <source>File saved</source>
         <translation type="unfinished">Ficheiro gravado</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1156"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1161"/>
         <source>Save to readable file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1140"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1145"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished">Ficheiros de Texto (*.txt);;Ficheiros Todos (*)</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1140"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1145"/>
         <source>Text Files (*.txt)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1223"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1228"/>
         <source>Untitled</source>
         <translation type="unfinished">Sem Título</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1227"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1232"/>
         <source>{0}[*] - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1227"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1232"/>
         <source>Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
@@ -31554,12 +31554,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="782"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="783"/>
         <source>&lt;p&gt;This part of the status bar displays some selection information.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="851"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="856"/>
         <source>Selection: -</source>
         <comment>no selection available</comment>
         <translation type="unfinished"></translation>
@@ -31580,18 +31580,18 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="826"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="831"/>
         <source>Address: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="845"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="850"/>
         <source>Selection: {0} - {1} ({2} Bytes)</source>
         <comment>0: start, 1: end, 2: selection length</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="899"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="904"/>
         <source>Size: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -31601,22 +31601,22 @@
         <translation type="unfinished">Abrir Ficheiros Rece&amp;ntes</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1431"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1436"/>
         <source>&amp;Clear</source>
         <translation type="unfinished">&amp;Limpar</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1181"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1186"/>
         <source>eric Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1284"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1289"/>
         <source>About eric Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1284"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1289"/>
         <source>The eric Hex Editor is a simple editor component to edit binary files.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32767,7 +32767,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBackoutDialog.py" line="174"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBackoutDialog.py" line="176"/>
         <source>Backed out changeset &lt;{0}&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32795,7 +32795,7 @@
 <context>
     <name>HgBookmarkDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="46"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="47"/>
         <source>Define Bookmark</source>
         <translation>Definir Marcador</translation>
     </message>
@@ -32900,7 +32900,7 @@
         <translation>Selecionar dica de revisão do diretório</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="43"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="44"/>
         <source>Move Bookmark</source>
         <translation>Mover marcador</translation>
     </message>
@@ -33003,12 +33003,12 @@
         <translation type="obsolete">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="46"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="48"/>
         <source>Mercurial Incoming Bookmarks</source>
         <translation>Marcadores de Entrada de Mercurial</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="48"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="50"/>
         <source>Mercurial Outgoing Bookmarks</source>
         <translation>Marcadores de Saída de Mercurial</translation>
     </message>
@@ -33023,7 +33023,7 @@
         <translation type="obsolete">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="121"/>
         <source>no bookmarks found</source>
         <translation>sem marcadores encontrados</translation>
     </message>
@@ -33125,7 +33125,7 @@
         <translation type="obsolete">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="125"/>
         <source>no bookmarks defined</source>
         <translation>não há marcadores definidos</translation>
     </message>
@@ -33140,67 +33140,67 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="247"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="258"/>
         <source>Switch to</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="251"/>
-        <source>Delete</source>
-        <translation type="unfinished">Apagar</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="254"/>
-        <source>Rename</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="258"/>
-        <source>Pull</source>
-        <translation type="unfinished">Puxar</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="262"/>
+        <source>Delete</source>
+        <translation type="unfinished">Apagar</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="265"/>
+        <source>Rename</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="269"/>
+        <source>Pull</source>
+        <translation type="unfinished">Puxar</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="273"/>
         <source>Push</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="299"/>
         <source>Switch</source>
         <translation type="unfinished">Mudar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="299"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="318"/>
         <source>Delete Bookmark</source>
         <translation type="unfinished">Apagar Marcador</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="318"/>
         <source>&lt;p&gt;Shall the bookmark &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="323"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="334"/>
         <source>Rename Bookmark</source>
         <translation type="unfinished">Renomear Marcador</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="323"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="334"/>
         <source>&lt;p&gt;Enter the new name for bookmark &lt;b&gt;{0}&lt;/b&gt;:&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="267"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="278"/>
         <source>Push Current</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="272"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="283"/>
         <source>Push All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -33623,7 +33623,7 @@
         <translation>Pressionar para maracar as entradas selecionadas como &apos;resolvido&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="173"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="183"/>
         <source>Resolved</source>
         <translation>Resolvido</translation>
     </message>
@@ -33633,7 +33633,7 @@
         <translation>Pressionar para marcar as entradas selecionadas como &apos;sem resolver&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="171"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="181"/>
         <source>Unresolved</source>
         <translation>Sem resolver</translation>
     </message>
@@ -33703,12 +33703,12 @@
         <translation type="obsolete">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="51"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="54"/>
         <source>&amp;Refresh</source>
         <translation>Atualiza&amp;r</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="53"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="56"/>
         <source>Press to refresh the list of conflicts</source>
         <translation>Pressionar para atualizar a lista de conflitos</translation>
     </message>
@@ -33723,7 +33723,7 @@
         <translation type="obsolete">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="175"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="185"/>
         <source>Unknown Status</source>
         <translation>Estado Desconhecido</translation>
     </message>
@@ -33896,52 +33896,52 @@
         <translation>Erros</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="101"/>
         <source>Process Generation Error</source>
         <translation>Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="101"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="120"/>
         <source>There is no difference.</source>
         <translation>Não há diferenças.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="245"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="254"/>
         <source>Save Diff</source>
         <translation>Gravar Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="213"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="222"/>
         <source>Patch Files (*.diff)</source>
         <translation>Ficheiros de Remendos (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="230"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="239"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;O ficheiro de remendo &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever-lo?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="245"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="254"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;O ficheiro remendo &lt;b&gt;{0}&lt;/b&gt; não se pôde gravar.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="91"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="93"/>
         <source>Patch Contents</source>
         <translation>Conteúdo do Remendo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="137"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="143"/>
         <source>&lt;Start&gt;</source>
         <translation>&lt;Inicio&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="138"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="144"/>
         <source>&lt;End&gt;</source>
         <translation>&lt;Fim&gt;</translation>
     </message>
@@ -34213,7 +34213,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="218"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="228"/>
         <source>Revision</source>
         <translation>Revisão</translation>
     </message>
@@ -34298,7 +34298,7 @@
         <translation type="obsolete">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="95"/>
         <source>no signatures found</source>
         <translation>não se encontraram assinaturas</translation>
     </message>
@@ -34786,17 +34786,17 @@
         <translation>Selecionar o campo a filtrar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="131"/>
         <source>Revision</source>
         <translation>Revisão</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="129"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="132"/>
         <source>Author</source>
         <translation>Autor</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="130"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="133"/>
         <source>Message</source>
         <translation>Mensagem</translation>
     </message>
@@ -34911,22 +34911,22 @@
         <translation type="obsolete">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="208"/>
         <source>Added</source>
         <translation>Adicionado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="206"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="209"/>
         <source>Deleted</source>
         <translation>Apagado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="207"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="210"/>
         <source>Modified</source>
         <translation>Alterado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="190"/>
         <source>All</source>
         <translation>Tudo</translation>
     </message>
@@ -34941,7 +34941,7 @@
         <translation type="obsolete">Não se pôde iniciar o executável hg.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="842"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="847"/>
         <source>Mercurial Error</source>
         <translation>Erro de Mercurial</translation>
     </message>
@@ -34966,49 +34966,49 @@
         <translation>Registo de Mercurial (Sainte)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="222"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="225"/>
         <source>Bookmarks</source>
         <translation>Marcadores</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="117"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="120"/>
         <source>Press to refresh the list of changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="118"/>
         <source>&amp;Refresh</source>
         <translation>Atualiza&amp;r</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="132"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="135"/>
         <source>Phase</source>
         <translation>Fase</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="274"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="277"/>
         <source>Change the phase of the selected revisions</source>
         <translation>Alterar a fase das revisões selecionadas</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="276"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="279"/>
         <source>&lt;b&gt;Change Phase&lt;/b&gt;
 &lt;p&gt;This changes the phase of the selected revisions. The selected revisions have to have the same current phase.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mudar Fase&lt;/b&gt;
 &lt;p&gt;Muda a fase das revisões selecionadas. As revisões selecionadas devem ter a mesma fase atual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="272"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="275"/>
         <source>Change Phase</source>
         <translation>Mudar Fase</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1997"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2016"/>
         <source>Copy Changesets</source>
         <translation type="unfinished">Copiar Conjuntos de Alterações</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2302"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2321"/>
         <source>The project should be reread. Do this now?</source>
         <translation>O projecto deve ser recarregado. Fazer-lo agora?</translation>
     </message>
@@ -35018,42 +35018,42 @@
         <translation>Selecionar ação do menu</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="266"/>
         <source>Copy the selected changesets to the current branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="281"/>
-        <source>Tag</source>
-        <translation>Etiquetar</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="284"/>
+        <source>Tag</source>
+        <translation>Etiquetar</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="287"/>
         <source>Tag the selected revision</source>
         <translation>Etiqueta a revisão selecionada</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2068"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2087"/>
         <source>Switch</source>
         <translation type="unfinished">Mudar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="294"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="297"/>
         <source>Switch the working directory to the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="317"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="320"/>
         <source>Pull Large Files</source>
         <translation>Puxar Ficheiros Grandes</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="319"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="322"/>
         <source>Pull large files for selected revisions</source>
         <translation>Puxar os ficheiros grandes das revisões selecionadas</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1135"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1146"/>
         <source>{0} (large file)</source>
         <translation>{0} (ficheiro grande)</translation>
     </message>
@@ -35078,87 +35078,87 @@
         <translation>Pressionar para encontrar a ocurrência seguinte</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="128"/>
         <source>Find</source>
         <translation>Encontrar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="126"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="129"/>
         <source>Filter</source>
         <translation>Filtro</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="134"/>
         <source>File</source>
         <translation>Ficheiro</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="172"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Etiquetas&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="175"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="178"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Marcadores&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2443"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2462"/>
         <source>Find Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2443"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2462"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation>&apos;{0}&apos; não foi encontrado.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="211"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="214"/>
         <source>Draft</source>
         <translation type="unfinished">Rascunho</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="212"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="215"/>
         <source>Public</source>
         <translation type="unfinished">Público</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="213"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="216"/>
         <source>Secret</source>
         <translation type="unfinished">Secreto</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2165"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2184"/>
         <source>Pull Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="315"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="318"/>
         <source>Pull changes from a remote repository</source>
         <translation type="unfinished">Puxar alterações do repositorio remoto</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="324"/>
-        <source>Push Selected Changes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="327"/>
-        <source>Push changes of the selected changeset and its ancestors to a remote repository</source>
+        <source>Push Selected Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="330"/>
-        <source>Push All Changes</source>
+        <source>Push changes of the selected changeset and its ancestors to a remote repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="333"/>
+        <source>Push All Changes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="336"/>
         <source>Push all changes to a remote repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2211"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2230"/>
         <source>Strip Changesets</source>
         <translation type="unfinished"></translation>
     </message>
@@ -35168,52 +35168,52 @@
         <translation type="obsolete">Trazer alterações de um repositório remoto</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="376"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="379"/>
         <source>Strip changesets from a repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="299"/>
-        <source>Define Bookmark...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="302"/>
+        <source>Define Bookmark...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="305"/>
         <source>Bookmark the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="304"/>
-        <source>Move Bookmark...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="307"/>
+        <source>Move Bookmark...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="310"/>
         <source>Move bookmark to the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2091"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2110"/>
         <source>Define Bookmark</source>
         <translation type="unfinished">Definir Marcador</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2091"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2110"/>
         <source>Enter bookmark name for changeset &quot;{0}&quot;:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2134"/>
         <source>Move Bookmark</source>
         <translation type="unfinished">Mover marcador</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2134"/>
         <source>Select the bookmark to be moved  to changeset &quot;{0}&quot;:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2054"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2073"/>
         <source>Select bookmark to switch to (leave empty to use revision):</source>
         <translation type="unfinished"></translation>
     </message>
@@ -35228,143 +35228,143 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="175"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Latest Tag&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="156"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branch&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;{4}&lt;tr&gt;&lt;td&gt;&lt;b&gt;Message&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="163"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Pais&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="166"/>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Pais&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="169"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Children&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="266"/>
-        <source>Merge with Changeset</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="269"/>
+        <source>Merge with Changeset</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="272"/>
         <source>Merge the working directory with the selected changeset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="338"/>
-        <source>Create Changegroup</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="341"/>
+        <source>Create Changegroup</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="344"/>
         <source>Create a changegroup file containing the selected changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="343"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="346"/>
         <source>&lt;b&gt;Create Changegroup&lt;/b&gt;
 &lt;p&gt;This creates a changegroup file containing the selected revisions. If no revisions are selected, all changesets will be bundled. If one revision is selected, it will be interpreted as the base revision. Otherwise the lowest revision will be used as the base revision and all other revision will be bundled. If the dialog is showing outgoing changesets, all selected changesets will be bundled.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2302"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2321"/>
         <source>Apply Changegroup</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="355"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="358"/>
         <source>Apply the currently viewed changegroup file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="360"/>
-        <source>Sign Revisions</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="363"/>
+        <source>Sign Revisions</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="366"/>
         <source>Add a signature for the selected revisions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="365"/>
-        <source>Verify Signatures</source>
-        <translation type="unfinished">Verificar Assinaturas</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="368"/>
+        <source>Verify Signatures</source>
+        <translation type="unfinished">Verificar Assinaturas</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="371"/>
         <source>Verify all signatures there may be for the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="381"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="384"/>
         <source>Select All Entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="383"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="386"/>
         <source>Deselect All Entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1376"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1392"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1387"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1403"/>
         <source>&lt;a href=&quot;sbsdiff:{0}_{1}&quot;&gt;Side-by-Side Compare&lt;/a&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1523"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1539"/>
         <source>Pull Selected Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2487"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2506"/>
         <source>Differences</source>
         <translation type="unfinished">Diferenças</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2497"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2516"/>
         <source>Differences to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2513"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2532"/>
         <source>Diff to Parent {0}{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2538"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2557"/>
         <source>There is no difference.</source>
         <translation type="unfinished">Não há diferenças.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2680"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2699"/>
         <source>Save Diff</source>
         <translation type="unfinished">Gravar Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2648"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2667"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2665"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2684"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2680"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2699"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;O ficheiro remendo &lt;b&gt;{0}&lt;/b&gt; não se pôde gravar.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
@@ -35374,7 +35374,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2486"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2505"/>
         <source>Generating differences ...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -35384,12 +35384,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="286"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="289"/>
         <source>Close Heads</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="289"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="292"/>
         <source>Close the selected heads</source>
         <translation type="unfinished"></translation>
     </message>
@@ -37425,22 +37425,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="206"/>
         <source>Remove Guards</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="206"/>
         <source>Do you really want to remove the selected guards?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="253"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="258"/>
         <source>Apply Guard Definitions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="253"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="258"/>
         <source>&lt;p&gt;The defined guards could not be applied.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -37501,7 +37501,7 @@
         <translation>Selecionar Guardas</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesGuardsSelectionDialog.py" line="44"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesGuardsSelectionDialog.py" line="46"/>
         <source>Active Guards</source>
         <translation>Ativar Guardas</translation>
     </message>
@@ -37524,7 +37524,7 @@
         <translation type="obsolete">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py" line="118"/>
         <source>Error: </source>
         <translation>Erro:</translation>
     </message>
@@ -37642,32 +37642,32 @@
         <translation type="obsolete">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="138"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="145"/>
         <source>no patches found</source>
         <translation type="unfinished">não se encontraram remendos</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="43"/>
-        <source>applied</source>
-        <translation>aplicado</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="45"/>
-        <source>guarded</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="46"/>
+        <source>applied</source>
+        <translation>aplicado</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="48"/>
+        <source>guarded</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="49"/>
         <source>missing</source>
         <translation>a faltar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="193"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="205"/>
         <source>unknown</source>
         <translation>desconhecido</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="44"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="47"/>
         <source>not applied</source>
         <translation type="unfinished"></translation>
     </message>
@@ -37821,12 +37821,12 @@
         <translation>Mostra uma lista das filas disponíveis (ativas em negrita)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="67"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="68"/>
         <source>Refresh</source>
         <translation>Atualizar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="69"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="70"/>
         <source>Press to refresh the queues list</source>
         <translation>Pressionar para atualizar a lista de filas</translation>
     </message>
@@ -38590,27 +38590,27 @@
         <translation type="obsolete">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="49"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="52"/>
         <source>&amp;Refresh</source>
         <translation>Atualiza&amp;r</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="51"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="54"/>
         <source>Press to refresh the list of shelves</source>
         <translation>Pressionar para atualizar a lista de pilhas</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="60"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="63"/>
         <source>Restore selected shelve</source>
         <translation>Restaurar pilhas selecionadas</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="62"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="65"/>
         <source>Delete selected shelves</source>
         <translation>Apagar pilhas selecionadas</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="64"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="67"/>
         <source>Delete all shelves</source>
         <translation>Apagar todas as Pilhas</translation>
     </message>
@@ -38625,7 +38625,7 @@
         <translation type="obsolete">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="266"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="280"/>
         <source>%n file(s) changed</source>
         <translation>
             <numerusform>um ficheiro alterado</numerusform>
@@ -38633,7 +38633,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="268"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="282"/>
         <source>%n line(s) inserted</source>
         <translation>
             <numerusform>uma linha inserida</numerusform>
@@ -38641,7 +38641,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="270"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="284"/>
         <source>%n line(s) deleted</source>
         <translation>
             <numerusform>uma linha apagada</numerusform>
@@ -38718,7 +38718,7 @@
 <context>
     <name>HgStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="310"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="314"/>
         <source>Mercurial Status</source>
         <translation>Estado de Mercurial</translation>
     </message>
@@ -38795,47 +38795,47 @@
         <translation>Pressionar para atualizar o visor de estado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="124"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="126"/>
         <source>Commit the selected changes</source>
         <translation>Cometer as alterações selecionadas</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="190"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="192"/>
         <source>Adjust column sizes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="96"/>
         <source>added</source>
         <translation>adicionado</translation>
     </message>
     <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="99"/>
+        <source>modified</source>
+        <translation>alterado</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="100"/>
+        <source>removed</source>
+        <translation>retirado</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="101"/>
+        <source>not tracked</source>
+        <translation>sem rastrear</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="102"/>
+        <source>missing</source>
+        <translation>a faltar</translation>
+    </message>
+    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="97"/>
-        <source>modified</source>
-        <translation>alterado</translation>
+        <source>normal</source>
+        <translation>normal</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="98"/>
-        <source>removed</source>
-        <translation>retirado</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="99"/>
-        <source>not tracked</source>
-        <translation>sem rastrear</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="100"/>
-        <source>missing</source>
-        <translation>a faltar</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="95"/>
-        <source>normal</source>
-        <translation>normal</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="96"/>
         <source>ignored</source>
         <translation>ignorado</translation>
     </message>
@@ -38850,37 +38850,37 @@
         <translation type="obsolete">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="494"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="506"/>
         <source>Commit</source>
         <translation>Cometido</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="660"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="672"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation>Não há aterações por cometer disponíveis/selecionadas.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="558"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="570"/>
         <source>Add</source>
         <translation>Adicionar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="558"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="570"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation>Não existem entradas sem versão disponíveis/selecionadas.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="581"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="593"/>
         <source>Remove</source>
         <translation>Retirar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="622"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="634"/>
         <source>There are no missing entries available/selected.</source>
         <translation>Não existem entradas desaparecidas disponíveis/selcionadas.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="622"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="634"/>
         <source>Revert</source>
         <translation>Anular</translation>
     </message>
@@ -38895,102 +38895,102 @@
         <translation>Selecionar estado das entradas a mostrar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="174"/>
         <source>Restore missing</source>
         <translation>Restaurar desaparecidos</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="416"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="428"/>
         <source>all</source>
         <translation>tudo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="640"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="652"/>
         <source>Differences</source>
         <translation>Diferenças</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="494"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="506"/>
         <source>There are no entries selected to be committed.</source>
         <translation>Não há entradas selecionadas a cometer.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="125"/>
-        <source>Select all for commit</source>
-        <translation>Selecionar tudo para cometer</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="307"/>
-        <source>Mercurial Queue Repository Status</source>
-        <translation>Estado de Fila do Repositório Mercurial</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="667"/>
-        <source>Side-by-Side Diff</source>
-        <translation>Diff Lado a lado</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="667"/>
-        <source>Only one file with uncommitted changes must be selected.</source>
-        <translation>Apenas um ficheiro com alterações por cometer deve ser selecionado.</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="135"/>
-        <source>Add as Large Files</source>
-        <translation type="unfinished">Adicionar como Ficheiro Grande</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="140"/>
-        <source>Add as Normal Files</source>
-        <translation type="unfinished">Adicionar como Ficheiro Normal</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="168"/>
-        <source>Forget missing</source>
-        <translation>Esquecer desaparecidos</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="127"/>
-        <source>Unselect all from commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="134"/>
-        <source>Add the selected files</source>
-        <translation type="unfinished"></translation>
+        <source>Select all for commit</source>
+        <translation>Selecionar tudo para cometer</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="311"/>
+        <source>Mercurial Queue Repository Status</source>
+        <translation>Estado de Fila do Repositório Mercurial</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="679"/>
+        <source>Side-by-Side Diff</source>
+        <translation>Diff Lado a lado</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="679"/>
+        <source>Only one file with uncommitted changes must be selected.</source>
+        <translation>Apenas um ficheiro com alterações por cometer deve ser selecionado.</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="137"/>
-        <source>Add the selected files as a large files using the &apos;Large Files&apos; extension</source>
-        <translation type="unfinished"></translation>
+        <source>Add as Large Files</source>
+        <translation type="unfinished">Adicionar como Ficheiro Grande</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="142"/>
+        <source>Add as Normal Files</source>
+        <translation type="unfinished">Adicionar como Ficheiro Normal</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="170"/>
+        <source>Forget missing</source>
+        <translation>Esquecer desaparecidos</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="129"/>
+        <source>Unselect all from commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="136"/>
+        <source>Add the selected files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="139"/>
+        <source>Add the selected files as a large files using the &apos;Large Files&apos; extension</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="144"/>
         <source>Add the selected files as a normal files using the &apos;Large Files&apos; extension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="150"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="152"/>
         <source>Shows the differences of the selected entry in a separate dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="153"/>
-        <source>Differences Side-By-Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="155"/>
+        <source>Differences Side-By-Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="157"/>
         <source>Shows the differences of the selected entry side-by-side in a separate dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="163"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="165"/>
         <source>Reverts the changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="172"/>
         <source>Forgets about the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
@@ -39000,37 +39000,37 @@
         <translation type="unfinished">Selecionar ação do menu</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="174"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="176"/>
         <source>Restores the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="194"/>
         <source>Adjusts the width of all columns to their contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="179"/>
-        <source>Commit Merge</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="181"/>
-        <source>Commit all the merged changes.</source>
+        <source>Commit Merge</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="183"/>
-        <source>Abort Merge</source>
+        <source>Commit all the merged changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="185"/>
+        <source>Abort Merge</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="187"/>
         <source>Abort an uncommitted merge and lose all changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="761"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="779"/>
         <source>Merge</source>
         <translation type="unfinished">Mesclar</translation>
     </message>
@@ -39200,152 +39200,152 @@
         <translation type="obsolete">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="234"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="236"/>
         <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;Pai&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="238"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="240"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Etiquetas&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="242"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="244"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Message&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;Messagem do Cometido&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="248"/>
-        <source>empty repository</source>
-        <translation>repositório vazio</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="250"/>
+        <source>empty repository</source>
+        <translation>repositório vazio</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="252"/>
         <source>no revision checked out</source>
         <translation>Sem revisão selecionada</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="251"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="253"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Remarks&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;Observações&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="255"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="257"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branch&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;Ramo&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="265"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Marcadores&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="270"/>
-        <source>{0} modified</source>
-        <translation>{0} modificado</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="272"/>
-        <source>{0} added</source>
-        <translation>{0} adicionado</translation>
+        <source>{0} modified</source>
+        <translation>{0} modificado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="274"/>
-        <source>{0} removed</source>
-        <translation>{0} retirado</translation>
+        <source>{0} added</source>
+        <translation>{0} adicionado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="276"/>
-        <source>{0} renamed</source>
-        <translation>{0} renomeado</translation>
+        <source>{0} removed</source>
+        <translation>{0} retirado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="278"/>
-        <source>{0} copied</source>
-        <translation>{0} copiado</translation>
+        <source>{0} renamed</source>
+        <translation>{0} renomeado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="280"/>
-        <source>{0} deleted</source>
-        <translation>{0} apagado</translation>
+        <source>{0} copied</source>
+        <translation>{0} copiado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="282"/>
-        <source>{0} unknown</source>
-        <translation>{0} desconhecido</translation>
+        <source>{0} deleted</source>
+        <translation>{0} apagado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="284"/>
-        <source>{0} ignored</source>
-        <translation>{0} ignorado</translation>
+        <source>{0} unknown</source>
+        <translation>{0} desconhecido</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="286"/>
+        <source>{0} ignored</source>
+        <translation>{0} ignorado</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="288"/>
         <source>{0} unresolved</source>
         <translation>{0} sem resolver</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="289"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="291"/>
         <source>{0} subrepos</source>
         <translation>{0} sub repos</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="292"/>
-        <source>Merge needed</source>
-        <translation>Necessário mesclar</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="294"/>
-        <source>New Branch</source>
-        <translation>Novo Ramo</translation>
+        <source>Merge needed</source>
+        <translation>Necessário mesclar</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="296"/>
-        <source>Head is closed</source>
-        <translation>Cabeçalho está Fechado</translation>
+        <source>New Branch</source>
+        <translation>Novo Ramo</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="298"/>
-        <source>No commit required</source>
-        <translation>Não necessita cometer</translation>
+        <source>Head is closed</source>
+        <translation>Cabeçalho está Fechado</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="300"/>
+        <source>No commit required</source>
+        <translation>Não necessita cometer</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="302"/>
         <source>New Branch Head</source>
         <translation>Cabeçalho do Novo Ramo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="301"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="303"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Status&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;Estado do Cometido&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="306"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="308"/>
         <source>current</source>
         <translation>atual</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="321"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="323"/>
         <source>unknown status</source>
         <translation>estado desconhecido</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="322"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="324"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Update Status&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;Estado da Atualização&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="327"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="329"/>
         <source>synched</source>
         <translation>sincronizado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="331"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="333"/>
         <source>1 or more incoming changesets</source>
         <translation type="unfinished">a entrar 1 ou mais</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="335"/>
         <source>%n outgoing changeset(s)</source>
         <translation type="unfinished">
             <numerusform>{0} a sair</numerusform>
@@ -39353,42 +39353,42 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="342"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="344"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Remote Status&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;Estado Remoto&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="349"/>
         <source>empty queue</source>
         <translation>fila vazia</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="351"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="353"/>
         <source>{0} applied</source>
         <translation>{0} aplicado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="354"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="356"/>
         <source>{0} unapplied</source>
         <translation>{0} sem aplicar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="357"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="359"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Queues Status&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;Estado das Filas&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="371"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="373"/>
         <source>&lt;p&gt;No status information available.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Não há informação de estado disponível.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="230"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="232"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Pai #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="308"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="310"/>
         <source>%n new changeset(s)&lt;br/&gt;Update required</source>
         <translation>
             <numerusform>novo conjunto de alterações&lt;br/&gt;Necessário atualizar</numerusform>
@@ -39396,7 +39396,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="312"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="314"/>
         <source>%n new changeset(s)</source>
         <translation>
             <numerusform>Um novo conjunto de alterações</numerusform>
@@ -39404,7 +39404,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="314"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="316"/>
         <source>%n branch head(s)</source>
         <translation>
             <numerusform>um cabeçalho de ramo</numerusform>
@@ -39412,13 +39412,13 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="316"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="318"/>
         <source>{0}&lt;br/&gt;{1}&lt;br/&gt;Merge required</source>
         <comment>0 is changesets, 1 is branch heads</comment>
         <translation>{0}&lt;br/&gt;{1}&lt;br/&gt;Necessário mesclar</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="336"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="338"/>
         <source>%n incoming bookmark(s)</source>
         <translation>
             <numerusform>um marcador entrante</numerusform>
@@ -39426,7 +39426,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="339"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="341"/>
         <source>%n outgoing bookmark(s)</source>
         <translation>
             <numerusform>um marcador sainte</numerusform>
@@ -39434,12 +39434,12 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="362"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="364"/>
         <source>No files to upload</source>
         <translation>Sem ficheiros a subir</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="364"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="366"/>
         <source>%n file(s) to upload</source>
         <translation>
             <numerusform>Um ficheiro a subir</numerusform>
@@ -39447,7 +39447,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="368"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Large Files&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;Ficheiros Grandes&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
@@ -39539,12 +39539,12 @@
         <translation type="obsolete">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="90"/>
         <source>Mercurial Branches List</source>
         <translation>Lista de Ramos de Mercurial</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="91"/>
         <source>Status</source>
         <translation>Estado</translation>
     </message>
@@ -39559,62 +39559,62 @@
         <translation type="obsolete">Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="200"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="211"/>
         <source>active</source>
         <translation>ativo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="216"/>
         <source>yes</source>
         <translation>sim</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="42"/>
-        <source>&amp;Refresh</source>
-        <translation type="unfinished">Atualiza&amp;r</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="44"/>
+        <source>&amp;Refresh</source>
+        <translation type="unfinished">Atualiza&amp;r</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="46"/>
         <source>Press to refresh the list</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="278"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="292"/>
         <source>Switch to</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="347"/>
         <source>Close Branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="321"/>
         <source>Switch</source>
         <translation type="unfinished">Mudar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="321"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="326"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="340"/>
         <source>The branch &quot;default&quot; cannot be closed. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="347"/>
         <source>&lt;p&gt;Shall the branch &lt;b&gt;{0}&lt;/b&gt; really be closed?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="380"/>
         <source>Close Branches</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="380"/>
         <source>Do you really want to close all listed branches?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -40395,7 +40395,7 @@
         <translation>Pressionar para retirar as entradas selecionadas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="122"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="123"/>
         <source>&amp;Remove</source>
         <translation>&amp;Retirar</translation>
     </message>
@@ -40410,32 +40410,32 @@
         <translation>Retirar &amp;Tudo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="105"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="106"/>
         <source>&amp;Open</source>
         <translation>A&amp;brir</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="108"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="109"/>
         <source>Open in New &amp;Tab</source>
         <translation>Abrir num &amp;Separador Novo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="121"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="122"/>
         <source>&amp;Copy</source>
         <translation>&amp;Copiar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="111"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="112"/>
         <source>Open in New &amp;Background Tab</source>
         <translation type="unfinished">Abrir num Novo Separador de &amp;Fundo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="114"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="115"/>
         <source>Open in New &amp;Window</source>
         <translation type="unfinished">Abrir numa Nova &amp;Janela</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="117"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="118"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation type="unfinished">Abrir numa Nova Janela Pri&amp;vada</translation>
     </message>
@@ -40501,12 +40501,12 @@
         <translation>Separadores Fechados</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryMenu.py" line="447"/>
+        <location filename="../WebBrowser/History/HistoryMenu.py" line="448"/>
         <source>Restore All Closed Tabs</source>
         <translation>Restaurar Todos os Separadores Fechados</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryMenu.py" line="450"/>
+        <location filename="../WebBrowser/History/HistoryMenu.py" line="451"/>
         <source>Clear List</source>
         <translation>Limpar Lista</translation>
     </message>
@@ -40532,12 +40532,12 @@
 <context>
     <name>HistoryTreeModel</name>
     <message>
-        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="64"/>
+        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="65"/>
         <source>Earlier Today</source>
         <translation>Hoje Cedo</translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="67"/>
+        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="68"/>
         <source>%n item(s)</source>
         <translation>
             <numerusform>um elemento</numerusform>
@@ -40660,12 +40660,12 @@
         <translation type="obsolete">Sem tradução disponível.</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="251"/>
+        <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="251"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
         <source>IBM Watson: No translation available.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -40680,12 +40680,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="243"/>
+        <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="231"/>
+        <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>
@@ -40694,102 +40694,102 @@
 <context>
     <name>IconEditorGrid</name>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="208"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="211"/>
         <source>Set Pixel</source>
         <translation>Definir Pixel</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="209"/>
-        <source>Erase Pixel</source>
-        <translation>Apagar Pixel</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="210"/>
-        <source>Draw Line</source>
-        <translation>Desenhar Linha</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="211"/>
-        <source>Draw Rectangle</source>
-        <translation>Desenhar Retângulo</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="212"/>
-        <source>Draw Filled Rectangle</source>
-        <translation>Desenhar Retângulo Preenchido</translation>
+        <source>Erase Pixel</source>
+        <translation>Apagar Pixel</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="213"/>
-        <source>Draw Circle</source>
-        <translation>Desenhar Circunferência</translation>
+        <source>Draw Line</source>
+        <translation>Desenhar Linha</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="214"/>
-        <source>Draw Filled Circle</source>
-        <translation>Desenhar Círculo</translation>
+        <source>Draw Rectangle</source>
+        <translation>Desenhar Retângulo</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="215"/>
-        <source>Draw Ellipse</source>
-        <translation>Desenhar Elipse</translation>
+        <source>Draw Filled Rectangle</source>
+        <translation>Desenhar Retângulo Preenchido</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="216"/>
-        <source>Draw Filled Ellipse</source>
-        <translation>Desenhar Elipse Preenchida</translation>
+        <source>Draw Circle</source>
+        <translation>Desenhar Circunferência</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="217"/>
+        <source>Draw Filled Circle</source>
+        <translation>Desenhar Círculo</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="218"/>
+        <source>Draw Ellipse</source>
+        <translation>Desenhar Elipse</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="219"/>
+        <source>Draw Filled Ellipse</source>
+        <translation>Desenhar Elipse Preenchida</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="220"/>
         <source>Fill Region</source>
         <translation>Preencher Região</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="846"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="853"/>
         <source>Cut Selection</source>
         <translation>Cortar Seleção</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="905"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="912"/>
         <source>Paste</source>
         <translation>Colar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="905"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="912"/>
         <source>&lt;p&gt;The clipboard image is larger than the current image.&lt;br/&gt;Paste as new image?&lt;/p&gt;</source>
         <translation>&lt;p&gt;A imagem da área de transferência é maior que a imagem atual.&lt;br/&gt;Colar como nova imagem?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="918"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="925"/>
         <source>Paste Clipboard</source>
         <translation>Colar Área de Transferência</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="936"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="943"/>
         <source>Pasting Image</source>
         <translation>A colar Imagem</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="936"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="943"/>
         <source>Invalid image data in clipboard.</source>
         <translation>Dados de imagem inválidos na área de transferência.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="947"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="954"/>
         <source>Paste Clipboard as New Image</source>
         <translation>Colar Área de transferência como Nova Imagem</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="976"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="983"/>
         <source>Clear Image</source>
         <translation>Limpar Imagem</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="996"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="1003"/>
         <source>Resize Image</source>
         <translation>Redimensionar imagem</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="1023"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="1030"/>
         <source>Convert to Grayscale</source>
         <translation>Converter a Preto e Branco</translation>
     </message>
@@ -40797,57 +40797,57 @@
 <context>
     <name>IconEditorPalette</name>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="48"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="49"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This is a 1:1 preview of the current icon.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="58"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="60"/>
         <source>&lt;b&gt;Current Color&lt;/b&gt;&lt;p&gt;This is the currently selected color used for drawing.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="66"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="69"/>
         <source>&lt;b&gt;Current Color Value&lt;/b&gt;&lt;p&gt;This is the currently selected color value used for drawing.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="73"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="76"/>
         <source>Select Color</source>
         <translation>Selecionar Cor</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="74"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="77"/>
         <source>&lt;b&gt;Select Color&lt;/b&gt;&lt;p&gt;Select the current drawing color via a color selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="84"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="87"/>
         <source>&lt;b&gt;Select alpha channel value&lt;/b&gt;&lt;p&gt;Select the value for the alpha channel of the current color.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="92"/>
-        <source>Compositing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorPalette.py" line="95"/>
+        <source>Compositing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorPalette.py" line="98"/>
         <source>Replace</source>
         <translation>Substituir</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="97"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="100"/>
         <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Replace the existing pixel with a new color.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="103"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="106"/>
         <source>Blend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="105"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="108"/>
         <source>&lt;b&gt;Blend&lt;/b&gt;&lt;p&gt;Blend the new color over the existing pixel.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -40855,1035 +40855,1035 @@
 <context>
     <name>IconEditorWindow</name>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="125"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="126"/>
         <source>Windows Bitmap File (*.bmp)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="128"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="129"/>
         <source>Graphic Interchange Format File (*.gif)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="130"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="131"/>
         <source>Windows Icon File (*.ico)</source>
         <translation>Ficheiro Icones de Windows (*.ico)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="132"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="133"/>
         <source>JPEG File (*.jpg)</source>
         <translation>Ficheiro JPEG (*.jpg)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="134"/>
-        <source>Multiple-Image Network Graphics File (*.mng)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="135"/>
-        <source>Portable Bitmap File (*.pbm)</source>
+        <source>Multiple-Image Network Graphics File (*.mng)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="136"/>
-        <source>Paintbrush Bitmap File (*.pcx)</source>
+        <source>Portable Bitmap File (*.pbm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="137"/>
-        <source>Portable Graymap File (*.pgm)</source>
+        <source>Paintbrush Bitmap File (*.pcx)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="138"/>
-        <source>Portable Network Graphics File (*.png)</source>
+        <source>Portable Graymap File (*.pgm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="139"/>
-        <source>Portable Pixmap File (*.ppm)</source>
+        <source>Portable Network Graphics File (*.png)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="140"/>
-        <source>Silicon Graphics Image File (*.sgi)</source>
+        <source>Portable Pixmap File (*.ppm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="141"/>
+        <source>Silicon Graphics Image File (*.sgi)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="142"/>
         <source>Scalable Vector Graphics File (*.svg)</source>
         <translation>Ficheiro de Gráficos de Vectores Escaláveis (*.svg)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="144"/>
-        <source>Targa Graphic File (*.tga)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="145"/>
+        <source>Targa Graphic File (*.tga)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="146"/>
         <source>TIFF File (*.tif)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="149"/>
-        <source>X11 Bitmap File (*.xbm)</source>
-        <translation>Ficheiro Bitmap X11 (*.xbm)</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="150"/>
+        <source>X11 Bitmap File (*.xbm)</source>
+        <translation>Ficheiro Bitmap X11 (*.xbm)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="151"/>
         <source>X11 Pixmap File (*.xpm)</source>
         <translation>Ficheiro Pixmap X11 (*.xpm)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="161"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="162"/>
         <source>All Files (*)</source>
         <translation>Ficheiros Todos (*)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
         <source>New</source>
         <translation>Novo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
         <source>&amp;New</source>
         <translation>&amp;Novo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="199"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="200"/>
         <source>Create a new icon</source>
         <translation>Criar um icone novo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="200"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="201"/>
         <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;This creates a new icon.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Novo&lt;/b&gt;&lt;p&gt;Cria um icone novo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="207"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="208"/>
         <source>New Window</source>
         <translation>Nova Janela</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="207"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="208"/>
         <source>New &amp;Window</source>
         <translation>Nova &amp;Janela</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="212"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="213"/>
         <source>Open a new icon editor window</source>
         <translation>Abrir uma nova janela do editor de ícones</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="214"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="215"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new icon editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nova Janela&lt;/b&gt;&lt;p&gt;Abre uma janela nova do editor de ícones.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
         <source>Open</source>
         <translation>Abrir</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
         <source>&amp;Open...</source>
         <translation>&amp;Abrir...</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="227"/>
-        <source>Open an icon file for editing</source>
-        <translation>Abrir um ficheiro de ícones para editar</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="228"/>
+        <source>Open an icon file for editing</source>
+        <translation>Abrir um ficheiro de ícones para editar</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="229"/>
         <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new icon file for editing. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
         <source>Save</source>
         <translation>Gravar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
         <source>&amp;Save</source>
         <translation>&amp;Gravar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation>Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="242"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="243"/>
         <source>Save the current icon</source>
         <translation>Gravar o ícone atual</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="243"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="244"/>
         <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of the icon editor window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
         <source>Save As</source>
         <translation>Gravar Como</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
         <source>Save &amp;As...</source>
         <translation>Gr&amp;avar Como...</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="256"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="257"/>
         <source>Save the current icon to a new file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="258"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="259"/>
         <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current icon to a new file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
         <source>Close</source>
         <translation>Fechar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
         <source>&amp;Close</source>
         <translation>Fe&amp;char</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="271"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="272"/>
         <source>Close the current icon editor window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="273"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="274"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current icon editor window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="280"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="281"/>
         <source>Close All</source>
         <translation>Fechar Tudo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="280"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="281"/>
         <source>Close &amp;All</source>
         <translation>Fechar &amp;Tudo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="284"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="285"/>
         <source>Close all icon editor windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="286"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="287"/>
         <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all icon editor windows except the first one.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
         <source>Quit</source>
         <translation>Sair</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
         <source>&amp;Quit</source>
         <translation>Sai&amp;r</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="312"/>
-        <source>Quit the icon editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="313"/>
+        <source>Quit the icon editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="314"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the icon editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>Undo</source>
         <translation>Desfazer</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>&amp;Undo</source>
         <translation>Desfa&amp;zer</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="332"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="333"/>
         <source>Undo the last change</source>
         <translation>Desfazer a última alteração</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="333"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="334"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
         <source>Redo</source>
         <translation>Refazer</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
         <source>&amp;Redo</source>
         <translation>&amp;Refazer</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="346"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="347"/>
         <source>Redo the last change</source>
         <translation>Refazer a última alteração</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="347"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="348"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Cut</source>
         <translation>Cortar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Cu&amp;t</source>
         <translation>Cor&amp;tar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="361"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="362"/>
         <source>Cut the selection</source>
         <translation>Cortar a seleção</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="362"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="363"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>Copy</source>
         <translation>Copiar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>&amp;Copy</source>
         <translation>&amp;Copiar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="376"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="377"/>
         <source>Copy the selection</source>
         <translation>Copiar a seleção</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="377"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="378"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>Paste</source>
         <translation>Colar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>&amp;Paste</source>
         <translation>Co&amp;lar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="391"/>
-        <source>Paste the clipboard image</source>
-        <translation>Cola a imagem da área de transferência</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="392"/>
+        <source>Paste the clipboard image</source>
+        <translation>Cola a imagem da área de transferência</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="393"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="399"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
         <source>Paste as New</source>
         <translation>Colar como Novo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="399"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
         <source>Paste as &amp;New</source>
         <translation>Colar como &amp;Novo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="403"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="404"/>
         <source>Paste the clipboard image replacing the current one</source>
         <translation>Cola a imagem da área de transferência e substitui a atual</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="405"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="406"/>
         <source>&lt;b&gt;Paste as New&lt;/b&gt;&lt;p&gt;Paste the clipboard image replacing the current one.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
         <source>Clear</source>
         <translation>Limpar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
         <source>Cl&amp;ear</source>
         <translation>Li&amp;mpar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="419"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="420"/>
         <source>Clear the icon image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="420"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="421"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Clear the icon image and set it to be completely transparent.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
         <source>Select All</source>
         <translation>Selecionar Tudo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
         <source>&amp;Select All</source>
         <translation>&amp;Selecionar tudo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation>Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="434"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="435"/>
         <source>Select the complete icon image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="436"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="437"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Selects the complete icon image.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="444"/>
         <source>Change Size</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="444"/>
         <source>Change Si&amp;ze...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="449"/>
-        <source>Change the icon size</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="450"/>
+        <source>Change the icon size</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="451"/>
         <source>&lt;b&gt;Change Size...&lt;/b&gt;&lt;p&gt;Changes the icon size.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="457"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="458"/>
         <source>Grayscale</source>
         <translation>Preto e Branco</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="457"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="458"/>
         <source>&amp;Grayscale</source>
         <translation>Pr&amp;eto e Branco</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="463"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="464"/>
         <source>Change the icon to grayscale</source>
         <translation>Mudar o ícone a preto e branco</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="465"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="466"/>
         <source>&lt;b&gt;Grayscale&lt;/b&gt;&lt;p&gt;Changes the icon to grayscale.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Preto e Branco&lt;/b&gt;&lt;p&gt;Muda o ícone para preto e branco.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
         <source>Zoom in</source>
         <translation>Aproximar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
         <source>Zoom &amp;in</source>
         <translation>Apro&amp;ximar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="500"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="501"/>
         <source>Zoom in on the icon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="501"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="502"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the icon. This makes the grid bigger.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
         <source>Zoom out</source>
         <translation>Afastar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
         <source>Zoom &amp;out</source>
         <translation>A&amp;fastar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="514"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="515"/>
         <source>Zoom out on the icon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="515"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="516"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the icon. This makes the grid smaller.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
         <source>Zoom reset</source>
         <translation>Restaurar zoom</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="528"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="529"/>
         <source>Reset the zoom of the icon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="530"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="531"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the icon. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="538"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="539"/>
         <source>Show Grid</source>
         <translation>Mostrar Grelha</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="538"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="539"/>
         <source>Show &amp;Grid</source>
         <translation>Mostrar &amp;Grelha</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="544"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="545"/>
         <source>Toggle the display of the grid</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="546"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="547"/>
         <source>&lt;b&gt;Show Grid&lt;/b&gt;&lt;p&gt;Toggle the display of the grid.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="565"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
         <source>Freehand</source>
         <translation>Mão Livre</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="565"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
         <source>&amp;Freehand</source>
         <translation>Mão &amp;Livre</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="571"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="572"/>
         <source>&lt;b&gt;Free hand&lt;/b&gt;&lt;p&gt;Draws non linear lines.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mão Livre&lt;/b&gt;&lt;p&gt;Desenha linhas não lineares.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="580"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="581"/>
         <source>Color Picker</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="580"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="581"/>
         <source>&amp;Color Picker</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="586"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="587"/>
         <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="597"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
         <source>Rectangle</source>
         <translation>Rectangulo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="597"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
         <source>&amp;Rectangle</source>
         <translation>&amp;Rectangulo</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="603"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="604"/>
         <source>&lt;b&gt;Rectangle&lt;/b&gt;&lt;p&gt;Draw a rectangle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rectangulo&lt;/b&gt;&lt;p&gt;Desenha um rectangulo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="612"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="613"/>
         <source>Filled Rectangle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="612"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="613"/>
         <source>F&amp;illed Rectangle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="618"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="619"/>
         <source>&lt;b&gt;Filled Rectangle&lt;/b&gt;&lt;p&gt;Draw a filled rectangle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="628"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
         <source>Circle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="634"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="635"/>
         <source>&lt;b&gt;Circle&lt;/b&gt;&lt;p&gt;Draw a circle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="643"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="644"/>
         <source>Filled Circle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="643"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="644"/>
         <source>Fille&amp;d Circle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="649"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="650"/>
         <source>&lt;b&gt;Filled Circle&lt;/b&gt;&lt;p&gt;Draw a filled circle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="659"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
         <source>Ellipse</source>
         <translation>Elipse</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="659"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
         <source>&amp;Ellipse</source>
         <translation>&amp;Elipse</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="665"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="666"/>
         <source>&lt;b&gt;Ellipse&lt;/b&gt;&lt;p&gt;Draw an ellipse.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="674"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="675"/>
         <source>Filled Ellipse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="674"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="675"/>
         <source>Fille&amp;d Elli&amp;pse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="680"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="681"/>
         <source>&lt;b&gt;Filled Ellipse&lt;/b&gt;&lt;p&gt;Draw a filled ellipse.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="690"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="691"/>
         <source>Flood Fill</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="690"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="691"/>
         <source>Fl&amp;ood Fill</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="696"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="697"/>
         <source>&lt;b&gt;Flood Fill&lt;/b&gt;&lt;p&gt;Fill adjoining pixels with the same color with the current color.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="706"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
         <source>Line</source>
         <translation>Linha</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="706"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
         <source>&amp;Line</source>
         <translation>&amp;Linha</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="712"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="713"/>
         <source>&lt;b&gt;Line&lt;/b&gt;&lt;p&gt;Draw a line.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="721"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
         <source>Eraser (Transparent)</source>
         <translation>Borracha (Transparente)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="721"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
         <source>Eraser (&amp;Transparent)</source>
         <translation>Borracha (&amp;Transparente)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="727"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="728"/>
         <source>&lt;b&gt;Eraser (Transparent)&lt;/b&gt;&lt;p&gt;Erase pixels by setting them to transparent.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Borracha (Transparente)&lt;/b&gt;&lt;p&gt;Apaga os pixels ao definir-los transparentes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="736"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="737"/>
         <source>Rectangular Selection</source>
         <translation>Seleção Rectangular</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="753"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="754"/>
         <source>Rect&amp;angular Selection</source>
         <translation>Seleção Rect&amp;angular</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="742"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="743"/>
         <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="753"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="754"/>
         <source>Circular Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="759"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="760"/>
         <source>&lt;b&gt;Circular Selection&lt;/b&gt;&lt;p&gt;Select a circular section of the icon using the mouse.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="776"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
         <source>About</source>
         <translation>Acerca</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="776"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
         <source>&amp;About</source>
         <translation>A&amp;cerca</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="780"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="781"/>
         <source>Display information about this software</source>
         <translation>Mostra a informação acerca deste software</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="782"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="783"/>
         <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="../IconEditor/IconEditorWindow.py" line="788"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
         <source>About Qt</source>
         <translation>Acerca de Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="788"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
         <source>About &amp;Qt</source>
         <translation>Acerca de &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="792"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="793"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Mostra informação acerca das Ferramentas de Qt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="794"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="795"/>
         <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="../IconEditor/IconEditorWindow.py" line="801"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
         <source>What&apos;s This?</source>
         <translation>O que é isto?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="801"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
         <source>&amp;What&apos;s This?</source>
         <translation>&amp;Que é Isto?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="801"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="807"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="808"/>
         <source>Context sensitive help</source>
         <translation>Ajuda sensível ao contexto</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="808"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="809"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Mostrar ajuda sensível a contexto&lt;/b&gt;&lt;p&gt;No modo &apos;Que é Isto?&apos; o cursor do rato mostra uma flecha com um ponto de  interrogação, e pode clicar nos elementos da interface para ver uma breve descrição do que fazem e como se usam. Nas caixas de diálogo, pode-se aceder a esta característica através do botão de ajuda contextual da barra de título.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="825"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="826"/>
         <source>&amp;File</source>
         <translation>&amp;Ficheiro</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="842"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="843"/>
         <source>&amp;Edit</source>
         <translation>&amp;Editar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="858"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="859"/>
         <source>&amp;View</source>
         <translation>&amp;Vista</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="866"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="867"/>
         <source>&amp;Tools</source>
         <translation>&amp;Ferramentas</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="885"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="886"/>
         <source>&amp;Help</source>
         <translation>&amp;Ajuda</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="895"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="896"/>
         <source>File</source>
         <translation>Ficheiro</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="909"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="910"/>
         <source>Edit</source>
         <translation>Editar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="922"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="923"/>
         <source>View</source>
         <translation>Vista</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="927"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="928"/>
         <source>Tools</source>
         <translation>Ferramentas</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="945"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="946"/>
         <source>Help</source>
         <translation>Ajuda</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="959"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="960"/>
         <source>&lt;p&gt;This part of the status bar displays the icon size.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="966"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="967"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1062"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1069"/>
         <source>Open icon file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1112"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1119"/>
         <source>Save icon file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1112"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1119"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1148"/>
-        <source>The file &apos;{0}&apos; does not exist.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="1155"/>
+        <source>The file &apos;{0}&apos; does not exist.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1162"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1189"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1196"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1201"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1208"/>
         <source>Icon saved</source>
         <translation>Ícone gravado</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1216"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1223"/>
         <source>Untitled</source>
         <translation>Sem Título</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1227"/>
         <source>{0}[*] - {1}</source>
         <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1227"/>
         <source>Icon Editor</source>
         <translation>Editor de Ícones</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1241"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1248"/>
         <source>The icon image has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="133"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="134"/>
         <source>JPEG File (*.jpeg)</source>
         <translation>Ficheiro JPEG (*.jpeg)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="142"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="143"/>
         <source>Compressed Scalable Vector Graphics File (*.svgz)</source>
         <translation>Ficheiro Comprimido de Gráficos de Vectores Escaláveis (*.svgz)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="146"/>
-        <source>TIFF File (*.tiff)</source>
-        <translation>Ficheiros TIFF (*.tiff)</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="147"/>
+        <source>TIFF File (*.tiff)</source>
+        <translation>Ficheiros TIFF (*.tiff)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="148"/>
         <source>WAP Bitmap File (*.wbmp)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -41898,57 +41898,57 @@
         <translation type="obsolete">Acerca do Editor de Icones de eric6</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="293"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="294"/>
         <source>Close Others</source>
         <translation type="unfinished">Fechar Outros</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="297"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="298"/>
         <source>Close all other icon editor windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="299"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="300"/>
         <source>&lt;b&gt;Close Others&lt;/b&gt;&lt;p&gt;Closes all other icon editor windows.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="148"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="149"/>
         <source>WebP Image File (*.webp)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="126"/>
-        <source>Windows Cursor File (*.cur)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="127"/>
+        <source>Windows Cursor File (*.cur)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="128"/>
         <source>DirectDraw-Surface File (*.dds)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="129"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="130"/>
         <source>Apple Icon File (*.icns)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="131"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="132"/>
         <source>JPEG2000 File (*.jp2)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1241"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1248"/>
         <source>eric Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1331"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1338"/>
         <source>About eric Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1331"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1338"/>
         <source>The eric Icon Editor is a simple editor component to perform icon drawing tasks.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -42218,22 +42218,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="175"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="176"/>
         <source>Include Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="175"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="176"/>
         <source>Select Include Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="388"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="391"/>
         <source>Undefine Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="388"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="391"/>
         <source>Enter a variable name to be undefined:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -42744,52 +42744,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="70"/>
+        <location filename="../UI/InstallInfoDialog.py" line="71"/>
         <source>Yes</source>
         <translation type="unfinished">Sim</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="70"/>
+        <location filename="../UI/InstallInfoDialog.py" line="71"/>
         <source>No</source>
         <translation type="unfinished">Não</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="74"/>
+        <location filename="../UI/InstallInfoDialog.py" line="75"/>
         <source>&apos;eric-ide&apos; was installed from PyPI using the pip command.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="80"/>
+        <location filename="../UI/InstallInfoDialog.py" line="81"/>
         <source>The information shown in this dialog was guessed at the first start of eric.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="98"/>
+        <location filename="../UI/InstallInfoDialog.py" line="99"/>
         <source>Load Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="98"/>
+        <location filename="../UI/InstallInfoDialog.py" line="99"/>
         <source>&lt;p&gt;The file containing the install information could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="150"/>
+        <location filename="../UI/InstallInfoDialog.py" line="151"/>
         <source>Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="150"/>
+        <location filename="../UI/InstallInfoDialog.py" line="151"/>
         <source>The install information was edited. Unsaved changes will be lost. Save first?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="187"/>
+        <location filename="../UI/InstallInfoDialog.py" line="188"/>
         <source>Save Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="187"/>
+        <location filename="../UI/InstallInfoDialog.py" line="188"/>
         <source>&lt;p&gt;The file containing the install information could not be written.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -42799,17 +42799,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="60"/>
+        <location filename="../UI/InstallInfoDialog.py" line="61"/>
         <source>Installed as Administrator:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="62"/>
+        <location filename="../UI/InstallInfoDialog.py" line="63"/>
         <source>Installed with sudo:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="92"/>
+        <location filename="../UI/InstallInfoDialog.py" line="93"/>
         <source>unknown</source>
         <translation type="unfinished">desconhecido</translation>
     </message>
@@ -42819,7 +42819,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="86"/>
+        <location filename="../UI/InstallInfoDialog.py" line="87"/>
         <source>The installation information was provided by the user.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -42829,22 +42829,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="254"/>
+        <location filename="../UI/InstallInfoDialog.py" line="255"/>
         <source>Upgrade Instructions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="200"/>
+        <location filename="../UI/InstallInfoDialog.py" line="201"/>
         <source>Delete Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="200"/>
+        <location filename="../UI/InstallInfoDialog.py" line="201"/>
         <source>Do you really want to delete the installation information? It will be recreated at the next start.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="227"/>
+        <location filename="../UI/InstallInfoDialog.py" line="228"/>
         <source>Perform the following step(s) with Administrator privileges.
 </source>
         <translation type="unfinished"></translation>
@@ -44017,62 +44017,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="189"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="191"/>
         <source>Edit Identity</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="172"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="174"/>
         <source>The identity must contain at least one nick name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="189"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="191"/>
         <source>The identity must have a real name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="237"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="239"/>
         <source>Add Identity</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="287"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="289"/>
         <source>Identity Name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="297"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="299"/>
         <source>An identity named &lt;b&gt;{0}&lt;/b&gt; already exists. You must provide a different name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="312"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="314"/>
         <source>The identity has to have a name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="312"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="314"/>
         <source>Copy Identity</source>
         <translation>Copiar Identidade</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="297"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="299"/>
         <source>Rename Identity</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="336"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="338"/>
         <source>This identity is in use. If you remove it, the network settings using it will fall back to the default identity. Should it be deleted anyway?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="341"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="343"/>
         <source>Do you really want to delete all information for this identity?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="344"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="346"/>
         <source>Delete Identity</source>
         <translation>Apagar Identidade</translation>
     </message>
@@ -44082,12 +44082,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="477"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="480"/>
         <source>Press to show the password</source>
         <translation type="unfinished">Pressionar para mostrar a senha</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="471"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="474"/>
         <source>Press to hide the password</source>
         <translation type="unfinished"></translation>
     </message>
@@ -44193,22 +44193,22 @@
         <translation>Mostra o nome do servidor</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="254"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="258"/>
         <source>Yes</source>
         <translation>Sim</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="256"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="260"/>
         <source>No</source>
         <translation>Não</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="185"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="189"/>
         <source>Delete Channel</source>
         <translation>Apagar Canal</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="185"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="189"/>
         <source>Do you really want to delete channel &lt;b&gt;{0}&lt;/b&gt;?</source>
         <translation>Tem a certeza de que quer apagar o canal &lt;b&gt;{0}&lt;/b&gt;?</translation>
     </message>
@@ -44324,7 +44324,7 @@
         <translation>Selecionar uma rede para conetar</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="346"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="348"/>
         <source>Press to connect to the selected network</source>
         <translation>Pressionar para conetar à rede selecionada</translation>
     </message>
@@ -44354,57 +44354,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="434"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="436"/>
         <source>Save Messages</source>
         <translation>Gravar Mensagens</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="417"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="419"/>
         <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="434"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="436"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="452"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="454"/>
         <source>Error saving Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="452"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="454"/>
         <source>&lt;p&gt;The messages contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="465"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="467"/>
         <source>Copy</source>
         <translation>Copiar</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="469"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="471"/>
         <source>Cut all</source>
         <translation>Cortar tudo</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="472"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="474"/>
         <source>Copy all</source>
         <translation>Copiar tudo</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="476"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="478"/>
         <source>Clear</source>
         <translation>Limpar</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="480"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="482"/>
         <source>Save</source>
         <translation>Gravar</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="341"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="343"/>
         <source>Press to disconnect from the network</source>
         <translation>Pressionar para desconetar da rede</translation>
     </message>
@@ -44869,253 +44869,253 @@
         <translation>Pressionar para deixar o canal atual</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="244"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="245"/>
         <source>Disconnect from Server</source>
         <translation>Desconetar do servidor</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="244"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="245"/>
         <source>&lt;p&gt;Do you really want to disconnect from &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;&lt;p&gt;All channels will be closed.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="186"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="187"/>
         <source>SSL Connection</source>
         <translation>Conexão SSL</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="186"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="187"/>
         <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="564"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="565"/>
         <source>Info</source>
         <translation>Informação</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="219"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="220"/>
         <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="230"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="231"/>
         <source>Looking for server {0} (port {1})...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="253"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="254"/>
         <source>Disconnecting from server {0}...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="519"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="520"/>
         <source>Server found,connecting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="528"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="529"/>
         <source>Connected,logging in...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="564"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="565"/>
         <source>Server disconnected.</source>
         <translation>Servidor desconectado.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="611"/>
         <source>Message Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="611"/>
         <source>Unknown message received from server:&lt;br/&gt;{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="676"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="677"/>
         <source>Notice</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="694"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="695"/>
         <source>Mode</source>
         <translation type="unfinished">Modo</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="701"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="702"/>
         <source>You have left channel {0}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="712"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="713"/>
         <source>You are now known as {0}.</source>
         <translation>Conhecem-o como {0}.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="717"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="718"/>
         <source>User {0} is now known as {1}.</source>
         <translation>Usuário {0} é agora conhecido como {1}.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="727"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="728"/>
         <source>Server Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="763"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="764"/>
         <source>Error</source>
         <translation>Erro</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="778"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="779"/>
         <source>Welcome</source>
         <translation>Bem-vindo</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="780"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="781"/>
         <source>Support</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="782"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="783"/>
         <source>User</source>
         <translation>Usuário</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="784"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="785"/>
         <source>MOTD</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="786"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="787"/>
         <source>Away</source>
         <translation>Ausente</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="788"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="789"/>
         <source>Info ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="792"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="793"/>
         <source>Message of the day</source>
         <translation>Mensagem do dia</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="794"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="795"/>
         <source>End of message of the day</source>
         <translation>Fim da mensagem do dia</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="797"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="798"/>
         <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="803"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="804"/>
         <source>Current users on {0}: {1}, max. {2}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="808"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="809"/>
         <source>Current users on the network: {0}, max. {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="812"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="813"/>
         <source>You are no longer marked as being away.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="814"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="815"/>
         <source>You have been marked as being away.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="934"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
         <source>SSL Error</source>
         <translation>Erro SSL</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="876"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="877"/>
         <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="907"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
         <source>Socket Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="884"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="885"/>
         <source>The host was not found. Please check the host name and port settings.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="890"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="891"/>
         <source>The connection was refused by the peer. Please check the host name and port settings.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="901"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="902"/>
         <source>The following network error occurred:&lt;br/&gt;{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1030"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1031"/>
         <source>{0} ({1})</source>
         <comment>channel name, users count</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1071"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1072"/>
         <source>Critical</source>
         <translation>Crítico</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1052"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1053"/>
         <source>No nickname acceptable to the server configured for &lt;b&gt;{0}&lt;/b&gt;. Disconnecting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1071"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1072"/>
         <source>The given nickname is already in use.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1015"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1016"/>
         <source>CTCP</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="992"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="993"/>
         <source>Received Version request from {0}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="998"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="999"/>
         <source>Received CTCP-PING request from {0}, sending answer.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1006"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1007"/>
         <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1015"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1016"/>
         <source>Received unknown CTCP-{0} request from {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="687"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="688"/>
         <source>You have set your personal modes to &lt;b&gt;[{0}]&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="691"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="692"/>
         <source>{0} has changed your personal modes to &lt;b&gt;[{1}]&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -45130,47 +45130,47 @@
         <translation>Rede</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="896"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="897"/>
         <source>The SSL handshake failed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="907"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
         <source>A network error occurred.</source>
         <translation>Ocurreu um erro de rede.</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="920"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="921"/>
         <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="934"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
         <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="258"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="259"/>
         <source>Disconnecting from network {0}...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="263"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="264"/>
         <source>Disconnecting from server.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="643"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="644"/>
         <source>Received CTCP-PING response from {0} with latency of {1} ms.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="649"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="650"/>
         <source>Received unknown CTCP-{0} response from {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="723"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="724"/>
         <source>Received PONG from {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47364,57 +47364,57 @@
 <context>
     <name>Listspace</name>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="257"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="258"/>
         <source>Close</source>
         <translation>Fechar</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="264"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="265"/>
         <source>Close All</source>
         <translation>Fechar Tudo</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="267"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="268"/>
         <source>Save</source>
         <translation>Gravar</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="270"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="271"/>
         <source>Save As...</source>
         <translation>Gravar Como...</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="273"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="274"/>
         <source>Save All</source>
         <translation>Gravar Tudo</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="281"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="282"/>
         <source>Print</source>
         <translation>Imprimir</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="440"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="441"/>
         <source>Untitled {0}</source>
         <translation>Sem título {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="581"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="582"/>
         <source>{0} (ro)</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="277"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="278"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation>Abrir ficheiro de &apos;rejeição&apos;</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="285"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="286"/>
         <source>Copy Path to Clipboard</source>
         <translation>Copiar Rota à Área de Transferência</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="260"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="261"/>
         <source>Close Others</source>
         <translation>Fechar Outros</translation>
     </message>
@@ -47636,67 +47636,67 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="57"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="58"/>
         <source>Uninstall Selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="60"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="62"/>
         <source>Cancel</source>
         <translation type="unfinished">Cancelar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="177"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="180"/>
         <source>Error downloading dictionaries list</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="177"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="180"/>
         <source>&lt;p&gt;Could not download the dictionaries list from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="200"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="203"/>
         <source>Dictionaries URL Changed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="200"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="203"/>
         <source>The URL of the spell check dictionaries has changed. Select the &quot;Refresh&quot; button to get the new dictionaries list.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="212"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="215"/>
         <source>Error installing dictionaries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="212"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="215"/>
         <source>&lt;p&gt;None of the dictionary locations is writable by you. Please download required dictionaries manually and install them as administrator.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="263"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="266"/>
         <source>{0} ({1})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="372"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="376"/>
         <source>Error downloading dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="357"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="361"/>
         <source>&lt;p&gt;Could not download the requested dictionary file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="357"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="361"/>
         <source>Error downloading dictionary file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="372"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="376"/>
         <source>&lt;p&gt;The downloaded dictionary archive is invalid. Skipping it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47767,22 +47767,22 @@
         <translation>(ainda por definir)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="50"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="51"/>
         <source>Wrong password entered.</source>
         <translation>Introduzida senha errada.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="54"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="55"/>
         <source>New password must not be empty.</source>
         <translation>A nova senha não deve estar vazia.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="61"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="62"/>
         <source>Repeated password is wrong.</source>
         <translation>Senha repetida está errada.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="66"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="67"/>
         <source>Old and new password must not be the same.</source>
         <translation>A senha antiga e a nova não devem ser as mesmas.</translation>
     </message>
@@ -48267,7 +48267,7 @@
 <context>
     <name>MicroPythonCommandsInterface</name>
     <message>
-        <location filename="../MicroPython/MicroPythonCommandsInterface.py" line="284"/>
+        <location filename="../MicroPython/MicroPythonCommandsInterface.py" line="285"/>
         <source>Detected an error without indications.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48599,22 +48599,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="72"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="73"/>
         <source>max. X:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="81"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="83"/>
         <source>Enter the maximum number of data points to be plotted.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="330"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="332"/>
         <source>Save Chart Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="330"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="332"/>
         <source>&lt;p&gt;The chart data could not be saved into file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48697,7 +48697,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="69"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="77"/>
         <source>All Files (*)</source>
         <translation type="unfinished">Ficheiros Todos (*)</translation>
     </message>
@@ -48772,37 +48772,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="48"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="49"/>
         <source>Dark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="50"/>
-        <source>Blue Cerulean</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="52"/>
+        <source>Blue Cerulean</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="55"/>
         <source>Brown Sand</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="54"/>
-        <source>Blue NCS</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="56"/>
-        <source>High Contrast</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="58"/>
+        <source>Blue NCS</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="61"/>
+        <source>High Contrast</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="64"/>
         <source>Blue Icy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="60"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="67"/>
         <source>Qt</source>
         <translation type="unfinished">Qt</translation>
     </message>
@@ -48943,17 +48943,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="562"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="566"/>
         <source>Press to connect the selected device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="276"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="278"/>
         <source>&lt;h3&gt;The QtSerialPort package is not available.&lt;br/&gt;MicroPython support is deactivated.&lt;/h3&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../MicroPython/MicroPythonWidget.py" line="318"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="320"/>
         <source>%n supported device(s) detected.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -48961,37 +48961,37 @@
         </translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="340"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="342"/>
         <source>No supported devices detected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="532"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="536"/>
         <source>Clear</source>
         <translation type="unfinished">Limpar</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="534"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="538"/>
         <source>Copy</source>
         <translation type="unfinished">Copiar</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="535"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="539"/>
         <source>Paste</source>
         <translation type="unfinished">Colar</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="557"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="561"/>
         <source>Press to disconnect the current device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="578"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="582"/>
         <source>No device attached</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="578"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="582"/>
         <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -49000,212 +49000,212 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="605"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="609"/>
         <source>Start REPL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="605"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="609"/>
         <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1054"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1068"/>
         <source>Serial Device Connect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1054"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1068"/>
         <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1099"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1113"/>
         <source>Run Script</source>
         <translation type="unfinished">Executar Script</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1082"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1096"/>
         <source>There is no editor open. Abort...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1090"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1104"/>
         <source>The current editor does not contain a script. Abort...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1099"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1113"/>
         <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1123"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1137"/>
         <source>Open Python File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1123"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1137"/>
         <source>Python3 Files (*.py);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1168"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1182"/>
         <source>Start Chart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1168"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1182"/>
         <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1197"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1211"/>
         <source>Unsaved Chart Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1197"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1211"/>
         <source>The chart contains unsaved data.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1248"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1262"/>
         <source>Start File Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1248"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1262"/>
         <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1322"/>
-        <source>Show Version</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1325"/>
-        <source>Show Implementation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1452"/>
-        <source>Synchronize Time</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1333"/>
-        <source>Show Device Time</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../MicroPython/MicroPythonWidget.py" line="1336"/>
+        <source>Show Version</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1339"/>
+        <source>Show Implementation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1466"/>
+        <source>Synchronize Time</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1347"/>
+        <source>Show Device Time</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1350"/>
         <source>Show Local Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1673"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1687"/>
         <source>Compile Python File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1693"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1707"/>
         <source>Compile Current Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1388"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1402"/>
         <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1397"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1411"/>
         <source>No version information available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1399"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1413"/>
         <source>Device Version Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1422"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1436"/>
         <source>unknown</source>
         <translation type="unfinished">desconhecido</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1426"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1440"/>
         <source>Device Implementation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1426"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1440"/>
         <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1452"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1466"/>
         <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1475"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1489"/>
         <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1483"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1497"/>
         <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1500"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1514"/>
         <source>Device Date and Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1513"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1527"/>
         <source>Local Date and Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1513"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1527"/>
         <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1581"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1595"/>
         <source>Error handling device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1581"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1595"/>
         <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1621"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1635"/>
         <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1643"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1657"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation type="unfinished">Ficheiros Python (*.py);;Ficheiros Todos (*)</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1653"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1667"/>
         <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1663"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1677"/>
         <source>&apos;mpy-cross&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1686"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1700"/>
         <source>The current editor does not contain a Python file. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49220,114 +49220,114 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1181"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1195"/>
         <source>&#xc2;&#xb5;Py Chart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1264"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1278"/>
         <source>&#xc2;&#xb5;Py Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1365"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1379"/>
         <source>Show Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1378"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1392"/>
         <source>Configure</source>
         <translation type="unfinished">Configurar</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1339"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1353"/>
         <source>Show Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1358"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1372"/>
         <source>Download Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1556"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1570"/>
         <source>Date and Time</source>
         <translation type="unfinished">Data e Hora</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1539"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1553"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{0}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1556"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1570"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align=&apos;center&apos;&gt;{0} {1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="410"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="412"/>
         <source>Unknown MicroPython Device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1375"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1389"/>
         <source>Ignored Serial Devices</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1304"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1318"/>
         <source>Downloads</source>
         <translation type="unfinished">Descargas</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="323"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="325"/>
         <source>{0} - {1} ({2})</source>
         <comment>board name, description, port name</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="382"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="384"/>
         <source>&lt;p&gt;Detected these unknown serial devices&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please report them together with the board name and a short description to &lt;a href=&quot;mailto:{1}&quot;&gt; the eric bug reporting address&lt;/a&gt; if it is a MicroPython board.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="382"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="384"/>
         <source>{0} (0x{1:04x}/0x{2:04x})</source>
         <comment>description, VId, PId</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="410"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="412"/>
         <source>Would you like to add them to the list of manually configured devices?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1373"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1387"/>
         <source>Manage Unknown Devices</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1778"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1792"/>
         <source>Add Unknown Devices</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1778"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1792"/>
         <source>Select the devices to be added:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1370"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1384"/>
         <source>Flash UF2 Device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="350"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="352"/>
         <source>Manual Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../MicroPython/MicroPythonWidget.py" line="344"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="346"/>
         <source>
 %n unknown device(s) for manual selection.</source>
         <translation type="unfinished">
@@ -49538,599 +49538,599 @@
 <context>
     <name>MiniEditor</name>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="467"/>
+        <location filename="../QScintilla/MiniEditor.py" line="468"/>
         <source>Line: {0:5}</source>
         <translation>Linha: {0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="471"/>
+        <location filename="../QScintilla/MiniEditor.py" line="472"/>
         <source>Pos: {0:5}</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>New</source>
         <translation>Novo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>&amp;New</source>
         <translation>&amp;Novo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="551"/>
-        <source>Open an empty editor window</source>
-        <translation>Abrir uma janela do editor vazia</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="552"/>
+        <source>Open an empty editor window</source>
+        <translation>Abrir uma janela do editor vazia</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="553"/>
         <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="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>Open</source>
         <translation>Abrir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>&amp;Open...</source>
         <translation>&amp;Abrir...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="565"/>
-        <source>Open a file</source>
-        <translation>Abrir um ficheiro</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="566"/>
+        <source>Open a file</source>
+        <translation>Abrir um ficheiro</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="567"/>
         <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 um ficheiro&lt;/b&gt;&lt;p&gt;Será perguntado pelo nome de um ficheiro para abrir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>Save</source>
         <translation>Gravar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>&amp;Save</source>
         <translation>&amp;Gravar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="579"/>
-        <source>Save the current file</source>
-        <translation>Gravar o ficheiro atual</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="580"/>
+        <source>Save the current file</source>
+        <translation>Gravar o ficheiro atual</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="581"/>
         <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="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Save as</source>
         <translation>Gravar como</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Save &amp;as...</source>
         <translation>Gr&amp;avar como...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="593"/>
+        <location filename="../QScintilla/MiniEditor.py" line="594"/>
         <source>Save the current file to a new one</source>
         <translation>Gravar o ficheiro atual para um novo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="595"/>
+        <location filename="../QScintilla/MiniEditor.py" line="596"/>
         <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="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>Close</source>
         <translation>Fechar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>&amp;Close</source>
         <translation>Fe&amp;char</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="624"/>
-        <source>Close the editor window</source>
-        <translation>Fechar a janela do editor</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="625"/>
+        <source>Close the editor window</source>
+        <translation>Fechar a janela do editor</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="626"/>
         <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="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>Print</source>
         <translation>Imprimir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>&amp;Print</source>
         <translation>Im&amp;primir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="638"/>
-        <source>Print the current file</source>
-        <translation>Imprimir o ficheiro atual</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="639"/>
+        <source>Print the current file</source>
+        <translation>Imprimir o ficheiro atual</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="640"/>
         <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 Ficheiro&lt;/b&gt;&lt;p&gt;Imprime o conteúdo do ficheiro atual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="646"/>
+        <location filename="../QScintilla/MiniEditor.py" line="647"/>
         <source>Print Preview</source>
         <translation>Antevisão da Impressão</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="651"/>
+        <location filename="../QScintilla/MiniEditor.py" line="652"/>
         <source>Print preview of the current file</source>
         <translation>Antevisão da impressão do ficheiro atual</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="653"/>
+        <location filename="../QScintilla/MiniEditor.py" line="654"/>
         <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;Antevisão da Impressão&lt;/b&gt;&lt;p&gt;Antevisão da Impressão do ficheiro atual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Undo</source>
         <translation>Desfazer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>&amp;Undo</source>
         <translation>Desfa&amp;zer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="671"/>
-        <source>Undo the last change</source>
-        <translation>Desfazer a última alteração</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="672"/>
+        <source>Undo the last change</source>
+        <translation>Desfazer a última alteração</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="673"/>
         <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="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>Redo</source>
         <translation>Refazer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>&amp;Redo</source>
         <translation>&amp;Refazer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="685"/>
-        <source>Redo the last change</source>
-        <translation>Refazer a última alteração</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="686"/>
+        <source>Redo the last change</source>
+        <translation>Refazer a última alteração</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="687"/>
         <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="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Cut</source>
         <translation>Cortar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Cu&amp;t</source>
         <translation>Cor&amp;tar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="700"/>
-        <source>Cut the selection</source>
-        <translation>Cortar a seleção</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="701"/>
+        <source>Cut the selection</source>
+        <translation>Cortar a seleção</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="702"/>
         <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;Recorta a seleção do texto do editor atual para a Área de Transferência.&lt;p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Copy</source>
         <translation>Copiar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>&amp;Copy</source>
         <translation>&amp;Copiar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="716"/>
-        <source>Copy the selection</source>
-        <translation>Copiar a seleção</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="717"/>
+        <source>Copy the selection</source>
+        <translation>Copiar a seleção</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="718"/>
         <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;Copia a seleção de texto do editor atual para a Área de Transferência.&lt;p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Paste</source>
         <translation>Colar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>&amp;Paste</source>
         <translation>Co&amp;lar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="732"/>
+        <location filename="../QScintilla/MiniEditor.py" line="733"/>
         <source>Paste the last cut/copied text</source>
         <translation>Colar o último texto cortado/copiado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="734"/>
+        <location filename="../QScintilla/MiniEditor.py" line="735"/>
         <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;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="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Clear</source>
         <translation>Limpar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Cl&amp;ear</source>
         <translation>Li&amp;mpar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="749"/>
-        <source>Clear all text</source>
-        <translation>Limpar todo o texto</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="750"/>
+        <source>Clear all text</source>
+        <translation>Limpar todo o texto</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="751"/>
         <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="../QScintilla/MiniEditor.py" line="2353"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2354"/>
         <source>About</source>
         <translation>Acerca</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2353"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2354"/>
         <source>&amp;About</source>
         <translation>A&amp;cerca</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2358"/>
         <source>Display information about this software</source>
         <translation>Mostra a informação acerca deste software</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2359"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2360"/>
         <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="2365"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2366"/>
         <source>About Qt</source>
         <translation>Acerca de Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2365"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2366"/>
         <source>About &amp;Qt</source>
         <translation>Acerca de &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2369"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2370"/>
         <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="2371"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2372"/>
         <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="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>What&apos;s This?</source>
         <translation>O que é Isto?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>&amp;What&apos;s This?</source>
         <translation>O &amp;que é Isto?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2384"/>
-        <source>Context sensitive help</source>
-        <translation>Ajuda sensível ao contexto</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2385"/>
+        <source>Context sensitive help</source>
+        <translation>Ajuda sensível ao contexto</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
         <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="2401"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2402"/>
         <source>&amp;File</source>
         <translation>&amp;Ficheiro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2413"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2414"/>
         <source>&amp;Edit</source>
         <translation>&amp;Editar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2439"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2440"/>
         <source>&amp;Help</source>
         <translation>&amp;Ajuda</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2451"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2452"/>
         <source>File</source>
         <translation>Ficheiro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2464"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2465"/>
         <source>Edit</source>
         <translation>Editar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2474"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2475"/>
         <source>Find</source>
         <translation>Encontrar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2488"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2489"/>
         <source>Help</source>
         <translation>Ajuda</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2509"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2510"/>
         <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="2516"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2517"/>
         <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="2523"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2524"/>
         <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="2540"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2541"/>
         <source>Ready</source>
         <translation>Preparado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2567"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2568"/>
         <source>The document has unsaved changes.</source>
         <translation>O documento tem alterações por gravar.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2594"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2595"/>
         <source>Open File</source>
         <translation>Abrir Ficheiro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2594"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2595"/>
         <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="2622"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2623"/>
         <source>File loaded</source>
         <translation>Ficheiro carregado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2701"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2702"/>
         <source>Save File</source>
         <translation>Gravar Ficheiro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2701"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2702"/>
         <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="2708"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2709"/>
         <source>File saved</source>
         <translation>Ficheiro gravado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3055"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3066"/>
         <source>Untitled</source>
         <translation>Sem Título</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2737"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2738"/>
         <source>{0}[*] - {1}</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2737"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2738"/>
         <source>Mini Editor</source>
         <translation>Mini Editor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3018"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3026"/>
         <source>Printing...</source>
         <translation>A imprimir...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3036"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3047"/>
         <source>Printing completed</source>
         <translation>Impressão completa</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3038"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3049"/>
         <source>Error while printing</source>
         <translation>Erro durante a impressão</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3041"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3052"/>
         <source>Printing aborted</source>
         <translation>Impressão cancelada</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3096"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3107"/>
         <source>Select all</source>
         <translation>Selecionar tudo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3097"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3108"/>
         <source>Deselect all</source>
         <translation>Desselecionar tudo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3111"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3122"/>
         <source>Languages</source>
         <translation>Idiomas</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3114"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3125"/>
         <source>No Language</source>
         <translation>Sem Idioma</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3138"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3149"/>
         <source>Guessed</source>
         <translation>Adivinhado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3160"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3171"/>
         <source>Alternatives</source>
         <translation>Alternativas</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3156"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3167"/>
         <source>Alternatives ({0})</source>
         <translation>Alternativas ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3184"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3195"/>
         <source>Pygments Lexer</source>
         <translation>Analizador Léxico Pygments</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3184"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3195"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>Selecionar o analizador léxico Pygments a aplicar.</translation>
     </message>
@@ -50150,77 +50150,77 @@
         <translation type="obsolete">Mini Editor eric6</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save &amp;Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="608"/>
+        <location filename="../QScintilla/MiniEditor.py" line="609"/>
         <source>Save a copy of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="610"/>
+        <location filename="../QScintilla/MiniEditor.py" line="611"/>
         <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="../QScintilla/MiniEditor.py" line="3698"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3709"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3698"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3709"/>
         <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="2720"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2721"/>
         <source>[*] - {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="486"/>
+        <location filename="../QScintilla/MiniEditor.py" line="487"/>
         <source>Language: {0}</source>
         <translation type="unfinished">Linguagem: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2431"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2432"/>
         <source>&amp;View</source>
         <translation type="unfinished">&amp;Vista</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2481"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2482"/>
         <source>View</source>
         <translation type="unfinished">Vista</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2501"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2502"/>
         <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2534"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2535"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="397"/>
+        <location filename="../QScintilla/MiniEditor.py" line="398"/>
         <source>About eric Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="397"/>
+        <location filename="../QScintilla/MiniEditor.py" line="398"/>
         <source>The eric 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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2567"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2568"/>
         <source>eric Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
@@ -50715,12 +50715,12 @@
 <context>
     <name>MouseUtilities</name>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="29"/>
+        <location filename="../Utilities/MouseUtilities.py" line="31"/>
         <source>Shift</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="31"/>
+        <location filename="../Utilities/MouseUtilities.py" line="33"/>
         <source>Alt</source>
         <translation type="unfinished"></translation>
     </message>
@@ -50730,37 +50730,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="33"/>
+        <location filename="../Utilities/MouseUtilities.py" line="35"/>
         <source>Ctrl</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="35"/>
+        <location filename="../Utilities/MouseUtilities.py" line="37"/>
         <source>Meta</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="43"/>
-        <source>Left Button</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Utilities/MouseUtilities.py" line="45"/>
-        <source>Right Button</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Utilities/MouseUtilities.py" line="47"/>
-        <source>Middle Button</source>
+        <source>Left Button</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Utilities/MouseUtilities.py" line="49"/>
-        <source>Extra Button 1</source>
+        <source>Right Button</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Utilities/MouseUtilities.py" line="51"/>
+        <source>Middle Button</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Utilities/MouseUtilities.py" line="53"/>
+        <source>Extra Button 1</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Utilities/MouseUtilities.py" line="55"/>
         <source>Extra Button 2</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51286,32 +51286,32 @@
 <context>
     <name>NavigationBar</name>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="55"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="56"/>
         <source>Move one screen backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="65"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="67"/>
         <source>Move one screen forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="83"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="86"/>
         <source>Move to the initial screen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="95"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="99"/>
         <source>Exit Fullscreen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="273"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="281"/>
         <source>Clear History</source>
         <translation type="unfinished">Limpar Histórico</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="108"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="113"/>
         <source>Main Menu</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51362,12 +51362,12 @@
         <translation type="unfinished">&lt;b&gt;Introduzir nome de usuário e senha para &apos;{0}&apos;&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/NetworkManager.py" line="336"/>
+        <location filename="../WebBrowser/Network/NetworkManager.py" line="338"/>
         <source>Authentication required</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/NetworkManager.py" line="337"/>
+        <location filename="../WebBrowser/Network/NetworkManager.py" line="339"/>
         <source>Authentication is required to access:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52033,27 +52033,27 @@
         <translation>Inverter a ordem do byte</translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="184"/>
+        <location filename="../UI/NumbersWidget.py" line="194"/>
         <source>Auto</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="185"/>
+        <location filename="../UI/NumbersWidget.py" line="195"/>
         <source>Dec</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="186"/>
+        <location filename="../UI/NumbersWidget.py" line="196"/>
         <source>Hex</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="187"/>
+        <location filename="../UI/NumbersWidget.py" line="197"/>
         <source>Oct</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="188"/>
+        <location filename="../UI/NumbersWidget.py" line="198"/>
         <source>Bin</source>
         <translation></translation>
     </message>
@@ -52210,17 +52210,17 @@
         <translation>Palavras Chave</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="136"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="143"/>
         <source>&lt;strong&gt;Description:&lt;/strong&gt; {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="141"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="148"/>
         <source>&lt;strong&gt;Provides contextual suggestions&lt;/strong&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="149"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="156"/>
         <source>Comma-separated list of keywords that may be entered in the location bar followed by search terms to search with this engine</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52228,7 +52228,7 @@
 <context>
     <name>OpenSearchManager</name>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchManager.py" line="462"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchManager.py" line="463"/>
         <source>&lt;p&gt;Do you want to add the following engine to your list of search engines?&lt;br/&gt;&lt;br/&gt;Name: {0}&lt;br/&gt;Searches on: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Deseja adicionar o motor seguinte à lista de motores de pesquisa?&lt;br/&gt;&lt;br/&gt;Nome: {0}&lt;br/&gt;Pesquisar em: {1}&lt;/p&gt;</translation>
     </message>
@@ -52852,12 +52852,12 @@
         <translation type="unfinished">Erros</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="146"/>
+        <location filename="../PipInterface/PipDialog.py" line="156"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="146"/>
+        <location filename="../PipInterface/PipDialog.py" line="156"/>
         <source>The process {0} could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52933,7 +52933,7 @@
 <context>
     <name>PipFreezeDialog</name>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="225"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="227"/>
         <source>Generate Requirements</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53018,27 +53018,27 @@
         <translation type="unfinished">Atualiza&amp;r</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="225"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="227"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished">Ficheiros de Texto (*.txt);;Ficheiros Todos (*)</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="114"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="116"/>
         <source>The requirements were changed. Do you want to overwrite these changes?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="156"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="158"/>
         <source>No output generated by &apos;pip freeze&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="193"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="195"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; already exists. Do you want to overwrite it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="205"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="207"/>
         <source>&lt;p&gt;The requirements could not be written to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53264,32 +53264,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="190"/>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="193"/>
         <source>any</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="229"/>
-        <source>B</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PipInterface/PipPackageDetailsDialog.py" line="232"/>
-        <source>KB</source>
+        <source>B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackageDetailsDialog.py" line="235"/>
-        <source>MB</source>
+        <source>KB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackageDetailsDialog.py" line="238"/>
+        <source>MB</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="241"/>
         <source>GB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="239"/>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="242"/>
         <source>{0:.1f} {1}</source>
         <comment>value, unit</comment>
         <translation type="unfinished"></translation>
@@ -53431,7 +53431,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="189"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="192"/>
         <source>Name:</source>
         <translation type="unfinished">Nome:</translation>
     </message>
@@ -53446,7 +53446,7 @@
         <translation type="unfinished">Introduzir o termo de pesquisa</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="193"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="196"/>
         <source>Summary:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53476,77 +53476,77 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="190"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="193"/>
         <source>Version:</source>
         <translation type="unfinished">Versão:</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="191"/>
-        <source>Location:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="192"/>
-        <source>Requires:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="194"/>
-        <source>Homepage:</source>
+        <source>Location:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="195"/>
-        <source>Author:</source>
-        <translation type="unfinished">Autor:</translation>
-    </message>
-    <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="196"/>
-        <source>Author Email:</source>
-        <translation type="unfinished">Correio Eletrónico do Autor:</translation>
+        <source>Requires:</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="197"/>
-        <source>License:</source>
+        <source>Homepage:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="198"/>
-        <source>Metadata Version:</source>
-        <translation type="unfinished"></translation>
+        <source>Author:</source>
+        <translation type="unfinished">Autor:</translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="199"/>
-        <source>Installer:</source>
-        <translation type="unfinished"></translation>
+        <source>Author Email:</source>
+        <translation type="unfinished">Correio Eletrónico do Autor:</translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="200"/>
-        <source>Classifiers:</source>
+        <source>License:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="201"/>
-        <source>Entry Points:</source>
+        <source>Metadata Version:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="202"/>
+        <source>Installer:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="203"/>
+        <source>Classifiers:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="204"/>
+        <source>Entry Points:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="205"/>
         <source>Files:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="351"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="360"/>
         <source>Getting installed packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="366"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="375"/>
         <source>Getting outdated packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../PipInterface/PipPackagesWidget.py" line="776"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="791"/>
         <source>%n package(s) found.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -53554,7 +53554,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
         <source>Search PyPI</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53564,92 +53564,92 @@
         <translation type="obsolete">Erro: {0}</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
         <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="960"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="975"/>
         <source>Install Pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="963"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="978"/>
         <source>Install Pip to User-Site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="966"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="981"/>
         <source>Repair Pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1083"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1098"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="973"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="988"/>
         <source>Install Local Package</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="977"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="992"/>
         <source>Install Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="980"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="995"/>
         <source>Uninstall Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="983"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="998"/>
         <source>Generate Requirements...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1001"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1016"/>
         <source>Edit User Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1004"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1019"/>
         <source>Edit Environment Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1009"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1024"/>
         <source>Configure...</source>
         <translation type="unfinished">Configurar...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1194"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1209"/>
         <source>Edit Configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1194"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1209"/>
         <source>No valid configuration path determined. Aborting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="987"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1002"/>
         <source>Show Cache Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="990"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1005"/>
         <source>Show Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="993"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1008"/>
         <source>Remove Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="996"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1011"/>
         <source>Purge Cache...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53659,17 +53659,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="759"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="774"/>
         <source>&lt;p&gt;Received an error while searching for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="778"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="793"/>
         <source>Showing first 20 packages found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="785"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="800"/>
         <source>&lt;p&gt;There were no results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53932,17 +53932,17 @@
         <translation>Desativar</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInfoDialog.py" line="101"/>
+        <location filename="../PluginManager/PluginInfoDialog.py" line="105"/>
         <source>Yes</source>
         <translation>Sim</translation>
     </message>
     <message>
+        <location filename="../PluginManager/PluginInfoDialog.py" line="78"/>
+        <source>No</source>
+        <translation>Não</translation>
+    </message>
+    <message>
         <location filename="../PluginManager/PluginInfoDialog.py" line="77"/>
-        <source>No</source>
-        <translation>Não</translation>
-    </message>
-    <message>
-        <location filename="../PluginManager/PluginInfoDialog.py" line="76"/>
         <source>On-Demand</source>
         <translation type="unfinished"></translation>
     </message>
@@ -54023,17 +54023,17 @@
         <translation>Instalar</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="75"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="77"/>
         <source>User plugins directory</source>
         <translation>Diretório de complementos do usuário</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="81"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="83"/>
         <source>Global plugins directory</source>
         <translation>Diretório global de complementos</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="145"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="147"/>
         <source>Plugin ZIP-Archives:
 {0}
 
@@ -54046,77 +54046,77 @@
 {1} ({2})</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="162"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="164"/>
         <source>Select plugin ZIP-archives</source>
         <translation>Selecionar ficheiros ZIP de complementos</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="162"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="164"/>
         <source>Plugin archive (*.zip)</source>
         <translation>Ficheiro Complemento (*.zip)</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="231"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="233"/>
         <source>Installing {0} ...</source>
         <translation>A instalar {0} ...</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="236"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="238"/>
         <source>  ok</source>
         <translation>  ok</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="243"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="245"/>
         <source>The plugins were installed successfully.</source>
         <translation>Os complementos foram instalados com êxito.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="246"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="248"/>
         <source>Some plugins could not be installed.</source>
         <translation>Não se puderam instalar alguns complementos.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="274"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="276"/>
         <source>&lt;p&gt;The archive file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; não existe. A cancelar...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="315"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="317"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not a valid plugin ZIP-archive. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; não é um ficheiro ZIP de complemento válido. A cancelar...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="294"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="296"/>
         <source>&lt;p&gt;The destination directory &lt;b&gt;{0}&lt;/b&gt; is not writeable. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Não se pode escrever no diretório de destino &lt;b&gt;{0}&lt;/b&gt;. Cancelar...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="364"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="366"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; does not contain a &apos;packageName&apos; attribute. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;O módulo do complemento &lt;b&gt;{0}&lt;/b&gt; não contém o atributo &apos;packageName&apos;. Cancelar...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="374"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="376"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; does not conform with the PyQt v2 API. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;O módulo do complemento &lt;b&gt;{0}&lt;/b&gt; não está conforme com a API de PyQt v2. A cancelar...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="389"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="391"/>
         <source>&lt;p&gt;The plugin package &lt;b&gt;{0}&lt;/b&gt; exists. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Existe o pacote de complementos &lt;b&gt;{0}&lt;/b&gt;. A cancelar...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="402"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="404"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; exists. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;Existe o módulo de complemento &lt;b&gt;{0}&lt;/b&gt;. A cancelar...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="496"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="498"/>
         <source>Error installing plugin. Reason: {0}</source>
         <translation>Erro ao instalar complemento. Motivo: {0}</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="505"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="507"/>
         <source>Unspecific exception installing plugin.</source>
         <translation>Exceção não especificada ao instalar complemento.</translation>
     </message>
@@ -54164,22 +54164,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1292"/>
+        <location filename="../PluginManager/PluginManager.py" line="1293"/>
         <source>Error downloading file</source>
         <translation>Erro ao descarregar ficheiro</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1292"/>
+        <location filename="../PluginManager/PluginManager.py" line="1293"/>
         <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1329"/>
+        <location filename="../PluginManager/PluginManager.py" line="1330"/>
         <source>New plugin versions available</source>
         <translation>Disponível novas versões de complementos</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1329"/>
+        <location filename="../PluginManager/PluginManager.py" line="1330"/>
         <source>&lt;p&gt;There are new plug-ins or plug-in updates available. Use the plug-in repository dialog to get them.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -54463,53 +54463,53 @@
         <translation type="unfinished">Fechar &amp;&amp; Instalar</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="359"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="362"/>
         <source>Download Plugin Files</source>
         <translation type="unfinished">Descarregar Ficheiros Complemento</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="359"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="362"/>
         <source>The requested plugins were downloaded.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="415"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="418"/>
         <source>Read plugins repository file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="415"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="418"/>
         <source>&lt;p&gt;The plugins repository file &lt;b&gt;{0}&lt;/b&gt; could not be read. Select Update&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="423"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="426"/>
         <source>No plugin repository file available.
 Select Update.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="484"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="491"/>
         <source>Error downloading file</source>
         <translation type="unfinished">Erro ao descarregar ficheiro</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="484"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="491"/>
         <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="568"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="575"/>
         <source>Stable</source>
         <translation type="unfinished">Estável</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="574"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="581"/>
         <source>Unstable</source>
         <translation type="unfinished">Instável</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="586"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="593"/>
         <source>Unknown</source>
         <translation>Desconhecido</translation>
     </message>
@@ -54519,87 +54519,87 @@
         <translation type="unfinished">Descarregar &amp;&amp; Instalar</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="407"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="410"/>
         <source>Plugins Repository URL Changed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="407"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="410"/>
         <source>The URL of the Plugins Repository has changed. Select the &quot;Update&quot; button to get the new repository file.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="117"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="120"/>
         <source>Hide</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="119"/>
-        <source>Hide Selected</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="122"/>
-        <source>Show All</source>
+        <source>Hide Selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="125"/>
+        <source>Show All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="128"/>
         <source>Cleanup Downloads</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="600"/>
-        <source>up-to-date</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="603"/>
-        <source>new download available</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="607"/>
+        <source>up-to-date</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="610"/>
+        <source>new download available</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="614"/>
         <source>update installable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="611"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="618"/>
         <source>updated download available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="979"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="986"/>
         <source>Cleanup of Plugin Downloads</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="979"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="986"/>
         <source>&lt;p&gt;The plugin download &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="430"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="433"/>
         <source>New: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="432"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="435"/>
         <source>Local Updates: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="434"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="437"/>
         <source>Remote Updates: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="580"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="587"/>
         <source>Obsolete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="615"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="622"/>
         <source>error determining status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -54607,17 +54607,17 @@
 <context>
     <name>PluginRepositoryWindow</name>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>Process Generation Error</source>
         <translation>Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>&lt;p&gt;Could not start the process.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Não pode começar o processo. &lt;br&gt; Assegurar de que está disponível como &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>OK</source>
         <translation></translation>
     </message>
@@ -54969,17 +54969,17 @@
 <context>
     <name>Preferences</name>
     <message>
-        <location filename="../Preferences/__init__.py" line="1640"/>
+        <location filename="../Preferences/__init__.py" line="1649"/>
         <source>Export Preferences</source>
         <translation>Exportar Preferências</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1668"/>
+        <location filename="../Preferences/__init__.py" line="1677"/>
         <source>Import Preferences</source>
         <translation>Importar Preferências</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1668"/>
+        <location filename="../Preferences/__init__.py" line="1677"/>
         <source>Properties File (*.ini);;All Files (*)</source>
         <translation>Ficheiro de Propriedades (*.ini);;Ficheiros Todos (*)</translation>
     </message>
@@ -55000,7 +55000,7 @@
 <context>
     <name>PreviewModel</name>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="432"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="434"/>
         <source>Variable Name</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55008,27 +55008,27 @@
 <context>
     <name>PreviewProcessingThread</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="463"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="466"/>
         <source>&lt;p&gt;No preview available for this type of file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;A antevisão para este tipo de ficheiro não está disponível.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="572"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="575"/>
         <source>&lt;p&gt;ReStructuredText preview requires the &lt;b&gt;sphinx&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager,&apos;pip install Sphinx&apos; or see &lt;a href=&quot;http://pypi.python.org/pypi/Sphinx&quot;&gt;this page.&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Alternatively you may disable Sphinx usage on the Editor, Filehandling configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="632"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="635"/>
         <source>&lt;p&gt;ReStructuredText preview requires the &lt;b&gt;python-docutils&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager, &apos;pip install docutils&apos; or see &lt;a href=&quot;http://pypi.python.org/pypi/docutils&quot;&gt;this page.&lt;/a&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="675"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="678"/>
         <source>&lt;p&gt;Markdown preview requires the &lt;b&gt;Markdown&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager, &apos;pip install Markdown&apos; or see &lt;a href=&quot;http://pythonhosted.org/Markdown/install.html&quot;&gt;installation instructions.&lt;/a&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="647"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="650"/>
         <source>&lt;p&gt;Docutils returned an error:&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55036,42 +55036,42 @@
 <context>
     <name>PreviewerHTML</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="75"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="78"/>
         <source>Select to enable JavaScript for HTML previews</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="74"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="77"/>
         <source>Enable JavaScript</source>
         <translation>Habilitar JavaScript</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="81"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="84"/>
         <source>Select to enable support for Server Side Includes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="79"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="82"/>
         <source>Enable Server Side Includes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="194"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="197"/>
         <source>&lt;p&gt;No preview available for this type of file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;A antevisão para este tipo de ficheiro não está disponível.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="253"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="256"/>
         <source>Preview - {0}</source>
         <translation>Antevisão - {0}</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="255"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="258"/>
         <source>Preview</source>
         <translation>Antevisão</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="57"/>
+        <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 type="unfinished"></translation>
     </message>
@@ -55122,17 +55122,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="76"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="80"/>
         <source>Portrait</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="78"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="82"/>
         <source>Landscape</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="79"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="83"/>
         <source>{0}, {1}</source>
         <comment>page size, page orientation</comment>
         <translation type="unfinished"></translation>
@@ -55347,7 +55347,7 @@
         <translation>Compilador de CORBA IDL</translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="433"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="434"/>
         <source>(unknown)</source>
         <translation>(desconhecido)</translation>
     </message>
@@ -55362,12 +55362,12 @@
         <translation>(não configurado)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="436"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="437"/>
         <source>(not executable)</source>
         <translation>(não executável)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="479"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="481"/>
         <source>(not found)</source>
         <translation>(não encontrado)</translation>
     </message>
@@ -55437,7 +55437,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="398"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="399"/>
         <source>(module not found)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -56902,32 +56902,32 @@
 <context>
     <name>ProjectBaseBrowser</name>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="128"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="132"/>
         <source>Open</source>
         <translation>Abrir</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="496"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="503"/>
         <source>local</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="537"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="544"/>
         <source>Select entries</source>
         <translation>Selecionar entradas</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="537"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="544"/>
         <source>There were no matching entries found.</source>
         <translation>Não se encontraram entradas coincidentes.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="294"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="300"/>
         <source>Delete directories</source>
         <translation>Apagar diretórios</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="294"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="300"/>
         <source>Do you really want to delete these directories from the project?</source>
         <translation>Tem a certeza de que quer apagar estes diretórios do projeto?</translation>
     </message>
@@ -56988,7 +56988,7 @@
         <translation>Estado VCS</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBrowserModel.py" line="797"/>
+        <location filename="../Project/ProjectBrowserModel.py" line="803"/>
         <source>local</source>
         <translation></translation>
     </message>
@@ -57187,7 +57187,7 @@
 <context>
     <name>ProjectFormsBrowser</name>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1009"/>
         <source>Forms</source>
         <translation>Formulários</translation>
     </message>
@@ -57367,52 +57367,52 @@
         <translation>Tem a certeza de que quer apagar estes formulários do projeto?</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="784"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="788"/>
         <source>Form Compilation</source>
         <translation>Compilação de Formulários</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="768"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="772"/>
         <source>The compilation of the form file was successful.</source>
         <translation>A compilação do form teve êxito.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="775"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="779"/>
         <source>&lt;p&gt;The compilation of the form file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Falhou a compilação do ficheiro do formulário.&lt;/p&gt;&lt;p&gt;Razão: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="784"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="788"/>
         <source>The compilation of the form file failed.</source>
         <translation>A compilação do ficheiro do form falhou.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="870"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="874"/>
         <source>Process Generation Error</source>
         <translation>Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="870"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="874"/>
         <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
         <translation>Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="962"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="966"/>
         <source>Compiling forms...</source>
         <translation>A compilar formulários...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>Abort</source>
         <translation>Terminar</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>Determining changed forms...</source>
         <translation>A determinar formulários alterados...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1031"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1035"/>
         <source>Compiling changed forms...</source>
         <translation>A compilar formulários alterados...</translation>
     </message>
@@ -57467,7 +57467,7 @@
         <translation>QStackedWidget</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>%v/%m Forms</source>
         <translation>%v/%m Formulários</translation>
     </message>
@@ -58107,7 +58107,7 @@
 <context>
     <name>ProjectResourcesBrowser</name>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="861"/>
         <source>Resources</source>
         <translation>Recursos</translation>
     </message>
@@ -58217,57 +58217,57 @@
         <translation>Tem a certeza de que quer apagar estes recursos do projeto?</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="624"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="628"/>
         <source>Resource Compilation</source>
         <translation>Compilação de Recursos</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="610"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="614"/>
         <source>The compilation of the resource file was successful.</source>
         <translation>A compilação do recurso teve êxito.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="617"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="621"/>
         <source>&lt;p&gt;The compilation of the resource file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;A compilação do ficheiro de recurso falhou.&lt;/p&gt;&lt;p&gt;Motivo: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="624"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="628"/>
         <source>The compilation of the resource file failed.</source>
         <translation>A compilação do ficheiro de recurso falhou.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="713"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="717"/>
         <source>Process Generation Error</source>
         <translation>Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="713"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="717"/>
         <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
         <translation>Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="779"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="783"/>
         <source>Compiling resources...</source>
         <translation>A compilar recursos...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>Abort</source>
         <translation>Cancelar</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>Determining changed resources...</source>
         <translation>A determinar recursos alterados...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="889"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="893"/>
         <source>Compiling changed resources...</source>
         <translation>A compilar recursos alterados...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>%v/%m Resources</source>
         <translation>%v/%m Recursos</translation>
     </message>
@@ -59349,7 +59349,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="349"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="361"/>
         <source>Coverage</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59380,47 +59380,47 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="61"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="63"/>
         <source>Annotate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="63"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="65"/>
         <source>Annotate all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="64"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="66"/>
         <source>Delete annotated files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="67"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="69"/>
         <source>Erase Coverage Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>Annotating files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>Abort</source>
         <translation>Cancelar</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="58"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="60"/>
         <source>Open</source>
         <translation>Abrir</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="243"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="246"/>
         <source>Parse Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../DataViews/PyCoverageDialog.py" line="243"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="246"/>
         <source>%n file(s) could not be parsed. Coverage info for these is not available.</source>
         <translation type="unfinished">
             <numerusform>One file could not be parsed. Coverage info for this one is not available.</numerusform>
@@ -59428,7 +59428,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>%v/%m Files</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59436,7 +59436,7 @@
 <context>
     <name>PyProfileDialog</name>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="234"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="239"/>
         <source>Profile Results</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59514,57 +59514,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="337"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="354"/>
         <source>Exclude Python Library</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="89"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="92"/>
         <source>Erase Profiling Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="91"/>
-        <source>Erase Timing Info</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../DataViews/PyProfileDialog.py" line="94"/>
+        <source>Erase Timing Info</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="97"/>
         <source>Erase All Infos</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="215"/>
-        <source>function calls</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="218"/>
-        <source>primitive calls</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../DataViews/PyProfileDialog.py" line="220"/>
+        <source>function calls</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="223"/>
+        <source>primitive calls</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="225"/>
         <source>CPU seconds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="234"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="239"/>
         <source>&lt;p&gt;There is no profiling data available for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="246"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="251"/>
         <source>Loading Profiling Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="246"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="251"/>
         <source>&lt;p&gt;The profiling data could not be read from file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="333"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="350"/>
         <source>Include Python Library</source>
         <translation type="unfinished"></translation>
     </message>
@@ -60144,132 +60144,132 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="102"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="103"/>
         <source>Copy</source>
         <translation>Copiar</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="104"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="105"/>
         <source>Copy the regular expression to the clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="188"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="190"/>
         <source>Named reference</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="182"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="184"/>
         <source>No named groups have been defined yet.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="188"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="190"/>
         <source>Select group name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="372"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="374"/>
         <source>Save regular expression</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="360"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="362"/>
         <source>RegExp Files (*.rx);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="334"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="336"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="372"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="374"/>
         <source>&lt;p&gt;The regular expression could not be saved.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="360"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="362"/>
         <source>Load regular expression</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="414"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="416"/>
         <source>Validation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="414"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="416"/>
         <source>The regular expression is valid.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="578"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="581"/>
         <source>Error</source>
         <translation>Erro</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="564"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="567"/>
         <source>Invalid regular expression: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="571"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="574"/>
         <source>Invalid regular expression: missing group name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="433"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="435"/>
         <source>A regular expression must be given.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="478"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="480"/>
         <source>Regexp</source>
         <translation>Regexp</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="488"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="490"/>
         <source>Offset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="496"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="498"/>
         <source>Captures</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="503"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="505"/>
         <source>Text</source>
         <translation>Texto</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="506"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="508"/>
         <source>Characters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="511"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="513"/>
         <source>Match</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="526"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="528"/>
         <source>Capture #{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="546"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="549"/>
         <source>No more matches</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="550"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="553"/>
         <source>No matches</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="578"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="581"/>
         <source>A regular expression and a text must be given.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -60860,37 +60860,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="247"/>
+        <location filename="../UI/PythonAstViewer.py" line="249"/>
         <source>Module</source>
         <translation type="unfinished">Módulo</translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="279"/>
+        <location filename="../UI/PythonAstViewer.py" line="281"/>
         <source>{0}: {1}</source>
         <translation type="unfinished">{0}: {1}</translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="300"/>
+        <location filename="../UI/PythonAstViewer.py" line="302"/>
         <source>{0},{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="307"/>
+        <location filename="../UI/PythonAstViewer.py" line="309"/>
         <source>{0}  -  {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="211"/>
+        <location filename="../UI/PythonAstViewer.py" line="213"/>
         <source>No editor has been opened.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="222"/>
+        <location filename="../UI/PythonAstViewer.py" line="224"/>
         <source>The current editor does not contain any source code.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="228"/>
+        <location filename="../UI/PythonAstViewer.py" line="230"/>
         <source>The current editor does not contain Python source code.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -60943,7 +60943,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="695"/>
+        <location filename="../UI/PythonDisViewer.py" line="698"/>
         <source>Code Object &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -60998,72 +60998,72 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="810"/>
+        <location filename="../UI/PythonDisViewer.py" line="813"/>
         <source>Name</source>
         <translation type="unfinished">Nome</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="812"/>
+        <location filename="../UI/PythonDisViewer.py" line="815"/>
         <source>Filename</source>
         <translation type="unfinished">Nome do Ficheiro</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="814"/>
+        <location filename="../UI/PythonDisViewer.py" line="817"/>
         <source>First Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="816"/>
+        <location filename="../UI/PythonDisViewer.py" line="819"/>
         <source>Argument Count</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="818"/>
+        <location filename="../UI/PythonDisViewer.py" line="821"/>
         <source>Positional-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../UI/PythonDisViewer.py" line="827"/>
+        <source>Number of Locals</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="829"/>
+        <source>Stack Size</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="831"/>
+        <source>Flags</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="834"/>
+        <source>Constants</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="837"/>
+        <source>Names</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="840"/>
+        <source>Variable Names</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="843"/>
+        <source>Free Variables</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="846"/>
+        <source>Cell Variables</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/PythonDisViewer.py" line="824"/>
-        <source>Number of Locals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="826"/>
-        <source>Stack Size</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="828"/>
-        <source>Flags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="831"/>
-        <source>Constants</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="834"/>
-        <source>Names</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="837"/>
-        <source>Variable Names</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="840"/>
-        <source>Free Variables</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="843"/>
-        <source>Cell Variables</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="821"/>
         <source>Keyword-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62932,197 +62932,197 @@
 <context>
     <name>QRegularExpressionWizardWidget</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="96"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="97"/>
         <source>Save</source>
         <translation>Gravar</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="98"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="99"/>
         <source>Save the regular expression to a file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="100"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="101"/>
         <source>Load</source>
         <translation type="unfinished">Carregar</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="102"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="103"/>
         <source>Load a regular expression from a file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="105"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="106"/>
         <source>Validate</source>
         <translation type="unfinished">Validar</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="107"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="108"/>
         <source>Validate the regular expression</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="109"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="110"/>
         <source>Execute</source>
         <translation>Executar</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="111"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="112"/>
         <source>Execute the regular expression</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="113"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="114"/>
         <source>Next match</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="115"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="116"/>
         <source>Show the next match of the regular expression</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="128"/>
-        <source>Copy</source>
-        <translation>Copiar</translation>
-    </message>
-    <message>
         <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="130"/>
+        <source>Copy</source>
+        <translation>Copiar</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="132"/>
         <source>Copy the regular expression to the clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="292"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="295"/>
         <source>Named reference</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="286"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="289"/>
         <source>No named groups have been defined yet.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="292"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="295"/>
         <source>Select group name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="454"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="457"/>
         <source>Save regular expression</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="416"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="419"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="454"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="457"/>
         <source>&lt;p&gt;The regular expression could not be saved.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="442"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="445"/>
         <source>Load regular expression</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="507"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="510"/>
         <source>Validation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="507"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="510"/>
         <source>The regular expression is valid.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="708"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="712"/>
         <source>Error</source>
         <translation type="unfinished">Erro</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="582"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="585"/>
         <source>Invalid regular expression: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="538"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="541"/>
         <source>A regular expression must be given.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="602"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="605"/>
         <source>Regexp</source>
         <translation type="unfinished">Regexp</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="613"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="616"/>
         <source>Offset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="621"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="624"/>
         <source>Captures</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="629"/>
-        <source>Text</source>
-        <translation type="unfinished">Texto</translation>
-    </message>
-    <message>
         <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="632"/>
+        <source>Text</source>
+        <translation type="unfinished">Texto</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="635"/>
         <source>Characters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="637"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="640"/>
         <source>Match</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="652"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="655"/>
         <source>Capture #{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="676"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="680"/>
         <source>No more matches</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="681"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="685"/>
         <source>No matches</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="708"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="712"/>
         <source>A regular expression and a text must be given.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="442"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="445"/>
         <source>RegExp Files (*.rx);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="702"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="706"/>
         <source>Communication Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="169"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="172"/>
         <source>&lt;p&gt;The PyQt5 backend reported an error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="696"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="700"/>
         <source>Invalid response received from PyQt5 backend.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="702"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="706"/>
         <source>Communication with PyQt5 backend failed.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63168,7 +63168,7 @@
         <translation>Retirar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="174"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="176"/>
         <source>Add Documentation</source>
         <translation>Adicionar Documentação</translation>
     </message>
@@ -63183,22 +63183,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="174"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="176"/>
         <source>The namespace &lt;b&gt;{0}&lt;/b&gt; is already registered.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="211"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="213"/>
         <source>Remove Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="196"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="198"/>
         <source>Do you really want to remove the selected documentation sets from the database?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="211"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="213"/>
         <source>Some documents currently opened reference the documentation you are attempting to remove. Removing the documentation will close those documents. Remove anyway?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63258,7 +63258,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="406"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="410"/>
         <source>Remove Filters</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63268,7 +63268,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="434"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="438"/>
         <source>Remove Attributes</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63313,22 +63313,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="385"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="389"/>
         <source>Add Filter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="385"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="389"/>
         <source>Filter name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="406"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="410"/>
         <source>Do you really want to remove the selected filters from the database?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="434"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="438"/>
         <source>Do you really want to remove the selected attributes from the database?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63346,27 +63346,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="139"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="142"/>
         <source>Delete Documentation Sets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="86"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="89"/>
         <source>Shall the selected documentation sets really be deleted?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="102"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="105"/>
         <source>&lt;p&gt;The documentation set &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="121"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="124"/>
         <source>Shall the selected documentation set categories really be deleted?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="139"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="142"/>
         <source>Shall all documentation sets really be deleted?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -64857,87 +64857,87 @@
 <context>
     <name>SafeBrowsingAPI</name>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="391"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="400"/>
         <source>&lt;h3&gt;Malware Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to install harmful programs on your computer in order to steal or destroy your data.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="398"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="407"/>
         <source>&lt;h3&gt;Phishing Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to trick you into doing something dangerous online, such as revealing passwords or personal information, usually through a fake website.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="406"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="415"/>
         <source>&lt;h3&gt;Unwanted Software Warning&lt;/h3&gt;&lt;p&gt;The software you are about to download may negatively affect your browsing or computing experience.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="412"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="421"/>
         <source>&lt;h3&gt;Potentially Harmful Application&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to trick you into installing applications, that may negatively affect your browsing experience.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="426"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="435"/>
         <source>&lt;h3&gt;Unknown Threat Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit was found in the Safe Browsing Database but was not classified yet.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="446"/>
-        <source>Malware</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="449"/>
-        <source>Phishing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="452"/>
-        <source>Unwanted Software</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="455"/>
-        <source>Harmful Application</source>
+        <source>Malware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="458"/>
-        <source>Malicious Binary</source>
+        <source>Phishing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="461"/>
+        <source>Unwanted Software</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="464"/>
+        <source>Harmful Application</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="467"/>
+        <source>Malicious Binary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="470"/>
         <source>Unknown Threat</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="532"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="541"/>
         <source>any defined platform</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="535"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="544"/>
         <source>all defined platforms</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="538"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="547"/>
         <source>unknown platform</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="492"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="501"/>
         <source>executable program</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="495"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="504"/>
         <source>unknown type</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="419"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="428"/>
         <source>&lt;h3&gt;Malicious Binary Warning&lt;/h3&gt;&lt;p&gt;The software you are about to download may be harmful to your computer.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -64945,7 +64945,7 @@
 <context>
     <name>SafeBrowsingDialog</name>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="171"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="173"/>
         <source>Safe Browsing Management</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65035,52 +65035,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="312"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="314"/>
         <source>Check URL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="171"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="173"/>
         <source>The dialog contains unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="213"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="215"/>
         <source>Update Safe Browsing Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="196"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="198"/>
         <source>Updating the Safe Browsing cache might be a lengthy operation. Please be patient!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="207"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="209"/>
         <source>&lt;p&gt;Updating the Safe Browsing cache failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="213"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="215"/>
         <source>&lt;p&gt;Updating the Safe Browsing cache failed.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="224"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="226"/>
         <source>Clear Safe Browsing Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="224"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="226"/>
         <source>Do you really want to clear the Safe Browsing cache? Re-populating it might take some time.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="304"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="306"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing Database.&lt;/p&gt;{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="312"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="314"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was not found in the Safe Browsing Database and may be considered safe.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65110,17 +65110,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="339"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="341"/>
         <source>The next automatic threat list update will be done now.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="342"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="344"/>
         <source>&lt;p&gt;The next automatic threat list update will be done at &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="346"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="348"/>
         <source>Update Time</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65140,7 +65140,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="296"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="298"/>
         <source>&lt;p&gt;The Google Safe Browsing Server reported an error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65214,22 +65214,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="173"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="174"/>
         <source>Find Prev</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="982"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="984"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="1128"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="1130"/>
         <source>Replaced {0} occurrences.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="1133"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="1135"/>
         <source>Nothing replaced because &apos;{0}&apos; was not found.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65253,17 +65253,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="181"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="183"/>
         <source>Replace and Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="191"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="193"/>
         <source>Replace Occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="201"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="203"/>
         <source>Replace All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65365,12 +65365,12 @@
         <translation type="obsolete">Envolver</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SearchWidget.py" line="98"/>
+        <location filename="../WebBrowser/SearchWidget.py" line="100"/>
         <source>Expression was not found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/SearchWidget.py" line="208"/>
+        <location filename="../UI/SearchWidget.py" line="210"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65842,7 +65842,7 @@
 <context>
     <name>SendRefererWhitelistDialog</name>
     <message>
-        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="50"/>
+        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="51"/>
         <source>Send Referer Whitelist</source>
         <translation>Lista de Confiança para Envío de Referer</translation>
     </message>
@@ -65882,7 +65882,7 @@
         <translation>R&amp;etirar Tudo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="50"/>
+        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="51"/>
         <source>Enter host name to add to the whitelist:</source>
         <translation>Introduzir nome de anfitrião a adicionar à lista de confiança:</translation>
     </message>
@@ -66013,7 +66013,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Session/SessionManager.py" line="710"/>
+        <location filename="../WebBrowser/Session/SessionManager.py" line="712"/>
         <source>{0} (last session)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -66527,57 +66527,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="153"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="155"/>
         <source>Reading Trove Classifiers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="153"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="155"/>
         <source>&lt;p&gt;The Trove Classifiers 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="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="544"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="549"/>
         <source>Package Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="576"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="581"/>
         <source>Packages Root Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="615"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="620"/>
         <source>Add Package</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="615"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="620"/>
         <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; is not a Python package.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="671"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="676"/>
         <source>Add Scripts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="671"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="676"/>
         <source>Python Files (*.py);;All Files(*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="710"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="715"/>
         <source>Add Python Modules</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="710"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="715"/>
         <source>Python Files (*.py)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="789"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="796"/>
         <source>Source Directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -66605,108 +66605,108 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="248"/>
+        <location filename="../QScintilla/Shell.py" line="249"/>
         <source>Passive &gt;&gt;&gt; </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="291"/>
+        <location filename="../QScintilla/Shell.py" line="292"/>
         <source>Start</source>
         <translation>Iniciar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="296"/>
-        <source>History</source>
-        <translation>Historial</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="297"/>
-        <source>Select entry</source>
-        <translation type="unfinished"></translation>
+        <source>History</source>
+        <translation>Historial</translation>
     </message>
     <message>
         <location filename="../QScintilla/Shell.py" line="298"/>
+        <source>Select entry</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="299"/>
         <source>Show</source>
         <translation>Mostrar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="311"/>
+        <location filename="../QScintilla/Shell.py" line="312"/>
         <source>Clear</source>
         <translation>Limpar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="303"/>
-        <source>Cut</source>
-        <translation>Cortar</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="304"/>
-        <source>Copy</source>
-        <translation>Copiar</translation>
+        <source>Cut</source>
+        <translation>Cortar</translation>
     </message>
     <message>
         <location filename="../QScintilla/Shell.py" line="305"/>
+        <source>Copy</source>
+        <translation>Copiar</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="306"/>
         <source>Paste</source>
         <translation>Colar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="319"/>
+        <location filename="../QScintilla/Shell.py" line="320"/>
         <source>Configure...</source>
         <translation>Configurar...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="773"/>
+        <location filename="../QScintilla/Shell.py" line="781"/>
         <source>Select History</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="773"/>
+        <location filename="../QScintilla/Shell.py" line="781"/>
         <source>Select the history entry to execute (most recent shown last).</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="839"/>
+        <location filename="../QScintilla/Shell.py" line="847"/>
         <source>Passive Debug Mode</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="840"/>
+        <location filename="../QScintilla/Shell.py" line="848"/>
         <source>
 Not connected</source>
         <translation>Desconetado</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="843"/>
+        <location filename="../QScintilla/Shell.py" line="851"/>
         <source>No.</source>
         <translation>Nº</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1033"/>
-        <source>StdOut: {0}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="1041"/>
+        <source>StdOut: {0}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="1049"/>
         <source>StdErr: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2178"/>
+        <location filename="../QScintilla/Shell.py" line="2199"/>
         <source>Drop Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2178"/>
+        <location filename="../QScintilla/Shell.py" line="2199"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; não é um ficheiro.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="309"/>
+        <location filename="../QScintilla/Shell.py" line="310"/>
         <source>Find</source>
         <translation>Encontrar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="891"/>
+        <location filename="../QScintilla/Shell.py" line="899"/>
         <source>Exception &quot;{0}&quot;
 {1}
 File: {2}, Line: {3}
@@ -66714,81 +66714,81 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="926"/>
+        <location filename="../QScintilla/Shell.py" line="934"/>
         <source>Unspecified syntax error.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="901"/>
+        <location filename="../QScintilla/Shell.py" line="909"/>
         <source>Exception &quot;{0}&quot;
 {1}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="928"/>
+        <location filename="../QScintilla/Shell.py" line="936"/>
         <source>Syntax error &quot;{1}&quot; in file {0} at line {2}, character {3}.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="951"/>
+        <location filename="../QScintilla/Shell.py" line="959"/>
         <source>Signal &quot;{0}&quot; generated in file {1} at line {2}.
 Function: {3}({4})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2035"/>
+        <location filename="../QScintilla/Shell.py" line="2056"/>
         <source>Project</source>
         <translation type="unfinished">Projeto</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Shell.py" line="313"/>
+        <source>Restart</source>
+        <translation type="unfinished">Reiniciar</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="314"/>
+        <source>Restart and Clear</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="318"/>
+        <source>Active Name</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="1867"/>
+        <source>Available Virtual Environments:
+{0}
+</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="1917"/>
+        <source>Current Virtual Environment: &apos;{0}&apos;
+</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="853"/>
+        <source>{0} on {1}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="1075"/>
+        <source>&lt;{0}&gt; {1}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Shell.py" line="159"/>
-        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;restart&apos; kills the shell and starts a new one. &apos;clear&apos; clears the display of the shell window. &apos;start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;envs&apos; or &apos;environments&apos; commands. The active virtual environment can be questioned by the &apos;which&apos; command. &apos;quit&apos; or &apos;exit&apos; is used to exit the application. These commands (except environments&apos;, &apos;envs&apos; and &apos;which&apos;) are available through the window menus as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="186"/>
-        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.&lt;/p&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;restart&apos; kills the shell and starts a new one. &apos;clear&apos; clears the display of the shell window. &apos;start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;envs&apos; or &apos;environments&apos; commands. The active virtual environment can be questioned by the &apos;which&apos; command. These commands (except environments&apos; and &apos;envs&apos;) are available through the context menu as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;&lt;p&gt;In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="312"/>
-        <source>Restart</source>
-        <translation type="unfinished">Reiniciar</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="313"/>
-        <source>Restart and Clear</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="317"/>
-        <source>Active Name</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="1850"/>
-        <source>Available Virtual Environments:
-{0}
-</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="1896"/>
-        <source>Current Virtual Environment: &apos;{0}&apos;
-</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="845"/>
-        <source>{0} on {1}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="1067"/>
-        <source>&lt;{0}&gt; {1}</source>
+        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;%restart&apos; kills the shell and starts a new one. &apos;%clear&apos; clears the display of the shell window. &apos;%start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. &apos;%start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;%envs&apos; or &apos;%environments&apos; commands. The active virtual environment can be questioned by the &apos;%which&apos; command. &apos;%quit&apos; or &apos;%exit&apos; is used to exit the application. These commands (except &apos;%environments&apos;, &apos;%envs&apos; and &apos;%which&apos;) are available through the window menus as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="187"/>
+        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.&lt;/p&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;%restart&apos; kills the shell and starts a new one. &apos;%clear&apos; clears the display of the shell window. &apos;%start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. &apos;%start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;%envs&apos; or &apos;%environments&apos; commands. The active virtual environment can be questioned by the &apos;%which&apos; command. These commands (except &apos;%environments&apos; and &apos;%envs&apos;) are available through the context menu as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;&lt;p&gt;In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -67704,82 +67704,82 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="131"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="132"/>
         <source>Project</source>
         <translation>Projeto</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="135"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="136"/>
         <source>General</source>
         <translation>Geral</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="139"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="140"/>
         <source>Wizards</source>
         <translation>Assistentes</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="145"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="146"/>
         <source>Debug</source>
         <translation>Depuração</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="149"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="150"/>
         <source>Edit</source>
         <translation>Editar</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="153"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="154"/>
         <source>File</source>
         <translation>Ficheiro</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="157"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="158"/>
         <source>Search</source>
         <translation>Procurar</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="161"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="162"/>
         <source>View</source>
         <translation>Vista</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="165"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="166"/>
         <source>Macro</source>
         <translation>Macro</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="169"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="170"/>
         <source>Bookmarks</source>
         <translation>Marcadores</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="174"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="175"/>
         <source>Spelling</source>
         <translation>Verificação ortográfica</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="181"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="182"/>
         <source>Window</source>
         <translation>Janela</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="364"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="365"/>
         <source>Edit shortcuts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="327"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="328"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has already been allocated to the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="347"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="348"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; hides the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="364"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="365"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is hidden by the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67789,7 +67789,7 @@
         <translation type="obsolete">Navegador Web de eric6</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="197"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="198"/>
         <source>eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67903,32 +67903,32 @@
         <translation type="unfinished">Segurança</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="263"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="264"/>
         <source>Preview not available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="290"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="291"/>
         <source>Copy Image Location to Clipboard</source>
         <translation type="unfinished">Copiar Localização da Imagem para a Área de Transferência</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="293"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="294"/>
         <source>Copy Image Name to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="357"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="358"/>
         <source>Save Image</source>
         <translation>Gravar Imagem</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="346"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="347"/>
         <source>All Files (*)</source>
         <translation>Ficheiros Todos (*)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="357"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="358"/>
         <source>&lt;p&gt;Cannot write to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67943,12 +67943,12 @@
         <translation type="obsolete">Rota:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="276"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="277"/>
         <source>Loading...</source>
         <translation type="unfinished">Carregando...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="334"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="335"/>
         <source>&lt;p&gt;This preview is not available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67981,62 +67981,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="68"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="70"/>
         <source>Your connection to this site is &lt;b&gt;secure&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="73"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="75"/>
         <source>Your connection to this site is &lt;b&gt;not secure&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="88"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="90"/>
         <source>This is your &lt;b&gt;{0}.&lt;/b&gt; visit of this site.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="94"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="96"/>
         <source>You have &lt;b&gt;never&lt;/b&gt; visited this site before.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="103"/>
-        <source>first</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="105"/>
-        <source>second</source>
+        <source>first</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="107"/>
+        <source>second</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="109"/>
         <source>third</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="108"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="110"/>
         <source>This is your &lt;b&gt;{0}&lt;/b&gt; visit of this site.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="129"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="131"/>
         <source>Register as &lt;b&gt;{0}&lt;/b&gt; links handler.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="136"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="138"/>
         <source>Register</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="153"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="156"/>
         <source>More...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="62"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="64"/>
         <source>Your connection to this site &lt;b&gt;may not be secure&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -68174,17 +68174,17 @@
         <translation type="unfinished">Ficheiro Pixmap X11 (*.xpm)</translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="252"/>
+        <location filename="../Snapshot/SnapWidget.py" line="253"/>
         <source>Save Snapshot</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="231"/>
+        <location filename="../Snapshot/SnapWidget.py" line="232"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="252"/>
+        <location filename="../Snapshot/SnapWidget.py" line="253"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation type="unfinished"></translation>
@@ -68230,7 +68230,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="389"/>
+        <location filename="../Snapshot/SnapWidget.py" line="390"/>
         <source>The application contains an unsaved snapshot.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -68245,7 +68245,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="355"/>
+        <location filename="../Snapshot/SnapWidget.py" line="356"/>
         <source>Preview of the snapshot image ({0} x {1})</source>
         <translation type="unfinished"></translation>
     </message>
@@ -68285,7 +68285,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="419"/>
+        <location filename="../Snapshot/SnapWidget.py" line="420"/>
         <source>eric Snapshot</source>
         <translation type="unfinished"></translation>
     </message>
@@ -68293,7 +68293,7 @@
 <context>
     <name>SnapshotFreehandGrabber</name>
     <message>
-        <location filename="../Snapshot/SnapshotFreehandGrabber.py" line="72"/>
+        <location filename="../Snapshot/SnapshotFreehandGrabber.py" line="76"/>
         <source>Select a region using the mouse. To take the snapshot, press the Enter key or double click. Press Esc to quit.</source>
         <translation>Selecionar uma região com o rato. Para tirar uma instantânea, pressionar a tecla Enter ou fazer duplo-clique. Pressionar Esc para sair.</translation>
     </message>
@@ -68301,7 +68301,7 @@
 <context>
     <name>SnapshotRegionGrabber</name>
     <message>
-        <location filename="../Snapshot/SnapshotRegionGrabber.py" line="104"/>
+        <location filename="../Snapshot/SnapshotRegionGrabber.py" line="107"/>
         <source>Select a region using the mouse. To take the snapshot, press the Enter key or double click. Press Esc to quit.</source>
         <translation>Selecionar uma região com o rato. Para tirar uma instantânea, pressionar a tecla Enter ou fazer duplo-clique. Pressionar Esc para sair.</translation>
     </message>
@@ -68309,7 +68309,7 @@
 <context>
     <name>SnapshotTimer</name>
     <message numerus="yes">
-        <location filename="../Snapshot/SnapshotTimer.py" line="104"/>
+        <location filename="../Snapshot/SnapshotTimer.py" line="110"/>
         <source>Snapshot will be taken in %n seconds</source>
         <translation>
             <numerusform>A instantânea será feita num segundo</numerusform>
@@ -68431,27 +68431,27 @@
 <context>
     <name>SpeedDial</name>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="401"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="402"/>
         <source>Unable to load</source>
         <translation>Incapaz de carregar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="207"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="208"/>
         <source>Saving Speed Dial data</source>
         <translation>A gravar dados de Marcação Rápida</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="207"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="208"/>
         <source>&lt;p&gt;Speed Dial data could not be saved to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;Os dados da Marcação Rápida não poderam ser gravados em &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="220"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="221"/>
         <source>Reset Speed Dials</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="220"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="221"/>
         <source>Are you sure you want to reset the speed dials to the default pages?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -68845,22 +68845,22 @@
         <translation>Preparado</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="162"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="163"/>
         <source>Unable to open database</source>
         <translation>Incapaz de abrir a base de dados</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="162"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="163"/>
         <source>An error occurred while opening the connection.</source>
         <translation>Ocurreu um erro enquanto abria a conexão.</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="304"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="307"/>
         <source>Query OK.</source>
         <translation>Consulta OK.</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="306"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="309"/>
         <source>Query OK, number of affected rows: {0}</source>
         <translation>Consulta OK, número de filas afectadas: {0}</translation>
     </message>
@@ -69029,62 +69029,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="52"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="53"/>
         <source>Revocation information for the certificate is not available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="55"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="56"/>
         <source>The certificate has been revoked.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="57"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="58"/>
         <source>The certificate is invalid.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="59"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="60"/>
         <source>The certificate is signed using a weak signature algorithm.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="62"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="63"/>
         <source>The host name specified in the certificate is not unique.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="65"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="66"/>
         <source>The certificate contains a weak key.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="67"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="69"/>
         <source>The certificate claimed DNS names that are in violation of name constraints.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="98"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="101"/>
         <source>No error description available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="129"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="132"/>
         <source>Remove Selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="134"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="137"/>
         <source>Remove All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="73"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="75"/>
         <source>The certificate has a validity period that is too long.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="82"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="85"/>
         <source>Certificate Transparency was required for this connection, but the server did not provide information that complied with the policy.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -69129,7 +69129,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="151"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="154"/>
         <source>Environment Variables:</source>
         <translation type="unfinished">Ambi&amp;ente:</translation>
     </message>
@@ -69139,75 +69139,75 @@
         <translation>Introduzir as variáveis ambiente a definir.</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="165"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="168"/>
         <source>Uncheck to disable exception reporting</source>
         <translation>Desmarque para inabilitar informe de exceções</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="168"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="171"/>
         <source>&lt;b&gt;Report exceptions&lt;/b&gt;
 &lt;p&gt;Uncheck this in order to disable exception reporting.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="172"/>
-        <source>Report exceptions</source>
-        <translation type="unfinished">Informar &amp;exceções</translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="175"/>
+        <source>Report exceptions</source>
+        <translation type="unfinished">Informar &amp;exceções</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="178"/>
         <source>Alt+E</source>
         <translation type="unfinished">Alt+E</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="185"/>
-        <source>Select to clear the display of the interpreter window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="188"/>
-        <source>&lt;b&gt;Clear interpreter window&lt;/b&gt;&lt;p&gt;This clears the display of the interpreter window before starting the debug client.&lt;/p&gt;</source>
+        <source>Select to clear the display of the interpreter window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="191"/>
+        <source>&lt;b&gt;Clear interpreter window&lt;/b&gt;&lt;p&gt;This clears the display of the interpreter window before starting the debug client.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="194"/>
         <source>Clear interpreter window</source>
         <translation type="unfinished">Limpar a janela do &amp;intérprete</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="201"/>
-        <source>Select to start the debugger in a console window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="204"/>
+        <source>Select to start the debugger in a console window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="207"/>
         <source>&lt;b&gt;Start in console&lt;/b&gt;
 &lt;p&gt;Select to start the debugger in a console window. The console command has to be configured on the Debugger-&amp;gt;General page&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="208"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="211"/>
         <source>Start in console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="215"/>
-        <source>Select this to erase the collected coverage information</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="218"/>
+        <source>Select this to erase the collected coverage information</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="221"/>
         <source>&lt;b&gt;Erase coverage information&lt;/b&gt;
 &lt;p&gt;Select this to erase the collected coverage information before the next coverage run.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="222"/>
-        <source>Erase coverage information</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="225"/>
+        <source>Erase coverage information</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="228"/>
         <source>Alt+C</source>
         <translation type="unfinished"></translation>
     </message>
@@ -69217,7 +69217,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="141"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="144"/>
         <source>Virtual Environment:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -69428,42 +69428,42 @@
 <context>
     <name>StartDialog</name>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="108"/>
+        <location filename="../Debugger/StartDialog.py" line="109"/>
         <source>Clear Histories</source>
         <translation>Limpar Historiais</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="279"/>
+        <location filename="../Debugger/StartDialog.py" line="281"/>
         <source>Edit History</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="266"/>
-        <source>Command Line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="267"/>
-        <source>Working Directory</source>
-        <translation type="unfinished">Directório de Trabalho</translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartDialog.py" line="268"/>
+        <source>Command Line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="269"/>
+        <source>Working Directory</source>
+        <translation type="unfinished">Directório de Trabalho</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="270"/>
         <source>Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Debugger/StartDialog.py" line="281"/>
+        <source>Select the history list to be edited:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Debugger/StartDialog.py" line="279"/>
-        <source>Select the history list to be edited:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="277"/>
         <source>No Debug Programs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="142"/>
+        <location filename="../Debugger/StartDialog.py" line="143"/>
         <source>Enter the list of programs or program patterns not to be debugged separated by &apos;{0}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -70232,12 +70232,12 @@
         <translation>Propriedade apagada.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2244"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2245"/>
         <source>Subversion Lock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2244"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2245"/>
         <source>Enter lock comment</source>
         <translation type="unfinished"></translation>
     </message>
@@ -70518,32 +70518,32 @@
         <translation>Visor de SVG</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="91"/>
+        <location filename="../Graphics/SvgDiagram.py" line="92"/>
         <source>Close</source>
         <translation>Fechar</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="96"/>
+        <location filename="../Graphics/SvgDiagram.py" line="97"/>
         <source>Print</source>
         <translation>Imprimir</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="101"/>
+        <location filename="../Graphics/SvgDiagram.py" line="102"/>
         <source>Print Preview</source>
         <translation>Antevisão da Impressão</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="131"/>
+        <location filename="../Graphics/SvgDiagram.py" line="132"/>
         <source>Window</source>
         <translation>Janela</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="135"/>
+        <location filename="../Graphics/SvgDiagram.py" line="136"/>
         <source>Graphics</source>
         <translation>Gráficos</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="362"/>
+        <location filename="../Graphics/SvgDiagram.py" line="363"/>
         <source>Diagram: {0}</source>
         <translation>Diagrama: {0}</translation>
     </message>
@@ -70616,12 +70616,12 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="102"/>
         <source>Process Generation Error</source>
         <translation>Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="102"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
@@ -70696,22 +70696,22 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="83"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="85"/>
         <source>Files (relative to {0}):</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="152"/>
         <source>No changelists found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation>Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
@@ -70945,28 +70945,28 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="169"/>
         <source>Process Generation Error</source>
         <translation>Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="169"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="75"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="77"/>
         <source>Revision {0}.
 </source>
         <translation>Revisão {0}.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="82"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="84"/>
         <source> (binary)</source>
         <translation>(binario)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="86"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="88"/>
         <source>{0} {1}{2}
 </source>
         <translation>{0} {1}{2}
@@ -71004,7 +71004,7 @@
 <context>
     <name>SvnDiffDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="175"/>
         <source>Subversion Diff</source>
         <translation type="unfinished"></translation>
     </message>
@@ -71064,58 +71064,58 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="189"/>
         <source>Process Generation Error</source>
         <translation>Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="189"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="207"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="209"/>
         <source>There is no difference.</source>
         <translation>Não há diferenças.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="399"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="409"/>
         <source>Save Diff</source>
         <translation>Gravar Diff</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="367"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="377"/>
         <source>Patch Files (*.diff)</source>
         <translation>Ficheiros de Remendos (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="384"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="394"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;O ficheiro de remendo &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever-lo?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="399"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="409"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;O ficheiro remendo &lt;b&gt;{0}&lt;/b&gt; não se pôde gravar.&lt;br /&gt;Motivo: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="175"/>
         <source>There is no temporary directory available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="211"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="219"/>
         <source>Processing file &apos;{0}&apos;...
 </source>
         <translation>A processar ficheiro &apos;{0}&apos;...</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="220"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="226"/>
         <source>&lt;Start&gt;</source>
         <translation>&lt;Inicio&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="221"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="227"/>
         <source>&lt;End&gt;</source>
         <translation>&lt;Fim&gt;</translation>
     </message>
@@ -71306,17 +71306,17 @@
         <translation type="unfinished">Selecionar o campo a filtrar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="664"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="679"/>
         <source>Revision</source>
         <translation>Revisão</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="661"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="676"/>
         <source>Author</source>
         <translation>Autor</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="164"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="167"/>
         <source>Message</source>
         <translation>Mensagem</translation>
     </message>
@@ -71446,37 +71446,37 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="93"/>
         <source>Added</source>
         <translation>Adicionado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="91"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="94"/>
         <source>Deleted</source>
         <translation>Apagado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="92"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="95"/>
         <source>Modified</source>
         <translation>Alterado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="519"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="535"/>
         <source>Subversion Error</source>
         <translation>Erro de Subversão</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="309"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="317"/>
         <source>Process Generation Error</source>
         <translation>Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="309"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="317"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="93"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="96"/>
         <source>Replaced</source>
         <translation>Substituído</translation>
     </message>
@@ -71643,7 +71643,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="129"/>
         <source>&amp;URL:</source>
         <translation>&amp;URL:</translation>
     </message>
@@ -71687,7 +71687,7 @@
         <translation>E&amp;tiqueta:</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="121"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="122"/>
         <source>Pat&amp;h:</source>
         <translation>&amp;Rota:</translation>
     </message>
@@ -72574,17 +72574,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="154"/>
         <source>Process Generation Error</source>
         <translation>Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="154"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnPropListDialog.py" line="145"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnPropListDialog.py" line="152"/>
         <source>None</source>
         <translation type="unfinished"></translation>
     </message>
@@ -72788,22 +72788,22 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="204"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="208"/>
         <source>The installed version of PySvn should be 1.4.0 or better.</source>
         <translation>A versão instalada de PySvn deve ser 1.4.0 ou superior.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="281"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="288"/>
         <source>Subversion Error</source>
         <translation>Erro de Subversão</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="267"/>
         <source>Process Generation Error</source>
         <translation>Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="267"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
@@ -72919,7 +72919,7 @@
 <context>
     <name>SvnStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="400"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="406"/>
         <source>Subversion Status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -73045,207 +73045,207 @@
         <translation type="unfinished">Pressionar para atualizar o visor de estado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="83"/>
         <source>Commit changes to repository...</source>
         <translation type="unfinished">Cometer alterações no repositório...</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="90"/>
         <source>Add to repository</source>
         <translation>Adicionar ao repositorio</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="96"/>
         <source>Revert changes</source>
         <translation>Desfazer alterações</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="102"/>
         <source>Add to Changelist</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979"/>
         <source>Remove from Changelist</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="873"/>
-        <source>Lock</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890"/>
+        <source>Lock</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="907"/>
         <source>Unlock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="111"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="113"/>
         <source>Break lock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="116"/>
         <source>Steal lock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="120"/>
         <source>Adjust column sizes</source>
         <translation type="unfinished">Ajustar tamanho de colunas</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="158"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="161"/>
         <source>added</source>
         <translation>adicionado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="160"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="163"/>
         <source>deleted</source>
         <translation>apagado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="171"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="174"/>
         <source>modified</source>
         <translation>alterado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="165"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="168"/>
         <source>unversioned</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="189"/>
-        <source>locked</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="190"/>
-        <source>other lock</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="191"/>
-        <source>stolen lock</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="192"/>
-        <source>broken lock</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="188"/>
-        <source>not locked</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="170"/>
-        <source>normal</source>
-        <translation>normal</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="163"/>
-        <source>replaced</source>
-        <translation>substituído</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="172"/>
-        <source>conflict</source>
-        <translation>conflito</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="185"/>
-        <source>external</source>
-        <translation>externo</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="161"/>
-        <source>ignored</source>
-        <translation>ignorado</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="166"/>
-        <source>missing</source>
-        <translation>a faltar</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="167"/>
-        <source>type error</source>
-        <translation type="unfinished">erro de tipo</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="196"/>
-        <source>no</source>
-        <translation>não</translation>
+        <source>locked</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="193"/>
+        <source>other lock</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="194"/>
+        <source>stolen lock</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="195"/>
+        <source>broken lock</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="191"/>
+        <source>not locked</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="173"/>
+        <source>normal</source>
+        <translation>normal</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="166"/>
+        <source>replaced</source>
+        <translation>substituído</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="175"/>
+        <source>conflict</source>
+        <translation>conflito</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="188"/>
+        <source>external</source>
+        <translation>externo</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="164"/>
+        <source>ignored</source>
+        <translation>ignorado</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="169"/>
+        <source>missing</source>
+        <translation>a faltar</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="170"/>
+        <source>type error</source>
+        <translation type="unfinished">erro de tipo</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="199"/>
+        <source>no</source>
+        <translation>não</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="198"/>
         <source>yes</source>
         <translation>sim</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="413"/>
         <source>Process Generation Error</source>
         <translation>Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="413"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="742"/>
         <source>Commit</source>
         <translation type="unfinished">Cometido</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="850"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="867"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation type="unfinished">Não há aterações por cometer disponíveis/selecionadas.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="765"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="782"/>
         <source>Add</source>
         <translation>Adicionar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="765"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="782"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation type="unfinished">Não existem entradas sem versão disponíveis/selecionadas.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="811"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="828"/>
         <source>Revert</source>
         <translation type="unfinished">Anular</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="873"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890"/>
         <source>There are no unlocked files available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="926"/>
-        <source>There are no locked files available/selected.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="908"/>
-        <source>Break Lock</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="926"/>
-        <source>Steal Lock</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="943"/>
+        <source>There are no locked files available/selected.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="925"/>
+        <source>Break Lock</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="943"/>
+        <source>Steal Lock</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="960"/>
         <source>There are no files available/selected not belonging to a changelist.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979"/>
         <source>There are no files available/selected belonging to a changelist.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -73310,42 +73310,42 @@
         <translation type="unfinished">&amp;Restaurar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="92"/>
         <source>Show differences</source>
         <translation type="unfinished">Mostrar diferenças</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="96"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="98"/>
         <source>Restore missing</source>
         <translation type="unfinished">Restaurar desaparecidos</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="637"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="654"/>
         <source>all</source>
         <translation>tudo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="829"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="846"/>
         <source>Differences</source>
         <translation>Diferenças</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="742"/>
         <source>There are no entries selected to be committed.</source>
         <translation type="unfinished">Não há entradas selecionadas a cometer.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="811"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="828"/>
         <source>There are no missing entries available/selected.</source>
         <translation type="unfinished">Não existem entradas desaparecidas disponíveis/selcionadas.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="83"/>
-        <source>Select all for commit</source>
-        <translation type="unfinished">Selecionar tudo para cometer</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="85"/>
+        <source>Select all for commit</source>
+        <translation type="unfinished">Selecionar tudo para cometer</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="87"/>
         <source>Deselect all from commit</source>
         <translation type="unfinished">Desmarque tudo a cometer</translation>
     </message>
@@ -73360,17 +73360,17 @@
         <translation type="unfinished">Diff &amp;Lado a lado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="92"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="94"/>
         <source>Show differences side-by-side</source>
         <translation type="unfinished">Mostrar diferenças lado-a-lado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="857"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="874"/>
         <source>Side-by-Side Diff</source>
         <translation type="unfinished">Diff Lado a lado</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="857"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="874"/>
         <source>Only one file with uncommitted changes must be selected.</source>
         <translation type="unfinished">Apenas um ficheiro com alterações por cometer deve ser selecionado.</translation>
     </message>
@@ -73541,52 +73541,52 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="96"/>
         <source>Subversion Branches List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="127"/>
         <source>Subversion Error</source>
         <translation type="unfinished">Erro de Subversão</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="107"/>
         <source>The URL of the project repository could not be retrieved from the working copy. The list operation will be aborted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="127"/>
         <source>The URL of the project repository has an invalid format. The list operation will be aborted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="155"/>
         <source>Subversion List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="142"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="144"/>
         <source>Enter the repository URL containing the tags or branches</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="155"/>
         <source>The repository URL is empty. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="172"/>
         <source>Process Generation Error</source>
         <translation>Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="172"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="160"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="162"/>
         <source>The installed version of PySvn should be 1.4.0 or better.</source>
         <translation type="unfinished">A versão instalada de PySvn deve ser 1.4.0 ou superior.</translation>
     </message>
@@ -75551,12 +75551,12 @@
         <translation type="unfinished">Pressionar para mostrar todos os ficheiros que tenham algum problema</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="397"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="409"/>
         <source>No issues found.</source>
         <translation type="unfinished">Não se encontraram problemas.</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="288"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="297"/>
         <source>Error: {0}</source>
         <translation type="unfinished">Erro: {0}</translation>
     </message>
@@ -75566,17 +75566,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="274"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="283"/>
         <source>Preparing files...</source>
         <translation type="unfinished">A preparar ficheiros...</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="98"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="101"/>
         <source>Errors</source>
         <translation type="unfinished">Erros</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="298"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="307"/>
         <source>Transferring data...</source>
         <translation type="unfinished">A transferir dados...</translation>
     </message>
@@ -75862,72 +75862,72 @@
 <context>
     <name>TabManagerWidget</name>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="73"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="74"/>
         <source>Tab Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="127"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="128"/>
         <source>Saved Tabs</source>
         <translation type="unfinished">Separadores Guardados</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="171"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="172"/>
         <source>Local File System:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="173"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="174"/>
         <source>eric Web Browser:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="175"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="176"/>
         <source> [FTP]:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="314"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="317"/>
         <source>Window {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="315"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="318"/>
         <source>Double click to switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="506"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="509"/>
         <source>Group by</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="507"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="510"/>
         <source>&amp;Window</source>
         <translation type="unfinished">&amp;Janela</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="512"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="515"/>
         <source>&amp;Domain</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="517"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="520"/>
         <source>&amp;Host</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="528"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="531"/>
         <source>&amp;Bookmark checked tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="533"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="536"/>
         <source>&amp;Close checked tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="567"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="570"/>
         <source>Show Tab Manager</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75935,7 +75935,7 @@
 <context>
     <name>TabWidget</name>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="212"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="216"/>
         <source>Show a navigation menu</source>
         <translation>Mostrar um menú de navegação</translation>
     </message>
@@ -75945,72 +75945,72 @@
         <translation type="obsolete">Fechar editor atual</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="243"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="249"/>
         <source>Move Left</source>
         <translation>Mover à Esquerda</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="246"/>
-        <source>Move Right</source>
-        <translation>Mover à Direita</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="249"/>
-        <source>Move First</source>
-        <translation>Mover a Primeiro</translation>
-    </message>
-    <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="252"/>
+        <source>Move Right</source>
+        <translation>Mover à Direita</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="255"/>
+        <source>Move First</source>
+        <translation>Mover a Primeiro</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="258"/>
         <source>Move Last</source>
         <translation>Mover a Último</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="256"/>
-        <source>Close</source>
-        <translation>Fechar</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="259"/>
-        <source>Close Others</source>
-        <translation>Fechar Outros</translation>
-    </message>
-    <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="262"/>
-        <source>Close All</source>
-        <translation>Fechar Tudo</translation>
+        <source>Close</source>
+        <translation>Fechar</translation>
     </message>
     <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="265"/>
-        <source>Save</source>
-        <translation>Gravar</translation>
+        <source>Close Others</source>
+        <translation>Fechar Outros</translation>
     </message>
     <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="268"/>
-        <source>Save As...</source>
-        <translation>Gravar Como...</translation>
+        <source>Close All</source>
+        <translation>Fechar Tudo</translation>
     </message>
     <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="271"/>
+        <source>Save</source>
+        <translation>Gravar</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="274"/>
+        <source>Save As...</source>
+        <translation>Gravar Como...</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="277"/>
         <source>Save All</source>
         <translation>Gravar Tudo</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="279"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="285"/>
         <source>Print</source>
         <translation>Imprimir</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="283"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="289"/>
         <source>Copy Path to Clipboard</source>
         <translation>Copiar Rota à Área de Transferência</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="437"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="443"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="275"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="281"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation>Abrir ficheiro de &apos;rejeição&apos;</translation>
     </message>
@@ -76094,12 +76094,12 @@
 <context>
     <name>Tabview</name>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1002"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1008"/>
         <source>Untitled {0}</source>
         <translation>Sem título {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1406"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1412"/>
         <source>{0} (ro)</source>
         <translation></translation>
     </message>
@@ -76652,17 +76652,17 @@
 <context>
     <name>TemplateMultipleVariablesDialog</name>
     <message>
-        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="105"/>
+        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="106"/>
         <source>Enter Template Variables</source>
         <translation>Introduzir Variáveis Modelo</translation>
     </message>
     <message>
-        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="106"/>
-        <source>&amp;OK</source>
-        <translation></translation>
-    </message>
-    <message>
         <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="107"/>
+        <source>&amp;OK</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="108"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Cancelar</translation>
     </message>
@@ -77652,12 +77652,12 @@
         <translation>Ficheiros Todos (*)</translation>
     </message>
     <message>
-        <location filename="../Project/TranslationPropertiesDialog.py" line="148"/>
+        <location filename="../Project/TranslationPropertiesDialog.py" line="149"/>
         <source>Exempt file from translation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/TranslationPropertiesDialog.py" line="161"/>
+        <location filename="../Project/TranslationPropertiesDialog.py" line="162"/>
         <source>Exempt directory from translation</source>
         <translation type="unfinished"></translation>
     </message>
@@ -79086,97 +79086,97 @@
 <context>
     <name>UMLGraphicsView</name>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="78"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="79"/>
         <source>Delete shapes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="83"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="84"/>
         <source>Increase width by {0} points</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="90"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="91"/>
         <source>Increase height by {0} points</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="97"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="98"/>
         <source>Decrease width by {0} points</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="104"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="105"/>
         <source>Decrease height by {0} points</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="111"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="112"/>
         <source>Set size</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="121"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="122"/>
         <source>Re-Layout</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="126"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="127"/>
         <source>Align Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="132"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="134"/>
         <source>Align Center Horizontal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="138"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="141"/>
         <source>Align Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="144"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="148"/>
         <source>Align Top</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="150"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="155"/>
         <source>Align Center Vertical</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="156"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="162"/>
         <source>Align Bottom</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="208"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="215"/>
         <source>Graphics</source>
         <translation>Gráficos</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="357"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="364"/>
         <source>Save Diagram</source>
         <translation>Gravar Diagrama</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="330"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="337"/>
         <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="345"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="352"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; já existe. Sobreescrever?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="357"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="364"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="116"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="117"/>
         <source>Re-Scan</source>
         <translation type="unfinished"></translation>
     </message>
@@ -79260,7 +79260,7 @@
 <context>
     <name>UnittestDialog</name>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="903"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="906"/>
         <source>Unittest</source>
         <translation>Teste Unitário</translation>
     </message>
@@ -79401,42 +79401,42 @@
         <translation>Inativo</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="96"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="98"/>
         <source>Start</source>
         <translation>Iniciar</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="98"/>
-        <source>Start the selected testsuite</source>
-        <translation>Iniciar a suite de testes selecionada</translation>
-    </message>
-    <message>
         <location filename="../PyUnit/UnittestDialog.py" line="100"/>
+        <source>Start the selected testsuite</source>
+        <translation>Iniciar a suite de testes selecionada</translation>
+    </message>
+    <message>
+        <location filename="../PyUnit/UnittestDialog.py" line="102"/>
         <source>&lt;b&gt;Start Test&lt;/b&gt;&lt;p&gt;This button starts the selected testsuite.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Iniciar Teste&lt;/b&gt;&lt;p&gt;Este botão inicia a suite de testes selecionada.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="111"/>
-        <source>Stop</source>
-        <translation>Parar</translation>
-    </message>
-    <message>
         <location filename="../PyUnit/UnittestDialog.py" line="113"/>
+        <source>Stop</source>
+        <translation>Parar</translation>
+    </message>
+    <message>
+        <location filename="../PyUnit/UnittestDialog.py" line="115"/>
         <source>Stop the running unittest</source>
         <translation>Parar execução de teste unitário</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="114"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="116"/>
         <source>&lt;b&gt;Stop Test&lt;/b&gt;&lt;p&gt;This button stops a running unittest.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Parar Teste&lt;/b&gt;&lt;p&gt;Este botão para a execução do teste unitário.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="166"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="168"/>
         <source>^Failure: </source>
         <translation>^Falho:</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="167"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="169"/>
         <source>^Error: </source>
         <translation>^Erro:</translation>
     </message>
@@ -79446,7 +79446,7 @@
         <translation type="obsolete">Ficheiros Python3 ({1});;Ficheiros Python2 ({0});;Ficheiros Todos (*)</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="304"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="306"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation>Ficheiros Python (*.py);;Ficheiros Todos (*)</translation>
     </message>
@@ -79456,7 +79456,7 @@
         <translation type="obsolete">Deve introduzir um ficheiro de suite de testes.</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="699"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="702"/>
         <source>Preparing Testsuite</source>
         <translation>A preparar Suite de Testes</translation>
     </message>
@@ -79466,7 +79466,7 @@
         <translation type="obsolete">&lt;p&gt;Incapaz de executar teste &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;{1}&lt;br&gt;{2}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="985"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="988"/>
         <source>Running</source>
         <translation>A executar</translation>
     </message>
@@ -79481,17 +79481,17 @@
         <translation type="obsolete">Executados {0} testes em {1:.3f}s</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1029"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1032"/>
         <source>Failure: {0}</source>
         <translation>Falho: {0}</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1044"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1047"/>
         <source>Error: {0}</source>
         <translation>Erro: {0}</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1158"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1161"/>
         <source>Show Source</source>
         <translation>Mostrar Fonte</translation>
     </message>
@@ -79526,32 +79526,32 @@
         <translation>Número de testes com êxito imprevistos</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1059"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1062"/>
         <source>    Skipped: {0}</source>
         <translation>    Saltado: {0}</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1077"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1080"/>
         <source>    Expected Failure</source>
         <translation>    Falhos esperados</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1094"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1097"/>
         <source>    Unexpected Success</source>
         <translation>    Sucessos Inesperados</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="103"/>
-        <source>Rerun Failed</source>
-        <translation>Reexecução Falhada</translation>
-    </message>
-    <message>
         <location filename="../PyUnit/UnittestDialog.py" line="105"/>
-        <source>Reruns failed tests of the selected testsuite</source>
-        <translation>Testes de reexecução falhados da suite de testes selecionada</translation>
+        <source>Rerun Failed</source>
+        <translation>Reexecução Falhada</translation>
     </message>
     <message>
         <location filename="../PyUnit/UnittestDialog.py" line="107"/>
+        <source>Reruns failed tests of the selected testsuite</source>
+        <translation>Testes de reexecução falhados da suite de testes selecionada</translation>
+    </message>
+    <message>
+        <location filename="../PyUnit/UnittestDialog.py" line="109"/>
         <source>&lt;b&gt;Rerun Failed&lt;/b&gt;&lt;p&gt;This button reruns all failed tests of the selected testsuite.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Reexecução Falhada&lt;/b&gt;&lt;p&gt;Este botão reexecuta todos os testes falhados da suite de testes selecionada.&lt;/p&gt;</translation>
     </message>
@@ -79638,17 +79638,17 @@
         <translation type="unfinished">Resultados</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="703"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="706"/>
         <source>Unittest with auto-discovery</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="787"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="790"/>
         <source>You must enter a start directory for auto-discovery.</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../PyUnit/UnittestDialog.py" line="1009"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1012"/>
         <source>Ran %n test(s) in {0:.3f}s</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -79661,27 +79661,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="89"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="91"/>
         <source>Discover</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="91"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="93"/>
         <source>Discover tests</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="382"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="384"/>
         <source>Discovering Tests</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="447"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="449"/>
         <source>&lt;p&gt;Unable to discover tests.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../PyUnit/UnittestDialog.py" line="619"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="622"/>
         <source>Discovered %n Test(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -79689,27 +79689,27 @@
         </translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="624"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="627"/>
         <source>&lt;p&gt;Unable to discover tests.&lt;/p&gt;&lt;p&gt;{0}&lt;br/&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="690"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="693"/>
         <source>You must select auto-discovery or enter a test suite file or a dotted test name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="712"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="715"/>
         <source>&lt;Unnamed Test&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="903"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="906"/>
         <source>&lt;p&gt;Unable to run test &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;br/&gt;{2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="93"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="95"/>
         <source>&lt;b&gt;Discover&lt;/b&gt;&lt;p&gt;This button starts a discovery of available tests.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -79734,12 +79734,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="720"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="723"/>
         <source>No test case has been selected. Shall all test cases be run?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="300"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="302"/>
         <source>Python3 Files ({0});;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -79852,7 +79852,7 @@
 <context>
     <name>UrlBar</name>
     <message>
-        <location filename="../WebBrowser/UrlBar/UrlBar.py" line="454"/>
+        <location filename="../WebBrowser/UrlBar/UrlBar.py" line="465"/>
         <source>Unknown</source>
         <translation type="unfinished">Desconhecido</translation>
     </message>
@@ -80041,888 +80041,888 @@
         <translation>A restaurar Gestor da Barra de Ferramentas...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
+        <location filename="../UI/UserInterface.py" line="1754"/>
         <source>Project-Viewer</source>
         <translation>Visor de Projeto</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
+        <location filename="../UI/UserInterface.py" line="1771"/>
         <source>Multiproject-Viewer</source>
         <translation>Visor de Multiprojeto</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
+        <location filename="../UI/UserInterface.py" line="1789"/>
         <source>Debug-Viewer</source>
         <translation>Visor de Depuração</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1118"/>
+        <location filename="../UI/UserInterface.py" line="1123"/>
         <source>Cooperation</source>
         <translation>Colaboração</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1174"/>
+        <location filename="../UI/UserInterface.py" line="1179"/>
         <source>Symbols</source>
         <translation>Símbolos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
         <source>Log-Viewer</source>
         <translation>Visor de Registos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1849"/>
+        <location filename="../UI/UserInterface.py" line="1859"/>
         <source>Task-Viewer</source>
         <translation>Visor de Tarefas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
+        <location filename="../UI/UserInterface.py" line="1878"/>
         <source>Template-Viewer</source>
         <translation>Visor de Modelos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1183"/>
+        <location filename="../UI/UserInterface.py" line="1188"/>
         <source>Numbers</source>
         <translation>Números</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
+        <location filename="../UI/UserInterface.py" line="1824"/>
         <source>File-Browser</source>
         <translation>Navegador de Ficheiros</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>Shell</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1911"/>
+        <location filename="../UI/UserInterface.py" line="1921"/>
         <source>Horizontal Toolbox</source>
         <translation>Caixa de Ferramentas Horizontal</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1598"/>
+        <location filename="../UI/UserInterface.py" line="1608"/>
         <source>{0} - Passive Mode</source>
         <translation>{0} - Modo Passivo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1605"/>
+        <location filename="../UI/UserInterface.py" line="1615"/>
         <source>{0} - {1} - Passive Mode</source>
         <translation>{0} - {1} - Modo Passivo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1609"/>
+        <location filename="../UI/UserInterface.py" line="1619"/>
         <source>{0} - {1} - {2} - Passive Mode</source>
         <translation>{0} - {1} - {2} - Modo Passivo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
+        <location filename="../UI/UserInterface.py" line="1642"/>
         <source>Quit</source>
         <translation>Sair</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
+        <location filename="../UI/UserInterface.py" line="1642"/>
         <source>&amp;Quit</source>
         <translation>Sai&amp;r</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
+        <location filename="../UI/UserInterface.py" line="1642"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1638"/>
+        <location filename="../UI/UserInterface.py" line="1648"/>
         <source>Quit the IDE</source>
         <translation>Sair do IDE</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1639"/>
+        <location filename="../UI/UserInterface.py" line="1649"/>
         <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sair do IDE&lt;/b&gt;&lt;p&gt;Isto sai do IDE. Pode gravar antes as alterações. Qualquer programa Python que esteja a ser depurado será parado e as preferências serão escritas no disco.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1710"/>
+        <location filename="../UI/UserInterface.py" line="1720"/>
         <source>Edit Profile</source>
         <translation>Perfil de Edição</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1716"/>
+        <location filename="../UI/UserInterface.py" line="1726"/>
         <source>Activate the edit view profile</source>
         <translation>Ativar o perfil de vista de edição</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1718"/>
+        <location filename="../UI/UserInterface.py" line="1728"/>
         <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Perfil de Edição&lt;/b&gt;&lt;p&gt;Activa o &quot;Perfil da Vista de Edição&quot;. As janelas a serem mostradas, se este perfil está activado, podem ser configuradas com a caixa de diálogo &quot;Configuração de Vista do Perfil&quot;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1727"/>
+        <location filename="../UI/UserInterface.py" line="1737"/>
         <source>Debug Profile</source>
         <translation>Perfil de Depuração</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1733"/>
+        <location filename="../UI/UserInterface.py" line="1743"/>
         <source>Activate the debug view profile</source>
         <translation>Ativar o perfile de vista de depuração</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1735"/>
+        <location filename="../UI/UserInterface.py" line="1745"/>
         <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Perfil de Depuração&lt;/b&gt;&lt;p&gt;Activa o &quot;Perfile da Vista de Depuração&quot;. As janelas a serem mostradas, se este perfil está activado, podem ser configuradas com a caixa de diálogo &quot;Configuração de Vista do Perfil&quot;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
+        <location filename="../UI/UserInterface.py" line="1754"/>
         <source>&amp;Project-Viewer</source>
         <translation>Visor de &amp;Projeto</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
+        <location filename="../UI/UserInterface.py" line="1754"/>
         <source>Alt+Shift+P</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
+        <location filename="../UI/UserInterface.py" line="1771"/>
         <source>&amp;Multiproject-Viewer</source>
         <translation>Visor de &amp;Multiprojeto</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
+        <location filename="../UI/UserInterface.py" line="1771"/>
         <source>Alt+Shift+M</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
+        <location filename="../UI/UserInterface.py" line="1789"/>
         <source>&amp;Debug-Viewer</source>
         <translation>Visor de &amp;Depuração</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
+        <location filename="../UI/UserInterface.py" line="1789"/>
         <source>Alt+Shift+D</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>&amp;Shell</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>Alt+Shift+S</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
+        <location filename="../UI/UserInterface.py" line="1824"/>
         <source>Alt+Shift+F</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
         <source>Alt+Shift+G</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1849"/>
+        <location filename="../UI/UserInterface.py" line="1859"/>
         <source>Alt+Shift+T</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
+        <location filename="../UI/UserInterface.py" line="1878"/>
         <source>Alt+Shift+A</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1911"/>
+        <location filename="../UI/UserInterface.py" line="1921"/>
         <source>&amp;Horizontal Toolbox</source>
         <translation>Caixa de Ferramentas &amp;Horizontal</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1915"/>
-        <source>Toggle the Horizontal Toolbox window</source>
-        <translation>Alternar a janela de Caixa de Ferramentas Horizontal</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1917"/>
-        <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1925"/>
+        <source>Toggle the Horizontal Toolbox window</source>
+        <translation>Alternar a janela de Caixa de Ferramentas Horizontal</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1927"/>
+        <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <source>Left Sidebar</source>
         <translation>Barra Esquerda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1925"/>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <source>&amp;Left Sidebar</source>
         <translation>Barra Lateral &amp;Esquerda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1929"/>
+        <location filename="../UI/UserInterface.py" line="1939"/>
         <source>Toggle the left sidebar window</source>
         <translation>Alternar a janela da barra lateral esquerda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1930"/>
+        <location filename="../UI/UserInterface.py" line="1940"/>
         <source>&lt;b&gt;Toggle the left sidebar window&lt;/b&gt;&lt;p&gt;If the left sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1952"/>
+        <location filename="../UI/UserInterface.py" line="1962"/>
         <source>Bottom Sidebar</source>
         <translation>Barra Inferior</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1952"/>
+        <location filename="../UI/UserInterface.py" line="1962"/>
         <source>&amp;Bottom Sidebar</source>
         <translation>Barra Lateral &amp;Inferior</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1956"/>
+        <location filename="../UI/UserInterface.py" line="1966"/>
         <source>Toggle the bottom sidebar window</source>
         <translation>Alternar janela da barra lateral inferior</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1958"/>
+        <location filename="../UI/UserInterface.py" line="1968"/>
         <source>&lt;b&gt;Toggle the bottom sidebar window&lt;/b&gt;&lt;p&gt;If the bottom sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Alternar janela da barra lateral inferior&lt;/b&gt;&lt;p&gt;Mostra a janela da barra lateral inferior se está escondida. Esconde-a se está visível.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Alt+Shift+O</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2004"/>
+        <location filename="../UI/UserInterface.py" line="2014"/>
         <source>Alt+Shift+Y</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
+        <location filename="../UI/UserInterface.py" line="2033"/>
         <source>Alt+Shift+B</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>What&apos;s This?</source>
         <translation>O que é Isto?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>&amp;What&apos;s This?</source>
         <translation>O &amp;que é Isto?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>Shift+F1</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2122"/>
+        <location filename="../UI/UserInterface.py" line="2132"/>
         <source>Context sensitive help</source>
         <translation type="unfinished">Ajuda sensível ao contexto</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2123"/>
+        <location filename="../UI/UserInterface.py" line="2133"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Mostrar ajuda sensível a contexto&lt;/b&gt;&lt;p&gt;No modo &apos;Que é Isto?&apos; o cursor do rato mostra uma flecha com um ponto de  interrogação, e pode clicar nos elementos da interface para ver uma breve descrição do que fazem e como se usam. Nas caixas de diálogo, pode-se aceder a esta característica através do botão de ajuda contextual da barra de título.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>Helpviewer</source>
         <translation>Visor de Ajuda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>&amp;Helpviewer...</source>
         <translation>Visor de &amp;Ajuda...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>F1</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2140"/>
+        <location filename="../UI/UserInterface.py" line="2150"/>
         <source>Open the helpviewer window</source>
         <translation>Abrir a janela do visor de ajuda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2160"/>
+        <location filename="../UI/UserInterface.py" line="2170"/>
         <source>Show Versions</source>
         <translation>Mostrar Versões</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2160"/>
+        <location filename="../UI/UserInterface.py" line="2170"/>
         <source>Show &amp;Versions</source>
         <translation>Mostrar &amp;Versões</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2164"/>
+        <location filename="../UI/UserInterface.py" line="2174"/>
         <source>Display version information</source>
         <translation>Mostrar a informação da versão</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2166"/>
-        <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2176"/>
+        <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2186"/>
         <source>Check for Updates</source>
         <translation>Procurar Atualizações</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2173"/>
+        <location filename="../UI/UserInterface.py" line="2183"/>
         <source>Check for &amp;Updates...</source>
         <translation>Procurar &amp;Atualizações...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2184"/>
+        <location filename="../UI/UserInterface.py" line="2194"/>
         <source>Show downloadable versions</source>
         <translation>Mostrar versões descarregáveis</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2184"/>
+        <location filename="../UI/UserInterface.py" line="2194"/>
         <source>Show &amp;downloadable versions...</source>
         <translation>Mostrar versões &amp;descarregáveis...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2188"/>
+        <location filename="../UI/UserInterface.py" line="2198"/>
         <source>Show the versions available for download</source>
         <translation>Mostrar as versões disponíveis para descarregar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3818"/>
+        <location filename="../UI/UserInterface.py" line="3828"/>
         <source>Report Bug</source>
         <translation>Reportar Falho</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2225"/>
+        <location filename="../UI/UserInterface.py" line="2235"/>
         <source>Report &amp;Bug...</source>
         <translation>Reportar &amp;Falho...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2229"/>
+        <location filename="../UI/UserInterface.py" line="2239"/>
         <source>Report a bug</source>
         <translation>Reportar um falho</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2230"/>
+        <location filename="../UI/UserInterface.py" line="2240"/>
         <source>&lt;b&gt;Report Bug...&lt;/b&gt;&lt;p&gt;Opens a dialog to report a bug.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Reportar Falho...&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo para reportar um falho.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
+        <location filename="../UI/UserInterface.py" line="2247"/>
         <source>Request Feature</source>
         <translation>Solicitar Característica</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
+        <location filename="../UI/UserInterface.py" line="2247"/>
         <source>Request &amp;Feature...</source>
         <translation>Solicitar Ca&amp;racterística...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2241"/>
+        <location filename="../UI/UserInterface.py" line="2251"/>
         <source>Send a feature request</source>
         <translation>Enviar uma solicitude de característica</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2243"/>
+        <location filename="../UI/UserInterface.py" line="2253"/>
         <source>&lt;b&gt;Request Feature...&lt;/b&gt;&lt;p&gt;Opens a dialog to send a feature request.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Solicitar Característica...&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo para enviar uma solicitude de característica.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3361"/>
+        <location filename="../UI/UserInterface.py" line="3371"/>
         <source>Unittest</source>
         <translation>Teste Unitário</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2252"/>
+        <location filename="../UI/UserInterface.py" line="2262"/>
         <source>&amp;Unittest...</source>
         <translation>Teste &amp;Unitário...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2257"/>
+        <location filename="../UI/UserInterface.py" line="2267"/>
         <source>Start unittest dialog</source>
         <translation>Iniciar a caixa de diálogo de teste unitário</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2258"/>
+        <location filename="../UI/UserInterface.py" line="2268"/>
         <source>&lt;b&gt;Unittest&lt;/b&gt;&lt;p&gt;Perform unit tests. The dialog gives you the ability to select and run a unittest suite.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2266"/>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>Unittest Restart</source>
         <translation>Reiniciar Teste Unitário</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2266"/>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>&amp;Restart Unittest...</source>
         <translation>&amp;Reiniciar Teste Unitário...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2271"/>
+        <location filename="../UI/UserInterface.py" line="2281"/>
         <source>Restart last unittest</source>
         <translation>Reiniciar o último teste unitário</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2272"/>
+        <location filename="../UI/UserInterface.py" line="2282"/>
         <source>&lt;b&gt;Restart Unittest&lt;/b&gt;&lt;p&gt;Restart the unittest performed last.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2296"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Unittest Script</source>
         <translation>Teste Unitário ao Script</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2296"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Unittest &amp;Script...</source>
         <translation>Teste Unitário ao &amp;Script...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2301"/>
-        <source>Run unittest with current script</source>
-        <translation>Executar teste unitário com o script atual</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2303"/>
-        <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Teste Unitário ao Script&lt;/b&gt;&lt;p&gt;Executar teste unitário com o script atual.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2311"/>
-        <source>Unittest Project</source>
-        <translation>Teste Unitário ao Projeto</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2311"/>
+        <source>Run unittest with current script</source>
+        <translation>Executar teste unitário com o script atual</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2313"/>
+        <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Teste Unitário ao Script&lt;/b&gt;&lt;p&gt;Executar teste unitário com o script atual.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2321"/>
+        <source>Unittest Project</source>
+        <translation>Teste Unitário ao Projeto</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2321"/>
         <source>Unittest &amp;Project...</source>
         <translation>Teste Unitário ao &amp;Projeto...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2316"/>
+        <location filename="../UI/UserInterface.py" line="2326"/>
         <source>Run unittest with current project</source>
         <translation>Executar teste unitário com o projeto atual</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2318"/>
+        <location filename="../UI/UserInterface.py" line="2328"/>
         <source>&lt;b&gt;Unittest Project&lt;/b&gt;&lt;p&gt;Run unittest with current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Teste Unitário ao Projeto&lt;/b&gt;&lt;p&gt;Executar teste unitário com o projeto atual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2379"/>
+        <location filename="../UI/UserInterface.py" line="2389"/>
         <source>UI Previewer</source>
         <translation>Antevisor de UI</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2379"/>
+        <location filename="../UI/UserInterface.py" line="2389"/>
         <source>&amp;UI Previewer...</source>
         <translation>Antevisor &amp;UI...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2384"/>
+        <location filename="../UI/UserInterface.py" line="2394"/>
         <source>Start the UI Previewer</source>
         <translation>Iniciar Antevisor de UI</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2385"/>
+        <location filename="../UI/UserInterface.py" line="2395"/>
         <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Antevisor de UI&lt;/b&gt;&lt;p&gt;Inicia o Antevisor de UI.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2392"/>
+        <location filename="../UI/UserInterface.py" line="2402"/>
         <source>Translations Previewer</source>
         <translation>Antevisor de Traduções</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2392"/>
+        <location filename="../UI/UserInterface.py" line="2402"/>
         <source>&amp;Translations Previewer...</source>
         <translation>Antevisor de &amp;Traduções...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2397"/>
+        <location filename="../UI/UserInterface.py" line="2407"/>
         <source>Start the Translations Previewer</source>
         <translation>Iniciar Antevisor de Traduções</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2399"/>
+        <location filename="../UI/UserInterface.py" line="2409"/>
         <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2406"/>
+        <location filename="../UI/UserInterface.py" line="2416"/>
         <source>Compare Files</source>
         <translation>Comparar Ficheiros</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2406"/>
+        <location filename="../UI/UserInterface.py" line="2416"/>
         <source>&amp;Compare Files...</source>
         <translation>&amp;Comparar Ficheiros...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2424"/>
+        <location filename="../UI/UserInterface.py" line="2434"/>
         <source>Compare two files</source>
         <translation>Comparar dois ficheiros</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2412"/>
+        <location filename="../UI/UserInterface.py" line="2422"/>
         <source>&lt;b&gt;Compare Files&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2419"/>
+        <location filename="../UI/UserInterface.py" line="2429"/>
         <source>Compare Files side by side</source>
         <translation>Comparar Ficheiros lado-a-lado</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2425"/>
+        <location filename="../UI/UserInterface.py" line="2435"/>
         <source>&lt;b&gt;Compare Files side by side&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files and show the result side by side.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2433"/>
+        <location filename="../UI/UserInterface.py" line="2443"/>
         <source>SQL Browser</source>
         <translation>Navegador SQL</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2433"/>
+        <location filename="../UI/UserInterface.py" line="2443"/>
         <source>SQL &amp;Browser...</source>
         <translation>Navegador S&amp;QL...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2438"/>
+        <location filename="../UI/UserInterface.py" line="2448"/>
         <source>Browse a SQL database</source>
         <translation>Navegar numa base de dados SQL</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2439"/>
+        <location filename="../UI/UserInterface.py" line="2449"/>
         <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Navegador SQL&lt;/b&gt;&lt;p&gt;Navegar numa base de dados SQL.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2451"/>
+        <location filename="../UI/UserInterface.py" line="2461"/>
         <source>Mini Editor</source>
         <translation>Mini Editor</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2446"/>
+        <location filename="../UI/UserInterface.py" line="2456"/>
         <source>Mini &amp;Editor...</source>
         <translation>Mini &amp;Editor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2452"/>
+        <location filename="../UI/UserInterface.py" line="2462"/>
         <source>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Open a dialog with a simplified editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo com um editor simplificado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2488"/>
+        <location filename="../UI/UserInterface.py" line="2498"/>
         <source>Icon Editor</source>
         <translation>Editor de Ícones</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2488"/>
+        <location filename="../UI/UserInterface.py" line="2498"/>
         <source>&amp;Icon Editor...</source>
         <translation>Editor de &amp;Ícones...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2517"/>
+        <location filename="../UI/UserInterface.py" line="2527"/>
         <source>Preferences</source>
         <translation>Preferências</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2517"/>
+        <location filename="../UI/UserInterface.py" line="2527"/>
         <source>&amp;Preferences...</source>
         <translation>&amp;Preferências...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2522"/>
+        <location filename="../UI/UserInterface.py" line="2532"/>
         <source>Set the prefered configuration</source>
         <translation>Definir a configuração desejada</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2524"/>
+        <location filename="../UI/UserInterface.py" line="2534"/>
         <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Preferências&lt;/b&gt;&lt;p&gt;Define os elementos de configuração da aplicação com os valores desejados.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2533"/>
+        <location filename="../UI/UserInterface.py" line="2543"/>
         <source>Export Preferences</source>
         <translation>Exportar Preferências</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2533"/>
+        <location filename="../UI/UserInterface.py" line="2543"/>
         <source>E&amp;xport Preferences...</source>
         <translation>E&amp;xportar Preferências...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2538"/>
+        <location filename="../UI/UserInterface.py" line="2548"/>
         <source>Export the current configuration</source>
         <translation>Exportar a configuração atual</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2540"/>
+        <location filename="../UI/UserInterface.py" line="2550"/>
         <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Exportar Preferências&lt;/b&gt;&lt;p&gt;Exporta a configuração atual a um ficheiro.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2547"/>
+        <location filename="../UI/UserInterface.py" line="2557"/>
         <source>Import Preferences</source>
         <translation>Importar Preferências</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2547"/>
+        <location filename="../UI/UserInterface.py" line="2557"/>
         <source>I&amp;mport Preferences...</source>
         <translation>&amp;Importar Preferências...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2552"/>
+        <location filename="../UI/UserInterface.py" line="2562"/>
         <source>Import a previously exported configuration</source>
         <translation>Importar uma configuração exportada antes</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2554"/>
+        <location filename="../UI/UserInterface.py" line="2564"/>
         <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Importar Preferências&lt;/b&gt;&lt;p&gt;Importa uma configuração anteriormente exportada.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2561"/>
+        <location filename="../UI/UserInterface.py" line="2571"/>
         <source>Reload APIs</source>
         <translation>Recarregar APIs</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2561"/>
+        <location filename="../UI/UserInterface.py" line="2571"/>
         <source>Reload &amp;APIs</source>
         <translation>Recarregar &amp;APIs</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2565"/>
+        <location filename="../UI/UserInterface.py" line="2575"/>
         <source>Reload the API information</source>
         <translation>Recarregar a informação de API</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2567"/>
+        <location filename="../UI/UserInterface.py" line="2577"/>
         <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2579"/>
+        <location filename="../UI/UserInterface.py" line="2589"/>
         <source>Show external tools</source>
         <translation>Mostrar ferramentas externas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2574"/>
+        <location filename="../UI/UserInterface.py" line="2584"/>
         <source>Show external &amp;tools</source>
         <translation>Mostrar &amp;ferramentas externas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2590"/>
+        <location filename="../UI/UserInterface.py" line="2600"/>
         <source>View Profiles</source>
         <translation>Perfiles de Vista</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2590"/>
+        <location filename="../UI/UserInterface.py" line="2600"/>
         <source>&amp;View Profiles...</source>
         <translation>Perfiles de &amp;Vista...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2595"/>
+        <location filename="../UI/UserInterface.py" line="2605"/>
         <source>Configure view profiles</source>
         <translation>Configurar perfiles de vista</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2597"/>
-        <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Perfiles de Vista&lt;/b&gt;&lt;p&gt;Configurar os perfiles de vista. Com esta caixa de diálogo pode definir a visibilidade de várias janelas para os perfiles de vista predefinidos.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2607"/>
+        <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Perfiles de Vista&lt;/b&gt;&lt;p&gt;Configurar os perfiles de vista. Com esta caixa de diálogo pode definir a visibilidade de várias janelas para os perfiles de vista predefinidos.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2617"/>
         <source>Toolbars</source>
         <translation>Barras de Ferramentas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2607"/>
+        <location filename="../UI/UserInterface.py" line="2617"/>
         <source>Tool&amp;bars...</source>
         <translation>&amp;Barras de Ferramentas...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2612"/>
-        <source>Configure toolbars</source>
-        <translation>Configurar as barras de ferramentas</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2613"/>
-        <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2622"/>
-        <source>Keyboard Shortcuts</source>
-        <translation>Atalhos de Teclado</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2622"/>
+        <source>Configure toolbars</source>
+        <translation>Configurar as barras de ferramentas</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2623"/>
+        <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2632"/>
+        <source>Keyboard Shortcuts</source>
+        <translation>Atalhos de Teclado</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2632"/>
         <source>Keyboard &amp;Shortcuts...</source>
         <translation>Atalho&amp;s de Teclado...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2627"/>
-        <source>Set the keyboard shortcuts</source>
-        <translation>Definir os atalhos de teclado</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2629"/>
-        <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6313"/>
-        <source>Export Keyboard Shortcuts</source>
-        <translation>Exportar Atalhos de Teclado</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2637"/>
+        <source>Set the keyboard shortcuts</source>
+        <translation>Definir os atalhos de teclado</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2639"/>
+        <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6333"/>
+        <source>Export Keyboard Shortcuts</source>
+        <translation>Exportar Atalhos de Teclado</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2647"/>
         <source>&amp;Export Keyboard Shortcuts...</source>
         <translation>&amp;Exportar Atalhos de Teclado...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2642"/>
+        <location filename="../UI/UserInterface.py" line="2652"/>
         <source>Export the keyboard shortcuts</source>
         <translation>Exportar os Atalhos de Teclado</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2644"/>
+        <location filename="../UI/UserInterface.py" line="2654"/>
         <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6329"/>
+        <location filename="../UI/UserInterface.py" line="6349"/>
         <source>Import Keyboard Shortcuts</source>
         <translation>Importar Atalhos de Teclado</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2651"/>
+        <location filename="../UI/UserInterface.py" line="2661"/>
         <source>&amp;Import Keyboard Shortcuts...</source>
         <translation>&amp;Importar Atalhos de Teclado...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2656"/>
+        <location filename="../UI/UserInterface.py" line="2666"/>
         <source>Import the keyboard shortcuts</source>
         <translation>Importar os atalhos de teclado</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2658"/>
+        <location filename="../UI/UserInterface.py" line="2668"/>
         <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2716"/>
+        <location filename="../UI/UserInterface.py" line="2726"/>
         <source>Activate current editor</source>
         <translation>Ativar o editor atual</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2716"/>
-        <source>Alt+Shift+E</source>
-        <translation></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2726"/>
+        <source>Alt+Shift+E</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2736"/>
         <source>Show next</source>
         <translation>Mostrar próximo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2726"/>
+        <location filename="../UI/UserInterface.py" line="2736"/>
         <source>Ctrl+Alt+Tab</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2735"/>
+        <location filename="../UI/UserInterface.py" line="2745"/>
         <source>Show previous</source>
         <translation>Mostrar anterior</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2735"/>
+        <location filename="../UI/UserInterface.py" line="2745"/>
         <source>Shift+Ctrl+Alt+Tab</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2744"/>
+        <location filename="../UI/UserInterface.py" line="2754"/>
         <source>Switch between tabs</source>
         <translation>Mudar entre separadores</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2744"/>
+        <location filename="../UI/UserInterface.py" line="2754"/>
         <source>Ctrl+1</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2753"/>
+        <location filename="../UI/UserInterface.py" line="2763"/>
         <source>Plugin Infos</source>
         <translation>Informação dos Complementos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2753"/>
+        <location filename="../UI/UserInterface.py" line="2763"/>
         <source>&amp;Plugin Infos...</source>
         <translation>Informação dos &amp;Complementos...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2757"/>
+        <location filename="../UI/UserInterface.py" line="2767"/>
         <source>Show Plugin Infos</source>
         <translation>Mostrar Informação dos Complementos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2758"/>
+        <location filename="../UI/UserInterface.py" line="2768"/>
         <source>&lt;b&gt;Plugin Infos...&lt;/b&gt;&lt;p&gt;This opens a dialog, that show some information about loaded plugins.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Informação dos Complementos...&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo que mostra alguma informação sobre os complementos carregados.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2771"/>
+        <location filename="../UI/UserInterface.py" line="2781"/>
         <source>Install Plugins</source>
         <translation>Instalar Complementos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2766"/>
+        <location filename="../UI/UserInterface.py" line="2776"/>
         <source>&amp;Install Plugins...</source>
         <translation>&amp;Instalar Complementos...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2772"/>
+        <location filename="../UI/UserInterface.py" line="2782"/>
         <source>&lt;b&gt;Install Plugins...&lt;/b&gt;&lt;p&gt;This opens a dialog to install or update plugins.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Instalar Complementos...&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo para instalar ou atualizar complementos.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2784"/>
+        <location filename="../UI/UserInterface.py" line="2794"/>
         <source>Uninstall Plugin</source>
         <translation>Desinstalar Complemento</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2779"/>
+        <location filename="../UI/UserInterface.py" line="2789"/>
         <source>&amp;Uninstall Plugin...</source>
         <translation>&amp;Desinstalar Complemento...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2785"/>
+        <location filename="../UI/UserInterface.py" line="2795"/>
         <source>&lt;b&gt;Uninstall Plugin...&lt;/b&gt;&lt;p&gt;This opens a dialog to uninstall a plugin.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Desinstalar Complemento...&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo para desinstalar um complemento.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2792"/>
+        <location filename="../UI/UserInterface.py" line="2802"/>
         <source>Plugin Repository</source>
         <translation>Repositório de Complementos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2792"/>
+        <location filename="../UI/UserInterface.py" line="2802"/>
         <source>Plugin &amp;Repository...</source>
         <translation>&amp;Repositório de Complementos...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2797"/>
+        <location filename="../UI/UserInterface.py" line="2807"/>
         <source>Show Plugins available for download</source>
         <translation>Mostrar Complementos disponíveis para descarregar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2799"/>
+        <location filename="../UI/UserInterface.py" line="2809"/>
         <source>&lt;b&gt;Plugin Repository...&lt;/b&gt;&lt;p&gt;This opens a dialog, that shows a list of plugins available on the Internet.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Repositório de Complementos...&lt;/b&gt;&lt;p&gt;Abre uma caixa de diálogo que mostra a lista de complementos disponíveis em Internet.&lt;/p&gt;</translation>
     </message>
@@ -80952,7 +80952,7 @@
         <translation type="obsolete">Abrir a Documentação de PyQt4</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2949"/>
+        <location filename="../UI/UserInterface.py" line="2959"/>
         <source>Eric API Documentation</source>
         <translation>Documentação de API do Eric</translation>
     </message>
@@ -80962,7 +80962,7 @@
         <translation type="obsolete">Documentação de API do &amp;Eric</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2953"/>
+        <location filename="../UI/UserInterface.py" line="2963"/>
         <source>Open Eric API Documentation</source>
         <translation>Abrir a Documentação de API do Eric</translation>
     </message>
@@ -80982,112 +80982,112 @@
         <translation type="obsolete">Abrir Documentação de PySide</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3154"/>
+        <location filename="../UI/UserInterface.py" line="3164"/>
         <source>&amp;Unittest</source>
         <translation>Teste &amp;Unitário</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3098"/>
-        <source>E&amp;xtras</source>
-        <translation></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="3108"/>
+        <source>E&amp;xtras</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3118"/>
         <source>Wi&amp;zards</source>
         <translation>A&amp;ssistentes</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3171"/>
+        <location filename="../UI/UserInterface.py" line="3181"/>
         <source>Select Tool Group</source>
         <translation>Selecionar Grupo de Ferramentas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3182"/>
+        <location filename="../UI/UserInterface.py" line="3192"/>
         <source>Se&amp;ttings</source>
         <translation>Definiçõe&amp;s</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3212"/>
+        <location filename="../UI/UserInterface.py" line="3222"/>
         <source>&amp;Window</source>
         <translation>&amp;Janela</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3273"/>
+        <location filename="../UI/UserInterface.py" line="3283"/>
         <source>&amp;Toolbars</source>
         <translation>Barras de Ferramen&amp;tas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3135"/>
+        <location filename="../UI/UserInterface.py" line="3145"/>
         <source>P&amp;lugins</source>
         <translation>Comp&amp;lementos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3144"/>
+        <location filename="../UI/UserInterface.py" line="3154"/>
         <source>Configure...</source>
         <translation>Configurar...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3287"/>
+        <location filename="../UI/UserInterface.py" line="3297"/>
         <source>&amp;Help</source>
         <translation>&amp;Ajuda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3360"/>
+        <location filename="../UI/UserInterface.py" line="3370"/>
         <source>Tools</source>
         <translation>Ferramentas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3362"/>
+        <location filename="../UI/UserInterface.py" line="3372"/>
         <source>Settings</source>
         <translation>Definições</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5220"/>
+        <location filename="../UI/UserInterface.py" line="5237"/>
         <source>Help</source>
         <translation>Ajuda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3364"/>
+        <location filename="../UI/UserInterface.py" line="3374"/>
         <source>Profiles</source>
         <translation>Perfiles</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3365"/>
+        <location filename="../UI/UserInterface.py" line="3375"/>
         <source>Plugins</source>
         <translation>Complementos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3530"/>
+        <location filename="../UI/UserInterface.py" line="3540"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3537"/>
+        <location filename="../UI/UserInterface.py" line="3547"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3544"/>
+        <location filename="../UI/UserInterface.py" line="3554"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3551"/>
+        <location filename="../UI/UserInterface.py" line="3561"/>
         <source>&lt;p&gt;This part of the status bar displays an indication of the current editors files writability.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3558"/>
+        <location filename="../UI/UserInterface.py" line="3568"/>
         <source>&lt;p&gt;This part of the status bar displays the line number of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3565"/>
+        <location filename="../UI/UserInterface.py" line="3575"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3636"/>
+        <location filename="../UI/UserInterface.py" line="3646"/>
         <source>External Tools/{0}</source>
         <translation>Ferramentas Externas/{0}</translation>
     </message>
@@ -81097,52 +81097,52 @@
         <translation type="obsolete">&lt;h3&gt;Números de Versão&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7279"/>
+        <location filename="../UI/UserInterface.py" line="7300"/>
         <source>&lt;/table&gt;</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3818"/>
+        <location filename="../UI/UserInterface.py" line="3828"/>
         <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
         <translation>A direção do correio eletrónico ou a direção do servidor de correio está vazia. Por favor configure as Definiçães de Correio Eletrónico na Caixa de Diálogo de Preferências.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4138"/>
+        <location filename="../UI/UserInterface.py" line="4148"/>
         <source>Restart application</source>
         <translation>Reiniciar a aplicação</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4138"/>
+        <location filename="../UI/UserInterface.py" line="4148"/>
         <source>The application needs to be restarted. Do it now?</source>
         <translation>A aplicação necessita ser reiniciada. Reiniciar agora?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4219"/>
+        <location filename="../UI/UserInterface.py" line="4229"/>
         <source>Configure Tool Groups ...</source>
         <translation>Configurar Grupos de Ferramentas...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4223"/>
+        <location filename="../UI/UserInterface.py" line="4233"/>
         <source>Configure current Tool Group ...</source>
         <translation>Configurar o atual Grupo de Ferramentas ...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4174"/>
+        <location filename="../UI/UserInterface.py" line="4184"/>
         <source>&amp;Builtin Tools</source>
         <translation>Ferramentas &amp;Internas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4191"/>
+        <location filename="../UI/UserInterface.py" line="4201"/>
         <source>&amp;Plugin Tools</source>
         <translation>Ferramentas dos &amp;Complementos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4340"/>
+        <location filename="../UI/UserInterface.py" line="4350"/>
         <source>&amp;Show all</source>
         <translation>&amp;Mostrar tudo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4342"/>
+        <location filename="../UI/UserInterface.py" line="4352"/>
         <source>&amp;Hide all</source>
         <translation>&amp;Esconder tudo</translation>
     </message>
@@ -81157,110 +81157,110 @@
         <translation type="obsolete">Suporte Qt3</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5348"/>
+        <location filename="../UI/UserInterface.py" line="5365"/>
         <source>Problem</source>
         <translation>Problema</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5348"/>
+        <location filename="../UI/UserInterface.py" line="5365"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist or is zero length.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5543"/>
+        <location filename="../UI/UserInterface.py" line="5560"/>
         <source>Process Generation Error</source>
         <translation>Erro na Criação de Processo</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5073"/>
+        <location filename="../UI/UserInterface.py" line="5090"/>
         <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5143"/>
+        <location filename="../UI/UserInterface.py" line="5160"/>
         <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5187"/>
+        <location filename="../UI/UserInterface.py" line="5204"/>
         <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5220"/>
+        <location filename="../UI/UserInterface.py" line="5237"/>
         <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
         <translation>Não há nenhum visor personalizado selecionado. Por favor use a caixa de diálogo das preferências para escolher um.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5234"/>
+        <location filename="../UI/UserInterface.py" line="5251"/>
         <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5254"/>
+        <location filename="../UI/UserInterface.py" line="5271"/>
         <source>&lt;p&gt;Could not start the help viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5304"/>
+        <location filename="../UI/UserInterface.py" line="5321"/>
         <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5361"/>
+        <location filename="../UI/UserInterface.py" line="5378"/>
         <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5384"/>
+        <location filename="../UI/UserInterface.py" line="5401"/>
         <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5488"/>
+        <location filename="../UI/UserInterface.py" line="5505"/>
         <source>External Tools</source>
         <translation>Ferramentas Externas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5479"/>
+        <location filename="../UI/UserInterface.py" line="5496"/>
         <source>No tool entry found for external tool &apos;{0}&apos; in tool group &apos;{1}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5488"/>
+        <location filename="../UI/UserInterface.py" line="5505"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5527"/>
+        <location filename="../UI/UserInterface.py" line="5544"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation>A iniciar processo &apos;{0} {1}&apos;.
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5543"/>
+        <location filename="../UI/UserInterface.py" line="5560"/>
         <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5621"/>
+        <location filename="../UI/UserInterface.py" line="5638"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation>Processo &apos;{0}&apos; saiu.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5883"/>
+        <location filename="../UI/UserInterface.py" line="5900"/>
         <source>Documentation Missing</source>
         <translation>Falta a Documentação</translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="5900"/>
+        <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; could not be found.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="5883"/>
-        <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; could not be found.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5866"/>
         <source>Documentation</source>
         <translation>Documentação</translation>
     </message>
@@ -81280,77 +81280,77 @@
         <translation type="obsolete">Ler tarefas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6518"/>
+        <location filename="../UI/UserInterface.py" line="6538"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1669"/>
+        <location filename="../UI/UserInterface.py" line="1679"/>
         <source>Save session</source>
         <translation>Guargar sessão</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6556"/>
+        <location filename="../UI/UserInterface.py" line="6576"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6611"/>
+        <location filename="../UI/UserInterface.py" line="6631"/>
         <source>Read session</source>
         <translation>Sessão de leitura</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6611"/>
+        <location filename="../UI/UserInterface.py" line="6631"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6897"/>
+        <location filename="../UI/UserInterface.py" line="6917"/>
         <source>Drop Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6897"/>
+        <location filename="../UI/UserInterface.py" line="6917"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; não é um ficheiro.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7062"/>
+        <location filename="../UI/UserInterface.py" line="7082"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Cancelar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7071"/>
+        <location filename="../UI/UserInterface.py" line="7091"/>
         <source>Trying host {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7221"/>
+        <location filename="../UI/UserInterface.py" line="7242"/>
         <source>Update available</source>
         <translation>Atualização disponível</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7240"/>
+        <location filename="../UI/UserInterface.py" line="7261"/>
         <source>Error during updates check</source>
         <translation>Erro na verificação de atualizações</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7240"/>
+        <location filename="../UI/UserInterface.py" line="7261"/>
         <source>Could not perform updates check.</source>
         <translation>Não procurar atualizações.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7264"/>
+        <location filename="../UI/UserInterface.py" line="7285"/>
         <source>&lt;h3&gt;Available versions&lt;/h3&gt;&lt;table&gt;</source>
         <translation>&lt;h3&gt;Versões Disponíveis&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7316"/>
+        <location filename="../UI/UserInterface.py" line="7337"/>
         <source>First time usage</source>
         <translation>Usado a primeira vez</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2927"/>
+        <location filename="../UI/UserInterface.py" line="2937"/>
         <source>Python 3 Documentation</source>
         <translation>Documentação de Python 3</translation>
     </message>
@@ -81360,7 +81360,7 @@
         <translation type="obsolete">Documentação de Python &amp;3</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2931"/>
+        <location filename="../UI/UserInterface.py" line="2941"/>
         <source>Open Python 3 Documentation</source>
         <translation>Abrir a Documentação de Python 3</translation>
     </message>
@@ -81380,27 +81380,27 @@
         <translation type="obsolete">Abrir a Documentação de Python 2</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7129"/>
+        <location filename="../UI/UserInterface.py" line="7150"/>
         <source>Error getting versions information</source>
         <translation>Erro na obtenção da informação de versões</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7122"/>
+        <location filename="../UI/UserInterface.py" line="7143"/>
         <source>The versions information could not be downloaded. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6086"/>
+        <location filename="../UI/UserInterface.py" line="6103"/>
         <source>Open Browser</source>
         <translation>Abrir Navegador</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6086"/>
+        <location filename="../UI/UserInterface.py" line="6103"/>
         <source>Could not start a web browser</source>
         <translation>Não se pôde iniciar um navegador web</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7129"/>
+        <location filename="../UI/UserInterface.py" line="7150"/>
         <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -81425,363 +81425,363 @@
         <translation>A iniciar Depurador...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
+        <location filename="../UI/UserInterface.py" line="1701"/>
         <source>New Window</source>
         <translation>Nova Janela</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
+        <location filename="../UI/UserInterface.py" line="1701"/>
         <source>New &amp;Window</source>
         <translation>Nova &amp;Janela</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
+        <location filename="../UI/UserInterface.py" line="1701"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation>Ctrl+Shift+N</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2280"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <source>Unittest Rerun Failed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2280"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <source>Rerun Failed Tests...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2285"/>
+        <location filename="../UI/UserInterface.py" line="2295"/>
         <source>Rerun failed tests of the last run</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2287"/>
+        <location filename="../UI/UserInterface.py" line="2297"/>
         <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last unittest run.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2419"/>
+        <location filename="../UI/UserInterface.py" line="2429"/>
         <source>Compare &amp;Files side by side...</source>
         <translation>Comparar &amp;Ficheiros lado-a-lado...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2502"/>
+        <location filename="../UI/UserInterface.py" line="2512"/>
         <source>Snapshot</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2502"/>
+        <location filename="../UI/UserInterface.py" line="2512"/>
         <source>&amp;Snapshot...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2507"/>
+        <location filename="../UI/UserInterface.py" line="2517"/>
         <source>Take snapshots of a screen region</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2509"/>
+        <location filename="../UI/UserInterface.py" line="2519"/>
         <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5456"/>
+        <location filename="../UI/UserInterface.py" line="5473"/>
         <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7335"/>
+        <location filename="../UI/UserInterface.py" line="7356"/>
         <source>Select Workspace Directory</source>
         <translation>Selecionar o Diretório de Trabalho</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1886"/>
+        <location filename="../UI/UserInterface.py" line="1896"/>
         <source>Left Toolbox</source>
         <translation>Caixa de Ferramentas Esquerda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1898"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <source>Right Toolbox</source>
         <translation>Caixa de Ferramentas Direita</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
+        <location filename="../UI/UserInterface.py" line="1760"/>
         <source>Switch the input focus to the Project-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1752"/>
+        <location filename="../UI/UserInterface.py" line="1762"/>
         <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1767"/>
+        <location filename="../UI/UserInterface.py" line="1777"/>
         <source>Switch the input focus to the Multiproject-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1769"/>
+        <location filename="../UI/UserInterface.py" line="1779"/>
         <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
+        <location filename="../UI/UserInterface.py" line="1795"/>
         <source>Switch the input focus to the Debug-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1787"/>
+        <location filename="../UI/UserInterface.py" line="1797"/>
         <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1803"/>
+        <location filename="../UI/UserInterface.py" line="1813"/>
         <source>Switch the input focus to the Shell window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1805"/>
+        <location filename="../UI/UserInterface.py" line="1815"/>
         <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
+        <location filename="../UI/UserInterface.py" line="1824"/>
         <source>&amp;File-Browser</source>
         <translation>Navegador de &amp;Ficheiros</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
+        <location filename="../UI/UserInterface.py" line="1830"/>
         <source>Switch the input focus to the File-Browser window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1822"/>
+        <location filename="../UI/UserInterface.py" line="1832"/>
         <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
         <source>Lo&amp;g-Viewer</source>
         <translation>Visor de Re&amp;gistos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1837"/>
+        <location filename="../UI/UserInterface.py" line="1847"/>
         <source>Switch the input focus to the Log-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
-        <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1849"/>
+        <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1859"/>
         <source>&amp;Task-Viewer</source>
         <translation>Visor de &amp;Tarefas</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1855"/>
+        <location filename="../UI/UserInterface.py" line="1865"/>
         <source>Switch the input focus to the Task-Viewer window.</source>
         <translation>Muda o enfoque de entrada à janela do Visor de Tarefas.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
+        <location filename="../UI/UserInterface.py" line="1878"/>
         <source>Templ&amp;ate-Viewer</source>
         <translation>Visor de Mod&amp;elos</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1874"/>
+        <location filename="../UI/UserInterface.py" line="1884"/>
         <source>Switch the input focus to the Template-Viewer window.</source>
         <translation>Muda o enfoque de entrada à janela do Visor de Modelos.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1876"/>
-        <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1886"/>
+        <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1896"/>
         <source>&amp;Left Toolbox</source>
         <translation>Caixa de Ferramentas &amp;Esquerda</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1889"/>
+        <location filename="../UI/UserInterface.py" line="1899"/>
         <source>Toggle the Left Toolbox window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1890"/>
+        <location filename="../UI/UserInterface.py" line="1900"/>
         <source>&lt;b&gt;Toggle the Left Toolbox window&lt;/b&gt;&lt;p&gt;If the Left Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1898"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <source>&amp;Right Toolbox</source>
         <translation>Caixa de Ferramentas Di&amp;reita</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1902"/>
+        <location filename="../UI/UserInterface.py" line="1912"/>
         <source>Toggle the Right Toolbox window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1903"/>
+        <location filename="../UI/UserInterface.py" line="1913"/>
         <source>&lt;b&gt;Toggle the Right Toolbox window&lt;/b&gt;&lt;p&gt;If the Right Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1948"/>
         <source>Right Sidebar</source>
         <translation>Barra Direita</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1948"/>
         <source>&amp;Right Sidebar</source>
         <translation>Barra Lateral Di&amp;reita</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1942"/>
+        <location filename="../UI/UserInterface.py" line="1952"/>
         <source>Toggle the right sidebar window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1944"/>
+        <location filename="../UI/UserInterface.py" line="1954"/>
         <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Cooperation-Viewer</source>
         <translation>Visor de Colaboração</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Co&amp;operation-Viewer</source>
         <translation>Visor de C&amp;olaboração</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1973"/>
+        <location filename="../UI/UserInterface.py" line="1983"/>
         <source>Switch the input focus to the Cooperation-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="1985"/>
         <source>&lt;b&gt;Activate Cooperation-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Cooperation-Viewer window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ativar Visor de Colaboração&lt;/b&gt;&lt;p&gt;Muda o enfoque de entrada para a janela do Visualizador de Colaboração.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2004"/>
+        <location filename="../UI/UserInterface.py" line="2014"/>
         <source>Symbols-Viewer</source>
         <translation>Visor de Símbolos</translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="2014"/>
+        <source>S&amp;ymbols-Viewer</source>
+        <translation>V&amp;isor de Símbolos</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2020"/>
+        <source>Switch the input focus to the Symbols-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2022"/>
+        <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2033"/>
+        <source>Numbers-Viewer</source>
+        <translation>Visor de Números</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2033"/>
+        <source>Num&amp;bers-Viewer</source>
+        <translation>Visor de Nú&amp;meros</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2039"/>
+        <source>Switch the input focus to the Numbers-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2041"/>
+        <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3231"/>
+        <source>&amp;Windows</source>
+        <translation>&amp;Janelas</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1867"/>
+        <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1996"/>
+        <source>IRC</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1996"/>
+        <source>&amp;IRC</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2002"/>
+        <source>Switch the input focus to the IRC window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="2004"/>
-        <source>S&amp;ymbols-Viewer</source>
-        <translation>V&amp;isor de Símbolos</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2010"/>
-        <source>Switch the input focus to the Symbols-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2012"/>
-        <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
-        <source>Numbers-Viewer</source>
-        <translation>Visor de Números</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
-        <source>Num&amp;bers-Viewer</source>
-        <translation>Visor de Nú&amp;meros</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2029"/>
-        <source>Switch the input focus to the Numbers-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2031"/>
-        <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3221"/>
-        <source>&amp;Windows</source>
-        <translation>&amp;Janelas</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1857"/>
-        <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
-        <source>IRC</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
-        <source>&amp;IRC</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1992"/>
-        <source>Switch the input focus to the IRC window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
         <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2338"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Qt-Designer</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2338"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Qt-&amp;Designer...</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2343"/>
+        <location filename="../UI/UserInterface.py" line="2353"/>
         <source>Start Qt-Designer</source>
         <translation>Iniciar Qt-Designer</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2344"/>
+        <location filename="../UI/UserInterface.py" line="2354"/>
         <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2364"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Qt-Linguist</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2364"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Qt-&amp;Linguist...</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2369"/>
+        <location filename="../UI/UserInterface.py" line="2379"/>
         <source>Start Qt-Linguist</source>
         <translation>Iniciar Qt-Linguist</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2370"/>
+        <location filename="../UI/UserInterface.py" line="2380"/>
         <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2858"/>
+        <location filename="../UI/UserInterface.py" line="2868"/>
         <source>Qt5 Documentation</source>
         <translation>Documentação de Qt5</translation>
     </message>
@@ -81791,47 +81791,47 @@
         <translation type="obsolete">Documentação de Qt&amp;5</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2862"/>
+        <location filename="../UI/UserInterface.py" line="2872"/>
         <source>Open Qt5 Documentation</source>
         <translation>Abrir a Documentação de Qt5</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2666"/>
+        <location filename="../UI/UserInterface.py" line="2676"/>
         <source>Manage SSL Certificates</source>
         <translation>Gestionar Certificados SSL</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2666"/>
+        <location filename="../UI/UserInterface.py" line="2676"/>
         <source>Manage SSL Certificates...</source>
         <translation>Gestionar Certificados SSL...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2671"/>
+        <location filename="../UI/UserInterface.py" line="2681"/>
         <source>Manage the saved SSL certificates</source>
         <translation>Gestionar certificados SSL gravados</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2673"/>
+        <location filename="../UI/UserInterface.py" line="2683"/>
         <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2682"/>
+        <location filename="../UI/UserInterface.py" line="2692"/>
         <source>Edit Message Filters</source>
         <translation>Editar Filtros de Mensagens</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2682"/>
+        <location filename="../UI/UserInterface.py" line="2692"/>
         <source>Edit Message Filters...</source>
         <translation>Editar Filtros de Mensagens...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2687"/>
+        <location filename="../UI/UserInterface.py" line="2697"/>
         <source>Edit the message filters used to suppress unwanted messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2689"/>
+        <location filename="../UI/UserInterface.py" line="2699"/>
         <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -81841,7 +81841,7 @@
         <translation type="obsolete">Documentação do PyQt&amp;4</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2888"/>
+        <location filename="../UI/UserInterface.py" line="2898"/>
         <source>PyQt5 Documentation</source>
         <translation>Documentação do PyQt5</translation>
     </message>
@@ -81851,32 +81851,32 @@
         <translation type="obsolete">Documentação do PyQt&amp;5</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2892"/>
+        <location filename="../UI/UserInterface.py" line="2902"/>
         <source>Open PyQt5 Documentation</source>
         <translation>Abrir a Documentação de PyQt5</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2933"/>
+        <location filename="../UI/UserInterface.py" line="2943"/>
         <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7062"/>
+        <location filename="../UI/UserInterface.py" line="7082"/>
         <source>%v/%m</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2203"/>
+        <location filename="../UI/UserInterface.py" line="2213"/>
         <source>Show Error Log</source>
         <translation>Mostrar Registo de Erros</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2199"/>
+        <location filename="../UI/UserInterface.py" line="2209"/>
         <source>Show Error &amp;Log...</source>
         <translation>Mostrar &amp;Registo de Erros...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2204"/>
+        <location filename="../UI/UserInterface.py" line="2214"/>
         <source>&lt;b&gt;Show Error Log...&lt;/b&gt;&lt;p&gt;Opens a dialog showing the most recent error log.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -81911,7 +81911,7 @@
         <translation type="obsolete">Qt v.3 não está suportado por eric6.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7066"/>
+        <location filename="../UI/UserInterface.py" line="7086"/>
         <source>Version Check</source>
         <translation type="unfinished"></translation>
     </message>
@@ -81941,67 +81941,67 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4194"/>
+        <location filename="../UI/UserInterface.py" line="4204"/>
         <source>&amp;User Tools</source>
         <translation>Ferramentas de &amp;Utilizador</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4266"/>
+        <location filename="../UI/UserInterface.py" line="4276"/>
         <source>No User Tools Configured</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2459"/>
+        <location filename="../UI/UserInterface.py" line="2469"/>
         <source>Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2459"/>
+        <location filename="../UI/UserInterface.py" line="2469"/>
         <source>&amp;Hex Editor...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2705"/>
+        <location filename="../UI/UserInterface.py" line="2715"/>
         <source>Clear private data</source>
         <translation type="unfinished">Limpar dados privados</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2707"/>
+        <location filename="../UI/UserInterface.py" line="2717"/>
         <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1665"/>
+        <location filename="../UI/UserInterface.py" line="1675"/>
         <source>Save session...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1670"/>
+        <location filename="../UI/UserInterface.py" line="1680"/>
         <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6650"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <source>Load session</source>
         <translation type="unfinished">Carregar sessão</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1678"/>
+        <location filename="../UI/UserInterface.py" line="1688"/>
         <source>Load session...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1683"/>
+        <location filename="../UI/UserInterface.py" line="1693"/>
         <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6703"/>
+        <location filename="../UI/UserInterface.py" line="6723"/>
         <source>Crash Session found!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6703"/>
+        <location filename="../UI/UserInterface.py" line="6723"/>
         <source>A session file of a crashed session was found. Shall this session be restored?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -82016,448 +82016,448 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7209"/>
+        <location filename="../UI/UserInterface.py" line="7230"/>
         <source>Update Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7209"/>
+        <location filename="../UI/UserInterface.py" line="7230"/>
         <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2042"/>
+        <location filename="../UI/UserInterface.py" line="2052"/>
         <source>Code Documentation Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2863"/>
+        <location filename="../UI/UserInterface.py" line="2873"/>
         <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2894"/>
+        <location filename="../UI/UserInterface.py" line="2904"/>
         <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2970"/>
+        <location filename="../UI/UserInterface.py" line="2980"/>
         <source>PySide2 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2974"/>
+        <location filename="../UI/UserInterface.py" line="2984"/>
         <source>Open PySide2 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2976"/>
+        <location filename="../UI/UserInterface.py" line="2986"/>
         <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5866"/>
+        <location filename="../UI/UserInterface.py" line="5883"/>
         <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2813"/>
+        <location filename="../UI/UserInterface.py" line="2823"/>
         <source>Virtualenv Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2807"/>
+        <location filename="../UI/UserInterface.py" line="2817"/>
         <source>&amp;Virtualenv Manager...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2815"/>
+        <location filename="../UI/UserInterface.py" line="2825"/>
         <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2830"/>
+        <location filename="../UI/UserInterface.py" line="2840"/>
         <source>Virtualenv Configurator</source>
         <translation type="unfinished">Assistente para Virtualenv</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2824"/>
+        <location filename="../UI/UserInterface.py" line="2834"/>
         <source>Virtualenv &amp;Configurator...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2832"/>
+        <location filename="../UI/UserInterface.py" line="2842"/>
         <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3228"/>
+        <location filename="../UI/UserInterface.py" line="3238"/>
         <source>Left Side</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3240"/>
+        <location filename="../UI/UserInterface.py" line="3250"/>
         <source>Bottom Side</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3247"/>
+        <location filename="../UI/UserInterface.py" line="3257"/>
         <source>Right Side</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3267"/>
+        <location filename="../UI/UserInterface.py" line="3277"/>
         <source>Plug-ins</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
+        <location filename="../UI/UserInterface.py" line="1659"/>
         <source>Restart</source>
         <translation type="unfinished">Reiniciar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
+        <location filename="../UI/UserInterface.py" line="1659"/>
         <source>Ctrl+Shift+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1655"/>
+        <location filename="../UI/UserInterface.py" line="1665"/>
         <source>Restart the IDE</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1656"/>
+        <location filename="../UI/UserInterface.py" line="1666"/>
         <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6043"/>
+        <location filename="../UI/UserInterface.py" line="6060"/>
         <source>Start Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="2090"/>
+        <source>Conda</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2072"/>
+        <source>PyPI</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3586"/>
+        <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2108"/>
+        <source>MicroPython</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1996"/>
+        <source>Ctrl+Alt+Shift+I</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2052"/>
+        <source>Ctrl+Alt+Shift+D</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2058"/>
+        <source>Switch the input focus to the Code Documentation Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2061"/>
+        <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2072"/>
+        <source>Ctrl+Alt+Shift+P</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2078"/>
+        <source>Switch the input focus to the PyPI window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="2080"/>
-        <source>Conda</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2062"/>
-        <source>PyPI</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3576"/>
-        <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2098"/>
-        <source>MicroPython</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
-        <source>Ctrl+Alt+Shift+I</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2042"/>
-        <source>Ctrl+Alt+Shift+D</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2048"/>
-        <source>Switch the input focus to the Code Documentation Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2051"/>
-        <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2062"/>
-        <source>Ctrl+Alt+Shift+P</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2068"/>
-        <source>Switch the input focus to the PyPI window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2070"/>
         <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2080"/>
+        <location filename="../UI/UserInterface.py" line="2090"/>
         <source>Ctrl+Alt+Shift+C</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2086"/>
+        <location filename="../UI/UserInterface.py" line="2096"/>
         <source>Switch the input focus to the Conda window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2088"/>
-        <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2098"/>
+        <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2108"/>
         <source>Ctrl+Alt+Shift+M</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2104"/>
+        <location filename="../UI/UserInterface.py" line="2114"/>
         <source>Switch the input focus to the MicroPython window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2106"/>
+        <location filename="../UI/UserInterface.py" line="2116"/>
         <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3225"/>
+        <location filename="../UI/UserInterface.py" line="3235"/>
         <source>Central Park</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3745"/>
+        <location filename="../UI/UserInterface.py" line="3755"/>
         <source>&lt;h2&gt;Version Numbers&lt;/h2&gt;&lt;table&gt;</source>
         <translation type="unfinished">&lt;h3&gt;Números de Versão&lt;/h3&gt;&lt;table&gt; {2&gt;?} {2&gt;?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5082"/>
+        <location filename="../UI/UserInterface.py" line="5099"/>
         <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5152"/>
+        <location filename="../UI/UserInterface.py" line="5169"/>
         <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5196"/>
+        <location filename="../UI/UserInterface.py" line="5213"/>
         <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2211"/>
+        <location filename="../UI/UserInterface.py" line="2221"/>
         <source>Show Install Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2211"/>
+        <location filename="../UI/UserInterface.py" line="2221"/>
         <source>Show Install &amp;Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2215"/>
+        <location filename="../UI/UserInterface.py" line="2225"/>
         <source>Show Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2217"/>
+        <location filename="../UI/UserInterface.py" line="2227"/>
         <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2873"/>
+        <location filename="../UI/UserInterface.py" line="2883"/>
         <source>Qt6 Documentation</source>
         <translation type="unfinished">Documentação de Qt5 {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2877"/>
+        <location filename="../UI/UserInterface.py" line="2887"/>
         <source>Open Qt6 Documentation</source>
         <translation type="unfinished">Abrir a Documentação de Qt5 {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2878"/>
+        <location filename="../UI/UserInterface.py" line="2888"/>
         <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2905"/>
+        <location filename="../UI/UserInterface.py" line="2915"/>
         <source>PyQt6 Documentation</source>
         <translation type="unfinished">Documentação do PyQt5 {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2909"/>
+        <location filename="../UI/UserInterface.py" line="2919"/>
         <source>Open PyQt6 Documentation</source>
         <translation type="unfinished">Abrir a Documentação de PyQt5 {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2911"/>
+        <location filename="../UI/UserInterface.py" line="2921"/>
         <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2990"/>
+        <location filename="../UI/UserInterface.py" line="3000"/>
         <source>PySide6 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2994"/>
+        <location filename="../UI/UserInterface.py" line="3004"/>
         <source>Open PySide6 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2996"/>
+        <location filename="../UI/UserInterface.py" line="3006"/>
         <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5761"/>
+        <location filename="../UI/UserInterface.py" line="5778"/>
         <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1697"/>
+        <location filename="../UI/UserInterface.py" line="1707"/>
         <source>Open a new eric instance</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1699"/>
+        <location filename="../UI/UserInterface.py" line="1709"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2142"/>
+        <location filename="../UI/UserInterface.py" line="2152"/>
         <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is search in the Qt help collection.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2177"/>
+        <location filename="../UI/UserInterface.py" line="2187"/>
         <source>&lt;b&gt;Check for Updates...&lt;/b&gt;&lt;p&gt;Checks the internet for updates of eric.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2190"/>
+        <location filename="../UI/UserInterface.py" line="2200"/>
         <source>&lt;b&gt;Show downloadable versions...&lt;/b&gt;&lt;p&gt;Shows the eric versions available for download from the internet.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2464"/>
-        <source>Start the eric Hex Editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2466"/>
-        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2474"/>
+        <source>Start the eric Hex Editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2476"/>
+        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2484"/>
         <source>eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2474"/>
+        <location filename="../UI/UserInterface.py" line="2484"/>
         <source>eric &amp;Web Browser...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2479"/>
+        <location filename="../UI/UserInterface.py" line="2489"/>
         <source>Start the eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2481"/>
+        <location filename="../UI/UserInterface.py" line="2491"/>
         <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2493"/>
+        <location filename="../UI/UserInterface.py" line="2503"/>
         <source>Start the eric Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2495"/>
+        <location filename="../UI/UserInterface.py" line="2505"/>
         <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2581"/>
+        <location filename="../UI/UserInterface.py" line="2591"/>
         <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2955"/>
+        <location filename="../UI/UserInterface.py" line="2965"/>
         <source>&lt;b&gt;Eric API Documentation&lt;/b&gt;&lt;p&gt;Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5979"/>
+        <location filename="../UI/UserInterface.py" line="5996"/>
         <source>The eric web browser could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6043"/>
+        <location filename="../UI/UserInterface.py" line="6060"/>
         <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7221"/>
+        <location filename="../UI/UserInterface.py" line="7242"/>
         <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7199"/>
+        <location filename="../UI/UserInterface.py" line="7220"/>
         <source>You are using a snapshot release of eric. A more up-to-date stable release might be available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7233"/>
+        <location filename="../UI/UserInterface.py" line="7254"/>
         <source>eric is up to date</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7233"/>
+        <location filename="../UI/UserInterface.py" line="7254"/>
         <source>You are using the latest version of eric</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7316"/>
+        <location filename="../UI/UserInterface.py" line="7337"/>
         <source>eric has not been configured yet. The configuration dialog will be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6294"/>
+        <location filename="../UI/UserInterface.py" line="6314"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard Shortcuts File (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6313"/>
+        <location filename="../UI/UserInterface.py" line="6333"/>
         <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6329"/>
+        <location filename="../UI/UserInterface.py" line="6349"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6518"/>
+        <location filename="../UI/UserInterface.py" line="6538"/>
         <source>Read Tasks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6627"/>
+        <location filename="../UI/UserInterface.py" line="6647"/>
         <source>Save Session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6584"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>Read Session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6650"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -82538,7 +82538,7 @@
 <context>
     <name>Utilities</name>
     <message>
-        <location filename="../Utilities/__init__.py" line="1453"/>
+        <location filename="../Utilities/__init__.py" line="1454"/>
         <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;Pode usar códigos % como espaços reservados dentro da string. Os códigos suportados são:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;coluna do cursor do editor atual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directório do editor atual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;nome do ficheiro do editor atual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;diretório home do usuário atual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;linha do cursor do editor atual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;rota do projeto atual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;texto selecionado do editor atual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;nome de usuário do usuário atual&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;sinal de percentagem&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</translation>
     </message>
@@ -82857,7 +82857,7 @@
 <context>
     <name>VariablesViewer</name>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="958"/>
+        <location filename="../Debugger/VariablesViewer.py" line="965"/>
         <source>Global Variables</source>
         <translation>Variáveis Globais</translation>
     </message>
@@ -82877,12 +82877,12 @@
         <translation type="obsolete">Tipo</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="959"/>
+        <location filename="../Debugger/VariablesViewer.py" line="966"/>
         <source>&lt;b&gt;The Global Variables Viewer Window&lt;/b&gt;&lt;p&gt;This window displays the global variables of the debugged program.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="965"/>
+        <location filename="../Debugger/VariablesViewer.py" line="972"/>
         <source>Local Variables</source>
         <translation>Variáveis Locais</translation>
     </message>
@@ -82892,17 +82892,17 @@
         <translation type="obsolete">Locais</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="966"/>
+        <location filename="../Debugger/VariablesViewer.py" line="973"/>
         <source>&lt;b&gt;The Local Variables Viewer Window&lt;/b&gt;&lt;p&gt;This window displays the local variables of the debugged program.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1083"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1090"/>
         <source>Show Details...</source>
         <translation>Mostrar Detalhes...</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1098"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1105"/>
         <source>Configure...</source>
         <translation>Configurar...</translation>
     </message>
@@ -82912,7 +82912,7 @@
         <translation>{0} elementos</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1096"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1103"/>
         <source>Refresh</source>
         <translation type="unfinished">Atualizar</translation>
     </message>
@@ -82922,22 +82922,22 @@
         <translation type="obsolete">Contrair tudo</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1085"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1092"/>
         <source>Expand</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1086"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1093"/>
         <source>Collapse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1087"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1094"/>
         <source>Collapse All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1099"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1106"/>
         <source>Variables Type Filter...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -83588,7 +83588,7 @@
         <translation>Não pôde iniciar {0}.&lt;br&gt;Certifique-se de que está na rota de pesquisa.</translation>
     </message>
     <message>
-        <location filename="../VCS/VersionControl.py" line="761"/>
+        <location filename="../VCS/VersionControl.py" line="764"/>
         <source>Repository status checking is switched off</source>
         <translation>A verificação de estado do repositório está desligada</translation>
     </message>
@@ -83596,1533 +83596,1533 @@
 <context>
     <name>ViewManager</name>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>New</source>
         <translation>Novo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>&amp;New</source>
         <translation>&amp;Novo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="592"/>
+        <location filename="../ViewManager/ViewManager.py" line="593"/>
         <source>Open an empty editor window</source>
         <translation>Abrir uma janela do editor vazia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="595"/>
+        <location filename="../ViewManager/ViewManager.py" line="596"/>
         <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="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>Open</source>
         <translation>Abrir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>&amp;Open...</source>
         <translation>&amp;Abrir...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="611"/>
+        <location filename="../ViewManager/ViewManager.py" line="612"/>
         <source>Open a file</source>
         <translation>Abrir um ficheiro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="613"/>
+        <location filename="../ViewManager/ViewManager.py" line="614"/>
         <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="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>Close</source>
         <translation>Fechar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>&amp;Close</source>
         <translation>Fe&amp;char</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="632"/>
+        <location filename="../ViewManager/ViewManager.py" line="633"/>
         <source>Close the current window</source>
         <translation>Fechar a janela atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="636"/>
         <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="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="644"/>
         <source>Close All</source>
         <translation>Fechar Tudo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="644"/>
         <source>Clos&amp;e All</source>
         <translation>F&amp;echar Tudo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="647"/>
+        <location filename="../ViewManager/ViewManager.py" line="648"/>
         <source>Close all editor windows</source>
         <translation>Fechar todas as janelas do editor</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="650"/>
+        <location filename="../ViewManager/ViewManager.py" line="651"/>
         <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="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>Save</source>
         <translation>Gravar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>&amp;Save</source>
         <translation>&amp;Gravar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="669"/>
+        <location filename="../ViewManager/ViewManager.py" line="670"/>
         <source>Save the current file</source>
         <translation>Gravar o ficheiro atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="671"/>
+        <location filename="../ViewManager/ViewManager.py" line="672"/>
         <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="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Save as</source>
         <translation>Gravar como</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Save &amp;as...</source>
         <translation>Gravar co&amp;mo...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="686"/>
+        <location filename="../ViewManager/ViewManager.py" line="687"/>
         <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="688"/>
+        <location filename="../ViewManager/ViewManager.py" line="689"/>
         <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="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="714"/>
         <source>Save all</source>
         <translation>Gravar tudo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="718"/>
+        <location filename="../ViewManager/ViewManager.py" line="719"/>
         <source>Save all files</source>
         <translation>Gravar os ficheiros todos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="720"/>
+        <location filename="../ViewManager/ViewManager.py" line="721"/>
         <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="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>Print</source>
         <translation>Imprimir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>&amp;Print</source>
         <translation>Im&amp;primir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="737"/>
+        <location filename="../ViewManager/ViewManager.py" line="738"/>
         <source>Print the current file</source>
         <translation>Imprimir o ficheiro atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="739"/>
+        <location filename="../ViewManager/ViewManager.py" line="740"/>
         <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="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="749"/>
         <source>Print Preview</source>
         <translation>Antevisão da Impressão</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="753"/>
+        <location filename="../ViewManager/ViewManager.py" line="754"/>
         <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="755"/>
+        <location filename="../ViewManager/ViewManager.py" line="756"/>
         <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="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Search File</source>
         <translation>Procurar Ficheiro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Search &amp;File...</source>
         <translation>Procurar &amp;Ficheiro...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Alt+Ctrl+F</source>
         <comment>File|Search File</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="771"/>
+        <location filename="../ViewManager/ViewManager.py" line="772"/>
         <source>Search for a file</source>
         <translation>Procurar um ficheiro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="773"/>
+        <location filename="../ViewManager/ViewManager.py" line="774"/>
         <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="787"/>
+        <location filename="../ViewManager/ViewManager.py" line="788"/>
         <source>&amp;File</source>
         <translation>&amp;Ficheiro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="789"/>
+        <location filename="../ViewManager/ViewManager.py" line="790"/>
         <source>Open &amp;Recent Files</source>
         <translation>Abrir Ficheiros Rece&amp;ntes</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="792"/>
+        <location filename="../ViewManager/ViewManager.py" line="793"/>
         <source>Open &amp;Bookmarked Files</source>
         <translation>Abrir Ficheiros &amp;Marcados</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="840"/>
+        <location filename="../ViewManager/ViewManager.py" line="841"/>
         <source>File</source>
         <translation>Ficheiro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="863"/>
+        <location filename="../ViewManager/ViewManager.py" line="864"/>
         <source>Export as</source>
         <translation>Exportar como</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Undo</source>
         <translation>Desfazer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>&amp;Undo</source>
         <translation>Desfa&amp;zer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="896"/>
+        <location filename="../ViewManager/ViewManager.py" line="897"/>
         <source>Undo the last change</source>
         <translation>Desfazer a última alteração</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="898"/>
+        <location filename="../ViewManager/ViewManager.py" line="899"/>
         <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="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>Redo</source>
         <translation>Refazer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>&amp;Redo</source>
         <translation>&amp;Refazer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="914"/>
+        <location filename="../ViewManager/ViewManager.py" line="915"/>
         <source>Redo the last change</source>
         <translation>Refazer a última alteração</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="916"/>
+        <location filename="../ViewManager/ViewManager.py" line="917"/>
         <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="933"/>
+        <location filename="../ViewManager/ViewManager.py" line="934"/>
         <source>Revert to last saved state</source>
         <translation>Voltar ao último estado gravado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="924"/>
+        <location filename="../ViewManager/ViewManager.py" line="925"/>
         <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="924"/>
+        <location filename="../ViewManager/ViewManager.py" line="925"/>
         <source>Ctrl+Y</source>
         <comment>Edit|Revert</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="935"/>
+        <location filename="../ViewManager/ViewManager.py" line="936"/>
         <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="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Cut</source>
         <translation>Cortar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Cu&amp;t</source>
         <translation>Cor&amp;tar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="955"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Cut the selection</source>
         <translation>Cortar a seleção</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="958"/>
         <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="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Copy</source>
         <translation>Copiar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>&amp;Copy</source>
         <translation>&amp;Copiar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="976"/>
         <source>Copy the selection</source>
         <translation>Copiar a seleção</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="977"/>
+        <location filename="../ViewManager/ViewManager.py" line="978"/>
         <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="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Paste</source>
         <translation>Colar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>&amp;Paste</source>
         <translation>Co&amp;lar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="995"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Paste the last cut/copied text</source>
         <translation>Colar o último texto cortado/copiado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="998"/>
         <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="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>Clear</source>
         <translation>Limpar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1014"/>
+        <location filename="../ViewManager/ViewManager.py" line="1015"/>
         <source>Clear all text</source>
         <translation>Limpar todo o texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1016"/>
+        <location filename="../ViewManager/ViewManager.py" line="1017"/>
         <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="1031"/>
+        <location filename="../ViewManager/ViewManager.py" line="1032"/>
         <source>Join Lines</source>
         <translation>Juntar Linhas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1024"/>
+        <location filename="../ViewManager/ViewManager.py" line="1025"/>
         <source>Ctrl+J</source>
         <comment>Edit|Join Lines</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1033"/>
+        <location filename="../ViewManager/ViewManager.py" line="1034"/>
         <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="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>Indent</source>
         <translation>Indentar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>&amp;Indent</source>
         <translation>&amp;Indentar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>Ctrl+I</source>
         <comment>Edit|Indent</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1049"/>
+        <location filename="../ViewManager/ViewManager.py" line="1050"/>
         <source>Indent line</source>
         <translation>Indentar linha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1051"/>
+        <location filename="../ViewManager/ViewManager.py" line="1052"/>
         <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="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>Unindent</source>
         <translation>Tirar Indentação</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>U&amp;nindent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>Ctrl+Shift+I</source>
         <comment>Edit|Unindent</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1068"/>
+        <location filename="../ViewManager/ViewManager.py" line="1069"/>
         <source>Unindent line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1070"/>
+        <location filename="../ViewManager/ViewManager.py" line="1071"/>
         <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="1079"/>
+        <location filename="../ViewManager/ViewManager.py" line="1080"/>
         <source>Smart indent</source>
         <translation>Indentação Inteligente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1085"/>
+        <location filename="../ViewManager/ViewManager.py" line="1086"/>
         <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="1087"/>
+        <location filename="../ViewManager/ViewManager.py" line="1088"/>
         <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="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>Comment</source>
         <translation>Comentar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>C&amp;omment</source>
         <translation>C&amp;omentar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>Ctrl+M</source>
         <comment>Edit|Comment</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1104"/>
+        <location filename="../ViewManager/ViewManager.py" line="1105"/>
         <source>Comment Line or Selection</source>
         <translation>Comentar Linha ou Seleção</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1106"/>
+        <location filename="../ViewManager/ViewManager.py" line="1107"/>
         <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="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Uncomment</source>
         <translation>Descomentar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Unco&amp;mment</source>
         <translation>Desco&amp;mentar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Alt+Ctrl+M</source>
         <comment>Edit|Uncomment</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1123"/>
+        <location filename="../ViewManager/ViewManager.py" line="1124"/>
         <source>Uncomment Line or Selection</source>
         <translation>Descomentar Linha ou Seleção</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1125"/>
+        <location filename="../ViewManager/ViewManager.py" line="1126"/>
         <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="1156"/>
+        <location filename="../ViewManager/ViewManager.py" line="1157"/>
         <source>Stream Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1161"/>
+        <location filename="../ViewManager/ViewManager.py" line="1162"/>
         <source>Stream Comment Line or Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1164"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <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="1173"/>
+        <location filename="../ViewManager/ViewManager.py" line="1174"/>
         <source>Box Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1178"/>
+        <location filename="../ViewManager/ViewManager.py" line="1179"/>
         <source>Box Comment Line or Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1180"/>
+        <location filename="../ViewManager/ViewManager.py" line="1181"/>
         <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="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Select to brace</source>
         <translation>Selecionar até parentesis</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Select to &amp;brace</source>
         <translation>Selecionar até &amp;parentesis</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Ctrl+E</source>
         <comment>Edit|Select to brace</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1196"/>
+        <location filename="../ViewManager/ViewManager.py" line="1197"/>
         <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="1198"/>
+        <location filename="../ViewManager/ViewManager.py" line="1199"/>
         <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="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>Select all</source>
         <translation>Selecionar tudo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>&amp;Select all</source>
         <translation>&amp;Selecionar tudo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select all</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1215"/>
+        <location filename="../ViewManager/ViewManager.py" line="1216"/>
         <source>Select all text</source>
         <translation>Selecionar o texto todo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1217"/>
+        <location filename="../ViewManager/ViewManager.py" line="1218"/>
         <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="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>Deselect all</source>
         <translation>Desselecionar tudo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>&amp;Deselect all</source>
         <translation>&amp;Desselecionar tudo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>Alt+Ctrl+A</source>
         <comment>Edit|Deselect all</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1232"/>
+        <location filename="../ViewManager/ViewManager.py" line="1233"/>
         <source>Deselect all text</source>
         <translation>Desselecionar todo o texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1234"/>
+        <location filename="../ViewManager/ViewManager.py" line="1235"/>
         <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="1249"/>
+        <location filename="../ViewManager/ViewManager.py" line="1250"/>
         <source>Convert Line End Characters</source>
         <translation>Convertir Caráteres de Fim de Linha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1242"/>
+        <location filename="../ViewManager/ViewManager.py" line="1243"/>
         <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="1251"/>
+        <location filename="../ViewManager/ViewManager.py" line="1252"/>
         <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="1265"/>
+        <location filename="../ViewManager/ViewManager.py" line="1266"/>
         <source>Shorten empty lines</source>
         <translation>Mostrar linhas vazias</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1267"/>
+        <location filename="../ViewManager/ViewManager.py" line="1268"/>
         <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="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1277"/>
         <source>&amp;Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2748"/>
+        <location filename="../ViewManager/ViewManager.py" line="2749"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1283"/>
+        <location filename="../ViewManager/ViewManager.py" line="1284"/>
         <source>Complete current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1285"/>
+        <location filename="../ViewManager/ViewManager.py" line="1286"/>
         <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="1294"/>
+        <location filename="../ViewManager/ViewManager.py" line="1295"/>
         <source>Complete from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1304"/>
+        <location filename="../ViewManager/ViewManager.py" line="1305"/>
         <source>Complete current word from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1307"/>
+        <location filename="../ViewManager/ViewManager.py" line="1308"/>
         <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="1317"/>
+        <location filename="../ViewManager/ViewManager.py" line="1318"/>
         <source>Complete from APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1328"/>
         <source>Complete current word from APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1330"/>
+        <location filename="../ViewManager/ViewManager.py" line="1331"/>
         <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="1340"/>
+        <location filename="../ViewManager/ViewManager.py" line="1341"/>
         <source>Complete from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1350"/>
+        <location filename="../ViewManager/ViewManager.py" line="1351"/>
         <source>Complete current word from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1353"/>
+        <location filename="../ViewManager/ViewManager.py" line="1354"/>
         <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="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>Calltip</source>
         <translation type="unfinished">Dica</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>&amp;Calltip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1370"/>
+        <location filename="../ViewManager/ViewManager.py" line="1371"/>
         <source>Show Calltips</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1372"/>
+        <location filename="../ViewManager/ViewManager.py" line="1373"/>
         <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="1452"/>
+        <location filename="../ViewManager/ViewManager.py" line="1453"/>
         <source>Move left one character</source>
         <translation>Mover um caráter à esquerda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1452"/>
+        <location filename="../ViewManager/ViewManager.py" line="1453"/>
         <source>Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1466"/>
+        <location filename="../ViewManager/ViewManager.py" line="1467"/>
         <source>Move right one character</source>
         <translation>Mover um caráter à direita</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1466"/>
+        <location filename="../ViewManager/ViewManager.py" line="1467"/>
         <source>Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1481"/>
         <source>Move up one line</source>
         <translation>Mover uma linha acima</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1481"/>
         <source>Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1492"/>
+        <location filename="../ViewManager/ViewManager.py" line="1493"/>
         <source>Move down one line</source>
         <translation>Mover uma linha abaixo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1492"/>
+        <location filename="../ViewManager/ViewManager.py" line="1493"/>
         <source>Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1504"/>
+        <location filename="../ViewManager/ViewManager.py" line="1505"/>
         <source>Move left one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1538"/>
+        <location filename="../ViewManager/ViewManager.py" line="1539"/>
         <source>Alt+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1518"/>
+        <location filename="../ViewManager/ViewManager.py" line="1519"/>
         <source>Move right one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2418"/>
+        <location filename="../ViewManager/ViewManager.py" line="2419"/>
         <source>Alt+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1532"/>
+        <location filename="../ViewManager/ViewManager.py" line="1533"/>
         <source>Move left one word</source>
         <translation>Mover uma palavra à esquerda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1583"/>
+        <location filename="../ViewManager/ViewManager.py" line="1584"/>
         <source>Ctrl+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1547"/>
+        <location filename="../ViewManager/ViewManager.py" line="1548"/>
         <source>Move right one word</source>
         <translation>Mover uma palavra à direita</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2173"/>
         <source>Ctrl+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2373"/>
+        <location filename="../ViewManager/ViewManager.py" line="2374"/>
         <source>Home</source>
         <translation type="unfinished">Página Inicial</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1586"/>
+        <location filename="../ViewManager/ViewManager.py" line="1587"/>
         <source>Alt+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2388"/>
+        <location filename="../ViewManager/ViewManager.py" line="2389"/>
         <source>End</source>
         <translation type="unfinished">Fim</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1609"/>
+        <location filename="../ViewManager/ViewManager.py" line="1610"/>
         <source>Scroll view down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1699"/>
+        <location filename="../ViewManager/ViewManager.py" line="1700"/>
         <source>Ctrl+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1621"/>
+        <location filename="../ViewManager/ViewManager.py" line="1622"/>
         <source>Scroll view up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1683"/>
         <source>Ctrl+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1632"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Move up one paragraph</source>
         <translation>Mover um parágrafo acima</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1632"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Alt+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1641"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Move down one paragraph</source>
         <translation>Mover um parágrafo abaixo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1641"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Alt+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1653"/>
+        <location filename="../ViewManager/ViewManager.py" line="1654"/>
         <source>Move up one page</source>
         <translation>Mover uma página acima</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1653"/>
+        <location filename="../ViewManager/ViewManager.py" line="1654"/>
         <source>PgUp</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1662"/>
+        <location filename="../ViewManager/ViewManager.py" line="1663"/>
         <source>Move down one page</source>
         <translation>Mover uma pagina abaixo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1662"/>
+        <location filename="../ViewManager/ViewManager.py" line="1663"/>
         <source>PgDown</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1685"/>
+        <location filename="../ViewManager/ViewManager.py" line="1686"/>
         <source>Ctrl+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1702"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>Ctrl+End</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1708"/>
+        <location filename="../ViewManager/ViewManager.py" line="1709"/>
         <source>Indent one level</source>
         <translation>Indentar um nivel</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1708"/>
+        <location filename="../ViewManager/ViewManager.py" line="1709"/>
         <source>Tab</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1717"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Unindent one level</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1717"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Shift+Tab</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1728"/>
         <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="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1728"/>
         <source>Shift+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1742"/>
+        <location filename="../ViewManager/ViewManager.py" line="1743"/>
         <source>Extend selection right one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1742"/>
+        <location filename="../ViewManager/ViewManager.py" line="1743"/>
         <source>Shift+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1757"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Extend selection up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1757"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Shift+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1772"/>
+        <location filename="../ViewManager/ViewManager.py" line="1773"/>
         <source>Extend selection down one line</source>
         <translation>Estende a seleção abaixo uma linha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1772"/>
+        <location filename="../ViewManager/ViewManager.py" line="1773"/>
         <source>Shift+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1787"/>
+        <location filename="../ViewManager/ViewManager.py" line="1788"/>
         <source>Extend selection left one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1823"/>
+        <location filename="../ViewManager/ViewManager.py" line="1824"/>
         <source>Alt+Shift+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1802"/>
         <source>Extend selection right one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2433"/>
+        <location filename="../ViewManager/ViewManager.py" line="2434"/>
         <source>Alt+Shift+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1815"/>
+        <location filename="../ViewManager/ViewManager.py" line="1816"/>
         <source>Extend selection left one word</source>
         <translation>Estende a seleção uma palavra à esquerda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2527"/>
+        <location filename="../ViewManager/ViewManager.py" line="2528"/>
         <source>Ctrl+Shift+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1832"/>
+        <location filename="../ViewManager/ViewManager.py" line="1833"/>
         <source>Extend selection right one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2189"/>
+        <location filename="../ViewManager/ViewManager.py" line="2190"/>
         <source>Ctrl+Shift+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1861"/>
+        <location filename="../ViewManager/ViewManager.py" line="1862"/>
         <source>Shift+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2293"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Alt+Shift+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1878"/>
+        <location filename="../ViewManager/ViewManager.py" line="1879"/>
         <source>Shift+End</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1884"/>
+        <location filename="../ViewManager/ViewManager.py" line="1885"/>
         <source>Extend selection up one paragraph</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1884"/>
+        <location filename="../ViewManager/ViewManager.py" line="1885"/>
         <source>Alt+Shift+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1897"/>
+        <location filename="../ViewManager/ViewManager.py" line="1898"/>
         <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="1897"/>
+        <location filename="../ViewManager/ViewManager.py" line="1898"/>
         <source>Alt+Shift+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1910"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1910"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Shift+PgUp</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1922"/>
+        <location filename="../ViewManager/ViewManager.py" line="1923"/>
         <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="1922"/>
+        <location filename="../ViewManager/ViewManager.py" line="1923"/>
         <source>Shift+PgDown</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1949"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Ctrl+Shift+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1966"/>
+        <location filename="../ViewManager/ViewManager.py" line="1967"/>
         <source>Ctrl+Shift+End</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1972"/>
+        <location filename="../ViewManager/ViewManager.py" line="1973"/>
         <source>Delete previous character</source>
         <translation>Apagar o caratér anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1972"/>
+        <location filename="../ViewManager/ViewManager.py" line="1973"/>
         <source>Backspace</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1984"/>
+        <location filename="../ViewManager/ViewManager.py" line="1985"/>
         <source>Shift+Backspace</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2003"/>
+        <location filename="../ViewManager/ViewManager.py" line="2004"/>
         <source>Delete current character</source>
         <translation>Apagar o caratér atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2003"/>
+        <location filename="../ViewManager/ViewManager.py" line="2004"/>
         <source>Del</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2017"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <source>Delete word to left</source>
         <translation>Apagar palavra à esquerda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2017"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <source>Ctrl+Backspace</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2028"/>
+        <location filename="../ViewManager/ViewManager.py" line="2029"/>
         <source>Delete word to right</source>
         <translation>Apagar palavra à direita</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2028"/>
+        <location filename="../ViewManager/ViewManager.py" line="2029"/>
         <source>Ctrl+Del</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2038"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Delete line to left</source>
         <translation>Apagar a linha à esquerda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2038"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2049"/>
+        <location filename="../ViewManager/ViewManager.py" line="2050"/>
         <source>Delete line to right</source>
         <translation>Apagar a linha à direita</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2058"/>
+        <location filename="../ViewManager/ViewManager.py" line="2059"/>
         <source>Ctrl+Shift+Del</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Insert new line</source>
         <translation>Inserir linha nova</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Return</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Enter</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <source>Insert new line below current line</source>
         <translation>Inserir linha nova abaixo da atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <source>Shift+Return</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <source>Shift+Enter</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Delete current line</source>
         <translation>Apagar a linha atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Ctrl+Shift+L</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2098"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Duplicate current line</source>
         <translation>Duplicar a linha atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2098"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Ctrl+D</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2109"/>
+        <location filename="../ViewManager/ViewManager.py" line="2110"/>
         <source>Swap current and previous lines</source>
         <translation>Trocar a linha atual pela anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2109"/>
+        <location filename="../ViewManager/ViewManager.py" line="2110"/>
         <source>Ctrl+T</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2132"/>
+        <location filename="../ViewManager/ViewManager.py" line="2133"/>
         <source>Cut current line</source>
         <translation>Cortar a linha atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2132"/>
+        <location filename="../ViewManager/ViewManager.py" line="2133"/>
         <source>Alt+Shift+L</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2142"/>
+        <location filename="../ViewManager/ViewManager.py" line="2143"/>
         <source>Copy current line</source>
         <translation>Copiar a linha atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2142"/>
+        <location filename="../ViewManager/ViewManager.py" line="2143"/>
         <source>Ctrl+Shift+T</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2153"/>
+        <location filename="../ViewManager/ViewManager.py" line="2154"/>
         <source>Toggle insert/overtype</source>
         <translation>Alternar inserir/sobreescrever</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2153"/>
+        <location filename="../ViewManager/ViewManager.py" line="2154"/>
         <source>Ins</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2717"/>
+        <location filename="../ViewManager/ViewManager.py" line="2718"/>
         <source>Convert selection to lower case</source>
         <translation>Convertir a seleção para minúsculas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2717"/>
+        <location filename="../ViewManager/ViewManager.py" line="2718"/>
         <source>Alt+Shift+U</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2729"/>
+        <location filename="../ViewManager/ViewManager.py" line="2730"/>
         <source>Convert selection to upper case</source>
         <translation>Convertir a seleção para maiúsculas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2729"/>
+        <location filename="../ViewManager/ViewManager.py" line="2730"/>
         <source>Ctrl+Shift+U</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2175"/>
+        <location filename="../ViewManager/ViewManager.py" line="2176"/>
         <source>Alt+End</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2195"/>
+        <location filename="../ViewManager/ViewManager.py" line="2196"/>
         <source>Formfeed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2204"/>
+        <location filename="../ViewManager/ViewManager.py" line="2205"/>
         <source>Escape</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2204"/>
+        <location filename="../ViewManager/ViewManager.py" line="2205"/>
         <source>Esc</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2213"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <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="2213"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <source>Alt+Ctrl+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2229"/>
+        <location filename="../ViewManager/ViewManager.py" line="2230"/>
         <source>Extend rectangular selection up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2229"/>
+        <location filename="../ViewManager/ViewManager.py" line="2230"/>
         <source>Alt+Ctrl+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2244"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <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="2244"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <source>Alt+Ctrl+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2262"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <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="2262"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Alt+Ctrl+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2318"/>
+        <location filename="../ViewManager/ViewManager.py" line="2319"/>
         <source>Extend rectangular selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2333"/>
+        <location filename="../ViewManager/ViewManager.py" line="2334"/>
         <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="2351"/>
+        <location filename="../ViewManager/ViewManager.py" line="2352"/>
         <source>Duplicate current selection</source>
         <translation>Duplicar a seleção atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2351"/>
+        <location filename="../ViewManager/ViewManager.py" line="2352"/>
         <source>Ctrl+Shift+D</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3262"/>
+        <location filename="../ViewManager/ViewManager.py" line="3263"/>
         <source>&amp;Search</source>
         <translation>&amp;Procurar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2758"/>
+        <location filename="../ViewManager/ViewManager.py" line="2759"/>
         <source>&amp;Edit</source>
         <translation>&amp;Editar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2817"/>
+        <location filename="../ViewManager/ViewManager.py" line="2818"/>
         <source>Edit</source>
         <translation>Editar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3296"/>
+        <location filename="../ViewManager/ViewManager.py" line="3297"/>
         <source>Search</source>
         <translation>Procurar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2849"/>
+        <location filename="../ViewManager/ViewManager.py" line="2850"/>
         <source>&amp;Search...</source>
         <translation>&amp;Procurar...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2849"/>
+        <location filename="../ViewManager/ViewManager.py" line="2850"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2857"/>
+        <location filename="../ViewManager/ViewManager.py" line="2858"/>
         <source>Search for a text</source>
         <translation>Procurar um texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2859"/>
+        <location filename="../ViewManager/ViewManager.py" line="2860"/>
         <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="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>Search next</source>
         <translation>Procurar próximo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>Search &amp;next</source>
         <translation>Procurar &amp;próximo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2878"/>
+        <location filename="../ViewManager/ViewManager.py" line="2879"/>
         <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="2880"/>
+        <location filename="../ViewManager/ViewManager.py" line="2881"/>
         <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="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Search previous</source>
         <translation>Procurar anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Search &amp;previous</source>
         <translation>Procurar &amp;anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2898"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>Search previous occurrence of text</source>
         <translation>Procurar ocurrência anterior do texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2900"/>
+        <location filename="../ViewManager/ViewManager.py" line="2901"/>
         <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="2910"/>
+        <location filename="../ViewManager/ViewManager.py" line="2911"/>
         <source>Clear search markers</source>
         <translation>Limpar marcadores de pesquisa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2910"/>
+        <location filename="../ViewManager/ViewManager.py" line="2911"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Clear all displayed search markers</source>
         <translation>Limpar todos os marcadores de pesquisa mostrados</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2920"/>
+        <location filename="../ViewManager/ViewManager.py" line="2921"/>
         <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="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>Replace</source>
         <translation>Substituir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>&amp;Replace...</source>
         <translation>&amp;Substituir...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2982"/>
+        <location filename="../ViewManager/ViewManager.py" line="2983"/>
         <source>Replace some text</source>
         <translation>Substituir algum texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2984"/>
+        <location filename="../ViewManager/ViewManager.py" line="2985"/>
         <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>
@@ -85157,1543 +85157,1543 @@
         <translation type="obsolete">Executar uma pesquisa rápida para trás</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3070"/>
+        <location filename="../ViewManager/ViewManager.py" line="3071"/>
         <source>Goto Line</source>
         <translation>Ir à linha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3062"/>
+        <location filename="../ViewManager/ViewManager.py" line="3063"/>
         <source>&amp;Goto Line...</source>
         <translation>Ir à &amp;Linha...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3062"/>
+        <location filename="../ViewManager/ViewManager.py" line="3063"/>
         <source>Ctrl+G</source>
         <comment>Search|Goto Line</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3072"/>
+        <location filename="../ViewManager/ViewManager.py" line="3073"/>
         <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="3089"/>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
         <source>Goto Brace</source>
         <translation>Ir ao Parentesis</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3081"/>
+        <location filename="../ViewManager/ViewManager.py" line="3082"/>
         <source>Goto &amp;Brace</source>
         <translation>Ir ao &amp;Parentesis</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3081"/>
+        <location filename="../ViewManager/ViewManager.py" line="3082"/>
         <source>Ctrl+L</source>
         <comment>Search|Goto Brace</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3091"/>
+        <location filename="../ViewManager/ViewManager.py" line="3092"/>
         <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="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Search in Files</source>
         <translation>Procurar em Ficheiros</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Search in &amp;Files...</source>
         <translation>Procurar em &amp;Ficheiros...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3177"/>
+        <location filename="../ViewManager/ViewManager.py" line="3178"/>
         <source>Search for a text in files</source>
         <translation>Procurar um texto em ficheiros</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3179"/>
+        <location filename="../ViewManager/ViewManager.py" line="3180"/>
         <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="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Replace in Files</source>
         <translation>Substituir em Ficheiros</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Replace in F&amp;iles...</source>
         <translation>Substituir em F&amp;icheiros...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3196"/>
+        <location filename="../ViewManager/ViewManager.py" line="3197"/>
         <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="3198"/>
+        <location filename="../ViewManager/ViewManager.py" line="3199"/>
         <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="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom in</source>
         <translation>Aproximar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom &amp;in</source>
         <translation>Apro&amp;ximar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3344"/>
-        <source>Zoom in on the text</source>
-        <translation>Aproximar no texto</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3346"/>
+        <source>Zoom in on the text</source>
+        <translation>Aproximar no texto</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3348"/>
         <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="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom out</source>
         <translation>Afastar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom &amp;out</source>
         <translation>A&amp;fastar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3363"/>
-        <source>Zoom out on the text</source>
-        <translation>Afastar no texto</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3365"/>
+        <source>Zoom out on the text</source>
+        <translation>Afastar no texto</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3367"/>
         <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="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>Zoom</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>&amp;Zoom</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3400"/>
-        <source>Zoom the text</source>
-        <translation>Zoom no texto</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3402"/>
+        <source>Zoom the text</source>
+        <translation>Zoom no texto</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3404"/>
         <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="3415"/>
-        <source>Toggle all folds</source>
-        <translation>Alternar as dobras todas</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3411"/>
-        <source>&amp;Toggle all folds</source>
-        <translation type="unfinished">Alternar dobras &amp;todas</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3417"/>
+        <source>Toggle all folds</source>
+        <translation>Alternar as dobras todas</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3413"/>
+        <source>&amp;Toggle all folds</source>
+        <translation type="unfinished">Alternar dobras &amp;todas</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3419"/>
         <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="3431"/>
-        <source>Toggle all folds (including children)</source>
-        <translation>Alternar as dobras todas (incluindo filhos)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3425"/>
-        <source>Toggle all &amp;folds (including children)</source>
-        <translation>Alternar &amp;dobras todas (incluindo filhos)</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3433"/>
+        <source>Toggle all folds (including children)</source>
+        <translation>Alternar as dobras todas (incluindo filhos)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3427"/>
+        <source>Toggle all &amp;folds (including children)</source>
+        <translation>Alternar &amp;dobras todas (incluindo filhos)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3435"/>
         <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="3447"/>
-        <source>Toggle current fold</source>
-        <translation>Alternar a dobra atual</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3443"/>
-        <source>Toggle &amp;current fold</source>
-        <translation>Alternar dobra &amp;atual</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3449"/>
+        <source>Toggle current fold</source>
+        <translation>Alternar a dobra atual</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3445"/>
+        <source>Toggle &amp;current fold</source>
+        <translation>Alternar dobra &amp;atual</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3451"/>
         <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="3479"/>
-        <source>Remove all highlights</source>
-        <translation>Retirar todo o ressaltado</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3481"/>
+        <source>Remove all highlights</source>
+        <translation>Retirar todo o ressaltado</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3483"/>
         <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="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3529"/>
         <source>Split view</source>
         <translation>Vista dividida</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3529"/>
         <source>&amp;Split view</source>
         <translation>Vista &amp;dividida</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3532"/>
-        <source>Add a split to the view</source>
-        <translation>Adicionar uma divisão à vista</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3534"/>
+        <source>Add a split to the view</source>
+        <translation>Adicionar uma divisão à vista</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3536"/>
         <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="3542"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Arrange horizontally</source>
         <translation>Organizar horizontalmente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3542"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Arrange &amp;horizontally</source>
         <translation>Organizar &amp;horizontalmente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation>Organizar horizontalmente os visores divididos</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3548"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation>Organizar horizontalmente os visores divididos</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3550"/>
         <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="3557"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>Remove split</source>
         <translation>Retirar divisão</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3557"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>&amp;Remove split</source>
         <translation>&amp;Retirar divisão</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3562"/>
-        <source>Remove the current split</source>
-        <translation>Retira a divisão atual</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3564"/>
+        <source>Remove the current split</source>
+        <translation>Retira a divisão atual</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3566"/>
         <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="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>Next split</source>
         <translation>Separação seguinte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>&amp;Next split</source>
         <translation>Separação segui&amp;nte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3579"/>
-        <source>Move to the next split</source>
-        <translation>Mover à seguinte divisão</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3581"/>
+        <source>Move to the next split</source>
+        <translation>Mover à seguinte divisão</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3583"/>
         <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="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Previous split</source>
         <translation>Divisão anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>&amp;Previous split</source>
         <translation>Divisão &amp;anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3595"/>
-        <source>Move to the previous split</source>
-        <translation>Mover à divisão anterior</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3597"/>
+        <source>Move to the previous split</source>
+        <translation>Mover à divisão anterior</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3599"/>
         <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="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3683"/>
         <source>&amp;View</source>
         <translation>&amp;Vista</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3718"/>
+        <location filename="../ViewManager/ViewManager.py" line="3720"/>
         <source>View</source>
         <translation>Vista</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3754"/>
-        <source>Start Macro Recording</source>
-        <translation>Iniciar Registo de Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3748"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation>Iniciar Regis&amp;to de Macro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3756"/>
+        <source>Start Macro Recording</source>
+        <translation>Iniciar Registo de Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3750"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation>Iniciar Regis&amp;to de Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3758"/>
         <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="3768"/>
-        <source>Stop Macro Recording</source>
-        <translation>Para Registo de Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3764"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation>&amp;Para Registo de Macro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3770"/>
+        <source>Stop Macro Recording</source>
+        <translation>Para Registo de Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3766"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation>&amp;Para Registo de Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3772"/>
         <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="3782"/>
-        <source>Run Macro</source>
-        <translation>Executar Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3778"/>
-        <source>&amp;Run Macro</source>
-        <translation>Executa&amp;r Macro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3784"/>
+        <source>Run Macro</source>
+        <translation>Executar Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3780"/>
+        <source>&amp;Run Macro</source>
+        <translation>Executa&amp;r Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <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="3796"/>
-        <source>Delete Macro</source>
-        <translation>Apagar Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3792"/>
-        <source>&amp;Delete Macro</source>
-        <translation>&amp;Apagar Macro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Delete Macro</source>
+        <translation>Apagar Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3794"/>
+        <source>&amp;Delete Macro</source>
+        <translation>&amp;Apagar Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3800"/>
         <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="3810"/>
-        <source>Load Macro</source>
-        <translation>Carregar Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3806"/>
-        <source>&amp;Load Macro</source>
-        <translation>&amp;Carregar Macro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3812"/>
+        <source>Load Macro</source>
+        <translation>Carregar Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3808"/>
+        <source>&amp;Load Macro</source>
+        <translation>&amp;Carregar Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3814"/>
         <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="3824"/>
-        <source>Save Macro</source>
-        <translation>Gravar Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3820"/>
-        <source>&amp;Save Macro</source>
-        <translation>&amp;Gravar Macro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3826"/>
+        <source>Save Macro</source>
+        <translation>Gravar Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
+        <source>&amp;Save Macro</source>
+        <translation>&amp;Gravar Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3828"/>
         <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="3842"/>
+        <location filename="../ViewManager/ViewManager.py" line="3844"/>
         <source>&amp;Macros</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3868"/>
-        <source>Toggle Bookmark</source>
-        <translation>Alternar Marcadores</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3860"/>
-        <source>&amp;Toggle Bookmark</source>
-        <translation>&amp;Alternar Marcadores</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3860"/>
-        <source>Alt+Ctrl+T</source>
-        <comment>Bookmark|Toggle</comment>
-        <translation>Alt+Ctrl+T</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3870"/>
+        <source>Toggle Bookmark</source>
+        <translation>Alternar Marcadores</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
+        <source>&amp;Toggle Bookmark</source>
+        <translation>&amp;Alternar Marcadores</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
+        <source>Alt+Ctrl+T</source>
+        <comment>Bookmark|Toggle</comment>
+        <translation>Alt+Ctrl+T</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3872"/>
         <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="3887"/>
-        <source>Next Bookmark</source>
-        <translation>Marcador Seguinte</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3879"/>
-        <source>&amp;Next Bookmark</source>
-        <translation>Marcador Segui&amp;nte</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3879"/>
-        <source>Ctrl+PgDown</source>
-        <comment>Bookmark|Next</comment>
-        <translation>Ctrl+PgDown</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3889"/>
+        <source>Next Bookmark</source>
+        <translation>Marcador Seguinte</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3881"/>
+        <source>&amp;Next Bookmark</source>
+        <translation>Marcador Segui&amp;nte</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3881"/>
+        <source>Ctrl+PgDown</source>
+        <comment>Bookmark|Next</comment>
+        <translation>Ctrl+PgDown</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3891"/>
         <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="3905"/>
+        <location filename="../ViewManager/ViewManager.py" line="3907"/>
         <source>Previous Bookmark</source>
         <translation>Marcador Anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3897"/>
+        <location filename="../ViewManager/ViewManager.py" line="3899"/>
         <source>&amp;Previous Bookmark</source>
         <translation>Marcador &amp;Anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3897"/>
+        <location filename="../ViewManager/ViewManager.py" line="3899"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation>Ctrl+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3907"/>
+        <location filename="../ViewManager/ViewManager.py" line="3909"/>
         <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="3922"/>
+        <location filename="../ViewManager/ViewManager.py" line="3924"/>
         <source>Clear Bookmarks</source>
         <translation>Limpar Marcadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3915"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>&amp;Clear Bookmarks</source>
         <translation>&amp;Limpar Marcadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3915"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation>Alt+Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3924"/>
+        <location filename="../ViewManager/ViewManager.py" line="3926"/>
         <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="3938"/>
-        <source>Goto Syntax Error</source>
-        <translation>Ir ao Erro de Sintaxe</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3932"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation>&amp;Ir ao Erro de Sintaxe</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3940"/>
+        <source>Goto Syntax Error</source>
+        <translation>Ir ao Erro de Sintaxe</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3934"/>
+        <source>&amp;Goto Syntax Error</source>
+        <translation>&amp;Ir ao Erro de Sintaxe</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3942"/>
         <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="3953"/>
-        <source>Clear Syntax Errors</source>
-        <translation>Limpar Erros de Sintaxe</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3948"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation>Limpar Erros de &amp;Sintaxe</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3955"/>
+        <source>Clear Syntax Errors</source>
+        <translation>Limpar Erros de Sintaxe</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3950"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation>Limpar Erros de &amp;Sintaxe</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3957"/>
         <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="3970"/>
+        <location filename="../ViewManager/ViewManager.py" line="3972"/>
         <source>Next warning message</source>
         <translation>Mensagem de aviso seguinte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3964"/>
+        <location filename="../ViewManager/ViewManager.py" line="3966"/>
         <source>&amp;Next warning message</source>
         <translation>Mensagem de aviso segui&amp;nte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3989"/>
+        <location filename="../ViewManager/ViewManager.py" line="3991"/>
         <source>Previous warning message</source>
         <translation>Mensagem de aviso anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3981"/>
+        <location filename="../ViewManager/ViewManager.py" line="3983"/>
         <source>&amp;Previous warning message</source>
         <translation>Mensagem de aviso &amp;anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4007"/>
+        <location filename="../ViewManager/ViewManager.py" line="4009"/>
         <source>Clear Warning Messages</source>
         <translation>Limpar Mensagens de Aviso</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4000"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>Limpar Mensagens de &amp;Aviso</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4023"/>
-        <source>Next uncovered line</source>
-        <translation>Linha seguinte sem cobrir</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4017"/>
-        <source>&amp;Next uncovered line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4025"/>
+        <source>Next uncovered line</source>
+        <translation>Linha seguinte sem cobrir</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4019"/>
+        <source>&amp;Next uncovered line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4027"/>
         <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="4042"/>
-        <source>Previous uncovered line</source>
-        <translation>Linha anterior sem cobrir</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4034"/>
-        <source>&amp;Previous uncovered line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4044"/>
+        <source>Previous uncovered line</source>
+        <translation>Linha anterior sem cobrir</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
+        <source>&amp;Previous uncovered line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4046"/>
         <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="4060"/>
-        <source>Next Task</source>
-        <translation>Tarefa Seguinte</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4054"/>
-        <source>&amp;Next Task</source>
-        <translation>Tarefa Segui&amp;nte</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4062"/>
+        <source>Next Task</source>
+        <translation>Tarefa Seguinte</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4056"/>
+        <source>&amp;Next Task</source>
+        <translation>Tarefa Segui&amp;nte</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4064"/>
         <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="4077"/>
-        <source>Previous Task</source>
-        <translation>Tarefa Anterior</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4070"/>
-        <source>&amp;Previous Task</source>
-        <translation>Tarefa &amp;Anterior</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4079"/>
+        <source>Previous Task</source>
+        <translation>Tarefa Anterior</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4072"/>
+        <source>&amp;Previous Task</source>
+        <translation>Tarefa &amp;Anterior</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4081"/>
         <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="4133"/>
+        <location filename="../ViewManager/ViewManager.py" line="4135"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Marcadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4179"/>
+        <location filename="../ViewManager/ViewManager.py" line="4181"/>
         <source>Bookmarks</source>
         <translation>Marcadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4221"/>
+        <location filename="../ViewManager/ViewManager.py" line="4223"/>
         <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="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>Automatic spell checking</source>
         <translation>Verificação ortográfica automática</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>&amp;Automatic spell checking</source>
         <translation>Verificação ortográfica &amp;automática</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4239"/>
-        <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="4241"/>
+        <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="4243"/>
         <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="4308"/>
+        <location filename="../ViewManager/ViewManager.py" line="4310"/>
         <source>Spelling</source>
         <translation>Verificação ortográfica</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4333"/>
         <source>Open files</source>
         <translation>Abrir ficheiros</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4377"/>
         <source>File Modified</source>
         <translation>Ficheiro Modificado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4377"/>
         <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="4774"/>
+        <location filename="../ViewManager/ViewManager.py" line="4776"/>
         <source>Line: {0:5}</source>
         <translation>Linha: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4780"/>
+        <location filename="../ViewManager/ViewManager.py" line="4782"/>
         <source>Pos: {0:5}</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5219"/>
+        <location filename="../ViewManager/ViewManager.py" line="5221"/>
         <source>&amp;Clear</source>
         <translation>&amp;Limpar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5213"/>
+        <location filename="../ViewManager/ViewManager.py" line="5215"/>
         <source>&amp;Add</source>
         <translation>&amp;Adicionar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5216"/>
+        <location filename="../ViewManager/ViewManager.py" line="5218"/>
         <source>&amp;Edit...</source>
         <translation>&amp;Editar...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3110"/>
+        <location filename="../ViewManager/ViewManager.py" line="3111"/>
         <source>Goto Last Edit Location</source>
         <translation>Ir ao Local da Última Edição</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3099"/>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <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="3099"/>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <source>Ctrl+Shift+G</source>
         <comment>Search|Goto Last Edit Location</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3113"/>
+        <location filename="../ViewManager/ViewManager.py" line="3114"/>
         <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="3122"/>
+        <location filename="../ViewManager/ViewManager.py" line="3123"/>
         <source>Goto Previous Method or Class</source>
         <translation>Ir ao Método ou Classe Anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3122"/>
+        <location filename="../ViewManager/ViewManager.py" line="3123"/>
         <source>Ctrl+Shift+Up</source>
         <comment>Search|Goto Previous Method or Class</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3132"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <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="3136"/>
+        <location filename="../ViewManager/ViewManager.py" line="3137"/>
         <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="3146"/>
+        <location filename="../ViewManager/ViewManager.py" line="3147"/>
         <source>Goto Next Method or Class</source>
         <translation>Ir ao Método ou Classe Seguinte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3146"/>
+        <location filename="../ViewManager/ViewManager.py" line="3147"/>
         <source>Ctrl+Shift+Down</source>
         <comment>Search|Goto Next Method or Class</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3156"/>
+        <location filename="../ViewManager/ViewManager.py" line="3157"/>
         <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="3158"/>
+        <location filename="../ViewManager/ViewManager.py" line="3159"/>
         <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="3605"/>
+        <location filename="../ViewManager/ViewManager.py" line="3607"/>
         <source>Preview</source>
         <translation>Antevisão</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3610"/>
-        <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="3612"/>
+        <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="3614"/>
         <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="1461"/>
+        <location filename="../ViewManager/ViewManager.py" line="1462"/>
         <source>Meta+B</source>
         <translation>Meta+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1474"/>
+        <location filename="../ViewManager/ViewManager.py" line="1475"/>
         <source>Meta+F</source>
         <translation>Meta+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1486"/>
+        <location filename="../ViewManager/ViewManager.py" line="1487"/>
         <source>Meta+P</source>
         <translation type="unfinished">Meta+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1498"/>
+        <location filename="../ViewManager/ViewManager.py" line="1499"/>
         <source>Meta+N</source>
         <translation type="unfinished">Meta+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1559"/>
+        <location filename="../ViewManager/ViewManager.py" line="1560"/>
         <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="1575"/>
+        <location filename="../ViewManager/ViewManager.py" line="1576"/>
         <source>Move to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1592"/>
+        <location filename="../ViewManager/ViewManager.py" line="1593"/>
         <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="1600"/>
+        <location filename="../ViewManager/ViewManager.py" line="1601"/>
         <source>Meta+E</source>
         <translation type="unfinished">Meta+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1668"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Meta+V</source>
         <translation type="unfinished">Meta+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1674"/>
+        <location filename="../ViewManager/ViewManager.py" line="1675"/>
         <source>Move to start of document</source>
         <translation>Mover ao princípio do documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1692"/>
         <source>Move to end of document</source>
         <translation>Mover ao final do documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1737"/>
         <source>Meta+Shift+B</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1751"/>
+        <location filename="../ViewManager/ViewManager.py" line="1752"/>
         <source>Meta+Shift+F</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1766"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Meta+Shift+P</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1781"/>
+        <location filename="../ViewManager/ViewManager.py" line="1782"/>
         <source>Meta+Shift+N</source>
         <translation>Meta+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1849"/>
+        <location filename="../ViewManager/ViewManager.py" line="1850"/>
         <source>Extend selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1867"/>
+        <location filename="../ViewManager/ViewManager.py" line="1868"/>
         <source>Extend selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1875"/>
+        <location filename="../ViewManager/ViewManager.py" line="1876"/>
         <source>Meta+Shift+E</source>
         <translation>Meta+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1932"/>
+        <location filename="../ViewManager/ViewManager.py" line="1933"/>
         <source>Meta+Shift+V</source>
         <translation>Meta+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1939"/>
         <source>Extend selection to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1946"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Ctrl+Shift+Up</source>
         <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1955"/>
+        <location filename="../ViewManager/ViewManager.py" line="1956"/>
         <source>Extend selection to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1963"/>
+        <location filename="../ViewManager/ViewManager.py" line="1964"/>
         <source>Ctrl+Shift+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1981"/>
+        <location filename="../ViewManager/ViewManager.py" line="1982"/>
         <source>Meta+H</source>
         <translation>Meta+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1990"/>
+        <location filename="../ViewManager/ViewManager.py" line="1991"/>
         <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="2011"/>
+        <location filename="../ViewManager/ViewManager.py" line="2012"/>
         <source>Meta+D</source>
         <translation>Meta+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2055"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Meta+K</source>
         <translation>Meta+K</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2164"/>
+        <location filename="../ViewManager/ViewManager.py" line="2165"/>
         <source>Move to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Extend selection to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2223"/>
+        <location filename="../ViewManager/ViewManager.py" line="2224"/>
         <source>Meta+Alt+Shift+N</source>
         <translation>Meta+Alt+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2238"/>
+        <location filename="../ViewManager/ViewManager.py" line="2239"/>
         <source>Meta+Alt+Shift+P</source>
         <translation>Meta+Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2256"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <source>Meta+Alt+Shift+B</source>
         <translation>Meta+Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2275"/>
         <source>Meta+Alt+Shift+F</source>
         <translation>Meta+Alt+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2280"/>
+        <location filename="../ViewManager/ViewManager.py" line="2281"/>
         <source>Extend rectangular selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2299"/>
+        <location filename="../ViewManager/ViewManager.py" line="2300"/>
         <source>Extend rectangular selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2309"/>
+        <location filename="../ViewManager/ViewManager.py" line="2310"/>
         <source>Meta+Alt+Shift+E</source>
         <translation>Meta+Alt+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2312"/>
+        <location filename="../ViewManager/ViewManager.py" line="2313"/>
         <source>Alt+Shift+End</source>
         <translation>Alt+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2333"/>
+        <location filename="../ViewManager/ViewManager.py" line="2334"/>
         <source>Alt+Shift+PgDown</source>
         <translation>Alt+Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2345"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <source>Meta+Alt+Shift+V</source>
         <translation>Meta+Alt+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2365"/>
+        <location filename="../ViewManager/ViewManager.py" line="2366"/>
         <source>Scroll to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2380"/>
+        <location filename="../ViewManager/ViewManager.py" line="2381"/>
         <source>Scroll to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2395"/>
+        <location filename="../ViewManager/ViewManager.py" line="2396"/>
         <source>Scroll vertically to center current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2403"/>
+        <location filename="../ViewManager/ViewManager.py" line="2404"/>
         <source>Meta+L</source>
         <translation>Meta+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2410"/>
+        <location filename="../ViewManager/ViewManager.py" line="2411"/>
         <source>Move to end of next word</source>
         <translation>Mover ao fim da palavra seguinte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2425"/>
+        <location filename="../ViewManager/ViewManager.py" line="2426"/>
         <source>Extend selection to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2441"/>
+        <location filename="../ViewManager/ViewManager.py" line="2442"/>
         <source>Move to end of previous word</source>
         <translation>Mover ao fim da palavra anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2453"/>
+        <location filename="../ViewManager/ViewManager.py" line="2454"/>
         <source>Extend selection to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2465"/>
+        <location filename="../ViewManager/ViewManager.py" line="2466"/>
         <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="2473"/>
+        <location filename="../ViewManager/ViewManager.py" line="2474"/>
         <source>Meta+A</source>
         <translation>Meta+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2480"/>
+        <location filename="../ViewManager/ViewManager.py" line="2481"/>
         <source>Extend selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2491"/>
+        <location filename="../ViewManager/ViewManager.py" line="2492"/>
         <source>Meta+Shift+A</source>
         <translation>Meta+Shift+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2498"/>
+        <location filename="../ViewManager/ViewManager.py" line="2499"/>
         <source>Extend rectangular selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2508"/>
+        <location filename="../ViewManager/ViewManager.py" line="2509"/>
         <source>Meta+Alt+Shift+A</source>
         <translation>Meta+Alt+Shift+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2516"/>
+        <location filename="../ViewManager/ViewManager.py" line="2517"/>
         <source>Extend selection to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2535"/>
+        <location filename="../ViewManager/ViewManager.py" line="2536"/>
         <source>Move to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2549"/>
+        <location filename="../ViewManager/ViewManager.py" line="2550"/>
         <source>Extend selection to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2564"/>
+        <location filename="../ViewManager/ViewManager.py" line="2565"/>
         <source>Move to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2581"/>
+        <location filename="../ViewManager/ViewManager.py" line="2582"/>
         <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="2598"/>
+        <location filename="../ViewManager/ViewManager.py" line="2599"/>
         <source>Move to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2612"/>
+        <location filename="../ViewManager/ViewManager.py" line="2613"/>
         <source>Extend selection to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2627"/>
+        <location filename="../ViewManager/ViewManager.py" line="2628"/>
         <source>Stuttered move up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2639"/>
+        <location filename="../ViewManager/ViewManager.py" line="2640"/>
         <source>Stuttered extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2652"/>
+        <location filename="../ViewManager/ViewManager.py" line="2653"/>
         <source>Stuttered move down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2664"/>
+        <location filename="../ViewManager/ViewManager.py" line="2665"/>
         <source>Stuttered extend selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2677"/>
+        <location filename="../ViewManager/ViewManager.py" line="2678"/>
         <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="2685"/>
+        <location filename="../ViewManager/ViewManager.py" line="2686"/>
         <source>Alt+Del</source>
         <translation>Alt+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2692"/>
+        <location filename="../ViewManager/ViewManager.py" line="2693"/>
         <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="2704"/>
+        <location filename="../ViewManager/ViewManager.py" line="2705"/>
         <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="2318"/>
+        <location filename="../ViewManager/ViewManager.py" line="2319"/>
         <source>Alt+Shift+PgUp</source>
         <translation>Alt+Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1134"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Toggle Comment</source>
         <translation>Alternar Comentário</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1134"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Ctrl+Shift+M</source>
         <comment>Edit|Toggle Comment</comment>
         <translation>Ctrl+Shift+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1142"/>
+        <location filename="../ViewManager/ViewManager.py" line="1143"/>
         <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="1146"/>
+        <location filename="../ViewManager/ViewManager.py" line="1147"/>
         <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="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Zoom reset</source>
         <translation>Restaurar zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Zoom &amp;reset</source>
         <translation>&amp;Restaurar zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3381"/>
-        <source>Reset the zoom of the text</source>
-        <translation>Reiniciar o zoom do texto</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3383"/>
+        <source>Reset the zoom of the text</source>
+        <translation>Reiniciar o zoom do texto</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3385"/>
         <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="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation>Aproximar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation>Afastar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="714"/>
         <source>Save a&amp;ll</source>
         <translation>Gravar &amp;tudo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4094"/>
-        <source>Next Change</source>
-        <translation>Alteração Seguinte</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4088"/>
-        <source>&amp;Next Change</source>
-        <translation>Alteração Segui&amp;nte</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4096"/>
+        <source>Next Change</source>
+        <translation>Alteração Seguinte</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4090"/>
+        <source>&amp;Next Change</source>
+        <translation>Alteração Segui&amp;nte</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <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="4112"/>
-        <source>Previous Change</source>
-        <translation>Alteração Anterior</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4105"/>
-        <source>&amp;Previous Change</source>
-        <translation>Alteração &amp;Anterior</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4114"/>
+        <source>Previous Change</source>
+        <translation>Alteração Anterior</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4107"/>
+        <source>&amp;Previous Change</source>
+        <translation>Alteração &amp;Anterior</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4116"/>
         <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="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Check spelling</source>
         <translation>Verificar ortografia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Check &amp;spelling...</source>
         <translation>Verificar &amp;ortografia...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4223"/>
+        <location filename="../ViewManager/ViewManager.py" line="4225"/>
         <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="4272"/>
-        <source>Edit Dictionary</source>
-        <translation>Editar Dicionário</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4274"/>
+        <source>Edit Dictionary</source>
+        <translation>Editar Dicionário</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4276"/>
         <source>Project Word List</source>
         <translation>Lista de Palavras do Projeto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4277"/>
+        <location filename="../ViewManager/ViewManager.py" line="4279"/>
         <source>Project Exception List</source>
         <translation>Lista de Excepções do Projeto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4282"/>
+        <location filename="../ViewManager/ViewManager.py" line="4284"/>
         <source>User Word List</source>
         <translation>Lista de Palavras do Usuário</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4285"/>
+        <location filename="../ViewManager/ViewManager.py" line="4287"/>
         <source>User Exception List</source>
         <translation>Lista de Exceções do Usuário</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6255"/>
+        <location filename="../ViewManager/ViewManager.py" line="6257"/>
         <source>Edit Spelling Dictionary</source>
         <translation>Editar Dicionário Ortográfico</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6232"/>
+        <location filename="../ViewManager/ViewManager.py" line="6234"/>
         <source>Editing {0}</source>
         <translation>A editar {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6214"/>
+        <location filename="../ViewManager/ViewManager.py" line="6216"/>
         <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="6243"/>
+        <location filename="../ViewManager/ViewManager.py" line="6245"/>
         <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="6255"/>
+        <location filename="../ViewManager/ViewManager.py" line="6257"/>
         <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="2929"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>Search current word forward</source>
         <translation>Procurar para a frente à palavra atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2929"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation>Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2940"/>
+        <location filename="../ViewManager/ViewManager.py" line="2941"/>
         <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="2943"/>
+        <location filename="../ViewManager/ViewManager.py" line="2944"/>
         <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="2952"/>
+        <location filename="../ViewManager/ViewManager.py" line="2953"/>
         <source>Search current word backward</source>
         <translation>Procurar para trás à palavra atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2952"/>
+        <location filename="../ViewManager/ViewManager.py" line="2953"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation>Ctrl+,</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2963"/>
+        <location filename="../ViewManager/ViewManager.py" line="2964"/>
         <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="2966"/>
+        <location filename="../ViewManager/ViewManager.py" line="2967"/>
         <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="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <source>Search in Open Files</source>
         <translation>Procurar em Ficheiros Abertos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <source>Search in Open Files...</source>
         <translation>Procurar em Ficheiros Abertos...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <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="3220"/>
+        <location filename="../ViewManager/ViewManager.py" line="3221"/>
         <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="3222"/>
+        <location filename="../ViewManager/ViewManager.py" line="3223"/>
         <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="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <source>Replace in Open Files</source>
         <translation>Substituir em Ficheiros Abertos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <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="3242"/>
+        <location filename="../ViewManager/ViewManager.py" line="3243"/>
         <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="3244"/>
+        <location filename="../ViewManager/ViewManager.py" line="3245"/>
         <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="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <source>Replace in Open Files...</source>
         <translation>Substituir em Ficheiros Abertos...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1399"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Sort</source>
         <translation>Ordenar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1399"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Ctrl+Alt+S</source>
         <comment>Edit|Sort</comment>
         <translation>Ctrl+Alt+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1406"/>
+        <location filename="../ViewManager/ViewManager.py" line="1407"/>
         <source>Sort the lines containing the rectangular selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1409"/>
+        <location filename="../ViewManager/ViewManager.py" line="1410"/>
         <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="4801"/>
+        <location filename="../ViewManager/ViewManager.py" line="4803"/>
         <source>Language: {0}</source>
         <translation>Linguagem: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4808"/>
+        <location filename="../ViewManager/ViewManager.py" line="4810"/>
         <source>EOL Mode: {0}</source>
         <translation>Modo EOL: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3491"/>
         <source>New Document View</source>
         <translation>Novo Visor do Documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3491"/>
         <source>New &amp;Document View</source>
         <translation>Novo Visor do &amp;Documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3494"/>
-        <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="3496"/>
+        <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="3498"/>
         <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="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3508"/>
         <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="3513"/>
+        <location filename="../ViewManager/ViewManager.py" line="3515"/>
         <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="3516"/>
+        <location filename="../ViewManager/ViewManager.py" line="3518"/>
         <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="3972"/>
+        <location filename="../ViewManager/ViewManager.py" line="3974"/>
         <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="3991"/>
+        <location filename="../ViewManager/ViewManager.py" line="3993"/>
         <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="4009"/>
+        <location filename="../ViewManager/ViewManager.py" line="4011"/>
         <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="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1277"/>
         <source>Ctrl+Space</source>
         <comment>Edit|Complete</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1294"/>
+        <location filename="../ViewManager/ViewManager.py" line="1295"/>
         <source>Ctrl+Shift+Space</source>
         <comment>Edit|Complete from Document</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1317"/>
+        <location filename="../ViewManager/ViewManager.py" line="1318"/>
         <source>Ctrl+Alt+Space</source>
         <comment>Edit|Complete from APIs</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1340"/>
+        <location filename="../ViewManager/ViewManager.py" line="1341"/>
         <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="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>Meta+Alt+Space</source>
         <comment>Edit|Calltip</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="697"/>
+        <location filename="../ViewManager/ViewManager.py" line="698"/>
         <source>Save Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="697"/>
+        <location filename="../ViewManager/ViewManager.py" line="698"/>
         <source>Save &amp;Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="702"/>
+        <location filename="../ViewManager/ViewManager.py" line="703"/>
         <source>Save a copy of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="704"/>
+        <location filename="../ViewManager/ViewManager.py" line="705"/>
         <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>
@@ -86704,141 +86704,141 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2995"/>
         <source>Replace and Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2995"/>
         <source>Meta+R</source>
         <comment>Search|Replace and Search</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3004"/>
+        <location filename="../ViewManager/ViewManager.py" line="3005"/>
         <source>Replace the found text and search the next occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3007"/>
+        <location filename="../ViewManager/ViewManager.py" line="3008"/>
         <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="3018"/>
+        <location filename="../ViewManager/ViewManager.py" line="3019"/>
         <source>Replace Occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3018"/>
+        <location filename="../ViewManager/ViewManager.py" line="3019"/>
         <source>Ctrl+Meta+R</source>
         <comment>Search|Replace Occurrence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3028"/>
+        <location filename="../ViewManager/ViewManager.py" line="3029"/>
         <source>Replace the found text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3030"/>
+        <location filename="../ViewManager/ViewManager.py" line="3031"/>
         <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="3040"/>
+        <location filename="../ViewManager/ViewManager.py" line="3041"/>
         <source>Replace All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3040"/>
+        <location filename="../ViewManager/ViewManager.py" line="3041"/>
         <source>Shift+Meta+R</source>
         <comment>Search|Replace All</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3050"/>
+        <location filename="../ViewManager/ViewManager.py" line="3051"/>
         <source>Replace search text occurrences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3052"/>
+        <location filename="../ViewManager/ViewManager.py" line="3053"/>
         <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="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1382"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1382"/>
         <source>Ctrl+Alt+I</source>
         <comment>Edit|Code Info</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1389"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Show Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1392"/>
         <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="3462"/>
-        <source>Clear all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3458"/>
-        <source>Clear &amp;all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3464"/>
+        <source>Clear all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3460"/>
+        <source>Clear &amp;all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3466"/>
         <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="2120"/>
+        <location filename="../ViewManager/ViewManager.py" line="2121"/>
         <source>Reverse selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2120"/>
+        <location filename="../ViewManager/ViewManager.py" line="2121"/>
         <source>Meta+Alt+R</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3622"/>
+        <location filename="../ViewManager/ViewManager.py" line="3624"/>
         <source>Python AST Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3627"/>
-        <source>Show the AST for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3629"/>
+        <source>Show the AST for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3631"/>
         <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="3639"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>Python Disassembly Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3646"/>
-        <source>Show the Disassembly for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3648"/>
+        <source>Show the Disassembly for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3650"/>
         <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>
@@ -86858,23 +86858,23 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1418"/>
+        <location filename="../ViewManager/ViewManager.py" line="1419"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1418"/>
+        <location filename="../ViewManager/ViewManager.py" line="1419"/>
         <source>Ctrl+Alt+D</source>
         <comment>Edit|Generate Docstring</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1425"/>
+        <location filename="../ViewManager/ViewManager.py" line="1426"/>
         <source>Generate a docstring for the current function/method</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1428"/>
+        <location filename="../ViewManager/ViewManager.py" line="1429"/>
         <source>&lt;b&gt;Generate Docstring&lt;/b&gt;&lt;p&gt;Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -87350,32 +87350,32 @@
         <translation type="unfinished">Atualizar</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="342"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="346"/>
         <source>&lt;virtualenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="360"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="364"/>
         <source>&lt;No suitable virtualenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="362"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="366"/>
         <source>virtualenv Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="396"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="400"/>
         <source>&lt;pyvenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="416"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="420"/>
         <source>&lt;No suitable pyvenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="418"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="422"/>
         <source>pyvenv Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -87515,7 +87515,7 @@
         <translation type="unfinished">Ficheiros de Texto (*.txt);;Ficheiros Todos (*)</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="430"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="434"/>
         <source>conda Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -87538,72 +87538,72 @@
         <translation type="unfinished">Erros</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="110"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="112"/>
         <source>Executing: {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="154"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="163"/>
         <source>Failed
 
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="166"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="175"/>
         <source>
 virtualenv finished.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="195"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="204"/>
         <source>No suitable virtualenv program could be started.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="259"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="268"/>
         <source>
 Writing log file &apos;{0}&apos;.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="264"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="273"/>
         <source>Output:
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="269"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="278"/>
         <source>Errors:
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="272"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="281"/>
         <source>The logfile &apos;{0}&apos; could not be written.
 Reason: {1}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="302"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="311"/>
         <source>Done.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="292"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="301"/>
         <source>
 Writing script file &apos;{0}&apos;.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="299"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="308"/>
         <source>The script file &apos;{0}&apos; could not be written.
 Reason: {1}
 </source>
@@ -87622,14 +87622,14 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="164"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="173"/>
         <source>
 pyvenv finished.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="191"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="200"/>
         <source>No suitable pyvenv program could be started.
 </source>
         <translation type="unfinished"></translation>
@@ -88088,82 +88088,82 @@
 <context>
     <name>WatchPointViewer</name>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="47"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="49"/>
         <source>Watchpoints</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="174"/>
-        <source>Add</source>
-        <translation>Adicionar</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="141"/>
-        <source>Edit...</source>
-        <translation>Editar...</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="143"/>
-        <source>Enable</source>
-        <translation>Habilitar</translation>
-    </message>
-    <message>
         <location filename="../Debugger/WatchPointViewer.py" line="178"/>
-        <source>Enable all</source>
-        <translation>Habilitar tudo</translation>
+        <source>Add</source>
+        <translation>Adicionar</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="145"/>
+        <source>Edit...</source>
+        <translation>Editar...</translation>
     </message>
     <message>
         <location filename="../Debugger/WatchPointViewer.py" line="147"/>
-        <source>Disable</source>
-        <translation>Inabilitar</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="183"/>
-        <source>Disable all</source>
-        <translation>Inabilitar tudo</translation>
+        <source>Enable</source>
+        <translation>Habilitar</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="182"/>
+        <source>Enable all</source>
+        <translation>Habilitar tudo</translation>
     </message>
     <message>
         <location filename="../Debugger/WatchPointViewer.py" line="151"/>
+        <source>Disable</source>
+        <translation>Inabilitar</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="187"/>
+        <source>Disable all</source>
+        <translation>Inabilitar tudo</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="155"/>
         <source>Delete</source>
         <translation>Apagar</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="188"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="192"/>
         <source>Delete all</source>
         <translation>Apagar tudo</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="191"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="195"/>
         <source>Configure...</source>
         <translation>Configurar...</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="176"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="180"/>
         <source>Enable selected</source>
         <translation>Habilitar selecionado</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="181"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="185"/>
         <source>Disable selected</source>
         <translation>Inabilitar selecionado</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="186"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="190"/>
         <source>Delete selected</source>
         <translation>Apagar selecionado</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="240"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="244"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; already exists.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="245"/>
-        <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/WatchPointViewer.py" line="249"/>
+        <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="253"/>
         <source>Watch expression already exists</source>
         <translation type="unfinished"></translation>
     </message>
@@ -88633,33 +88633,33 @@
         <translation type="unfinished">Selecionar Tudo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="42"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="43"/>
         <source>Info</source>
         <translation type="unfinished">Informação</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="43"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="45"/>
         <source>Warning</source>
         <translation type="unfinished">Aviso</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="44"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="47"/>
         <source>Error</source>
         <translation type="unfinished">Erro</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="97"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="100"/>
         <source>[{0}] {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="102"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="105"/>
         <source> at line {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="107"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="110"/>
         <source>URL: {0}
 </source>
         <translation type="unfinished"></translation>
@@ -89230,12 +89230,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="185"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="188"/>
         <source>Suspicuous URL detected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="185"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="188"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -89474,12 +89474,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="702"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="706"/>
         <source>SSL Info</source>
         <translation type="unfinished">Informação SSL</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="702"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="706"/>
         <source>This site does not contain SSL information.</source>
         <translation type="unfinished">Este sítio não tem informação SSL.</translation>
     </message>
@@ -89545,107 +89545,107 @@
         <translation type="unfinished">Mostrar um menú de navegação</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="135"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="136"/>
         <source>Show a navigation menu for closed tabs</source>
         <translation type="unfinished">Mostrar um menú de navegação para os separadores fechados</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="149"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="152"/>
         <source>Open a new web browser tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="163"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="166"/>
         <source>New Tab</source>
         <translation type="unfinished">Separador Novo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="167"/>
-        <source>Move Left</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="170"/>
+        <source>Move Left</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="173"/>
         <source>Move Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="174"/>
-        <source>Duplicate Page</source>
-        <translation type="unfinished">Duplicar Página</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="177"/>
-        <source>Close</source>
-        <translation type="unfinished">Fechar</translation>
+        <source>Duplicate Page</source>
+        <translation type="unfinished">Duplicar Página</translation>
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="180"/>
+        <source>Close</source>
+        <translation type="unfinished">Fechar</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="183"/>
         <source>Close Others</source>
         <translation type="unfinished">Fechar Outros</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="211"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="214"/>
         <source>Close All</source>
         <translation type="unfinished">Fechar Tudo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="186"/>
-        <source>Print Preview</source>
-        <translation type="unfinished">Antevisão da Impressão</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="189"/>
-        <source>Print</source>
-        <translation type="unfinished">Imprimir</translation>
+        <source>Print Preview</source>
+        <translation type="unfinished">Antevisão da Impressão</translation>
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="192"/>
+        <source>Print</source>
+        <translation type="unfinished">Imprimir</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="195"/>
         <source>Print as PDF</source>
         <translation type="unfinished">Imprimir como PDF</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="213"/>
-        <source>Reload All</source>
-        <translation type="unfinished">Recarregar Tudo</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="216"/>
+        <source>Reload All</source>
+        <translation type="unfinished">Recarregar Tudo</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="219"/>
         <source>Bookmark All Tabs</source>
         <translation type="unfinished">Marcar Todos os Separadores</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="220"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="223"/>
         <source>Restore Closed Tab</source>
         <translation type="unfinished">Restaurar o Separador Fechado</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="456"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="459"/>
         <source>...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="912"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="922"/>
         <source>Loading...</source>
         <translation type="unfinished">Carregando...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="921"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="931"/>
         <source>Finished loading</source>
         <translation type="unfinished">Acabou de carregar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="888"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="898"/>
         <source>Failed to load</source>
         <translation type="unfinished">Falhou ao carregar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
         <source>Are you sure you want to close the window?</source>
         <translation type="unfinished">Tem a certeza de que quer fechar a janela?</translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
         <source>Are you sure you want to close the window?
 You have %n tab(s) open.</source>
         <translation type="unfinished">
@@ -89656,47 +89656,47 @@
         </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="969"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="979"/>
         <source>&amp;Quit</source>
         <translation type="unfinished">Sai&amp;r</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="982"/>
         <source>C&amp;lose Current Tab</source>
         <translation type="unfinished">F&amp;echar o Separador Atual</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1153"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1165"/>
         <source>Restore All Closed Tabs</source>
         <translation type="unfinished">Restaurar Todos os Separadores Fechados</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1155"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1167"/>
         <source>Clear List</source>
         <translation type="unfinished">Limpar Lista</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="250"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="253"/>
         <source>Unmute Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="254"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="257"/>
         <source>Mute Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="753"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="763"/>
         <source>Print to PDF</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="703"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="713"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="753"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="763"/>
         <source>&lt;p&gt;The PDF could not be written to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Error:&lt;/b&gt; {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -89704,7 +89704,7 @@
 <context>
     <name>WebBrowserTools</name>
     <message>
-        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="250"/>
+        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="254"/>
         <source>&lt;unknown&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -89922,7 +89922,7 @@
         <translation type="unfinished">Adicionar á barra de pesquisa web</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1791"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1816"/>
         <source>Try reloading the page or closing some tabs to make more memory available.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -89942,22 +89942,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1780"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1797"/>
         <source>Render Process terminated abnormally</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1783"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1804"/>
         <source>The render process crashed while loading this page.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1786"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1811"/>
         <source>The render process was killed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1788"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1813"/>
         <source>The render process terminated while loading this page.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -89967,37 +89967,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1914"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1939"/>
         <source>Web Archive (*.mhtml *.mht)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1915"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1940"/>
         <source>HTML File (*.html *.htm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1916"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1941"/>
         <source>HTML File with all resources (*.html *.htm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1939"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1964"/>
         <source>Save Web Page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1731"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1742"/>
         <source>Empty Page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2289"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2321"/>
         <source>Quota Request</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2289"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2321"/>
         <source>&lt;p&gt; Allow the website at &lt;b&gt;{0}&lt;/b&gt; to use &lt;b&gt;{1}&lt;/b&gt; of persistent storage?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -90126,319 +90126,319 @@
         <translation type="unfinished">Conteúdo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1467"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1472"/>
         <source>Index</source>
         <translation type="unfinished">Índice</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1480"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1485"/>
         <source>Search</source>
         <translation type="unfinished">Procurar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1743"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1748"/>
         <source>JavaScript Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>New Tab</source>
         <translation type="unfinished">Separador Novo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>&amp;New Tab</source>
         <translation type="unfinished">Separador &amp;Novo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>Ctrl+T</source>
         <comment>File|New Tab</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="666"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="671"/>
         <source>Open a new web browser tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="667"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="672"/>
         <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>New Window</source>
         <translation type="unfinished">Nova Janela</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>New &amp;Window</source>
         <translation type="unfinished">Nova &amp;Janela</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>Ctrl+N</source>
         <comment>File|New Window</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="680"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="685"/>
         <source>Open a new web browser window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="681"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="686"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new web browser window in the current privacy mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>New Private Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="689"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="694"/>
         <source>New &amp;Private Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="689"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="694"/>
         <source>Ctrl+Shift+P</source>
         <comment>File|New Private Window</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="695"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="700"/>
         <source>Open a new private web browser window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="697"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="702"/>
         <source>&lt;b&gt;New Private Window&lt;/b&gt;&lt;p&gt;This opens a new private web browser window by starting a new web browser instance in private mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2503"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2508"/>
         <source>Open File</source>
         <translation type="unfinished">Abrir Ficheiro</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="705"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="710"/>
         <source>&amp;Open File</source>
         <translation type="unfinished">&amp;Abrir Ficheiro</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="705"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="710"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="711"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="716"/>
         <source>Open a file for display</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="712"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="717"/>
         <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new file for display. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Open File in New Tab</source>
         <translation type="unfinished">Abrir Ficheiro num Separador Novo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Open File in New &amp;Tab</source>
         <translation type="unfinished">Abrir Ficheiro num &amp;Separador Novo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Shift+Ctrl+O</source>
         <comment>File|Open in new tab</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="726"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="731"/>
         <source>Open a file for display in a new tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="733"/>
         <source>&lt;b&gt;Open File in New Tab&lt;/b&gt;&lt;p&gt;This opens a new file for display in a new tab. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="754"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="759"/>
         <source>Save Page Screen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="754"/>
-        <source>Save Page Screen...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="759"/>
+        <source>Save Page Screen...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="764"/>
         <source>Save the visible part of the current page as a screen shot</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="772"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="777"/>
         <source>Import Bookmarks</source>
         <translation type="unfinished">Importar Marcadores</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="772"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="777"/>
         <source>&amp;Import Bookmarks...</source>
         <translation type="unfinished">&amp;Importar Marcadores...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="776"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="781"/>
         <source>Import bookmarks from other browsers</source>
         <translation type="unfinished">Importar marcadores de outros navegadores</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="778"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="783"/>
         <source>&lt;b&gt;Import Bookmarks&lt;/b&gt;&lt;p&gt;Import bookmarks from other browsers.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="786"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="791"/>
         <source>Export Bookmarks</source>
         <translation type="unfinished">Exportar Marcadores</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="786"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="791"/>
         <source>&amp;Export Bookmarks...</source>
         <translation type="unfinished">&amp;Exportar Marcadores...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="790"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="795"/>
         <source>Export the bookmarks into a file</source>
         <translation type="unfinished">Exportar os marcadores a um ficheiro</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="792"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="797"/>
         <source>&lt;b&gt;Export Bookmarks&lt;/b&gt;&lt;p&gt;Export the bookmarks into a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2122"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2127"/>
         <source>Print</source>
         <translation type="unfinished">Imprimir</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="800"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="805"/>
         <source>&amp;Print</source>
         <translation type="unfinished">Im&amp;primir</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="800"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="805"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="806"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="811"/>
         <source>Print the displayed help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="807"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="812"/>
         <source>&lt;b&gt;Print&lt;/b&gt;&lt;p&gt;Print the displayed help text.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="814"/>
-        <source>Print as PDF</source>
-        <translation type="unfinished">Imprimir como PDF</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="819"/>
+        <source>Print as PDF</source>
+        <translation type="unfinished">Imprimir como PDF</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="824"/>
         <source>Print the displayed help as PDF</source>
         <translation type="unfinished">Imprimir a ajuda mostrada como PDF</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="821"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="826"/>
         <source>&lt;b&gt;Print as PDF&lt;/b&gt;&lt;p&gt;Print the displayed help text as a PDF file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="829"/>
-        <source>Print Preview</source>
-        <translation type="unfinished">Antevisão da Impressão</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="834"/>
+        <source>Print Preview</source>
+        <translation type="unfinished">Antevisão da Impressão</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="839"/>
         <source>Print preview of the displayed help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="836"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="841"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the displayed help text.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>Close</source>
         <translation type="unfinished">Fechar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>&amp;Close</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="864"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="869"/>
         <source>Close the current help window</source>
         <translation type="unfinished">Fechar a janela de ajuda actual</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="866"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="871"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="873"/>
-        <source>Close All</source>
-        <translation type="unfinished">Fechar Tudo</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="873"/>
-        <source>Close &amp;All</source>
-        <translation type="unfinished">Fechar &amp;Tudo</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="877"/>
-        <source>Close all help windows</source>
-        <translation type="unfinished">Fechar todas as janelas de ajuda</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="878"/>
+        <source>Close All</source>
+        <translation type="unfinished">Fechar Tudo</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="878"/>
+        <source>Close &amp;All</source>
+        <translation type="unfinished">Fechar &amp;Tudo</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="882"/>
+        <source>Close all help windows</source>
+        <translation type="unfinished">Fechar todas as janelas de ajuda</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="883"/>
         <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all web browser windows except the first one.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="886"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="891"/>
         <source>Quit</source>
         <translation type="unfinished">Sair</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2854"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2859"/>
         <source>&amp;Quit</source>
         <translation type="unfinished">Sai&amp;r</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="886"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="891"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished"></translation>
@@ -90454,896 +90454,896 @@
         <translation type="obsolete">&lt;b&gt;Sair&lt;/b&gt;&lt;p&gt;Sair do Navegador Web de eric6.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>Backward</source>
         <translation type="unfinished">Retroceder</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>&amp;Backward</source>
         <translation type="unfinished">&amp;Retroceder</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>Alt+Left</source>
         <comment>Go|Backward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="906"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="911"/>
         <source>Move one screen backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="907"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="912"/>
         <source>&lt;b&gt;Backward&lt;/b&gt;&lt;p&gt;Moves one screen backward. If none is available, this action is disabled.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>Forward</source>
         <translation type="unfinished">Avançar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>&amp;Forward</source>
         <translation type="unfinished">&amp;Avançar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>Alt+Right</source>
         <comment>Go|Forward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="921"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="926"/>
         <source>Move one screen forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="923"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="928"/>
         <source>&lt;b&gt;Forward&lt;/b&gt;&lt;p&gt;Moves one screen forward. If none is available, this action is disabled.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>Home</source>
         <translation type="unfinished">Página Inicial</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>&amp;Home</source>
         <translation type="unfinished">Página &amp;Inicial</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>Ctrl+Home</source>
         <comment>Go|Home</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="939"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="944"/>
         <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>Reload</source>
         <translation type="unfinished">Recarregar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>&amp;Reload</source>
         <translation type="unfinished">&amp;Recarregar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>Ctrl+R</source>
         <comment>Go|Reload</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>F5</source>
         <comment>Go|Reload</comment>
         <translation type="unfinished">F5</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="953"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="958"/>
         <source>Reload the current screen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="955"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="960"/>
         <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Stop</source>
         <translation type="unfinished">Parar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>&amp;Stop</source>
         <translation type="unfinished">&amp;Parar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Ctrl+.</source>
         <comment>Go|Stop</comment>
         <translation type="unfinished">Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Esc</source>
         <comment>Go|Stop</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="969"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="974"/>
         <source>Stop loading</source>
         <translation type="unfinished">Parar a carga</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="970"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="975"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>Copy</source>
         <translation type="unfinished">Copiar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>&amp;Copy</source>
         <translation type="unfinished">&amp;Copiar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="983"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="988"/>
         <source>Copy the selected text</source>
         <translation type="unfinished">Copiar texto selecionado</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="984"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="989"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Cut</source>
         <translation type="unfinished">Cortar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Cu&amp;t</source>
         <translation type="unfinished">Cor&amp;tar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="997"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1002"/>
         <source>Cut the selected text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="998"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1003"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>Paste</source>
         <translation type="unfinished">Colar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>&amp;Paste</source>
         <translation type="unfinished">Co&amp;lar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1011"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1016"/>
         <source>Paste text from the clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1012"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1017"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>Undo</source>
         <translation type="unfinished">Desfazer</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>&amp;Undo</source>
         <translation type="unfinished">Desfa&amp;zer</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1025"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1030"/>
         <source>Undo the last edit action</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1026"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1031"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>Redo</source>
         <translation type="unfinished">Refazer</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>&amp;Redo</source>
         <translation type="unfinished">&amp;Refazer</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1039"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1044"/>
         <source>Redo the last edit action</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1040"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1045"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>Select All</source>
         <translation type="unfinished">Selecionar Tudo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>&amp;Select All</source>
         <translation type="unfinished">&amp;Selecionar tudo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1053"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1058"/>
         <source>Select all text</source>
         <translation type="unfinished">Selecionar o texto todo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1054"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1059"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>Find...</source>
         <translation type="unfinished">Encontrar...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>&amp;Find...</source>
         <translation type="unfinished">&amp;Procurar...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>Ctrl+F</source>
         <comment>Edit|Find</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1080"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1085"/>
         <source>Find text in page</source>
         <translation type="unfinished">Procurar texto na página</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1081"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1086"/>
         <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>Find next</source>
         <translation type="unfinished">Procurar seguinte</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>Find &amp;next</source>
         <translation type="unfinished">Procurar &amp;seguinte</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>F3</source>
         <comment>Edit|Find next</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1094"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1099"/>
         <source>Find next occurrence of text in page</source>
         <translation type="unfinished">Procurar a seguinte ocurrencia do texto na página</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1096"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1101"/>
         <source>&lt;b&gt;Find next&lt;/b&gt;&lt;p&gt;Find the next occurrence of text in the current page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Find previous</source>
         <translation type="unfinished">Procurar anterior</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Find &amp;previous</source>
         <translation type="unfinished">Procurar &amp;anterior</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Shift+F3</source>
         <comment>Edit|Find previous</comment>
         <translation type="unfinished">Shift+F3</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1109"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1114"/>
         <source>Find previous occurrence of text in page</source>
         <translation type="unfinished">Procurar a ocurrencia anterior do texto na página</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1111"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1116"/>
         <source>&lt;b&gt;Find previous&lt;/b&gt;&lt;p&gt;Find the previous occurrence of text in the current page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
         <source>Manage Bookmarks</source>
         <translation type="unfinished">Gerir Marcadores</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
         <source>&amp;Manage Bookmarks...</source>
         <translation type="unfinished">&amp;Gerir Marcadores...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
-        <source>Ctrl+Shift+B</source>
-        <comment>Help|Manage bookmarks</comment>
-        <translation type="unfinished">Ctrl+Shift+B</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
+        <source>Ctrl+Shift+B</source>
+        <comment>Help|Manage bookmarks</comment>
+        <translation type="unfinished">Ctrl+Shift+B</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1130"/>
         <source>Open a dialog to manage the bookmarks.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1127"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1132"/>
         <source>&lt;b&gt;Manage Bookmarks...&lt;/b&gt;&lt;p&gt;Open a dialog to manage the bookmarks.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Add Bookmark</source>
         <translation type="unfinished">Adicionar Marcador</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Add &amp;Bookmark...</source>
         <translation type="unfinished">Adicionar &amp;Marcador...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Ctrl+D</source>
         <comment>Help|Add bookmark</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1142"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1147"/>
         <source>Open a dialog to add a bookmark.</source>
         <translation type="unfinished">Abrir uma caixa de diálogo para adicionar um marcador.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1144"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1149"/>
         <source>&lt;b&gt;Add Bookmark&lt;/b&gt;&lt;p&gt;Open a dialog to add the current URL as a bookmark.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1151"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1156"/>
         <source>Add Folder</source>
         <translation type="unfinished">Adicionar Diretório</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1151"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1156"/>
         <source>Add &amp;Folder...</source>
         <translation type="unfinished">Adicionar &amp;Diretório...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1155"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1160"/>
         <source>Open a dialog to add a new bookmarks folder.</source>
         <translation type="unfinished">Abrir uma caixa de diálogo para adicionar um novo diretorio de marcadores.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1157"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1162"/>
         <source>&lt;b&gt;Add Folder...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1165"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1170"/>
         <source>Bookmark All Tabs</source>
         <translation type="unfinished">Marcar Todos os Separadores</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1165"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1170"/>
         <source>Bookmark All Tabs...</source>
         <translation type="unfinished">Marcar Todos os Separadores...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1169"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1174"/>
         <source>Bookmark all open tabs.</source>
         <translation type="unfinished">Marcar todos os separadores abertos.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1171"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1176"/>
         <source>&lt;b&gt;Bookmark All Tabs...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder for all open tabs.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished">Shift+F1</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1185"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1190"/>
         <source>Context sensitive help</source>
         <translation type="unfinished">Ajuda sensível ao contexto</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1186"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1191"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Mostrar ajuda sensível a contexto&lt;/b&gt;&lt;p&gt;No modo &apos;Que é Isto?&apos; o cursor do rato mostra uma flecha com um ponto de  interrogação, e pode clicar nos elementos da interface para ver uma breve descrição do que fazem e como se usam. Nas caixas de diálogo, pode-se aceder a esta característica através do botão de ajuda contextual da barra de título.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1197"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1202"/>
         <source>About</source>
         <translation type="unfinished">Acerca</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1197"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1202"/>
         <source>&amp;About</source>
         <translation type="unfinished">A&amp;cerca</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1201"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1206"/>
         <source>Display information about this software</source>
         <translation type="unfinished">Mostra a informação acerca deste software</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1203"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1208"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Acerca&lt;/b&gt;&lt;p&gt;Mostra alguma informação acerca deste software.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1210"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1215"/>
         <source>About Qt</source>
         <translation type="unfinished">Acerca de Qt</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1210"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1215"/>
         <source>About &amp;Qt</source>
         <translation type="unfinished">Acerca de &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1214"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1219"/>
         <source>Display information about the Qt toolkit</source>
         <translation type="unfinished">Mostra informação acerca das Ferramentas de Qt</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1216"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1221"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Acerca de Qt&lt;/b&gt;&lt;p&gt;Mostra alguma informação acerca das Ferramentas de Qt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom in</source>
         <translation type="unfinished">Aproximar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom &amp;in</source>
         <translation type="unfinished">Apro&amp;ximar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished">Aproximar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1230"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1235"/>
         <source>Zoom in on the web page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1231"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1236"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the web page. This makes the web page bigger.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom out</source>
         <translation type="unfinished">Afastar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom &amp;out</source>
         <translation type="unfinished">A&amp;fastar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished">Afastar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1246"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1251"/>
         <source>Zoom out on the web page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1247"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1252"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the web page. This makes the web page smaller.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Zoom reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation type="unfinished">Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1261"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1266"/>
         <source>Reset the zoom of the web page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1263"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1268"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the web page. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1271"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1276"/>
         <source>Show page source</source>
         <translation type="unfinished">Mostrar código da página</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1271"/>
-        <source>Ctrl+U</source>
-        <translation type="unfinished">Ctrl+U</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1276"/>
+        <source>Ctrl+U</source>
+        <translation type="unfinished">Ctrl+U</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1281"/>
         <source>Show the page source in an editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1278"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1283"/>
         <source>&lt;b&gt;Show page source&lt;/b&gt;&lt;p&gt;Show the page source in an editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1286"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1291"/>
         <source>Full Screen</source>
         <translation type="unfinished">Ecrã Inteiro</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1286"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1291"/>
         <source>&amp;Full Screen</source>
         <translation type="unfinished">Ecrã &amp;Inteiro</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1296"/>
-        <source>F11</source>
-        <translation type="unfinished">F11</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1301"/>
-        <source>Show next tab</source>
-        <translation type="unfinished">Mostrar o separador seguinte</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1301"/>
+        <source>F11</source>
+        <translation type="unfinished">F11</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1306"/>
+        <source>Show next tab</source>
+        <translation type="unfinished">Mostrar o separador seguinte</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1306"/>
         <source>Ctrl+Alt+Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1310"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1315"/>
         <source>Show previous tab</source>
         <translation type="unfinished">Mostrar o separador anterior</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1310"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1315"/>
         <source>Shift+Ctrl+Alt+Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1319"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1324"/>
         <source>Switch between tabs</source>
         <translation type="unfinished">Mudar entre separadores</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1319"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1324"/>
         <source>Ctrl+1</source>
         <translation type="unfinished">Ctrl+1</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1328"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1333"/>
         <source>Preferences</source>
         <translation type="unfinished">Preferências</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1328"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1333"/>
         <source>&amp;Preferences...</source>
         <translation type="unfinished">&amp;Preferências...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1332"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1337"/>
         <source>Set the prefered configuration</source>
         <translation type="unfinished">Definir a configuração desejada</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1334"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1339"/>
         <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Preferências&lt;/b&gt;&lt;p&gt;Define os elementos de configuração da aplicação com os valores desejados.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1342"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1347"/>
         <source>Languages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1342"/>
-        <source>&amp;Languages...</source>
-        <translation type="unfinished">&amp;Idiomas...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1347"/>
+        <source>&amp;Languages...</source>
+        <translation type="unfinished">&amp;Idiomas...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1352"/>
         <source>Configure the accepted languages for web pages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1349"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1354"/>
         <source>&lt;b&gt;Languages&lt;/b&gt;&lt;p&gt;Configure the accepted languages for web pages.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1357"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1362"/>
         <source>Cookies</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1357"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1362"/>
         <source>C&amp;ookies...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1361"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1366"/>
         <source>Configure cookies handling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1363"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1368"/>
         <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1371"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1376"/>
         <source>Personal Information</source>
         <translation type="unfinished">Informação Pessoal</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1371"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1376"/>
         <source>Personal Information...</source>
         <translation type="unfinished">Informação Pessoal...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1377"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1382"/>
         <source>Configure personal information for completing form fields</source>
         <translation type="unfinished">Configurar informação pessoal para completar campos do formulário</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1379"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1384"/>
         <source>&lt;b&gt;Personal Information...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the personal information used for completing form fields.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1388"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1393"/>
         <source>GreaseMonkey Scripts</source>
         <translation type="unfinished">&amp;Limpar dados privados</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1388"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1393"/>
         <source>GreaseMonkey Scripts...</source>
         <translation type="unfinished">Scripts de GreaseMonkey...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1394"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1399"/>
         <source>Configure the GreaseMonkey Scripts</source>
         <translation type="unfinished">Configurar Scripts de GreaseMonkey</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1396"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1401"/>
         <source>&lt;b&gt;GreaseMonkey Scripts...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available GreaseMonkey Scripts.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1405"/>
-        <source>Edit Message Filters</source>
-        <translation type="unfinished">Editar Filtros de Mensagens</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1405"/>
-        <source>Edit Message Filters...</source>
-        <translation type="unfinished">Editar Filtros de Mensagens...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1410"/>
+        <source>Edit Message Filters</source>
+        <translation type="unfinished">Editar Filtros de Mensagens</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1410"/>
+        <source>Edit Message Filters...</source>
+        <translation type="unfinished">Editar Filtros de Mensagens...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1415"/>
         <source>Edit the message filters used to suppress unwanted messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1412"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1417"/>
         <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1422"/>
-        <source>Edit HTML5 Feature Permissions</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1422"/>
-        <source>Edit HTML5 Feature Permissions...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1427"/>
+        <source>Edit HTML5 Feature Permissions</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1427"/>
+        <source>Edit HTML5 Feature Permissions...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1432"/>
         <source>Edit the remembered HTML5 feature permissions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1429"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1434"/>
         <source>&lt;b&gt;Edit HTML5 Feature Permissions&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the remembered HTML5 feature permissions.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1439"/>
-        <source>Sync with Table of Contents</source>
-        <translation type="unfinished">Sincronizar com a Tabela de Conteúdos</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1444"/>
+        <source>Sync with Table of Contents</source>
+        <translation type="unfinished">Sincronizar com a Tabela de Conteúdos</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1449"/>
         <source>Synchronizes the table of contents with current page</source>
         <translation type="unfinished">Sincroniza a tabela de conteúdos com a página atual</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1446"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1451"/>
         <source>&lt;b&gt;Sync with Table of Contents&lt;/b&gt;&lt;p&gt;Synchronizes the table of contents with current page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1454"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1459"/>
         <source>Table of Contents</source>
         <translation type="unfinished">Tabela de Conteúdos</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1458"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1463"/>
         <source>Shows the table of contents window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1460"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1465"/>
         <source>&lt;b&gt;Table of Contents&lt;/b&gt;&lt;p&gt;Shows the table of contents window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1471"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1476"/>
         <source>Shows the index window</source>
         <translation type="unfinished">Mostra a janela de Índice</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1473"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1478"/>
         <source>&lt;b&gt;Index&lt;/b&gt;&lt;p&gt;Shows the index window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1484"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1489"/>
         <source>Shows the search window</source>
         <translation type="unfinished">Mostra a janela de pesquisa</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1486"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1491"/>
         <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1494"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1499"/>
         <source>Manage QtHelp Documents</source>
         <translation type="unfinished">Gerir Documentação QtHelp</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1494"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1499"/>
         <source>Manage QtHelp &amp;Documents</source>
         <translation type="unfinished">Gerir &amp;Documentação QtHelp</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1498"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1503"/>
         <source>Shows a dialog to manage the QtHelp documentation set</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1500"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1505"/>
         <source>&lt;b&gt;Manage QtHelp Documents&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the QtHelp documentation set.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -91358,449 +91358,449 @@
         <translation type="obsolete">Gerir &amp;Filtros QtHelp</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1509"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1514"/>
         <source>Reindex Documentation</source>
         <translation type="unfinished">Reindexar a Documentação</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1509"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1514"/>
         <source>&amp;Reindex Documentation</source>
         <translation type="unfinished">&amp;Reindexar a Documentação</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1513"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1518"/>
         <source>Reindexes the documentation set</source>
         <translation type="unfinished">Reindexa a Documentação</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1520"/>
         <source>&lt;b&gt;Reindex Documentation&lt;/b&gt;&lt;p&gt;Reindexes the documentation set.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1529"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1534"/>
         <source>Clear private data</source>
         <translation type="unfinished">Limpar dados privados</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1531"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1536"/>
         <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like browsing history, search history or the favicons database.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/>
-        <source>Clear icons database</source>
-        <translation type="unfinished">Limpar base de dados dos ícones</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/>
-        <source>Clear &amp;icons database</source>
-        <translation type="unfinished">L&amp;impar base de dados dos Ícones</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1545"/>
+        <source>Clear icons database</source>
+        <translation type="unfinished">Limpar base de dados dos ícones</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1545"/>
+        <source>Clear &amp;icons database</source>
+        <translation type="unfinished">L&amp;impar base de dados dos Ícones</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1550"/>
         <source>Clear the database of favicons</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1547"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1552"/>
         <source>&lt;b&gt;Clear icons database&lt;/b&gt;&lt;p&gt;Clears the database of favicons of previously visited URLs.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1555"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1560"/>
         <source>Manage saved Favicons</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1561"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/>
         <source>Show a dialog to manage the saved favicons</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1563"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1568"/>
         <source>&lt;b&gt;Manage saved Favicons&lt;/b&gt;&lt;p&gt;This shows a dialog to manage the saved favicons of previously visited URLs.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1576"/>
         <source>Configure Search Engines</source>
         <translation type="unfinished">Configurar Motores de Pesquisa</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/>
-        <source>Configure Search &amp;Engines...</source>
-        <translation type="unfinished">Configurar Motor&amp;es de Pesquisa...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1576"/>
+        <source>Configure Search &amp;Engines...</source>
+        <translation type="unfinished">Configurar Motor&amp;es de Pesquisa...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/>
         <source>Configure the available search engines</source>
         <translation type="unfinished">Configurar os motores de pesquisa disponíveis</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1578"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1583"/>
         <source>&lt;b&gt;Configure Search Engines...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available search engines.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1592"/>
         <source>Manage Saved Passwords</source>
         <translation type="unfinished">Gerir Senhas Gravadas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1592"/>
         <source>Manage Saved Passwords...</source>
         <translation type="unfinished">Gerir Senhas Gravadas...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1593"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/>
         <source>Manage the saved passwords</source>
         <translation type="unfinished">Gerir as senhas gravadas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1595"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1600"/>
         <source>&lt;b&gt;Manage Saved Passwords...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved passwords.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1602"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/>
         <source>Ad Block</source>
         <translation type="unfinished">Ad Block</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1602"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/>
         <source>&amp;Ad Block...</source>
         <translation type="unfinished">&amp;Ad Block...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1608"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1613"/>
         <source>Configure AdBlock subscriptions and rules</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1610"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1615"/>
         <source>&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure AdBlock subscriptions and rules.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1618"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/>
         <source>Manage SSL Certificate Errors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1618"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/>
         <source>Manage SSL Certificate Errors...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1624"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1629"/>
         <source>Manage the accepted SSL certificate Errors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1626"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/>
         <source>&lt;b&gt;Manage SSL Certificate Errors...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the accepted SSL certificate errors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1651"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1656"/>
         <source>Downloads</source>
         <translation type="unfinished">Descargas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1655"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1660"/>
         <source>Shows the downloads window</source>
         <translation type="unfinished">Mostra a janela de descargas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1657"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1662"/>
         <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Descargas&lt;/b&gt;&lt;p&gt;Mostra a janela das descargas.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>RSS Feeds Dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>&amp;RSS Feeds Dialog...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>Ctrl+Shift+F</source>
         <comment>Help|RSS Feeds Dialog</comment>
         <translation type="unfinished">Ctrl+Shift+F</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1671"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1676"/>
         <source>Open a dialog showing the configured RSS feeds.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1673"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1678"/>
         <source>&lt;b&gt;RSS Feeds Dialog...&lt;/b&gt;&lt;p&gt;Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>Siteinfo Dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>&amp;Siteinfo Dialog...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>Ctrl+Shift+I</source>
         <comment>Help|Siteinfo Dialog</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1688"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1693"/>
         <source>Open a dialog showing some information about the current site.</source>
         <translation type="unfinished">Abre uma caixa de diálogo que mostra alguma informação sobre o sítio atual.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1690"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1695"/>
         <source>&lt;b&gt;Siteinfo Dialog...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the current site.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1703"/>
         <source>Manage User Agent Settings</source>
         <translation type="unfinished">Gerir Definições de Agente de Usuário</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1703"/>
         <source>Manage &amp;User Agent Settings</source>
         <translation type="unfinished">Gerir Definições de Agente de &amp;Usuário</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1702"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1707"/>
         <source>Shows a dialog to manage the User Agent settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1704"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1709"/>
         <source>&lt;b&gt;Manage User Agent Settings&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the User Agent settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1712"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1717"/>
         <source>Synchronize data</source>
         <translation type="unfinished">Sincronizar dados</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1712"/>
-        <source>&amp;Synchronize Data...</source>
-        <translation type="unfinished">&amp;Sincronizar Dados...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1717"/>
+        <source>&amp;Synchronize Data...</source>
+        <translation type="unfinished">&amp;Sincronizar Dados...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1722"/>
         <source>Shows a dialog to synchronize data via the network</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1719"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1724"/>
         <source>&lt;b&gt;Synchronize Data...&lt;/b&gt;&lt;p&gt;This shows a dialog to synchronize data via the network.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/>
         <source>Manage Saved Zoom Values</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/>
         <source>Manage Saved Zoom Values...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1734"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1739"/>
         <source>Manage the saved zoom values</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1736"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1741"/>
         <source>&lt;b&gt;Manage Saved Zoom Values...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved zoom values.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1747"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1752"/>
         <source>Toggle the JavaScript console window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1749"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1754"/>
         <source>&lt;b&gt;JavaScript Console&lt;/b&gt;&lt;p&gt;This toggles the JavaScript console window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1910"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1915"/>
         <source>&amp;File</source>
         <translation type="unfinished">&amp;Ficheiro</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1942"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1947"/>
         <source>&amp;Edit</source>
         <translation type="unfinished">&amp;Editar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2181"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2186"/>
         <source>&amp;View</source>
         <translation type="unfinished">&amp;Vista</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1969"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1974"/>
         <source>Text Encoding</source>
         <translation type="unfinished">Codificação do Texto</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1981"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1986"/>
         <source>H&amp;istory</source>
         <translation type="unfinished">H&amp;istorial</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1998"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2003"/>
         <source>&amp;Bookmarks</source>
         <translation type="unfinished">&amp;Marcadores</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2014"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2019"/>
         <source>&amp;Settings</source>
         <translation type="unfinished">Definiçõe&amp;s</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2046"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2051"/>
         <source>Global User Agent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2212"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2217"/>
         <source>&amp;Tools</source>
         <translation type="unfinished">&amp;Ferramentas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2087"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2092"/>
         <source>&amp;Help</source>
         <translation type="unfinished">&amp;Ajuda</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2236"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2241"/>
         <source>File</source>
         <translation type="unfinished">Ficheiro</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2261"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2266"/>
         <source>Edit</source>
         <translation type="unfinished">Editar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2274"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2279"/>
         <source>View</source>
         <translation type="unfinished">Vista</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2284"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2289"/>
         <source>Find</source>
         <translation type="unfinished">Encontrar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2293"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2298"/>
         <source>Filter</source>
         <translation type="unfinished">Filtro</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2303"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2308"/>
         <source>Filtered by: </source>
         <translation type="unfinished">Filtrado por: </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2311"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2316"/>
         <source>Settings</source>
         <translation type="unfinished">Definições</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2323"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2328"/>
         <source>Tools</source>
         <translation type="unfinished">Ferramentas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2332"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2337"/>
         <source>Help</source>
         <translation type="unfinished">Ajuda</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2339"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2344"/>
         <source>VirusTotal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1785"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1790"/>
         <source>Scan current site</source>
         <translation type="unfinished">Analizar sítio atual</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4613"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4626"/>
         <source>IP Address Report</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4623"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4636"/>
         <source>Domain Report</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>&lt;p&gt;Could not start the process.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>OK</source>
         <translation type="unfinished">OK</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2667"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2672"/>
         <source>Saved Tabs</source>
         <translation type="unfinished">Separadores Guardados</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3392"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3399"/>
         <source>Could not find an associated content.</source>
         <translation type="unfinished">Não se encontrou nenhum conteúdo associado.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3486"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3493"/>
         <source>Updating search index</source>
         <translation type="unfinished">A atualizar índice de pesquisa</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3560"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3567"/>
         <source>Looking for Documentation...</source>
         <translation type="unfinished">A procurar a Documentação...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3590"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3597"/>
         <source>Unfiltered</source>
         <translation type="unfinished">Sem filtrar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3607"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3614"/>
         <source>Help Engine</source>
         <translation type="unfinished">Motor de Ajuda</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4144"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4151"/>
         <source>ISO</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4148"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4155"/>
         <source>Windows</source>
         <translation type="unfinished">Windows</translation>
     </message>
@@ -91810,306 +91810,306 @@
         <translation type="obsolete">ISCII</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4146"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4153"/>
         <source>Unicode</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4154"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4161"/>
         <source>Other</source>
         <translation type="unfinished">Outro</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4150"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4157"/>
         <source>IBM</source>
         <translation type="unfinished">IBM</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4578"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4591"/>
         <source>VirusTotal Scan</source>
         <translation type="unfinished">Análise de VirusTotal</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4578"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4591"/>
         <source>&lt;p&gt;The VirusTotal scan could not be scheduled.&lt;p&gt;
 &lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4604"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4617"/>
         <source>Enter a valid IPv4 address in dotted quad notation:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4613"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4626"/>
         <source>The given IP address is not in dotted quad notation.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4623"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4636"/>
         <source>Enter a valid domain name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1757"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1762"/>
         <source>Tab Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1761"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1766"/>
         <source>Shows the tab manager window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1763"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1768"/>
         <source>&lt;b&gt;Tab Manager&lt;/b&gt;&lt;p&gt;Shows the tab manager window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
         <source>Save As</source>
         <translation type="unfinished">Gravar Como</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
         <source>&amp;Save As...</source>
         <translation type="unfinished">&amp;Gravar Como...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="743"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="748"/>
         <source>Save the current page to disk</source>
         <translation type="unfinished">Gravar a página atual no disco</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="745"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="750"/>
         <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current page to disk.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1061"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1066"/>
         <source>Unselect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1071"/>
+        <source>Clear current selection</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1072"/>
+        <source>&lt;b&gt;Unselect&lt;/b&gt;&lt;p&gt;Clear the selection of the current browser.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1066"/>
-        <source>Clear current selection</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1067"/>
-        <source>&lt;b&gt;Unselect&lt;/b&gt;&lt;p&gt;Clear the selection of the current browser.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1061"/>
         <source>Alt+Ctrl+A</source>
         <comment>Edit|Unselect</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2503"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2508"/>
         <source>HTML Files (*.html *.htm *.mhtml *.mht);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="937"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="942"/>
         <source>Move to the initial screen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1293"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1298"/>
         <source>Meta+Ctrl+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2218"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2223"/>
         <source>&amp;VirusTotal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2183"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2188"/>
         <source>&amp;Windows</source>
         <translation type="unfinished">&amp;Janelas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2081"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2086"/>
         <source>&amp;Toolbars</source>
         <translation type="unfinished">Barras de Ferramen&amp;tas</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2116"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2121"/>
         <source>Save</source>
         <translation type="unfinished">Gravar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2140"/>
         <source>Show All History...</source>
         <translation type="unfinished">Mostrar Histórico Todo...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4186"/>
         <source>Menu Bar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4184"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4191"/>
         <source>Bookmarks</source>
         <translation type="unfinished">Marcadores</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4189"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4196"/>
         <source>Status Bar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4203"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4210"/>
         <source>&amp;Show all</source>
         <translation type="unfinished">&amp;Mostrar tudo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4205"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4212"/>
         <source>&amp;Hide all</source>
         <translation type="unfinished">&amp;Esconder tudo</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="844"/>
-        <source>Send Page Link</source>
-        <translation type="unfinished">Enviar o Vínculo da Página</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="849"/>
+        <source>Send Page Link</source>
+        <translation type="unfinished">Enviar o Vínculo da Página</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="854"/>
         <source>Send the link of the current page via email</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="851"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="856"/>
         <source>&lt;b&gt;Send Page Link&lt;/b&gt;&lt;p&gt;Send the link of the current page via email.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1771"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1776"/>
         <source>Session Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1771"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1776"/>
         <source>Session Manager...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1775"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1780"/>
         <source>Shows the session manager window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1777"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1782"/>
         <source>&lt;b&gt;Session Manager&lt;/b&gt;&lt;p&gt;Shows the session manager window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2109"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2114"/>
         <source>Sessions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2845"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2850"/>
         <source>Are you sure you want to close the web browser?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2845"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2850"/>
         <source>Are you sure you want to close the web browser?
 You have {0} windows with {1} tabs open.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1635"/>
-        <source>Manage Safe Browsing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1635"/>
-        <source>Manage Safe Browsing...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1642"/>
-        <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/>
+        <source>Manage Safe Browsing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/>
+        <source>Manage Safe Browsing...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1647"/>
+        <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1645"/>
         <source>Configure Safe Browsing and manage local cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="762"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="767"/>
         <source>&lt;b&gt;Save Page Screen...&lt;/b&gt;&lt;p&gt;Saves the visible part of the current page as a screen shot.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1823"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1828"/>
         <source>Keyboard Shortcuts</source>
         <translation type="unfinished">Atalhos de Teclado</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1823"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1828"/>
         <source>Keyboard &amp;Shortcuts...</source>
         <translation type="unfinished">Atalho&amp;s de Teclado...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1829"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1834"/>
         <source>Set the keyboard shortcuts</source>
         <translation type="unfinished">Definir os atalhos de teclado</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1831"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1836"/>
         <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5009"/>
         <source>Export Keyboard Shortcuts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1839"/>
-        <source>&amp;Export Keyboard Shortcuts...</source>
-        <translation type="unfinished">&amp;Exportar Atalhos de Teclado...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1844"/>
+        <source>&amp;Export Keyboard Shortcuts...</source>
+        <translation type="unfinished">&amp;Exportar Atalhos de Teclado...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1849"/>
         <source>Export the keyboard shortcuts</source>
         <translation type="unfinished">Exportar os Atalhos de Teclado</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1846"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1851"/>
         <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5007"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5025"/>
         <source>Import Keyboard Shortcuts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1853"/>
-        <source>&amp;Import Keyboard Shortcuts...</source>
-        <translation type="unfinished">&amp;Importar Atalhos de Teclado...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1858"/>
+        <source>&amp;Import Keyboard Shortcuts...</source>
+        <translation type="unfinished">&amp;Importar Atalhos de Teclado...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1863"/>
         <source>Import the keyboard shortcuts</source>
         <translation type="unfinished">Importar os atalhos de teclado</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1860"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1865"/>
         <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -92119,37 +92119,37 @@
         <translation type="obsolete">Ficheiro de atalhos de teclado (*.e4k)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1867"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1872"/>
         <source>Protocol Handler Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1867"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1872"/>
         <source>Protocol Handler Manager...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1871"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1876"/>
         <source>Shows the protocol handler manager window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1873"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1878"/>
         <source>&lt;b&gt;Protocol Handler Manager&lt;/b&gt;&lt;p&gt;Shows the protocol handler manager window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4141"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4148"/>
         <source>System</source>
         <translation type="unfinished">Sistema</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4152"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4159"/>
         <source>Apple</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2189"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2194"/>
         <source>QtHelp</source>
         <translation type="unfinished">QtHelp</translation>
     </message>
@@ -92159,37 +92159,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3570"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3577"/>
         <source>eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="892"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="897"/>
         <source>Quit the eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="893"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="898"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2544"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2549"/>
         <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chrome {2}.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4972"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4990"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard Shortcuts File (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5009"/>
         <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5007"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5025"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -92644,12 +92644,12 @@
 <context>
     <name>eric6</name>
     <message>
-        <location filename="../eric6.py" line="397"/>
+        <location filename="../eric6.py" line="398"/>
         <source>Starting...</source>
         <translation>A iniciar...</translation>
     </message>
     <message>
-        <location filename="../eric6.py" line="402"/>
+        <location filename="../eric6.py" line="403"/>
         <source>Generating Main Window...</source>
         <translation>A criar a Janela Principal...</translation>
     </message>
--- a/eric6/i18n/eric6_ru.ts	Tue Mar 02 19:22:12 2021 +0100
+++ b/eric6/i18n/eric6_ru.ts	Tue Mar 02 19:49:43 2021 +0100
@@ -61687,109 +61687,109 @@
         <translation>Оболочка</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="248"/>
+        <location filename="../QScintilla/Shell.py" line="249"/>
         <source>Passive &gt;&gt;&gt; </source>
         <translation>Пассивная &gt;&gt;&gt; </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="291"/>
+        <location filename="../QScintilla/Shell.py" line="292"/>
         <source>Start</source>
         <translation>Запуск</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="296"/>
-        <source>History</source>
-        <translation>История</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="297"/>
-        <source>Select entry</source>
-        <translation>Выбрать</translation>
+        <source>History</source>
+        <translation>История</translation>
     </message>
     <message>
         <location filename="../QScintilla/Shell.py" line="298"/>
+        <source>Select entry</source>
+        <translation>Выбрать</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="299"/>
         <source>Show</source>
         <translation>Показать</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="311"/>
+        <location filename="../QScintilla/Shell.py" line="312"/>
         <source>Clear</source>
         <translation>Очистить</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="303"/>
-        <source>Cut</source>
-        <translation>Вырезать</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="304"/>
-        <source>Copy</source>
-        <translation>Копировать</translation>
+        <source>Cut</source>
+        <translation>Вырезать</translation>
     </message>
     <message>
         <location filename="../QScintilla/Shell.py" line="305"/>
+        <source>Copy</source>
+        <translation>Копировать</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="306"/>
         <source>Paste</source>
         <translation>Вставить</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="319"/>
+        <location filename="../QScintilla/Shell.py" line="320"/>
         <source>Configure...</source>
         <translation>Настроить...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="780"/>
+        <location filename="../QScintilla/Shell.py" line="781"/>
         <source>Select History</source>
         <translation>Выберите историю</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="780"/>
+        <location filename="../QScintilla/Shell.py" line="781"/>
         <source>Select the history entry to execute (most recent shown last).</source>
         <translation>Выберите одну из предыдущих команд для выполнения.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="846"/>
-        <source>Passive Debug Mode</source>
-        <translation>Режим пассивной отладки</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="847"/>
+        <source>Passive Debug Mode</source>
+        <translation>Режим пассивной отладки</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="848"/>
         <source>
 Not connected</source>
         <translation>
 Нет соединения</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="850"/>
+        <location filename="../QScintilla/Shell.py" line="851"/>
         <source>No.</source>
         <translation>Нет.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1040"/>
+        <location filename="../QScintilla/Shell.py" line="1041"/>
         <source>StdOut: {0}</source>
         <translation>StdOut: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1048"/>
+        <location filename="../QScintilla/Shell.py" line="1049"/>
         <source>StdErr: {0}</source>
         <translation>StdErr: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2185"/>
+        <location filename="../QScintilla/Shell.py" line="2199"/>
         <source>Drop Error</source>
         <translation>Ошибка Drag&amp;&amp;Drop</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2185"/>
+        <location filename="../QScintilla/Shell.py" line="2199"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; не является файлом&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="309"/>
+        <location filename="../QScintilla/Shell.py" line="310"/>
         <source>Find</source>
         <translation>Найти</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="898"/>
+        <location filename="../QScintilla/Shell.py" line="899"/>
         <source>Exception &quot;{0}&quot;
 {1}
 File: {2}, Line: {3}
@@ -61800,14 +61800,14 @@
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="933"/>
+        <location filename="../QScintilla/Shell.py" line="934"/>
         <source>Unspecified syntax error.
 </source>
         <translation>Неизвестная синтакcическая ошибка.
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="908"/>
+        <location filename="../QScintilla/Shell.py" line="909"/>
         <source>Exception &quot;{0}&quot;
 {1}
 </source>
@@ -61816,51 +61816,51 @@
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="935"/>
+        <location filename="../QScintilla/Shell.py" line="936"/>
         <source>Syntax error &quot;{1}&quot; in file {0} at line {2}, character {3}.
 </source>
         <translation>Синтаксическая ошибка &quot;{1}&quot; в файле {0} в строке {2}, символ {3}.
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="958"/>
+        <location filename="../QScintilla/Shell.py" line="959"/>
         <source>Signal &quot;{0}&quot; generated in file {1} at line {2}.
 Function: {3}({4})</source>
         <translation>Сигнал &quot;{0}&quot; сгенерирован в файле {1} в строке {2}.
 Функция: {3}({4})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2042"/>
+        <location filename="../QScintilla/Shell.py" line="2056"/>
         <source>Project</source>
         <translation>Проект</translation>
     </message>
     <message>
         <location filename="../QScintilla/Shell.py" line="159"/>
         <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;restart&apos; kills the shell and starts a new one. &apos;clear&apos; clears the display of the shell window. &apos;start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;envs&apos; or &apos;environments&apos; commands. The active virtual environment can be questioned by the &apos;which&apos; command. &apos;quit&apos; or &apos;exit&apos; is used to exit the application. These commands (except environments&apos;, &apos;envs&apos; and &apos;which&apos;) are available through the window menus as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Окно оболочки&lt;/b&gt;&lt;p&gt;При вводе команд вы можете использовать клавиши курсора. Существует также история команд, которые можно вызвать с помощью клавиш управления курсором Up и Down, одновременно удерживая клавишу Ctrl. В диалоге &apos;Настройка оболочки&apos; на страничке &apos;Оболочка&apos; можно переключится в режим простого использования клавиш Up и Down. Нажатие на эти клавиши после ввода какого-либо текста вызовет инкрементный поиск.&lt;/p&gt;&lt;p&gt;Оболочка имеет специальные команды. Команда &apos;Restart&apos; убивает текущую оболочку и открывает новую. &apos;Clear&apos; очищает окно оболочки. Команда &apos;Start&apos; используется для запуска оболочки для виртуального окружения и должна сопровождаться именем виртуального окружения. &apos;Start&apos; без имени виртуального окружения запускает оболочку по умолчанию. Доступные виртуальные окружения могут быть перечислены с помощью команд &apos;Envs&apos; или &apos;Environment&apos;. Имя активного виртуального окружения может быть отображено командой &apos;Which&apos;. Команды &apos;Quit&apos; или &apos;Exit&apos; используется для выхода из приложения. Эти команды (за исключением &apos;Environments&apos;, &apos;Envs&apos; и &apos;Which&apos;) доступны через меню оболочки.&lt;/p&gt;&lt;p&gt;Нажатие клавиши &apos;Tab&apos;, после того, как был введен какой-либо текст, вызывает отображение списка возможных дополнений. Необходимая запись может быть выбрана из данного списка. Если доступна только одна запись, то она будет вставлена автоматически.&lt;/p&gt;</translation>
+        <translation type="obsolete">&lt;b&gt;Окно оболочки&lt;/b&gt;&lt;p&gt;При вводе команд вы можете использовать клавиши курсора. Существует также история команд, которые можно вызвать с помощью клавиш управления курсором Up и Down, одновременно удерживая клавишу Ctrl. В диалоге &apos;Настройка оболочки&apos; на страничке &apos;Оболочка&apos; можно переключится в режим простого использования клавиш Up и Down. Нажатие на эти клавиши после ввода какого-либо текста вызовет инкрементный поиск.&lt;/p&gt;&lt;p&gt;Оболочка имеет специальные команды. Команда &apos;Restart&apos; убивает текущую оболочку и открывает новую. &apos;Clear&apos; очищает окно оболочки. Команда &apos;Start&apos; используется для запуска оболочки для виртуального окружения и должна сопровождаться именем виртуального окружения. &apos;Start&apos; без имени виртуального окружения запускает оболочку по умолчанию. Доступные виртуальные окружения могут быть перечислены с помощью команд &apos;Envs&apos; или &apos;Environment&apos;. Имя активного виртуального окружения может быть отображено командой &apos;Which&apos;. Команды &apos;Quit&apos; или &apos;Exit&apos; используется для выхода из приложения. Эти команды (за исключением &apos;Environments&apos;, &apos;Envs&apos; и &apos;Which&apos;) доступны через меню оболочки.&lt;/p&gt;&lt;p&gt;Нажатие клавиши &apos;Tab&apos;, после того, как был введен какой-либо текст, вызывает отображение списка возможных дополнений. Необходимая запись может быть выбрана из данного списка. Если доступна только одна запись, то она будет вставлена автоматически.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../QScintilla/Shell.py" line="186"/>
         <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.&lt;/p&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;restart&apos; kills the shell and starts a new one. &apos;clear&apos; clears the display of the shell window. &apos;start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;envs&apos; or &apos;environments&apos; commands. The active virtual environment can be questioned by the &apos;which&apos; command. These commands (except environments&apos; and &apos;envs&apos;) are available through the context menu as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;&lt;p&gt;In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Окно оболочки&lt;/b&gt;&lt;p&gt;Это простой интерпретатор, запускаемый в окне. Интерпретатор просто используется для запуска отлаживаемой программы. Это означает, что вы можете выполнить любую команду во время работы отлаживаемой программы.&lt;/p&gt;&lt;p&gt;Вы можете использовать клавиши управления курсором при вводе команд. Существует также история команд, которые можно вызвать с помощью клавиш управления курсором Up и Down, одновременно удерживая клавишу Ctrl. В диалоге &apos;Настройка оболочки&apos; на страничке &apos;Оболочка&apos; можно переключится в режим простого использования клавиш Up и Down. Нажатие на эти клавиши после ввода какого-либо текста вызовет инкрементный поиск.&lt;/p&gt;&lt;p&gt;Оболочка имеет специальные команды. Команда &apos;Restart&apos; убивает текущую оболочку и открывает новую. &apos;Clear&apos; очищает окно оболочки. Команда &apos;Start&apos; используется для запуска оболочки для виртуального окружения и должна сопровождаться именем виртуального окружения. &apos;Start&apos; без имени виртуального окружения запускает оболочку по умолчанию. Доступные виртуальные окружения могут быть перечислены с помощью команд &apos;Envs&apos; или &apos;Environments&apos;. Имя активного виртуального окружения может быть отображено командой &apos;Which&apos;. Эти команды (за исключением &apos;Environments&apos;, &apos;Envs&apos;) доступны через контекстное меню.&lt;/p&gt;&lt;p&gt;Нажатие клавиши &apos;Tab&apos;, после того, как был введен какой-либо текст, вызывает отображение списка возможных дополнений. Необходимая запись может быть выбрана из данного списка. Если доступна только одна запись, то она будет вставлена автоматически.&lt;/p&gt;&lt;p&gt;В режиме пассивной отладки оболочка доступна только после того, как отлаживаемая программа будет подключена к IDE и до ее завершения. Это указывается посредством другой подсказки и индикацией в заголовке окна.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="312"/>
-        <source>Restart</source>
-        <translation>Перезапустить</translation>
+        <translation type="obsolete">&lt;b&gt;Окно оболочки&lt;/b&gt;&lt;p&gt;Это простой интерпретатор, запускаемый в окне. Интерпретатор просто используется для запуска отлаживаемой программы. Это означает, что вы можете выполнить любую команду во время работы отлаживаемой программы.&lt;/p&gt;&lt;p&gt;Вы можете использовать клавиши управления курсором при вводе команд. Существует также история команд, которые можно вызвать с помощью клавиш управления курсором Up и Down, одновременно удерживая клавишу Ctrl. В диалоге &apos;Настройка оболочки&apos; на страничке &apos;Оболочка&apos; можно переключится в режим простого использования клавиш Up и Down. Нажатие на эти клавиши после ввода какого-либо текста вызовет инкрементный поиск.&lt;/p&gt;&lt;p&gt;Оболочка имеет специальные команды. Команда &apos;Restart&apos; убивает текущую оболочку и открывает новую. &apos;Clear&apos; очищает окно оболочки. Команда &apos;Start&apos; используется для запуска оболочки для виртуального окружения и должна сопровождаться именем виртуального окружения. &apos;Start&apos; без имени виртуального окружения запускает оболочку по умолчанию. Доступные виртуальные окружения могут быть перечислены с помощью команд &apos;Envs&apos; или &apos;Environments&apos;. Имя активного виртуального окружения может быть отображено командой &apos;Which&apos;. Эти команды (за исключением &apos;Environments&apos;, &apos;Envs&apos;) доступны через контекстное меню.&lt;/p&gt;&lt;p&gt;Нажатие клавиши &apos;Tab&apos;, после того, как был введен какой-либо текст, вызывает отображение списка возможных дополнений. Необходимая запись может быть выбрана из данного списка. Если доступна только одна запись, то она будет вставлена автоматически.&lt;/p&gt;&lt;p&gt;В режиме пассивной отладки оболочка доступна только после того, как отлаживаемая программа будет подключена к IDE и до ее завершения. Это указывается посредством другой подсказки и индикацией в заголовке окна.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../QScintilla/Shell.py" line="313"/>
+        <source>Restart</source>
+        <translation>Перезапустить</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="314"/>
         <source>Restart and Clear</source>
         <translation>Перезапустить и очистить</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="317"/>
+        <location filename="../QScintilla/Shell.py" line="318"/>
         <source>Active Name</source>
         <translation>Активное виртуальное окружение</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1857"/>
+        <location filename="../QScintilla/Shell.py" line="1867"/>
         <source>Available Virtual Environments:
 {0}
 </source>
@@ -61869,22 +61869,32 @@
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1903"/>
+        <location filename="../QScintilla/Shell.py" line="1917"/>
         <source>Current Virtual Environment: &apos;{0}&apos;
 </source>
         <translation>Текущее виртуальное окружение: &apos;{0}&apos;
 </translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="852"/>
+        <location filename="../QScintilla/Shell.py" line="853"/>
         <source>{0} on {1}</source>
         <translation>{0} из {1}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1074"/>
+        <location filename="../QScintilla/Shell.py" line="1075"/>
         <source>&lt;{0}&gt; {1}</source>
         <translation>&lt;{0}&gt; {1}</translation>
     </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="159"/>
+        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;%restart&apos; kills the shell and starts a new one. &apos;%clear&apos; clears the display of the shell window. &apos;%start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. &apos;%start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;%envs&apos; or &apos;%environments&apos; commands. The active virtual environment can be questioned by the &apos;%which&apos; command. &apos;%quit&apos; or &apos;%exit&apos; is used to exit the application. These commands (except &apos;%environments&apos;, &apos;%envs&apos; and &apos;%which&apos;) are available through the window menus as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="187"/>
+        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.&lt;/p&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;%restart&apos; kills the shell and starts a new one. &apos;%clear&apos; clears the display of the shell window. &apos;%start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. &apos;%start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;%envs&apos; or &apos;%environments&apos; commands. The active virtual environment can be questioned by the &apos;%which&apos; command. These commands (except &apos;%environments&apos; and &apos;%envs&apos;) are available through the context menu as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;&lt;p&gt;In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ShellHistoryDialog</name>
--- a/eric6/i18n/eric6_tr.ts	Tue Mar 02 19:22:12 2021 +0100
+++ b/eric6/i18n/eric6_tr.ts	Tue Mar 02 19:49:43 2021 +0100
@@ -112,22 +112,22 @@
         <translation>İşlemler</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="166"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="167"/>
         <source>Learn more about writing rules...</source>
         <translation>Yazım kuralları hakkında daha fazla bilgi...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="159"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="160"/>
         <source>Update Subscription</source>
         <translation>Üyeliği Güncelle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="146"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="147"/>
         <source>Browse Subscriptions...</source>
         <translation>Üyeliğe Gözat...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="243"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="244"/>
         <source>Remove Subscription</source>
         <translation>Üyeliği İpta Et</translation>
     </message>
@@ -142,37 +142,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="139"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="140"/>
         <source>Add Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="142"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="143"/>
         <source>Remove Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="154"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="155"/>
         <source>Disable Subscription</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="156"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="157"/>
         <source>Enable Subscription</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="162"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="163"/>
         <source>Update All Subscriptions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="233"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="234"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt; and all subscriptions requiring it?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="240"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="241"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -271,17 +271,17 @@
 <context>
     <name>AdBlockManager</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="232"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="233"/>
         <source>Custom Rules</source>
         <translation>Özel Kurallar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="334"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="335"/>
         <source>Subscribe?</source>
         <translation type="unfinished">Üye olunacak mı?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="334"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="335"/>
         <source>&lt;p&gt;Subscribe to this AdBlock subscription?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Bu Bloğun üyeliği yahılacak mı?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
@@ -289,7 +289,7 @@
 <context>
     <name>AdBlockSubscription</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="291"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="294"/>
         <source>Load subscription rules</source>
         <translation>Üyelik kuralları yükleniyor</translation>
     </message>
@@ -299,17 +299,17 @@
         <translation type="obsolete">&apos;{0}&apos; dosyasına okuma blokesini kaldır.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="500"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="503"/>
         <source>Downloading subscription rules</source>
         <translation>Üyelik kuralları indiriliyor</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="397"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="400"/>
         <source>&lt;p&gt;Subscription rules could not be downloaded.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Üyelik kuralları indirilemiyor.&lt;/p&gt;&lt;p&gt;Hatar: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="410"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="413"/>
         <source>Got empty subscription rules.</source>
         <translation>Boş üyelik kuralları alındı.</translation>
     </message>
@@ -319,27 +319,27 @@
         <translation type="obsolete">&apos;{0}&apos; dosyasına yazma blokesini kaldır.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="523"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="527"/>
         <source>Saving subscription rules</source>
         <translation>Üyelik kurallarını kaydediliyor</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="291"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="294"/>
         <source>AdBlock file &apos;{0}&apos; does not start with [Adblock.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="500"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="503"/>
         <source>&lt;p&gt;AdBlock subscription &lt;b&gt;{0}&lt;/b&gt; has a wrong checksum.&lt;br/&gt;Found: {1}&lt;br/&gt;Calculated: {2}&lt;br/&gt;Use it anyway?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="281"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="284"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for reading.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="523"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="527"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for writing.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -347,27 +347,27 @@
 <context>
     <name>AdBlockTreeWidget</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="123"/>
         <source>Add Custom Rule</source>
         <translation type="unfinished">Özel Kural Ekle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="123"/>
         <source>Write your rule here:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="164"/>
-        <source>Add Rule</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="166"/>
+        <source>Add Rule</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="168"/>
         <source>Remove Rule</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="219"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="227"/>
         <source>{0} (recently updated)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1148,7 +1148,7 @@
         <translation>Proje için kısa bir açıklama giriniz</translation>
     </message>
     <message>
-        <location filename="../MultiProject/AddProjectDialog.py" line="64"/>
+        <location filename="../MultiProject/AddProjectDialog.py" line="65"/>
         <source>Project Properties</source>
         <translation>Proje Özellikleri</translation>
     </message>
@@ -1618,37 +1618,37 @@
 <context>
     <name>BackgroundService</name>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="134"/>
+        <location filename="../Utilities/BackgroundService.py" line="135"/>
         <source>{0} not configured.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="189"/>
+        <location filename="../Utilities/BackgroundService.py" line="190"/>
         <source>Restart background client?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="444"/>
+        <location filename="../Utilities/BackgroundService.py" line="445"/>
         <source>Eric&apos;s background client disconnected because of an unknown reason.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="450"/>
+        <location filename="../Utilities/BackgroundService.py" line="451"/>
         <source>Background client disconnected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="189"/>
+        <location filename="../Utilities/BackgroundService.py" line="190"/>
         <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It&apos;s used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;&apos;Yes&apos;&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Retry&apos;&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;No&apos;&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="450"/>
+        <location filename="../Utilities/BackgroundService.py" line="451"/>
         <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="215"/>
+        <location filename="../Utilities/BackgroundService.py" line="216"/>
         <source>An error in Eric&apos;s background client stopped the service.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1898,7 +1898,7 @@
         <translation>Seçilen girişi silmek için basınız</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="173"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="174"/>
         <source>&amp;Delete</source>
         <translation>&amp;Sil</translation>
     </message>
@@ -1913,62 +1913,62 @@
         <translation>Dizin &amp;Ekle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="155"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="156"/>
         <source>&amp;Open</source>
         <translation>&amp;Aç</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="157"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="158"/>
         <source>Open in New &amp;Tab</source>
         <translation>Yeni Se&amp;kmede Aç</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="168"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="169"/>
         <source>Edit &amp;Name</source>
         <translation>Adı Düze&amp;nle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="171"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="172"/>
         <source>Edit &amp;Address</source>
         <translation>&amp;Adresi Düzenle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="342"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="355"/>
         <source>New Folder</source>
         <translation>Yeni Dizin</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="177"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="178"/>
         <source>&amp;Properties...</source>
         <translation type="unfinished">&amp;Özellikler...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="162"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="163"/>
         <source>Open in New &amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="164"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="165"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="159"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="160"/>
         <source>Open in New &amp;Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="181"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="182"/>
         <source>New &amp;Folder...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="334"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="347"/>
         <source>New Bookmark Folder</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="334"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="347"/>
         <source>Enter title for new bookmark folder:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2286,72 +2286,72 @@
 <context>
     <name>BreakPointViewer</name>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="52"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="54"/>
         <source>Breakpoints</source>
         <translation>Durmanoktası</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="192"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="198"/>
         <source>Add</source>
         <translation>Ekle</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="159"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="165"/>
         <source>Edit...</source>
         <translation>Düzenle...</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="161"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="167"/>
         <source>Enable</source>
         <translation>Etkinleştir</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="196"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="202"/>
         <source>Enable all</source>
         <translation>Hepsini etkinleştir</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="164"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="170"/>
         <source>Disable</source>
         <translation>Onaylama</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="201"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="207"/>
         <source>Disable all</source>
         <translation>Hepsini Onaylama</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="168"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="174"/>
         <source>Delete</source>
         <translation>Sil</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="206"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="212"/>
         <source>Delete all</source>
         <translation>Hepsini sil</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="171"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="177"/>
         <source>Goto</source>
         <translation>Buraya git</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="209"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="215"/>
         <source>Configure...</source>
         <translation>Ayarlanıyor...</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="194"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="200"/>
         <source>Enable selected</source>
         <translation>Seçilenleri Etkinleştir</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="199"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="205"/>
         <source>Disable selected</source>
         <translation>Seçileni Onaylama</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="204"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="210"/>
         <source>Delete selected</source>
         <translation>Seçileni Sil</translation>
     </message>
@@ -2364,22 +2364,22 @@
         <translation>Dosya-Gözatıcısı</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="282"/>
+        <location filename="../UI/Browser.py" line="284"/>
         <source>Open</source>
         <translation>Aç</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="231"/>
+        <location filename="../UI/Browser.py" line="233"/>
         <source>Run unittest...</source>
         <translation>Test Arabirimini çalıştır...</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="314"/>
+        <location filename="../UI/Browser.py" line="316"/>
         <source>Copy Path to Clipboard</source>
         <translation>Yolu Panoya kopyala</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="261"/>
+        <location filename="../UI/Browser.py" line="263"/>
         <source>Open in Icon Editor</source>
         <translation>İcon Düzenleyicide Aç</translation>
     </message>
@@ -2389,27 +2389,27 @@
         <translation type="obsolete">Ayarlanıyor...</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="340"/>
+        <location filename="../UI/Browser.py" line="342"/>
         <source>New toplevel directory...</source>
         <translation>Yeni enüstseviye dizini...</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="296"/>
+        <location filename="../UI/Browser.py" line="298"/>
         <source>Add as toplevel directory</source>
         <translation>Dizinin en üst seviyesi olarak ekle</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="299"/>
+        <location filename="../UI/Browser.py" line="301"/>
         <source>Remove from toplevel</source>
         <translation>Enüst seviyeyi kaldır</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="303"/>
+        <location filename="../UI/Browser.py" line="305"/>
         <source>Refresh directory</source>
         <translation>Dizini tazele</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="307"/>
+        <location filename="../UI/Browser.py" line="309"/>
         <source>Find in this directory</source>
         <translation>Bu dizin içinde bul</translation>
     </message>
@@ -2419,17 +2419,17 @@
         <translation type="obsolete">Bul&amp;&amp;Değiştir bu dizin içinde</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="642"/>
+        <location filename="../UI/Browser.py" line="644"/>
         <source>New toplevel directory</source>
         <translation>Yeni enüstseviye dizini</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="326"/>
+        <location filename="../UI/Browser.py" line="328"/>
         <source>Goto</source>
         <translation type="unfinished">Buraya git</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="433"/>
+        <location filename="../UI/Browser.py" line="435"/>
         <source>Line {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2439,152 +2439,152 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="553"/>
+        <location filename="../UI/Browser.py" line="555"/>
         <source>Show Mime-Type</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="526"/>
+        <location filename="../UI/Browser.py" line="528"/>
         <source>The mime type of the file could not be determined.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="544"/>
+        <location filename="../UI/Browser.py" line="546"/>
         <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="553"/>
+        <location filename="../UI/Browser.py" line="555"/>
         <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt; Shall it be added to the list of text mime types?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="258"/>
+        <location filename="../UI/Browser.py" line="260"/>
         <source>Open in Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="310"/>
+        <location filename="../UI/Browser.py" line="312"/>
         <source>Find &amp;&amp; Replace in this directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="239"/>
+        <location filename="../UI/Browser.py" line="241"/>
         <source>Refresh Source File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="212"/>
+        <location filename="../UI/Browser.py" line="214"/>
         <source>Show Hidden Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="219"/>
-        <source>New</source>
-        <translation type="unfinished">Yeni</translation>
-    </message>
-    <message>
         <location filename="../UI/Browser.py" line="221"/>
+        <source>New</source>
+        <translation type="unfinished">Yeni</translation>
+    </message>
+    <message>
+        <location filename="../UI/Browser.py" line="223"/>
         <source>Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="224"/>
+        <location filename="../UI/Browser.py" line="226"/>
         <source>File</source>
         <translation type="unfinished">Dosya</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="321"/>
+        <location filename="../UI/Browser.py" line="323"/>
         <source>Delete</source>
         <translation type="unfinished">Sil</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="879"/>
+        <location filename="../UI/Browser.py" line="881"/>
         <source>New Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="861"/>
+        <location filename="../UI/Browser.py" line="863"/>
         <source>Name for new directory:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="902"/>
+        <location filename="../UI/Browser.py" line="904"/>
         <source>A file or directory named &lt;b&gt;{0}&lt;/b&gt; exists already. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="879"/>
+        <location filename="../UI/Browser.py" line="881"/>
         <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="913"/>
+        <location filename="../UI/Browser.py" line="915"/>
         <source>New File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="894"/>
+        <location filename="../UI/Browser.py" line="896"/>
         <source>Name for new file:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="913"/>
+        <location filename="../UI/Browser.py" line="915"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="942"/>
+        <location filename="../UI/Browser.py" line="944"/>
         <source>Do you really want to move this file to the trash?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="946"/>
+        <location filename="../UI/Browser.py" line="948"/>
         <source>Do you really want to delete this file?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1043"/>
+        <location filename="../UI/Browser.py" line="1045"/>
         <source>Delete File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1043"/>
+        <location filename="../UI/Browser.py" line="1045"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="979"/>
+        <location filename="../UI/Browser.py" line="981"/>
         <source>Do you really want to move this directory to the trash?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="983"/>
+        <location filename="../UI/Browser.py" line="985"/>
         <source>Do you really want to delete this directory?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1000"/>
+        <location filename="../UI/Browser.py" line="1002"/>
         <source>Delete Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1000"/>
+        <location filename="../UI/Browser.py" line="1002"/>
         <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1023"/>
+        <location filename="../UI/Browser.py" line="1025"/>
         <source>Do you really want to move these files to the trash?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1027"/>
+        <location filename="../UI/Browser.py" line="1029"/>
         <source>Do you really want to delete these files?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1032"/>
+        <location filename="../UI/Browser.py" line="1034"/>
         <source>Delete Files</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2597,27 +2597,27 @@
         <translation>Adı</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="653"/>
+        <location filename="../UI/BrowserModel.py" line="660"/>
         <source>Coding: {0}</source>
         <translation>Kodlama: {0}</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="660"/>
+        <location filename="../UI/BrowserModel.py" line="667"/>
         <source>Globals</source>
         <translation>Evrensel</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="759"/>
+        <location filename="../UI/BrowserModel.py" line="766"/>
         <source>Attributes</source>
         <translation>Nitelikler</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="769"/>
+        <location filename="../UI/BrowserModel.py" line="776"/>
         <source>Class Attributes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="666"/>
+        <location filename="../UI/BrowserModel.py" line="673"/>
         <source>Imports</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2640,40 +2640,40 @@
         <translation type="unfinished">Kaydet</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="71"/>
+        <location filename="../Debugger/CallStackViewer.py" line="72"/>
         <source>File: {0}
 Line: {1}
 {2}{3}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="73"/>
+        <location filename="../Debugger/CallStackViewer.py" line="74"/>
         <source>File: {0}
 Line: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="202"/>
+        <location filename="../Debugger/CallStackViewer.py" line="203"/>
         <source>Save Call Stack Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="188"/>
+        <location filename="../Debugger/CallStackViewer.py" line="189"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished">Metin Dosyaları (*.txt);;Tüm Dosyalar (*)</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="202"/>
+        <location filename="../Debugger/CallStackViewer.py" line="203"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası halen mevcut. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="224"/>
+        <location filename="../Debugger/CallStackViewer.py" line="225"/>
         <source>Error saving Call Stack Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="224"/>
+        <location filename="../Debugger/CallStackViewer.py" line="225"/>
         <source>&lt;p&gt;The call stack info could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2683,7 +2683,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="213"/>
+        <location filename="../Debugger/CallStackViewer.py" line="214"/>
         <source>Call Stack of &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3316,32 +3316,32 @@
 <context>
     <name>CodeDocumentationViewer</name>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="208"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="211"/>
         <source>Code Info Provider:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="221"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="227"/>
         <source>Select the code info provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="223"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="229"/>
         <source>&lt;disabled&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="404"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="410"/>
         <source>No documentation available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="425"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="431"/>
         <source>No source code documentation provider has been registered. This function has been disabled.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="430"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="436"/>
         <source>This function has been disabled.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3457,32 +3457,32 @@
         <translation type="obsolete">Hepsini genişlet</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="193"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="205"/>
         <source>files</source>
         <translation>dosyalar</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="195"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="207"/>
         <source>lines</source>
         <translation>satırlar</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="197"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="209"/>
         <source>bytes</source>
         <translation>bitler</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="199"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="211"/>
         <source>comments</source>
         <translation>yorumlar</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="203"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="215"/>
         <source>empty lines</source>
         <translation type="unfinished">belge satırları</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="205"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="217"/>
         <source>non-commentary lines</source>
         <translation>Yorumlanmayan satırlar</translation>
     </message>
@@ -3507,17 +3507,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="201"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="213"/>
         <source>comment lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="52"/>
-        <source>Collapse All</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../DataViews/CodeMetricsDialog.py" line="54"/>
+        <source>Collapse All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="56"/>
         <source>Expand All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3751,7 +3751,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="244"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="246"/>
         <source>Error: {0}</source>
         <translation type="unfinished">Hata: {0}</translation>
     </message>
@@ -3761,7 +3761,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1037"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1044"/>
         <source>No issues found.</source>
         <translation type="unfinished">Sorun bulunamadı.</translation>
     </message>
@@ -3786,12 +3786,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="963"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="968"/>
         <source>{0} (ignored)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="856"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="861"/>
         <source>Preparing files...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3801,12 +3801,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="217"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="219"/>
         <source>Errors</source>
         <translation type="unfinished">Hatalar</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="895"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="900"/>
         <source>Transferring data...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3911,7 +3911,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1040"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1047"/>
         <source>No files found (check your ignore list).</source>
         <translation type="unfinished"></translation>
     </message>
@@ -4221,12 +4221,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2004"/>
         <source>Commented Code Whitelist Pattern</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2004"/>
         <source>Enter a Commented Code Whitelist Pattern</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5083,7 +5083,7 @@
 <context>
     <name>CondaExecDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="96"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="102"/>
         <source>Conda Execution</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5110,45 +5110,45 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="96"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="102"/>
         <source>The conda executable could not be started. Is it configured correctly?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="103"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="109"/>
         <source>Operation started.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="134"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="143"/>
         <source>Operation finished.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="154"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="163"/>
         <source>Conda command &apos;{0}&apos; did not return success.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="164"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="173"/>
         <source>
 Conda Message: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="203"/>
-        <source>{0} (Size: {1})</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="208"/>
-        <source>Fetching {0} ...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../CondaInterface/CondaExecDialog.py" line="212"/>
+        <source>{0} (Size: {1})</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="217"/>
+        <source>Fetching {0} ...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="221"/>
         <source> Done.
 </source>
         <translation type="unfinished"></translation>
@@ -5157,7 +5157,7 @@
 <context>
     <name>CondaExportDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="209"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="211"/>
         <source>Generate Requirements</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5237,27 +5237,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="209"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="211"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished">Metin Dosyaları (*.txt);;Tüm Dosyalar (*)</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="109"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="111"/>
         <source>The requirements were changed. Do you want to overwrite these changes?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="140"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="142"/>
         <source>No output generated by conda.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="177"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="179"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; already exists. Do you want to overwrite it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="189"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="191"/>
         <source>&lt;p&gt;The requirements could not be written to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5444,7 +5444,7 @@
 <context>
     <name>CondaPackageDetailsDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaPackageDetailsWidget.py" line="91"/>
+        <location filename="../CondaInterface/CondaPackageDetailsWidget.py" line="93"/>
         <source>Package Details</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5655,132 +5655,132 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="123"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="125"/>
         <source>Clean</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="124"/>
-        <source>All</source>
-        <translation type="unfinished">Hepsi</translation>
-    </message>
-    <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="126"/>
-        <source>Cache</source>
-        <translation type="unfinished"></translation>
+        <source>All</source>
+        <translation type="unfinished">Hepsi</translation>
     </message>
     <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="128"/>
+        <source>Cache</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="130"/>
         <source>Lock Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="131"/>
-        <source>Packages</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="133"/>
+        <source>Packages</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="135"/>
         <source>Tarballs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="136"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="138"/>
         <source>About Conda...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="139"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="141"/>
         <source>Update Conda</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="575"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="581"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="144"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="146"/>
         <source>Install Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="147"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="149"/>
         <source>Generate Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="150"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="152"/>
         <source>Create Environment from Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="617"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="623"/>
         <source>Clone Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="662"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="668"/>
         <source>Delete Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="160"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="162"/>
         <source>Edit User Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="164"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="166"/>
         <source>Configure...</source>
         <translation type="unfinished">Ayarlanıyor...</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="221"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="223"/>
         <source>Getting installed packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="234"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="236"/>
         <source>Getting outdated packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="256"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="260"/>
         <source>{0} (Build: {1})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="397"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="403"/>
         <source>Conda Search Package Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="555"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="561"/>
         <source>Package Specifications (separated by whitespace):</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="575"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="581"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished">Metin Dosyaları (*.txt);;Tüm Dosyalar (*)</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="641"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="647"/>
         <source>Create Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="662"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="668"/>
         <source>&lt;p&gt;Shall the environment &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="687"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="693"/>
         <source>Edit Configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="687"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="693"/>
         <source>The configuration file &quot;{0}&quot; does not exist or is not writable.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6031,24 +6031,24 @@
         <translation>Görünüm Yönetcisi</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="571"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="578"/>
         <source>Preferences</source>
         <translation>Seçenekler</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="576"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="584"/>
         <source>Please select an entry of the list 
 to display the configuration page.</source>
         <translation>Lütfen ayarlama sayfasını 
 göstermek için gelen listeyi seçiniz.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="661"/>
         <source>Configuration Page Error</source>
         <translation>Ayarlama Sayfası Hatası</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
+        <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;TAyarlama sayfası &lt;b&gt;{0}&lt;/b&gt; yüklenemiyor.&lt;/p&gt;</translation>
     </message>
@@ -6276,17 +6276,17 @@
         <translation>Durum</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="82"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="87"/>
         <source>Allow</source>
         <translation>Kabul etmek</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="91"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="96"/>
         <source>Block</source>
         <translation>Engellemek</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="100"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="105"/>
         <source>Allow For Session</source>
         <translation>Oturumu Kabul Etmek</translation>
     </message>
@@ -6480,7 +6480,7 @@
         <translation type="unfinished">Etki Alanı:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="175"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="176"/>
         <source>&lt;no cookie selected&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6525,37 +6525,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="143"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="144"/>
         <source>Remove All Cookies</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="143"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="144"/>
         <source>Do you really want to remove all stored cookies?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="177"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="178"/>
         <source>Remove Cookies</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="186"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="187"/>
         <source>Secure connections only</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="188"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="189"/>
         <source>All connections</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="190"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="191"/>
         <source>Session Cookie</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="197"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="198"/>
         <source>Remove Cookie</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6841,57 +6841,57 @@
         <translation>Bunun&amp;la Filtrele:</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="135"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="136"/>
         <source>Create Dialog Code</source>
         <translation>Diyalog Kodunu Oluştur</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="135"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="136"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; exists but does not contain any classes.</source>
         <translation>&lt;b&gt;{0}&lt;/b&gt; dosyası mevcut ama hiçbir sınıf barındırmıyor.</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="225"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="226"/>
         <source>uic error</source>
         <translation>uic hatası</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="216"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="217"/>
         <source>&lt;p&gt;There was an error loading the form &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1} formlarını yüklerken hata meydana geldi&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="578"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="580"/>
         <source>Code Generation</source>
         <translation>Kod üretici</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="448"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="449"/>
         <source>&lt;p&gt;Could not open the code template file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Kod şablon dosyası &quot;{0}&quot; açılamıyor.&lt;/p&gt;&lt;p&gt;Sebep: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="485"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="486"/>
         <source>&lt;p&gt;Could not open the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Kaynak dosyası açılamıyor &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;.Sebep: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="578"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="580"/>
         <source>&lt;p&gt;Could not write the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Kaynak dosyası &quot;{0}&quot;yazılamıyor.&lt;/p&gt;&lt;p&gt;Sebep: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="225"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="226"/>
         <source>&lt;p&gt;The project specific Python interpreter &lt;b&gt;{0}&lt;/b&gt; could not be started or did not finish within 30 seconds.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="401"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="402"/>
         <source>&lt;p&gt;Code generation for project language &quot;{0}&quot; is not supported.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="437"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="438"/>
         <source>&lt;p&gt;No code template file available for project type &quot;{0}&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6934,17 +6934,17 @@
         <translation>değişti</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="865"/>
+        <location filename="../Debugger/DebugServer.py" line="867"/>
         <source>Connection from illegal host</source>
         <translation>Yasal olmayan bir host tan balğlantı</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="865"/>
+        <location filename="../Debugger/DebugServer.py" line="867"/>
         <source>&lt;p&gt;A connection was attempted by the illegal host &lt;b&gt;{0}&lt;/b&gt;. Accept this connection?&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt;kaçak bir barındırıcıdan (host) bağlantı denemesi. Bu bağlantıyı kabul ediyor musunuz?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1875"/>
+        <location filename="../Debugger/DebugServer.py" line="1877"/>
         <source>
 Not connected
 </source>
@@ -6953,34 +6953,34 @@
 </translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="2144"/>
+        <location filename="../Debugger/DebugServer.py" line="2146"/>
         <source>Passive debug connection received
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="2158"/>
+        <location filename="../Debugger/DebugServer.py" line="2160"/>
         <source>Passive debug connection closed
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="351"/>
+        <location filename="../Debugger/DebugServer.py" line="353"/>
         <source>Register Debugger Interface</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="351"/>
+        <location filename="../Debugger/DebugServer.py" line="353"/>
         <source>&lt;p&gt;The debugger interface &lt;b&gt;{0}&lt;/b&gt; has already been registered. Ignoring this request.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1601"/>
         <source>Start Debugger</source>
         <translation type="unfinished">Hata Ayıklayıcıyı Başlat</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1601"/>
         <source>&lt;p&gt;The debugger type &lt;b&gt;{0}&lt;/b&gt; is not supported or not configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6988,7 +6988,7 @@
 <context>
     <name>DebugUI</name>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1961"/>
+        <location filename="../Debugger/DebugUI.py" line="1964"/>
         <source>Run Script</source>
         <translation>Betiği Çalıştır</translation>
     </message>
@@ -7008,7 +7008,7 @@
         <translation>&lt;b&gt;Betiği Çalıştır&lt;/b&gt;&lt;p&gt; KOmut satırı argumanlarını ayarla ve hata ayıklayıcının dışında çalıştır. Eğer dosyada kaydedilmemiş değişiklikler varsa önce kaydedilmelidir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1973"/>
+        <location filename="../Debugger/DebugUI.py" line="1976"/>
         <source>Run Project</source>
         <translation>Projeyi Çalıştır</translation>
     </message>
@@ -7018,396 +7018,396 @@
         <translation>&amp;Projeyi Çalıştır...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="220"/>
+        <location filename="../Debugger/DebugUI.py" line="221"/>
         <source>Run the current Project</source>
         <translation>Geçerli Projeyi Çalıştır</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="221"/>
+        <location filename="../Debugger/DebugUI.py" line="222"/>
         <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="231"/>
+        <location filename="../Debugger/DebugUI.py" line="232"/>
         <source>Coverage run of Script</source>
         <translation>Betik kapsamını çalıştır</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="231"/>
+        <location filename="../Debugger/DebugUI.py" line="232"/>
         <source>Coverage run of Script...</source>
         <translation>Betik kapsamını çalıştır...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="236"/>
+        <location filename="../Debugger/DebugUI.py" line="237"/>
         <source>Perform a coverage run of the current Script</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="238"/>
+        <location filename="../Debugger/DebugUI.py" line="239"/>
         <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="247"/>
+        <location filename="../Debugger/DebugUI.py" line="248"/>
         <source>Coverage run of Project</source>
         <translation>Proje kapsamını çalıştır</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="247"/>
+        <location filename="../Debugger/DebugUI.py" line="248"/>
         <source>Coverage run of Project...</source>
         <translation>Proje kapsamını çalıştır...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="252"/>
+        <location filename="../Debugger/DebugUI.py" line="253"/>
         <source>Perform a coverage run of the current Project</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="254"/>
+        <location filename="../Debugger/DebugUI.py" line="255"/>
         <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="264"/>
+        <location filename="../Debugger/DebugUI.py" line="265"/>
         <source>Profile Script</source>
         <translation>Betik Kesiti</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="264"/>
+        <location filename="../Debugger/DebugUI.py" line="265"/>
         <source>Profile Script...</source>
         <translation>Betik Kesiti...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="268"/>
-        <source>Profile the current Script</source>
-        <translation>Geçerli Betiğin Kesiti</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="269"/>
+        <source>Profile the current Script</source>
+        <translation>Geçerli Betiğin Kesiti</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="270"/>
         <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Betik Kesiti&lt;/b&gt;&lt;p&gt;Komut satırından gerekli argumanları giriniz ve betiğin kesitini alınız Eğer dosyada kaydedilmemiş değişiklikler varsa önce kaydedilmelidir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="277"/>
+        <location filename="../Debugger/DebugUI.py" line="278"/>
         <source>Profile Project</source>
         <translation>Proje Kesiti</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="277"/>
+        <location filename="../Debugger/DebugUI.py" line="278"/>
         <source>Profile Project...</source>
         <translation>Proje Kesiti...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="282"/>
+        <location filename="../Debugger/DebugUI.py" line="283"/>
         <source>Profile the current Project</source>
         <translation>Geçerli Projenin Kesiti</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="284"/>
+        <location filename="../Debugger/DebugUI.py" line="285"/>
         <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2094"/>
+        <location filename="../Debugger/DebugUI.py" line="2097"/>
         <source>Debug Script</source>
         <translation>Betik Hata Ayıklama</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="293"/>
+        <location filename="../Debugger/DebugUI.py" line="294"/>
         <source>&amp;Debug Script...</source>
         <translation>Be&amp;tik Hata Ayıklama...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="298"/>
-        <source>Debug the current Script</source>
-        <translation>Geçerli betikte hata ayıklama</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="299"/>
+        <source>Debug the current Script</source>
+        <translation>Geçerli betikte hata ayıklama</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="300"/>
         <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2111"/>
+        <location filename="../Debugger/DebugUI.py" line="2114"/>
         <source>Debug Project</source>
         <translation>Proje Hata Ayıklama</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="309"/>
+        <location filename="../Debugger/DebugUI.py" line="310"/>
         <source>Debug &amp;Project...</source>
         <translation>&amp;Proje Hata Ayıklama...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="314"/>
-        <source>Debug the current Project</source>
-        <translation>Geçeli Projede Hata Ayıklama</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="316"/>
+        <source>Debug the current Project</source>
+        <translation>Geçeli Projede Hata Ayıklama</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="318"/>
         <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="330"/>
+        <location filename="../Debugger/DebugUI.py" line="332"/>
         <source>Restart the last debugged script</source>
         <translation>En son hata ayıklama yapılan betiği yeniden çalıştır</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="347"/>
+        <location filename="../Debugger/DebugUI.py" line="349"/>
         <source>Stop the running script.</source>
         <translation>Çalışan betiği durdur.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="357"/>
+        <location filename="../Debugger/DebugUI.py" line="359"/>
         <source>Continue</source>
         <translation>Devam et</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="357"/>
+        <location filename="../Debugger/DebugUI.py" line="359"/>
         <source>&amp;Continue</source>
         <translation>&amp;Devam et</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="362"/>
-        <source>Continue running the program from the current line</source>
-        <translation>Geçerli satırdan itibaren programı çalıştırmaya devam et</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="364"/>
+        <source>Continue running the program from the current line</source>
+        <translation>Geçerli satırdan itibaren programı çalıştırmaya devam et</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="366"/>
         <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Devam Et&lt;/b&gt;&lt;p&gt;Geçerli satırdan itibaren programı çalıştırmaya devam et. Proğram sonlandırıldığında yada bir bekleme nokatsına ulaştığında durur.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="373"/>
+        <location filename="../Debugger/DebugUI.py" line="375"/>
         <source>Continue to Cursor</source>
         <translation>İmlece kadar devam et</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="373"/>
+        <location filename="../Debugger/DebugUI.py" line="375"/>
         <source>Continue &amp;To Cursor</source>
         <translation>İmlece Kadar Devam E&amp;t</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="378"/>
-        <source>Continue running the program from the current line to the current cursor position</source>
-        <translation>Geçerli satırdan geçerli imleç pozisyonuna kadar programı çalıştırmaya devam et</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="381"/>
+        <source>Continue running the program from the current line to the current cursor position</source>
+        <translation>Geçerli satırdan geçerli imleç pozisyonuna kadar programı çalıştırmaya devam et</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="384"/>
         <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
         <translation>&lt;b&gt;İmlece Kadar Devam Et&lt;/b&gt;&lt;p&gt;Geçerli satırdan geçerli imleç pozisyonuna kadar programı çalıştırmaya devam et.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="426"/>
+        <location filename="../Debugger/DebugUI.py" line="429"/>
         <source>Single Step</source>
         <translation>Tekli Adım</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="426"/>
+        <location filename="../Debugger/DebugUI.py" line="429"/>
         <source>Sin&amp;gle Step</source>
         <translation>Tek&amp;li Adım</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="431"/>
+        <location filename="../Debugger/DebugUI.py" line="434"/>
         <source>Execute a single Python statement</source>
         <translation>Tekbir Python ifadesini girçekleştir</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="432"/>
+        <location filename="../Debugger/DebugUI.py" line="435"/>
         <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="442"/>
+        <location filename="../Debugger/DebugUI.py" line="445"/>
         <source>Step Over</source>
         <translation>Sona Kadar Adımla</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="442"/>
+        <location filename="../Debugger/DebugUI.py" line="445"/>
         <source>Step &amp;Over</source>
         <translation>S&amp;ona Kadar Adımla</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="447"/>
-        <source>Execute a single Python statement staying in the current frame</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="450"/>
+        <source>Execute a single Python statement staying in the current frame</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="453"/>
         <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="461"/>
+        <location filename="../Debugger/DebugUI.py" line="464"/>
         <source>Step Out</source>
         <translation>Adımlamadan Çık</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="461"/>
+        <location filename="../Debugger/DebugUI.py" line="464"/>
         <source>Step Ou&amp;t</source>
         <translation>Adımdan Çı&amp;k</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="466"/>
-        <source>Execute Python statements until leaving the current frame</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="469"/>
+        <source>Execute Python statements until leaving the current frame</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="472"/>
         <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="480"/>
+        <location filename="../Debugger/DebugUI.py" line="483"/>
         <source>Stop</source>
         <translation>Dur</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="480"/>
+        <location filename="../Debugger/DebugUI.py" line="483"/>
         <source>&amp;Stop</source>
         <translation>D&amp;ur</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="485"/>
+        <location filename="../Debugger/DebugUI.py" line="488"/>
         <source>Stop debugging</source>
         <translation>Hata ayıklamayı durdur</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="486"/>
+        <location filename="../Debugger/DebugUI.py" line="489"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Dur&lt;/b&gt;&lt;p&gt;Çalışan hata ayıklama oturumunu durdur.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="493"/>
+        <location filename="../Debugger/DebugUI.py" line="496"/>
         <source>Variables Type Filter</source>
         <translation>Değişken Tipi Süzgeçi</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="493"/>
+        <location filename="../Debugger/DebugUI.py" line="496"/>
         <source>Varia&amp;bles Type Filter...</source>
         <translation>Değişken Tipi Süzgeçi&amp;b...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="497"/>
+        <location filename="../Debugger/DebugUI.py" line="500"/>
         <source>Configure variables type filter</source>
         <translation>Değişken Tipi Süzgeçi Yapılandır</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="499"/>
+        <location filename="../Debugger/DebugUI.py" line="502"/>
         <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="509"/>
+        <location filename="../Debugger/DebugUI.py" line="512"/>
         <source>Exceptions Filter</source>
         <translation>İstisnai Süzgeç</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="509"/>
+        <location filename="../Debugger/DebugUI.py" line="512"/>
         <source>&amp;Exceptions Filter...</source>
         <translation>İstisnai Süz&amp;eç...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="513"/>
+        <location filename="../Debugger/DebugUI.py" line="516"/>
         <source>Configure exceptions filter</source>
         <translation>İstisnai Süzgeçi ayarla</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="515"/>
+        <location filename="../Debugger/DebugUI.py" line="518"/>
         <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="526"/>
+        <location filename="../Debugger/DebugUI.py" line="529"/>
         <source>Ignored Exceptions</source>
         <translation>Yoksayılan İstisnalar</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="526"/>
+        <location filename="../Debugger/DebugUI.py" line="529"/>
         <source>&amp;Ignored Exceptions...</source>
         <translation>Yoksayılan İst&amp;isnalar...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="530"/>
+        <location filename="../Debugger/DebugUI.py" line="533"/>
         <source>Configure ignored exceptions</source>
         <translation>Yoksayılan istisnaları ayarla</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="532"/>
+        <location filename="../Debugger/DebugUI.py" line="535"/>
         <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Yoksayılan İstisnalar&lt;/b&gt;&lt;p&gt;Yoksayılan istisnaları ayarla.hata ayıklama süreci içinde vurgulanan istisnaları listeleme.&lt;/p&gt;&lt;p&gt;Lütfen dikkat, ele alınmamış istisnalar yoksayılamaz.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="551"/>
+        <location filename="../Debugger/DebugUI.py" line="554"/>
         <source>Toggle Breakpoint</source>
         <translation>Beklemenoktası Açkapa</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="545"/>
+        <location filename="../Debugger/DebugUI.py" line="548"/>
         <source>Shift+F11</source>
         <comment>Debug|Toggle Breakpoint</comment>
         <translation>Shift+F11</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="552"/>
+        <location filename="../Debugger/DebugUI.py" line="555"/>
         <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Açkapa Beklemenoktası&lt;/b&gt;&lt;p&gt;Geçerli düzenleyicinin geçerli satırırında bir bekleme noktasını açkapa.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="566"/>
+        <location filename="../Debugger/DebugUI.py" line="569"/>
         <source>Edit Breakpoint</source>
         <translation>Bekleme Noktasını Düzenle</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="560"/>
+        <location filename="../Debugger/DebugUI.py" line="563"/>
         <source>Edit Breakpoint...</source>
         <translation>Bekleme Noktasını Düzenle...</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="560"/>
+        <location filename="../Debugger/DebugUI.py" line="563"/>
         <source>Shift+F12</source>
         <comment>Debug|Edit Breakpoint</comment>
         <translation>Shift+F12</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="567"/>
+        <location filename="../Debugger/DebugUI.py" line="570"/>
         <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="582"/>
+        <location filename="../Debugger/DebugUI.py" line="585"/>
         <source>Next Breakpoint</source>
         <translation>Sonraki Beklemenoktası</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="575"/>
+        <location filename="../Debugger/DebugUI.py" line="578"/>
         <source>Ctrl+Shift+PgDown</source>
         <comment>Debug|Next Breakpoint</comment>
         <translation>Ctrl+Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="583"/>
+        <location filename="../Debugger/DebugUI.py" line="586"/>
         <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="597"/>
+        <location filename="../Debugger/DebugUI.py" line="600"/>
         <source>Previous Breakpoint</source>
         <translation>Önceki Beklemenoktası</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="590"/>
+        <location filename="../Debugger/DebugUI.py" line="593"/>
         <source>Ctrl+Shift+PgUp</source>
         <comment>Debug|Previous Breakpoint</comment>
         <translation>Ctrl+Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="598"/>
+        <location filename="../Debugger/DebugUI.py" line="601"/>
         <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="610"/>
+        <location filename="../Debugger/DebugUI.py" line="613"/>
         <source>Clear Breakpoints</source>
         <translation>Beklemenoktalarını Temizle</translation>
     </message>
@@ -7418,12 +7418,12 @@
         <translation type="obsolete">Ctrl+Shift+C</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="611"/>
+        <location filename="../Debugger/DebugUI.py" line="614"/>
         <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="637"/>
+        <location filename="../Debugger/DebugUI.py" line="640"/>
         <source>&amp;Debug</source>
         <translation>Hata Ayık&amp;lama</translation>
     </message>
@@ -7433,172 +7433,172 @@
         <translation type="obsolete">Ba&amp;şlat</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="641"/>
+        <location filename="../Debugger/DebugUI.py" line="644"/>
         <source>&amp;Breakpoints</source>
         <translation>&amp;Durmanoktası</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="684"/>
+        <location filename="../Debugger/DebugUI.py" line="687"/>
         <source>Start</source>
         <translation>Başla</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="698"/>
+        <location filename="../Debugger/DebugUI.py" line="701"/>
         <source>Debug</source>
         <translation>Hata Ayıklama</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1169"/>
+        <location filename="../Debugger/DebugUI.py" line="1172"/>
         <source>The program being debugged contains an unspecified syntax error.</source>
         <translation>Uygulama belirtilmemiş sözdizimi hatalarını belirlemeye başladı.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1188"/>
+        <location filename="../Debugger/DebugUI.py" line="1191"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1212"/>
+        <location filename="../Debugger/DebugUI.py" line="1215"/>
         <source>An unhandled exception occured. See the shell window for details.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1262"/>
+        <location filename="../Debugger/DebugUI.py" line="1265"/>
         <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1277"/>
+        <location filename="../Debugger/DebugUI.py" line="1280"/>
         <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1345"/>
+        <location filename="../Debugger/DebugUI.py" line="1348"/>
         <source>The program being debugged has terminated unexpectedly.</source>
         <translation>Hata ayıklanmaya başlanan program beklenmeyen bir şekilde sonlandı.</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1452"/>
+        <location filename="../Debugger/DebugUI.py" line="1455"/>
         <source>Breakpoint Condition Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1452"/>
+        <location filename="../Debugger/DebugUI.py" line="1455"/>
         <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1491"/>
+        <location filename="../Debugger/DebugUI.py" line="1494"/>
         <source>Watch Expression Error</source>
         <translation>Gözetleme İfade hatası</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1491"/>
+        <location filename="../Debugger/DebugUI.py" line="1494"/>
         <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1521"/>
+        <location filename="../Debugger/DebugUI.py" line="1524"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; already exists.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1526"/>
+        <location filename="../Debugger/DebugUI.py" line="1529"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1531"/>
+        <location filename="../Debugger/DebugUI.py" line="1534"/>
         <source>Watch expression already exists</source>
         <translation>Hali hazırda gözetleme ifadesi var</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1700"/>
+        <location filename="../Debugger/DebugUI.py" line="1703"/>
         <source>Coverage of Project</source>
         <translation>Proje Kapsamı</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1687"/>
+        <location filename="../Debugger/DebugUI.py" line="1690"/>
         <source>Coverage of Script</source>
         <translation>Betik Kapsamı</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1973"/>
+        <location filename="../Debugger/DebugUI.py" line="1976"/>
         <source>There is no main script defined for the current project. Aborting</source>
         <translation>Bugeçerli projede tanımlanan ana betik değil. Durduruluyor</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1837"/>
+        <location filename="../Debugger/DebugUI.py" line="1840"/>
         <source>Profile of Project</source>
         <translation>Proje Kesiti</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1824"/>
+        <location filename="../Debugger/DebugUI.py" line="1827"/>
         <source>Profile of Script</source>
         <translation>Betik Kesiti</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2111"/>
+        <location filename="../Debugger/DebugUI.py" line="2114"/>
         <source>There is no main script defined for the current project. No debugging possible.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1141"/>
+        <location filename="../Debugger/DebugUI.py" line="1144"/>
         <source>Program terminated</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="326"/>
+        <location filename="../Debugger/DebugUI.py" line="328"/>
         <source>Restart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="332"/>
+        <location filename="../Debugger/DebugUI.py" line="334"/>
         <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="348"/>
+        <location filename="../Debugger/DebugUI.py" line="350"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1331"/>
+        <location filename="../Debugger/DebugUI.py" line="1334"/>
         <source>&lt;p&gt;The program generate the signal &quot;{0}&quot;.&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1122"/>
+        <location filename="../Debugger/DebugUI.py" line="1125"/>
         <source>Message: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="406"/>
+        <location filename="../Debugger/DebugUI.py" line="409"/>
         <source>Move Instruction Pointer to Cursor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="406"/>
+        <location filename="../Debugger/DebugUI.py" line="409"/>
         <source>&amp;Jump To Cursor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="411"/>
-        <source>Skip the code from the current line to the current cursor position</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="414"/>
+        <source>Skip the code from the current line to the current cursor position</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="417"/>
         <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It&apos;s not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1409"/>
+        <location filename="../Debugger/DebugUI.py" line="1412"/>
         <source>No locals available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="639"/>
+        <location filename="../Debugger/DebugUI.py" line="642"/>
         <source>Sta&amp;rt</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7608,32 +7608,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="389"/>
+        <location filename="../Debugger/DebugUI.py" line="392"/>
         <source>Continue Until</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="389"/>
+        <location filename="../Debugger/DebugUI.py" line="392"/>
         <source>Continue &amp;Until</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="394"/>
-        <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="397"/>
+        <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="400"/>
         <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1127"/>
+        <location filename="../Debugger/DebugUI.py" line="1130"/>
         <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1131"/>
+        <location filename="../Debugger/DebugUI.py" line="1134"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8049,22 +8049,22 @@
         <translation>İstisna durumunda daima durdur</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="282"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="283"/>
         <source>Add allowed host</source>
         <translation>İzin verilen hostlara ekle</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305"/>
         <source>Enter the IP address of an allowed host</source>
         <translation>İzin verilen hosların IP numaralrını giriniz</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="316"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318"/>
         <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="316"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318"/>
         <source>Edit allowed host</source>
         <translation>İzin verilen Hostları düzenle</translation>
     </message>
@@ -8397,7 +8397,7 @@
         <translation>Hata ayıklayıcı istemcisini şifreleme ayarlarını yapma</translation>
     </message>
     <message>
-        <location filename="../Project/DebuggerPropertiesDialog.py" line="129"/>
+        <location filename="../Project/DebuggerPropertiesDialog.py" line="130"/>
         <source>All Files (*)</source>
         <translation>Tüm Dosyalar (*)</translation>
     </message>
@@ -9276,7 +9276,7 @@
 <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="316"/>
         <source>.desktop Wizard</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9611,22 +9611,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>FreeDesktop Standard .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>KDE Plasma MetaData .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>Ubuntu Unity QuickList .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="316"/>
         <source>Only one of &apos;Only Show In&apos; or  &apos;Not Show In&apos; allowed.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9712,17 +9712,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="220"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="223"/>
         <source>Download canceled: {0}</source>
         <translation>İndirme iptal edildi: {0}</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="210"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="213"/>
         <source>Save File</source>
         <translation>Dosyayı Kaydet</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="249"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="252"/>
         <source>Download directory ({0}) couldn&apos;t be created.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9742,17 +9742,17 @@
         <translation type="obsolete">Ağ hatası: {0}</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="439"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="442"/>
         <source>?</source>
         <translation>?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="452"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="455"/>
         <source>{0} of {1} - Stopped</source>
         <translation>{0} nın{1} - Durdu</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="193"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="196"/>
         <source>VirusTotal scan scheduled: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9762,7 +9762,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="448"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="451"/>
         <source>{0} downloaded</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9772,7 +9772,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="437"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="440"/>
         <source>{0} of {1} ({2}/sec) {3}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9795,42 +9795,42 @@
         <translation type="obsolete">Tekrar Dene</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="107"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="108"/>
         <source>Open</source>
         <translation>Aç</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="111"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="112"/>
         <source>Cancel</source>
         <translation>Vazgeç</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="115"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="116"/>
         <source>Open Containing Folder</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="119"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="120"/>
         <source>Go to Download Page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="122"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="123"/>
         <source>Copy Download Link</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="126"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="127"/>
         <source>Select All</source>
         <translation>Hepsini Seç</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="135"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="136"/>
         <source>Remove From List</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="168"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="169"/>
         <source>There are %n downloads in progress.
 Do you want to quit anyway?</source>
         <translation type="unfinished">
@@ -9839,32 +9839,32 @@
         </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="257"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="258"/>
         <source>Suspicuous URL detected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="257"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="258"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="588"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="589"/>
         <source>Download Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="500"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="501"/>
         <source>Downloads finished</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="500"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="501"/>
         <source>All files have been downloaded.</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="622"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="623"/>
         <source>{0}% of %n file(s) ({1}) {2}</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -9872,7 +9872,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="629"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="630"/>
         <source>{0}% - Download Manager</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10032,27 +10032,27 @@
 <context>
     <name>E5GoogleMail</name>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="159"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="160"/>
         <source>The client secrets file is not present. Has the Gmail API been enabled?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="196"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="197"/>
         <source>OAuth2 Authorization Code</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="196"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="197"/>
         <source>Enter the OAuth2 authorization code:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="240"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="241"/>
         <source>No authorized session available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="258"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="259"/>
         <source>Message #{0} sent.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10060,7 +10060,7 @@
 <context>
     <name>E5GraphicsView</name>
     <message>
-        <location filename="../E5Graphics/E5GraphicsView.py" line="57"/>
+        <location filename="../E5Graphics/E5GraphicsView.py" line="59"/>
         <source>&lt;b&gt;Graphics View&lt;/b&gt;
 &lt;p&gt;This graphics view is used to show a diagram. 
 There are various actions available to manipulate the 
@@ -10090,7 +10090,7 @@
 </translation>
     </message>
     <message>
-        <location filename="../E5Graphics/E5GraphicsView.py" line="415"/>
+        <location filename="../E5Graphics/E5GraphicsView.py" line="417"/>
         <source>{0}, Page {1}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10581,7 +10581,7 @@
 <context>
     <name>E5NetworkProxyFactory</name>
     <message>
-        <location filename="../E5Network/E5NetworkProxyFactory.py" line="227"/>
+        <location filename="../E5Network/E5NetworkProxyFactory.py" line="229"/>
         <source>Proxy Configuration Error</source>
         <translation>Vekil Sunucu Ayarlama Hatası</translation>
     </message>
@@ -10591,7 +10591,7 @@
         <translation>&lt;b&gt;&apos;{0}&apos; proxy&apos;sini kullanarak bağlan:&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5NetworkProxyFactory.py" line="227"/>
+        <location filename="../E5Network/E5NetworkProxyFactory.py" line="229"/>
         <source>Proxy usage was activated but no proxy host for protocol &apos;{0}&apos; configured.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10599,32 +10599,32 @@
 <context>
     <name>E5PathPickerBase</name>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="161"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="162"/>
         <source>Enter Path Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="158"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="159"/>
         <source>Enter Path Names separated by &apos;;&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="499"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="500"/>
         <source>Choose a file to open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="501"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="502"/>
         <source>Choose files to open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="506"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="507"/>
         <source>Choose a file to save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="508"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="509"/>
         <source>Choose a directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10690,32 +10690,32 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="107"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="117"/>
         <source>Process canceled.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="121"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="134"/>
         <source>Process finished successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="123"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="136"/>
         <source>Process crashed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="125"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="138"/>
         <source>Process finished with exit code {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="179"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="192"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="179"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="192"/>
         <source>&lt;p&gt;The process &lt;b&gt;{0}&lt;/b&gt; could not be started.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10804,12 +10804,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="80"/>
+        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="82"/>
         <source>(Unknown)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="82"/>
+        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="84"/>
         <source>(Unknown common name)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10897,72 +10897,72 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="300"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="305"/>
         <source>(Unknown)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="302"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="307"/>
         <source>(Unknown common name)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="150"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="152"/>
         <source>Delete Server Certificate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="150"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="152"/>
         <source>&lt;p&gt;Shall the server certificate really be deleted?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;&lt;p&gt;If the server certificate is deleted, the normal security checks will be reinstantiated and the server has to present a valid certificate.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="489"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="495"/>
         <source>Import Certificate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="399"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="405"/>
         <source>&lt;p&gt;The certificate &lt;b&gt;{0}&lt;/b&gt; already exists. Skipping.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="354"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="359"/>
         <source>Delete CA Certificate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="354"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="359"/>
         <source>&lt;p&gt;Shall the CA certificate really be deleted?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;&lt;p&gt;If the CA certificate is deleted, the browser will not trust any certificate issued by this CA.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="499"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="505"/>
         <source>Export Certificate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="440"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="446"/>
         <source>Certificate File (PEM) (*.pem);;Certificate File (DER) (*.der)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="456"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="462"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası halen mevcut. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="467"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="473"/>
         <source>&lt;p&gt;The certificate could not be written to file &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="489"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="495"/>
         <source>Certificate Files (*.pem *.crt *.der *.cer *.ca);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="499"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="505"/>
         <source>&lt;p&gt;The certificate could not be read from file &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11058,7 +11058,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesInfoWidget.py" line="151"/>
+        <location filename="../E5Network/E5SslCertificatesInfoWidget.py" line="156"/>
         <source>&lt;not part of the certificate&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11066,42 +11066,42 @@
 <context>
     <name>E5SslErrorHandler</name>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="141"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="142"/>
         <source>SSL Errors</source>
         <translation type="unfinished">SSL Hataları</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="141"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="142"/>
         <source>&lt;p&gt;SSL Errors for &lt;br /&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Do you want to ignore these errors?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;SSL Hataları  &lt;br /&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Bu hataları yoksaymak istiyor musunuz?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="156"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="157"/>
         <source>Certificates</source>
         <translation type="unfinished">Sertifikalar</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="156"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="157"/>
         <source>&lt;p&gt;Certificates:&lt;br/&gt;{0}&lt;br/&gt;Do you want to accept all these certificates?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Sertifalar:&lt;br/&gt;{0}&lt;br/&gt;Bu sertifikalrı kabul etmek istiyor musunuz?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="210"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="212"/>
         <source>Name: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="220"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="223"/>
         <source>&lt;br/&gt;Organization: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="230"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="234"/>
         <source>&lt;br/&gt;Issuer: {0}</source>
         <translation type="unfinished">&lt;br/&gt;Yayımcı: {0}</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="239"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="244"/>
         <source>&lt;br/&gt;Not valid before: {0}&lt;br/&gt;Valid Until: {1}</source>
         <translation type="unfinished">&lt;br/&gt;Geçerlilik başlangıcı: {0}&lt;br/&gt;Geçerlilek bitişi: {1}</translation>
     </message>
@@ -11109,61 +11109,61 @@
 <context>
     <name>E5SslInfoWidget</name>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="55"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="56"/>
         <source>Identity</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="65"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="66"/>
         <source>Warning: this site is NOT carrying a certificate.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="73"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="74"/>
         <source>The certificate for this site is valid and has been verified by:
 {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="89"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="90"/>
         <source>Certificate Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="104"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="105"/>
         <source>Encryption</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="115"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="116"/>
         <source>Your connection to &quot;{0}&quot; is NOT encrypted.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="124"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="125"/>
         <source>Your connection to &quot;{0}&quot; is encrypted.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="143"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="144"/>
         <source>unknown</source>
         <translation type="unfinished">bilinmeyen</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="166"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="167"/>
         <source>It uses protocol: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="173"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="174"/>
         <source>It is encrypted using {0} at {1} bits, with {2} for message authentication and {3} as key exchange mechanism.
 
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="80"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="81"/>
         <source>The certificate for this site is NOT valid.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11206,12 +11206,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5StringListEditWidget.py" line="99"/>
+        <location filename="../E5Gui/E5StringListEditWidget.py" line="100"/>
         <source>Add Entry</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5StringListEditWidget.py" line="99"/>
+        <location filename="../E5Gui/E5StringListEditWidget.py" line="100"/>
         <source>Enter the entry to add to the list:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11229,32 +11229,32 @@
 <context>
     <name>E5TextEditSearchWidget</name>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="81"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="83"/>
         <source>Find:</source>
         <translation type="unfinished">Bul:</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="104"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="107"/>
         <source>Match case</source>
         <translation type="unfinished">Eşleşme durumu</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="109"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="112"/>
         <source>Whole word</source>
         <translation type="unfinished">Tüm kelimeler</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="119"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="122"/>
         <source>Press to find the previous occurrence</source>
         <translation type="unfinished">Birönceki eşleşmeyi bulmak için basınız</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="126"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="129"/>
         <source>Press to find the next occurrence</source>
         <translation type="unfinished">Sonraki eşlişmeyi bulmak için basınız</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="341"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="347"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished">&apos;{0}&apos; bulunamadı.</translation>
     </message>
@@ -11370,42 +11370,42 @@
         <translation>Seçilen işlemi aşağı taşımak için basınız.</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="84"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="85"/>
         <source>--Separator--</source>
         <translation>--Ayırıcı--</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="145"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="151"/>
         <source>New Toolbar</source>
         <translation>Yeni Araççubuğu</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="137"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="143"/>
         <source>Toolbar Name:</source>
         <translation>Araççubuğu Adı:</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="208"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="214"/>
         <source>A toolbar with the name &lt;b&gt;{0}&lt;/b&gt; already exists.</source>
         <translation>&lt;b&gt;{0}&lt;/b&gt; isminde bir araç çubuğu zaten var.</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="170"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="176"/>
         <source>Remove Toolbar</source>
         <translation>Araççubuğunu Kaldır</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="170"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="176"/>
         <source>Should the toolbar &lt;b&gt;{0}&lt;/b&gt; really be removed?</source>
         <translation> &lt;b&gt;{0}&lt;/b&gt; ismindeki araç çubuğu kaldırılacak mı?</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="208"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="214"/>
         <source>Rename Toolbar</source>
         <translation>Araççubuğunu Yeniden Adlandır</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="197"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="203"/>
         <source>New Toolbar Name:</source>
         <translation>Yeni Araççubuğu Adı:</translation>
     </message>
@@ -11413,7 +11413,7 @@
 <context>
     <name>E5XmlRpcClient</name>
     <message>
-        <location filename="../E5Network/E5XmlRpcClient.py" line="108"/>
+        <location filename="../E5Network/E5XmlRpcClient.py" line="111"/>
         <source>SSL Error</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11509,7 +11509,7 @@
         <translation>Sayımı Yoksay:</translation>
     </message>
     <message>
-        <location filename="../Debugger/EditBreakpointDialog.py" line="86"/>
+        <location filename="../Debugger/EditBreakpointDialog.py" line="87"/>
         <source>Add Breakpoint</source>
         <translation>Bekleme Noktası Ekle</translation>
     </message>
@@ -11590,812 +11590,812 @@
 <context>
     <name>Editor</name>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3146"/>
+        <location filename="../QScintilla/Editor.py" line="3153"/>
         <source>Open File</source>
         <translation>Dosya Aç</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="389"/>
+        <location filename="../QScintilla/Editor.py" line="391"/>
         <source>&lt;p&gt;The size of the file &lt;b&gt;{0}&lt;/b&gt; is &lt;b&gt;{1} KB&lt;/b&gt;. Do you really want to load it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt;dosyasının boyutu &lt;b&gt;{1} KB&lt;/b&gt;. Bu dosyayı yüklemek istiyor musunuz?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="478"/>
+        <location filename="../QScintilla/Editor.py" line="480"/>
         <source>&lt;b&gt;A Source Editor Window&lt;/b&gt;&lt;p&gt;This window is used to display and edit a source file.  You can open as many of these as you like. The name of the file is displayed in the window&apos;s titlebar.&lt;/p&gt;&lt;p&gt;In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.&lt;/p&gt;&lt;p&gt;In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.&lt;/p&gt;&lt;p&gt;These actions can be reversed via the context menu.&lt;/p&gt;&lt;p&gt;Ctrl clicking on a syntax error marker shows some info about this error.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kaynak Düzenleme Penceresi&lt;/b&gt;&lt;p&gt;Bu pencere kaynak kod dosyalarını düzenlemek ve göstermek için kullanılır.Bunu pekçok kez kullanmak üzere açabilirsiniz. Dosyanın isim başlıkçubuğunda gösterilir.&lt;/p&gt;&lt;p&gt;Bekleme noktaların kolayca ekleyip düzenleyebilmeniz için satır numaraları ve işaret alanı vardır..İçerik  menüsü aracılığı ile sınırları düzenleyebilirsiniz.&lt;/p&gt;&lt;p&gt;Bekleme noktalarını ayarlamak için Shift ve ara çubuğuna beraber basabilirsiniz.&lt;/p&gt;&lt;p&gt;Bu işlem içerik menüsü ilede yapılabilir.&lt;/p&gt;&lt;p&gt;Bir yazım hatasının üzerinde Ctrl ile tıklarsanız o hata ile ilgili ayrıntılı yardım alırsınız.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="795"/>
+        <location filename="../QScintilla/Editor.py" line="797"/>
         <source>Undo</source>
         <translation>Geri Al</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="798"/>
+        <location filename="../QScintilla/Editor.py" line="800"/>
         <source>Redo</source>
         <translation>İleri al</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="801"/>
+        <location filename="../QScintilla/Editor.py" line="803"/>
         <source>Revert to last saved state</source>
         <translation>En son kaydedileni eski haline getir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="805"/>
+        <location filename="../QScintilla/Editor.py" line="807"/>
         <source>Cut</source>
         <translation>Kes</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="808"/>
+        <location filename="../QScintilla/Editor.py" line="810"/>
         <source>Copy</source>
         <translation>Kopyala</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="811"/>
+        <location filename="../QScintilla/Editor.py" line="813"/>
         <source>Paste</source>
         <translation>Yapıştır</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="819"/>
+        <location filename="../QScintilla/Editor.py" line="821"/>
         <source>Indent</source>
         <translation>Girinti</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="822"/>
+        <location filename="../QScintilla/Editor.py" line="824"/>
         <source>Unindent</source>
         <translation>Girintisiz</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="825"/>
+        <location filename="../QScintilla/Editor.py" line="827"/>
         <source>Comment</source>
         <translation>Yorumlayıcı</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="828"/>
+        <location filename="../QScintilla/Editor.py" line="830"/>
         <source>Uncomment</source>
         <translation>Yorumlanamaz</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="831"/>
+        <location filename="../QScintilla/Editor.py" line="833"/>
         <source>Stream Comment</source>
         <translation>Yorumlayıcı</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="834"/>
+        <location filename="../QScintilla/Editor.py" line="836"/>
         <source>Box Comment</source>
         <translation>Kutu Yorumlayıcı</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="842"/>
-        <source>Select to brace</source>
-        <translation>Köşeli ayracı seç</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="844"/>
+        <source>Select to brace</source>
+        <translation>Köşeli ayracı seç</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="846"/>
         <source>Select all</source>
         <translation>Hepsini seç</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="845"/>
+        <location filename="../QScintilla/Editor.py" line="847"/>
         <source>Deselect all</source>
         <translation>Tüm seçimi iptal et</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7935"/>
+        <location filename="../QScintilla/Editor.py" line="7978"/>
         <source>Check spelling...</source>
         <translation>Yazım Kontrolü...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="853"/>
+        <location filename="../QScintilla/Editor.py" line="855"/>
         <source>Check spelling of selection...</source>
         <translation>Seçilen alanın yazım kontrolü...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="857"/>
+        <location filename="../QScintilla/Editor.py" line="859"/>
         <source>Remove from dictionary</source>
         <translation>Sözlükten çıkar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="863"/>
+        <location filename="../QScintilla/Editor.py" line="865"/>
         <source>Shorten empty lines</source>
         <translation>Boş satırları kısalt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="870"/>
+        <location filename="../QScintilla/Editor.py" line="872"/>
         <source>Use Monospaced Font</source>
         <translation>Tek hacimli yazıtipi kullan</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="875"/>
+        <location filename="../QScintilla/Editor.py" line="877"/>
         <source>Autosave enabled</source>
         <translation>Otomatik kayıt kabul edildi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="879"/>
+        <location filename="../QScintilla/Editor.py" line="881"/>
         <source>Typing aids enabled</source>
         <translation>Yazım yardımı etkinleştirildi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="918"/>
+        <location filename="../QScintilla/Editor.py" line="920"/>
         <source>Close</source>
         <translation>Kapat</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="924"/>
+        <location filename="../QScintilla/Editor.py" line="926"/>
         <source>Save</source>
         <translation>Kaydet</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="927"/>
+        <location filename="../QScintilla/Editor.py" line="929"/>
         <source>Save As...</source>
         <translation>Farklı Kaydet...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="940"/>
+        <location filename="../QScintilla/Editor.py" line="942"/>
         <source>Print Preview</source>
         <translation>Baskı Öngörünümü</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="943"/>
+        <location filename="../QScintilla/Editor.py" line="945"/>
         <source>Print</source>
         <translation>Yazdır</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="972"/>
-        <source>Complete from Document</source>
-        <translation type="unfinished">Belgeden</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="974"/>
-        <source>Complete from APIs</source>
-        <translation type="unfinished">API&apos;den</translation>
+        <source>Complete from Document</source>
+        <translation type="unfinished">Belgeden</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="976"/>
+        <source>Complete from APIs</source>
+        <translation type="unfinished">API&apos;den</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="978"/>
         <source>Complete from Document and APIs</source>
         <translation type="unfinished">Belgeden ve API&apos;den</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="894"/>
+        <location filename="../QScintilla/Editor.py" line="896"/>
         <source>Calltip</source>
         <translation>İpucu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="990"/>
+        <location filename="../QScintilla/Editor.py" line="992"/>
         <source>Check</source>
         <translation>Kontrol</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1010"/>
-        <source>Show</source>
-        <translation>Göster</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1012"/>
+        <source>Show</source>
+        <translation>Göster</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1014"/>
         <source>Code metrics...</source>
         <translation>Metrik Kod...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1013"/>
-        <source>Code coverage...</source>
-        <translation>Kod koruyucu...</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1015"/>
+        <source>Code coverage...</source>
+        <translation>Kod koruyucu...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1017"/>
         <source>Show code coverage annotations</source>
         <translation>Kodun dipnotunu göster</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1018"/>
+        <location filename="../QScintilla/Editor.py" line="1020"/>
         <source>Hide code coverage annotations</source>
         <translation>Kod koruyucu dipnotunu gizle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1021"/>
+        <location filename="../QScintilla/Editor.py" line="1023"/>
         <source>Profile data...</source>
         <translation>Veri kesiti...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1034"/>
-        <source>Diagrams</source>
-        <translation>Şema</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1036"/>
-        <source>Class Diagram...</source>
-        <translation>Sınıf Şeması...</translation>
+        <source>Diagrams</source>
+        <translation>Şema</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1038"/>
-        <source>Package Diagram...</source>
-        <translation>Paket Şeması...</translation>
+        <source>Class Diagram...</source>
+        <translation>Sınıf Şeması...</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1040"/>
-        <source>Imports Diagram...</source>
-        <translation>Şemayı İçe aktar...</translation>
+        <source>Package Diagram...</source>
+        <translation>Paket Şeması...</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1042"/>
+        <source>Imports Diagram...</source>
+        <translation>Şemayı İçe aktar...</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1044"/>
         <source>Application Diagram...</source>
         <translation>Uygulama Şeması...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1060"/>
+        <location filename="../QScintilla/Editor.py" line="1062"/>
         <source>Languages</source>
         <translation>Diller</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1193"/>
+        <location filename="../QScintilla/Editor.py" line="1195"/>
         <source>No Language</source>
         <translation>Dil Yok</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1089"/>
+        <location filename="../QScintilla/Editor.py" line="1091"/>
         <source>Guessed</source>
         <translation>Tahmin edilen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
+        <location filename="../QScintilla/Editor.py" line="1431"/>
         <source>Alternatives</source>
         <translation>Alternatifler</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1109"/>
+        <location filename="../QScintilla/Editor.py" line="1111"/>
         <source>Encodings</source>
         <translation>Kodlama</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1150"/>
+        <location filename="../QScintilla/Editor.py" line="1152"/>
         <source>End-of-Line Type</source>
         <translation>Yazım satırının sonu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1154"/>
+        <location filename="../QScintilla/Editor.py" line="1156"/>
         <source>Unix</source>
         <translation>Unix</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1161"/>
+        <location filename="../QScintilla/Editor.py" line="1163"/>
         <source>Windows</source>
         <translation>Windows</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1168"/>
+        <location filename="../QScintilla/Editor.py" line="1170"/>
         <source>Macintosh</source>
         <translation>Macintosh</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1218"/>
+        <location filename="../QScintilla/Editor.py" line="1220"/>
         <source>Export as</source>
         <translation>Farklı Dışaktar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1240"/>
-        <source>Toggle bookmark</source>
-        <translation>Yerimi açkapa</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1242"/>
-        <source>Next bookmark</source>
-        <translation>Sonraki yerimi</translation>
+        <source>Toggle bookmark</source>
+        <translation>Yerimi açkapa</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1244"/>
-        <source>Previous bookmark</source>
-        <translation>Önceki yerimi</translation>
+        <source>Next bookmark</source>
+        <translation>Sonraki yerimi</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1246"/>
+        <source>Previous bookmark</source>
+        <translation>Önceki yerimi</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1248"/>
         <source>Clear all bookmarks</source>
         <translation>Tüm yerimlerini temizle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1255"/>
-        <source>Toggle breakpoint</source>
-        <translation>Beklemenoktası açkapa</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1257"/>
+        <source>Toggle breakpoint</source>
+        <translation>Beklemenoktası açkapa</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1259"/>
         <source>Toggle temporary breakpoint</source>
         <translation>Geçici bekleme noktası açkapa</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1260"/>
+        <location filename="../QScintilla/Editor.py" line="1262"/>
         <source>Edit breakpoint...</source>
         <translation>Bekleme noktasını düzenle...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5656"/>
+        <location filename="../QScintilla/Editor.py" line="5696"/>
         <source>Enable breakpoint</source>
         <translation>Beklemenoktasını etkinleştir</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1265"/>
-        <source>Next breakpoint</source>
-        <translation>Sonraki Beklemenoktası</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1267"/>
+        <source>Next breakpoint</source>
+        <translation>Sonraki Beklemenoktası</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1269"/>
         <source>Previous breakpoint</source>
         <translation>Önceki bekleme noktası</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1272"/>
+        <location filename="../QScintilla/Editor.py" line="1274"/>
         <source>Clear all breakpoints</source>
         <translation>Tüm beklemenoktalarını temizle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1320"/>
+        <location filename="../QScintilla/Editor.py" line="1322"/>
         <source>Goto syntax error</source>
         <translation>Sözdizimi hatasına git</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1324"/>
+        <location filename="../QScintilla/Editor.py" line="1326"/>
         <source>Show syntax error message</source>
         <translation>Sözdizimi hata mesajını göster</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1329"/>
+        <location filename="../QScintilla/Editor.py" line="1331"/>
         <source>Clear syntax error</source>
         <translation>Sözdizimi hatalarını sil</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1334"/>
+        <location filename="../QScintilla/Editor.py" line="1336"/>
         <source>Next warning</source>
         <translation>Sonraki Uyarı</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1338"/>
+        <location filename="../QScintilla/Editor.py" line="1340"/>
         <source>Previous warning</source>
         <translation>Önceki Uyarı</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1342"/>
+        <location filename="../QScintilla/Editor.py" line="1344"/>
         <source>Show warning message</source>
         <translation>Uyarı mesajını göster</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1346"/>
+        <location filename="../QScintilla/Editor.py" line="1348"/>
         <source>Clear warnings</source>
         <translation>Uyarıları temizle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1351"/>
+        <location filename="../QScintilla/Editor.py" line="1353"/>
         <source>Next uncovered line</source>
         <translation>Sonraki kapanmamış satır</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1355"/>
+        <location filename="../QScintilla/Editor.py" line="1357"/>
         <source>Previous uncovered line</source>
         <translation>Önceki kaplanmamış satır</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1360"/>
+        <location filename="../QScintilla/Editor.py" line="1362"/>
         <source>Next task</source>
         <translation>Sonraki görev</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1364"/>
+        <location filename="../QScintilla/Editor.py" line="1366"/>
         <source>Previous task</source>
         <translation>Önceki görev</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1414"/>
+        <location filename="../QScintilla/Editor.py" line="1416"/>
         <source>Export source</source>
         <translation>Kaynağı dışaktar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1406"/>
+        <location filename="../QScintilla/Editor.py" line="1408"/>
         <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
         <translation>&lt;p&gt;dışa katarma tipi &lt;b&gt;{0}&lt;/b&gt;için dışaaktarıcı yok. Vazgeçiliyior...&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1414"/>
+        <location filename="../QScintilla/Editor.py" line="1416"/>
         <source>No export format given. Aborting...</source>
         <translation>Girilen dışaaktarma formatı yok. İptal edildi...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1425"/>
+        <location filename="../QScintilla/Editor.py" line="1427"/>
         <source>Alternatives ({0})</source>
         <translation>Alternatifler ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1445"/>
+        <location filename="../QScintilla/Editor.py" line="1447"/>
         <source>Pygments Lexer</source>
         <translation>Pygments Lexer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1445"/>
+        <location filename="../QScintilla/Editor.py" line="1447"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>Kullanmak için Pygment lexer seç.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1989"/>
+        <location filename="../QScintilla/Editor.py" line="1991"/>
         <source>Modification of Read Only file</source>
         <translation>Yalnızca okunabilir dosyada değişiklik</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1989"/>
+        <location filename="../QScintilla/Editor.py" line="1991"/>
         <source>You are attempting to change a read only file. Please save to a different file first.</source>
         <translation>Yalnızca okunabilir bir dosyayı değiştirmeşe çalışıyorsunuz. Lütfen önce farklı bir isimde kaydediniz.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2711"/>
+        <location filename="../QScintilla/Editor.py" line="2715"/>
         <source>Printing...</source>
         <translation>Yazılıyor...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2728"/>
+        <location filename="../QScintilla/Editor.py" line="2735"/>
         <source>Printing completed</source>
         <translation>Yazdırma tamalandı</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2730"/>
+        <location filename="../QScintilla/Editor.py" line="2737"/>
         <source>Error while printing</source>
         <translation>Yazdırılırken hata</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2733"/>
+        <location filename="../QScintilla/Editor.py" line="2740"/>
         <source>Printing aborted</source>
         <translation>Yazdırma iptal edildi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3088"/>
+        <location filename="../QScintilla/Editor.py" line="3095"/>
         <source>File Modified</source>
         <translation>Dosya Değiştirildi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3088"/>
+        <location filename="../QScintilla/Editor.py" line="3095"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt;dosyasında kaydedilmemiş değişiklikler var.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3146"/>
+        <location filename="../QScintilla/Editor.py" line="3153"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Dosya &lt;b&gt;{0}&lt;/b&gt; açılamıyor.&lt;/p&gt;&lt;p&gt;Sebep: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3333"/>
+        <location filename="../QScintilla/Editor.py" line="3340"/>
         <source>Save File</source>
         <translation>Dosyayı Kaydet</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3270"/>
+        <location filename="../QScintilla/Editor.py" line="3277"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Dosya &lt;b&gt;{0}&lt;/b&gt; kaydedilemiyor.&lt;/p&gt;&lt;p&gt;Sebep: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4811"/>
+        <location filename="../QScintilla/Editor.py" line="4838"/>
         <source>Autocompletion</source>
         <translation>Otomatik tamamlama</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4811"/>
+        <location filename="../QScintilla/Editor.py" line="4838"/>
         <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="5659"/>
+        <location filename="../QScintilla/Editor.py" line="5699"/>
         <source>Disable breakpoint</source>
         <translation>Durmanoktasını iptal et</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6034"/>
+        <location filename="../QScintilla/Editor.py" line="6074"/>
         <source>Code Coverage</source>
         <translation>Kod Koruyucu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6034"/>
+        <location filename="../QScintilla/Editor.py" line="6074"/>
         <source>Please select a coverage file</source>
         <translation>Lütfen bir koruyucu dosya seçiniz</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6097"/>
+        <location filename="../QScintilla/Editor.py" line="6137"/>
         <source>Show Code Coverage Annotations</source>
         <translation>Kodların Dipnotunu Göster</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6090"/>
+        <location filename="../QScintilla/Editor.py" line="6130"/>
         <source>All lines have been covered.</source>
         <translation>Tüm satırlar korumaya alındı.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6097"/>
+        <location filename="../QScintilla/Editor.py" line="6137"/>
         <source>There is no coverage file available.</source>
         <translation>Hazırda koruma dosyası yok.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6214"/>
+        <location filename="../QScintilla/Editor.py" line="6254"/>
         <source>Profile Data</source>
         <translation>Veri Kesiti</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6214"/>
+        <location filename="../QScintilla/Editor.py" line="6254"/>
         <source>Please select a profile file</source>
         <translation>Lütfen kesit dosyasını seçiniz</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6376"/>
+        <location filename="../QScintilla/Editor.py" line="6416"/>
         <source>Syntax Error</source>
         <translation>Sözdizimi Hatası</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6376"/>
+        <location filename="../QScintilla/Editor.py" line="6416"/>
         <source>No syntax error message available.</source>
         <translation>Uygun söz dizimi hata mesajı yok.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Macro Name</source>
         <translation>Makro Adı</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Select a macro name:</source>
         <translation>Bir makro ismi seç:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6793"/>
+        <location filename="../QScintilla/Editor.py" line="6833"/>
         <source>Load macro file</source>
         <translation>Makro dosyasını yükle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6835"/>
+        <location filename="../QScintilla/Editor.py" line="6875"/>
         <source>Macro files (*.macro)</source>
         <translation>Makro dosyaları (*.macro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6815"/>
+        <location filename="../QScintilla/Editor.py" line="6855"/>
         <source>Error loading macro</source>
         <translation>Makronun yüklenmesinde hata</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6806"/>
+        <location filename="../QScintilla/Editor.py" line="6846"/>
         <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="6815"/>
+        <location filename="../QScintilla/Editor.py" line="6855"/>
         <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="6835"/>
+        <location filename="../QScintilla/Editor.py" line="6875"/>
         <source>Save macro file</source>
         <translation>Makro Dosyasını Kaydet</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6852"/>
+        <location filename="../QScintilla/Editor.py" line="6892"/>
         <source>Save macro</source>
         <translation>Makro Kaydet</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6867"/>
+        <location filename="../QScintilla/Editor.py" line="6907"/>
         <source>Error saving macro</source>
         <translation>Makronun kaydedilmesinde hata</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6867"/>
+        <location filename="../QScintilla/Editor.py" line="6907"/>
         <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="6880"/>
+        <location filename="../QScintilla/Editor.py" line="6920"/>
         <source>Start Macro Recording</source>
         <translation>Makro Kaydı Başladı</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6880"/>
+        <location filename="../QScintilla/Editor.py" line="6920"/>
         <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="6906"/>
+        <location filename="../QScintilla/Editor.py" line="6946"/>
         <source>Macro Recording</source>
         <translation>Makro Kaydediliyor</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6906"/>
+        <location filename="../QScintilla/Editor.py" line="6946"/>
         <source>Enter name of the macro:</source>
         <translation>Makronun ismini gir:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7076"/>
+        <location filename="../QScintilla/Editor.py" line="7116"/>
         <source>File changed</source>
         <translation>Dosya değiştirilmiş</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7267"/>
+        <location filename="../QScintilla/Editor.py" line="7310"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7408"/>
+        <location filename="../QScintilla/Editor.py" line="7451"/>
         <source>Drop Error</source>
         <translation>Düşme hatası</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7408"/>
+        <location filename="../QScintilla/Editor.py" line="7451"/>
         <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="7429"/>
+        <location filename="../QScintilla/Editor.py" line="7472"/>
         <source>Resources</source>
         <translation>Kaynaklar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7431"/>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
         <source>Add file...</source>
         <translation>Dosya ekle...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7433"/>
+        <location filename="../QScintilla/Editor.py" line="7476"/>
         <source>Add files...</source>
         <translation>Dosyaları ekle...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7435"/>
+        <location filename="../QScintilla/Editor.py" line="7478"/>
         <source>Add aliased file...</source>
         <translation>Kısaltmalar dosyasına ekle...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7438"/>
+        <location filename="../QScintilla/Editor.py" line="7481"/>
         <source>Add localized resource...</source>
         <translation>Yaral kaynak ekle...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7442"/>
+        <location filename="../QScintilla/Editor.py" line="7485"/>
         <source>Add resource frame</source>
         <translation>Çerçeve kaynağı ekle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7461"/>
-        <source>Add file resource</source>
-        <translation>Dosya kaynağını ekle</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7477"/>
-        <source>Add file resources</source>
-        <translation>Dosya kaynaklarını ekle</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="7504"/>
+        <source>Add file resource</source>
+        <translation>Dosya kaynağını ekle</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7520"/>
+        <source>Add file resources</source>
+        <translation>Dosya kaynaklarını ekle</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7547"/>
         <source>Add aliased file resource</source>
         <translation>Kısaltmalar dosyası kaynağını ekle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7504"/>
+        <location filename="../QScintilla/Editor.py" line="7547"/>
         <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="7570"/>
+        <location filename="../QScintilla/Editor.py" line="7613"/>
         <source>Package Diagram</source>
         <translation>Paket Şeması</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7570"/>
+        <location filename="../QScintilla/Editor.py" line="7613"/>
         <source>Include class attributes?</source>
         <translation>Sınıf nitelikleri dahil edilsin mi?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7592"/>
+        <location filename="../QScintilla/Editor.py" line="7635"/>
         <source>Imports Diagram</source>
         <translation>Şemayı İçe Aktar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7592"/>
+        <location filename="../QScintilla/Editor.py" line="7635"/>
         <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="7606"/>
+        <location filename="../QScintilla/Editor.py" line="7649"/>
         <source>Application Diagram</source>
         <translation>Uygulama Şeması</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7606"/>
+        <location filename="../QScintilla/Editor.py" line="7649"/>
         <source>Include module names?</source>
         <translation>Modül isimleri dahil edilsin mi?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7938"/>
+        <location filename="../QScintilla/Editor.py" line="7981"/>
         <source>Add to dictionary</source>
         <translation>Sözlüğe ekle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7940"/>
+        <location filename="../QScintilla/Editor.py" line="7983"/>
         <source>Ignore All</source>
         <translation>Hepsini Yoksay</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3333"/>
+        <location filename="../QScintilla/Editor.py" line="3340"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası halen mevcut. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6653"/>
+        <location filename="../QScintilla/Editor.py" line="6693"/>
         <source>Warning: {0}</source>
         <translation>Dikkat: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6660"/>
+        <location filename="../QScintilla/Editor.py" line="6700"/>
         <source>Error: {0}</source>
         <translation>Hata: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6852"/>
+        <location filename="../QScintilla/Editor.py" line="6892"/>
         <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="7072"/>
+        <location filename="../QScintilla/Editor.py" line="7112"/>
         <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="936"/>
+        <location filename="../QScintilla/Editor.py" line="938"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1046"/>
+        <location filename="../QScintilla/Editor.py" line="1048"/>
         <source>Load Diagram...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1369"/>
+        <location filename="../QScintilla/Editor.py" line="1371"/>
         <source>Next change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1373"/>
+        <location filename="../QScintilla/Editor.py" line="1375"/>
         <source>Previous change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8356"/>
+        <location filename="../QScintilla/Editor.py" line="8399"/>
         <source>Sort Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8356"/>
+        <location filename="../QScintilla/Editor.py" line="8399"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6588"/>
+        <location filename="../QScintilla/Editor.py" line="6628"/>
         <source>Warning</source>
         <translation type="unfinished">Dikkat</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6588"/>
+        <location filename="../QScintilla/Editor.py" line="6628"/>
         <source>No warning messages available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6650"/>
+        <location filename="../QScintilla/Editor.py" line="6690"/>
         <source>Style: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="910"/>
+        <location filename="../QScintilla/Editor.py" line="912"/>
         <source>New Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="913"/>
+        <location filename="../QScintilla/Editor.py" line="915"/>
         <source>New Document View (with new split)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1000"/>
+        <location filename="../QScintilla/Editor.py" line="1002"/>
         <source>Tools</source>
         <translation type="unfinished">Araçlar</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1131"/>
+        <location filename="../QScintilla/Editor.py" line="1133"/>
         <source>Re-Open With Encoding</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12405,122 +12405,122 @@
         <translation type="obsolete">&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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="886"/>
+        <location filename="../QScintilla/Editor.py" line="888"/>
         <source>Automatic Completion enabled</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="966"/>
+        <location filename="../QScintilla/Editor.py" line="968"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4943"/>
+        <location filename="../QScintilla/Editor.py" line="4980"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4943"/>
+        <location filename="../QScintilla/Editor.py" line="4980"/>
         <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="5222"/>
+        <location filename="../QScintilla/Editor.py" line="5262"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5222"/>
+        <location filename="../QScintilla/Editor.py" line="5262"/>
         <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="8445"/>
+        <location filename="../QScintilla/Editor.py" line="8488"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8445"/>
+        <location filename="../QScintilla/Editor.py" line="8488"/>
         <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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="930"/>
+        <location filename="../QScintilla/Editor.py" line="932"/>
         <source>Save Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="969"/>
+        <location filename="../QScintilla/Editor.py" line="971"/>
         <source>Clear Completions Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="896"/>
+        <location filename="../QScintilla/Editor.py" line="898"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1377"/>
+        <location filename="../QScintilla/Editor.py" line="1379"/>
         <source>Clear changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="815"/>
+        <location filename="../QScintilla/Editor.py" line="817"/>
         <source>Execute Selection In Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8566"/>
+        <location filename="../QScintilla/Editor.py" line="8609"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8566"/>
+        <location filename="../QScintilla/Editor.py" line="8609"/>
         <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/Editor.py" line="1281"/>
+        <location filename="../QScintilla/Editor.py" line="1283"/>
         <source>Toggle all folds</source>
         <translation type="unfinished">Tüm Açkapaları Kapat</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1286"/>
+        <location filename="../QScintilla/Editor.py" line="1288"/>
         <source>Toggle all folds (including children)</source>
         <translation type="unfinished">Tüm açkapalar (iç içe olanlar dahil)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1291"/>
+        <location filename="../QScintilla/Editor.py" line="1293"/>
         <source>Toggle current fold</source>
         <translation type="unfinished">Geçerli açkapayı kapat</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1297"/>
+        <location filename="../QScintilla/Editor.py" line="1299"/>
         <source>Expand (including children)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1302"/>
+        <location filename="../QScintilla/Editor.py" line="1304"/>
         <source>Collapse (including children)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1308"/>
+        <location filename="../QScintilla/Editor.py" line="1310"/>
         <source>Clear all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1189"/>
+        <location filename="../QScintilla/Editor.py" line="1191"/>
         <source>Spell Check Languages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7106"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8760"/>
+        <location filename="../QScintilla/Editor.py" line="8803"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12912,82 +12912,82 @@
 <context>
     <name>EditorButtonsWidget</name>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="174"/>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="176"/>
         <source>Bold</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="176"/>
-        <source>Italic</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="178"/>
+        <source>Italic</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="180"/>
         <source>Strike Through</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="181"/>
-        <source>Header 1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="183"/>
-        <source>Header 2</source>
+        <source>Header 1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="185"/>
-        <source>Header 3</source>
+        <source>Header 2</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="187"/>
+        <source>Header 3</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="189"/>
         <source>Header</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="192"/>
-        <source>Inline Code</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="194"/>
-        <source>Code Block</source>
+        <source>Inline Code</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="196"/>
+        <source>Code Block</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="198"/>
         <source>Quote</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="199"/>
-        <source>Add Hyperlink</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="201"/>
-        <source>Add Horizontal Line</source>
+        <source>Add Hyperlink</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="203"/>
+        <source>Add Horizontal Line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="205"/>
         <source>Add Image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="206"/>
-        <source>Add Bulleted List</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="208"/>
+        <source>Add Bulleted List</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="210"/>
         <source>Add Numbered List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="274"/>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="276"/>
         <source>Level {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -13943,12 +13943,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="243"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="244"/>
         <source>Tab and Indent Override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="243"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="244"/>
         <source>Shall the selected entries really be removed?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -14149,7 +14149,7 @@
         <translation>Satır sonuna kadar dolrurmak için seç.</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="426"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="427"/>
         <source>Fill to end of line</source>
         <translation>Satırın sonuna kadar doldur</translation>
     </message>
@@ -14259,22 +14259,22 @@
         <translation>Yalnızca boyut</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="424"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="425"/>
         <source>Enabled</source>
         <translation>Etkinleştirilmiş</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="425"/>
-        <source>Disabled</source>
-        <translation>Onaylanmamış</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="426"/>
+        <source>Disabled</source>
+        <translation>Onaylanmamış</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="427"/>
         <source>Select fill to end of line for all styles</source>
         <translation>Tüm stiller için satır sonunu doldurmayı  seç</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="591"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="592"/>
         <source>Export Highlighting Styles</source>
         <translation>Vurgulama stillerini dışa aktar</translation>
     </message>
@@ -14289,7 +14289,7 @@
         <translation type="obsolete">&lt;p&gt;Metin vurgulayacı stili &lt;b&gt;{0}&lt;/b&gt; dosyasına dış aktarılamıyor.&lt;/p&gt;&lt;p&gt;Sebep: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="642"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="643"/>
         <source>Import Highlighting Styles</source>
         <translation>Vurgulama stillerini içe aktar</translation>
     </message>
@@ -14344,27 +14344,27 @@
         <translation type="obsolete">Metin vurgulayıcı stil dosyaları (*.e4h) {6h?}</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="783"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="784"/>
         <source>Delete Sub-Style</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="783"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="784"/>
         <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="823"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="824"/>
         <source>{0} - Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="851"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="852"/>
         <source>Reset Sub-Styles to Default</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="851"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="852"/>
         <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>
@@ -14414,27 +14414,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="548"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="549"/>
         <source>Highlighting Styles File (*.ehj);;XML Highlighting Styles File (*.e6h)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="567"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="568"/>
         <source>&lt;p&gt;The highlighting styles file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="591"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="592"/>
         <source>&lt;p&gt;The highlighting styles 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="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="610"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="611"/>
         <source>Highlighting Styles File (*.ehj);;XML Highlighting Styles File (*.e6h *.e4h)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="642"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="643"/>
         <source>&lt;p&gt;The highlighting styles 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>
@@ -14650,47 +14650,47 @@
 <context>
     <name>EditorOutlineView</name>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="268"/>
+        <location filename="../QScintilla/EditorOutline.py" line="269"/>
         <source>Goto</source>
         <translation type="unfinished">Buraya git</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="310"/>
+        <location filename="../QScintilla/EditorOutline.py" line="311"/>
         <source>Refresh</source>
         <translation type="unfinished">Tazele</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="314"/>
+        <location filename="../QScintilla/EditorOutline.py" line="315"/>
         <source>Copy Path to Clipboard</source>
         <translation type="unfinished">Yolu Panoya kopyala</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="319"/>
+        <location filename="../QScintilla/EditorOutline.py" line="320"/>
         <source>Expand All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="323"/>
+        <location filename="../QScintilla/EditorOutline.py" line="324"/>
         <source>Collapse All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="328"/>
+        <location filename="../QScintilla/EditorOutline.py" line="329"/>
         <source>Increment Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="332"/>
+        <location filename="../QScintilla/EditorOutline.py" line="333"/>
         <source>Decrement Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="390"/>
+        <location filename="../QScintilla/EditorOutline.py" line="391"/>
         <source>Line {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="336"/>
+        <location filename="../QScintilla/EditorOutline.py" line="337"/>
         <source>Set Default Width</source>
         <translation type="unfinished"></translation>
     </message>
@@ -16138,32 +16138,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="59"/>
         <source>Word Boundary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="60"/>
-        <source>Character Boundary</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="62"/>
+        <source>Character Boundary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="65"/>
         <source>No Indicator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="64"/>
-        <source>Indicator by Text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="66"/>
-        <source>Indicator by Margin</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="68"/>
+        <source>Indicator by Text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="71"/>
+        <source>Indicator by Margin</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="74"/>
         <source>Indicator in Line Number Margin</source>
         <translation type="unfinished"></translation>
     </message>
@@ -16414,22 +16414,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="72"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="78"/>
         <source>Fixed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="74"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="80"/>
         <source>Aligned</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="76"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="82"/>
         <source>Aligned plus One</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="79"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="85"/>
         <source>Aligned plus Two</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17098,37 +17098,37 @@
         <translation>Gönder</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="133"/>
+        <location filename="../UI/EmailDialog.py" line="134"/>
         <source>Close dialog</source>
         <translation>Diyaloğu kapat</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="133"/>
+        <location filename="../UI/EmailDialog.py" line="134"/>
         <source>Do you really want to close the dialog?</source>
         <translation>Diyaloğu kapatmak istediğinizden emin misiniz?</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="321"/>
+        <location filename="../UI/EmailDialog.py" line="322"/>
         <source>Mail Server Password</source>
         <translation>Posta Sunucu Parolası</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="321"/>
+        <location filename="../UI/EmailDialog.py" line="322"/>
         <source>Enter your mail server password</source>
         <translation>Posta sunucu parolanızı giriniz</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="341"/>
+        <location filename="../UI/EmailDialog.py" line="342"/>
         <source>&lt;p&gt;Authentication failed.&lt;br&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Doğrulama hatası.&lt;br&gt;Sebip: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="410"/>
+        <location filename="../UI/EmailDialog.py" line="411"/>
         <source>&lt;p&gt;Message could not be sent.&lt;br&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Mesaj gönderilemedi.&lt;br&gt;Sebep: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="423"/>
+        <location filename="../UI/EmailDialog.py" line="424"/>
         <source>Attach file</source>
         <translation>Dosya ekle</translation>
     </message>
@@ -17138,22 +17138,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="157"/>
+        <location filename="../UI/EmailDialog.py" line="158"/>
         <source>Gmail API Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="366"/>
+        <location filename="../UI/EmailDialog.py" line="367"/>
         <source>Send Message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="151"/>
+        <location filename="../UI/EmailDialog.py" line="152"/>
         <source>&lt;p&gt;The Google Mail Client API is not installed. Use &lt;code&gt;{0}&lt;/code&gt; to install it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="410"/>
+        <location filename="../UI/EmailDialog.py" line="411"/>
         <source>Send Message via Gmail</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17677,22 +17677,22 @@
 &lt;p&gt;Bu Ericapi üreteç komutlarının nası hata vereceğini gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="82"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="84"/>
         <source>{0} - {1}</source>
         <translation>{0} - {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="89"/>
         <source>Process Generation Error</source>
         <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="89"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="128"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="137"/>
         <source>
 {0} finished.
 </source>
@@ -18031,7 +18031,7 @@
         <translation>Sayfa stili (*.css);;Tüm dosyalar (*)</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="62"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="63"/>
         <source>&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot;&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;&lt;html&gt;&lt;head&gt;&lt;title&gt;&lt;/title&gt;&lt;/head&gt;&lt;body style=&quot;background-color:{BodyBgColor};color:{BodyColor}&quot;&gt;&lt;h1 style=&quot;background-color:{Level1HeaderBgColor};color:{Level1HeaderColor}&quot;&gt;Level 1 Header&lt;/h1&gt;&lt;h3 style=&quot;background-color:{Level2HeaderBgColor};color:{Level2HeaderColor}&quot;&gt;Level 2 Header&lt;/h3&gt;&lt;h2 style=&quot;background-color:{CFBgColor};color:{CFColor}&quot;&gt;Class and Function Header&lt;/h2&gt;Standard body text with &lt;a style=&quot;color:{LinkColor}&quot;&gt;some links&lt;/a&gt; embedded.&lt;/body&gt;&lt;/html&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18126,22 +18126,22 @@
         <translation>&lt;b&gt;Eric Dökümanı Uygulaması&lt;/b&gt;&lt;p&gt;Bu Eric döküman oluşturma komutunun hatalarını gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="82"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="84"/>
         <source>{0} - {1}</source>
         <translation>{0} - {1}</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="89"/>
         <source>Process Generation Error</source>
         <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="89"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="129"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="138"/>
         <source>
 {0} finished.
 </source>
@@ -18149,7 +18149,7 @@
 {0} tamamlandı.</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="120"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="126"/>
         <source>
 {0} crashed.
 </source>
@@ -18237,17 +18237,17 @@
         <translation type="unfinished">Yoksay ama hatırla</translation>
     </message>
     <message>
-        <location filename="../UI/ErrorLogDialog.py" line="44"/>
+        <location filename="../UI/ErrorLogDialog.py" line="45"/>
         <source>Delete</source>
         <translation type="unfinished">Sil</translation>
     </message>
     <message>
-        <location filename="../UI/ErrorLogDialog.py" line="45"/>
-        <source>Close</source>
-        <translation type="unfinished">Kapat</translation>
-    </message>
-    <message>
         <location filename="../UI/ErrorLogDialog.py" line="46"/>
+        <source>Close</source>
+        <translation type="unfinished">Kapat</translation>
+    </message>
+    <message>
+        <location filename="../UI/ErrorLogDialog.py" line="47"/>
         <source>Error Log</source>
         <translation type="unfinished">Hata Kaydı</translation>
     </message>
@@ -18770,22 +18770,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="110"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="111"/>
         <source>Allow</source>
         <translation type="unfinished">Kabul etmek</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="111"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="112"/>
         <source>Deny</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="133"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="134"/>
         <source>{0} wants to use an unknown feature.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="108"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="109"/>
         <source>Remember</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18833,12 +18833,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="161"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="165"/>
         <source>Host</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="162"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="166"/>
         <source>Permission</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18848,17 +18848,17 @@
         <translation type="obsolete">Kaldır</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="68"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="69"/>
         <source>Geolocation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="186"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="191"/>
         <source>Allow</source>
         <translation type="unfinished">Kabul etmek</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="187"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="193"/>
         <source>Deny</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18873,32 +18873,32 @@
         <translation type="unfinished">Hepsini K&amp;aldır</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="83"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="85"/>
         <source>Microphone</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="98"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="101"/>
         <source>Camera</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="113"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="117"/>
         <source>Microphone &amp;&amp; Camera</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="129"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="133"/>
         <source>Mouse Lock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="147"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="151"/>
         <source>Desktop Video</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="163"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="167"/>
         <source>Desktop Audio &amp;&amp; Video</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18954,17 +18954,17 @@
         <translation type="unfinished">Ekle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="86"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="87"/>
         <source>Add RSS Feed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="81"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="82"/>
         <source>The feed was added successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="86"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="87"/>
         <source>The feed was already added before.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19022,67 +19022,67 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="182"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="183"/>
         <source>Duplicate Feed URL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="182"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="183"/>
         <source>A feed with the URL {0} exists already. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="204"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="205"/>
         <source>Delete Feed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="204"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="205"/>
         <source>&lt;p&gt;Do you really want to delete the feed &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="316"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="317"/>
         <source>Error fetching feed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="346"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="347"/>
         <source>&amp;Open</source>
         <translation type="unfinished">&amp;Aç</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="348"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="349"/>
         <source>Open in New &amp;Tab</source>
         <translation type="unfinished">Yeni Se&amp;kmede Aç</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="359"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="360"/>
         <source>&amp;Copy URL to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="366"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="367"/>
         <source>&amp;Show error data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="483"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="490"/>
         <source>Error loading feed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="350"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="351"/>
         <source>Open in New &amp;Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="353"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="354"/>
         <source>Open in New &amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="355"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="356"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19737,42 +19737,42 @@
         <translation>Bul</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="740"/>
+        <location filename="../UI/FindFileDialog.py" line="744"/>
         <source>Replace in Files</source>
         <translation>Dosyalarda yer değiştir</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="450"/>
+        <location filename="../UI/FindFileDialog.py" line="453"/>
         <source>Invalid search expression</source>
         <translation>Geçersiz arama ifadesi</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="450"/>
+        <location filename="../UI/FindFileDialog.py" line="453"/>
         <source>&lt;p&gt;The search expression is not valid.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="699"/>
+        <location filename="../UI/FindFileDialog.py" line="703"/>
         <source>&lt;p&gt;Could not read the file &lt;b&gt;{0}&lt;/b&gt;. Skipping it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="740"/>
+        <location filename="../UI/FindFileDialog.py" line="744"/>
         <source>&lt;p&gt;Could not save the file &lt;b&gt;{0}&lt;/b&gt;. Skipping it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="767"/>
+        <location filename="../UI/FindFileDialog.py" line="771"/>
         <source>Open</source>
         <translation>Aç</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="768"/>
+        <location filename="../UI/FindFileDialog.py" line="772"/>
         <source>Copy Path to Clipboard</source>
         <translation>Yolu Panoya kopyala</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="714"/>
+        <location filename="../UI/FindFileDialog.py" line="718"/>
         <source>&lt;p&gt;The current and the original hash of the file &lt;b&gt;{0}&lt;/b&gt; are different. Skipping it.&lt;/p&gt;&lt;p&gt;Hash 1: {1}&lt;/p&gt;&lt;p&gt;Hash 2: {2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19782,13 +19782,13 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="573"/>
+        <location filename="../UI/FindFileDialog.py" line="576"/>
         <source>{0} / {1}</source>
         <comment>occurrences / files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../UI/FindFileDialog.py" line="574"/>
+        <location filename="../UI/FindFileDialog.py" line="577"/>
         <source>%n occurrence(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -19796,7 +19796,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../UI/FindFileDialog.py" line="574"/>
+        <location filename="../UI/FindFileDialog.py" line="577"/>
         <source>%n file(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -19917,7 +19917,7 @@
         <translation>Aramayı durdurmak için bas</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileNameDialog.py" line="58"/>
+        <location filename="../UI/FindFileNameDialog.py" line="59"/>
         <source>Opens the selected file</source>
         <translation>Seçilen dosya açılıyor</translation>
     </message>
@@ -20964,7 +20964,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitArchiveDataDialog.py" line="83"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitArchiveDataDialog.py" line="85"/>
         <source>Select Archive File</source>
         <translation type="unfinished"></translation>
     </message>
@@ -21042,22 +21042,22 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="52"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="54"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="54"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="56"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="173"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="173"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
@@ -21178,12 +21178,12 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
@@ -21393,7 +21393,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBranchPushDialog.py" line="34"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBranchPushDialog.py" line="35"/>
         <source>&lt;all branches&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -21707,7 +21707,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitCopyDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitCopyDialog.py" line="90"/>
         <source>Select target</source>
         <translation type="unfinished">Hedefi seç</translation>
     </message>
@@ -21775,12 +21775,12 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="115"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="115"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
@@ -21843,37 +21843,37 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="82"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="88"/>
         <source>Additional Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="110"/>
         <source>Process canceled.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="112"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="125"/>
         <source>Process finished successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="127"/>
         <source>Process crashed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="129"/>
         <source>Process finished with exit code {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="182"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="182"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
@@ -21916,82 +21916,82 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="90"/>
         <source>Working Tree to Staging Area</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="89"/>
-        <source>Staging Area to HEAD Commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="90"/>
-        <source>Working Tree to HEAD Commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="91"/>
-        <source>Working to Staging (top) and Staging to HEAD (bottom)</source>
+        <source>Staging Area to HEAD Commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="92"/>
+        <source>Working Tree to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="93"/>
+        <source>Working to Staging (top) and Staging to HEAD (bottom)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="95"/>
         <source>Stash Contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="96"/>
         <source>Stash Contents of {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="166"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="168"/>
         <source>Difference ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="174"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="174"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="198"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="200"/>
         <source>There is no difference.</source>
         <translation type="unfinished">Herhangi bir farklılık bulunamadı.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="219"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="225"/>
         <source>&lt;Start&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="220"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="226"/>
         <source>&lt;End&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="355"/>
         <source>Save Diff</source>
         <translation type="unfinished">Farklılıkları Kaydet</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="314"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="322"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished">Patch Dosyaları (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="331"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="339"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Yama dosyası &lt;b&gt;{0}&lt;/b&gt;  zaten var. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="355"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt;yama kaydedilemedi.&lt;br&gt;Sebep: {1}&lt;/p&gt;</translation>
     </message>
@@ -22150,12 +22150,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="110"/>
         <source>Commit ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="111"/>
         <source>Author</source>
         <translation type="unfinished">Yazar</translation>
     </message>
@@ -22165,7 +22165,7 @@
         <translation type="unfinished">Tarih</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="112"/>
         <source>Committer</source>
         <translation type="unfinished"></translation>
     </message>
@@ -22175,7 +22175,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="110"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="113"/>
         <source>Subject</source>
         <translation type="unfinished"></translation>
     </message>
@@ -22250,7 +22250,7 @@
         <translation type="unfinished">den Kopyala</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2095"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2113"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
@@ -22310,328 +22310,328 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="97"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="96"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="99"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
         <source>Find</source>
         <translation type="unfinished">Bul</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="108"/>
         <source>Filter</source>
         <translation type="unfinished">Süzgeç</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="111"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="114"/>
         <source>File</source>
         <translation type="unfinished">Dosya</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="131"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit ID&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2} &amp;lt;{3}&amp;gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5} &amp;lt;{6}&amp;gt;&lt;/td&gt;&lt;/tr&gt;{7}&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;{9}&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="140"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Esas&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="143"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Children&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation type="unfinished"></translation>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Esas&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="146"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branşlar&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Children&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="149"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Etiketler&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branşlar&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="152"/>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Etiketler&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="155"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Message&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="203"/>
-        <source>Added</source>
-        <translation type="unfinished">Eklendi</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="204"/>
-        <source>Deleted</source>
-        <translation type="unfinished">Silindi</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="205"/>
-        <source>Modified</source>
-        <translation type="unfinished">Değiştirildi</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="206"/>
-        <source>Copied</source>
-        <translation type="unfinished"></translation>
+        <source>Added</source>
+        <translation type="unfinished">Eklendi</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="207"/>
-        <source>Renamed</source>
-        <translation type="unfinished"></translation>
+        <source>Deleted</source>
+        <translation type="unfinished">Silindi</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="208"/>
-        <source>Type changed</source>
-        <translation type="unfinished"></translation>
+        <source>Modified</source>
+        <translation type="unfinished">Değiştirildi</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="209"/>
-        <source>Unmerged</source>
+        <source>Copied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="210"/>
+        <source>Renamed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="211"/>
+        <source>Type changed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="212"/>
+        <source>Unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="213"/>
         <source>Unknown</source>
         <translation type="unfinished">Bilinmeyen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="246"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="249"/>
         <source>Show Commit ID Column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="248"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="251"/>
         <source>Press to show the commit ID column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="256"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="259"/>
         <source>Show Author Columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="258"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="261"/>
         <source>Press to show the author columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="266"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="269"/>
         <source>Show Committer Columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="268"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="271"/>
         <source>Press to show the committer columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="276"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="279"/>
         <source>Show Branches Column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="278"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="281"/>
         <source>Press to show the branches column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="286"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="289"/>
         <source>Show Tags Column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="291"/>
         <source>Press to show the Tags column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="315"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="318"/>
         <source>Copy Commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="317"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="320"/>
         <source>Cherry-pick the selected commits to the current branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="322"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="325"/>
         <source>Tag</source>
         <translation type="unfinished">Etiket</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="324"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="327"/>
         <source>Tag the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1789"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1807"/>
         <source>Branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="328"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="331"/>
         <source>Create a new branch at the selected commit.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="330"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="333"/>
         <source>Branch &amp;&amp; Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="332"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="335"/>
         <source>Create a new branch at the selected commit and switch the work tree to it.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1859"/>
         <source>Switch</source>
         <translation type="unfinished">Değiştirmek</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="338"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="341"/>
         <source>Switch the working directory to the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1867"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1885"/>
         <source>Show Short Log</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="344"/>
-        <source>Show a dialog with a log output for release notes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="347"/>
+        <source>Show a dialog with a log output for release notes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="350"/>
         <source>Describe</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="349"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="352"/>
         <source>Show the most recent tag reachable from a commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="634"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="639"/>
         <source>The git process did not finish within 30s.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="637"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="642"/>
         <source>Could not start the git executable.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="640"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="645"/>
         <source>Git Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="756"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="761"/>
         <source>{0} ({1}%)</source>
         <comment>action, confidence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="819"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="827"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="819"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="827"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1262"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1280"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1274"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1292"/>
         <source>&lt;a href=&quot;sbsdiff:{0}_{1}&quot;&gt;Side-by-Side Compare&lt;/a&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1721"/>
         <source>Copy Changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1859"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished">Projenin yeniden okunması gerekiyor. Şimdi yapılsın mı?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1867"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1885"/>
         <source>Select a branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1820"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1838"/>
         <source>Select a default branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1820"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1838"/>
         <source>Branch &amp; Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2049"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2067"/>
         <source>Find Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2049"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2067"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished">&apos;{0}&apos; bulunamadı.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2127"/>
         <source>Differences to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2124"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2142"/>
         <source>Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2150"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2168"/>
         <source>There is no difference.</source>
         <translation type="unfinished">Herhangi bir farklılık bulunamadı.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2312"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2330"/>
         <source>Save Diff</source>
         <translation type="unfinished">Farklılıkları Kaydet</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2279"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2297"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished">Patch Dosyaları (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2296"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2314"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Yama dosyası &lt;b&gt;{0}&lt;/b&gt;  zaten var. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2312"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2330"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt;yama kaydedilemedi.&lt;br&gt;Sebep: {1}&lt;/p&gt;</translation>
     </message>
@@ -22811,12 +22811,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="87"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="88"/>
         <source>Select Repository-Directory</source>
         <translation type="unfinished">Kaynak Havuzu- Dizinin Seç</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="102"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="103"/>
         <source>Select Project Directory</source>
         <translation type="unfinished">Proje Dizinini Seç</translation>
     </message>
@@ -22973,7 +22973,7 @@
 <context>
     <name>GitPatchFilesDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="82"/>
         <source>Patch Files</source>
         <translation type="unfinished"></translation>
     </message>
@@ -23028,7 +23028,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="82"/>
         <source>Patch Files (*.diff *.patch);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -23066,12 +23066,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
@@ -25096,22 +25096,22 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="54"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="56"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="56"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="58"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="198"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="198"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
@@ -25303,12 +25303,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="144"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="148"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="144"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="148"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
@@ -25607,57 +25607,57 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="60"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="63"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="62"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="65"/>
         <source>Press to refresh the list of stashes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="77"/>
-        <source>Show</source>
-        <translation type="unfinished">Göster</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="80"/>
+        <source>Show</source>
+        <translation type="unfinished">Göster</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="83"/>
         <source>Restore &amp;&amp; Keep</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="82"/>
-        <source>Restore &amp;&amp; Delete</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="85"/>
-        <source>Create Branch</source>
+        <source>Restore &amp;&amp; Delete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="88"/>
+        <source>Create Branch</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="91"/>
         <source>Delete</source>
         <translation type="unfinished">Sil</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="93"/>
         <source>Delete All</source>
         <translation type="unfinished">Hepsini Sil</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="176"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="183"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="176"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="183"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="363"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="377"/>
         <source>%n file(s) changed</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -25665,7 +25665,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="365"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="379"/>
         <source>%n line(s) inserted</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -25673,7 +25673,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="367"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="381"/>
         <source>%n line(s) deleted</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -25742,7 +25742,7 @@
 <context>
     <name>GitStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="379"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="386"/>
         <source>Git Status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -25768,7 +25768,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="647"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="665"/>
         <source>Commit</source>
         <translation type="unfinished">Teslimat</translation>
     </message>
@@ -25853,312 +25853,312 @@
         <translation type="unfinished">Durum göstergesini yenilemek için bas</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="102"/>
         <source>Stage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="106"/>
         <source>Revert Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="110"/>
         <source>Stage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="112"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="114"/>
         <source>Revert Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="120"/>
         <source>Unstage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="122"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="124"/>
         <source>Unstage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="163"/>
-        <source>added</source>
-        <translation type="unfinished">eklendi</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="164"/>
-        <source>copied</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="165"/>
-        <source>deleted</source>
-        <translation type="unfinished">silinmiş</translation>
+        <source>added</source>
+        <translation type="unfinished">eklendi</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="166"/>
-        <source>modified</source>
-        <translation type="unfinished">değiştirildi</translation>
+        <source>copied</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="167"/>
-        <source>renamed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="169"/>
-        <source>not tracked</source>
-        <translation type="unfinished">izlenmedi</translation>
+        <source>deleted</source>
+        <translation type="unfinished">silinmiş</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="168"/>
-        <source>unmerged</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="162"/>
-        <source>unmodified</source>
-        <translation type="unfinished"></translation>
+        <source>modified</source>
+        <translation type="unfinished">değiştirildi</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="169"/>
+        <source>renamed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="171"/>
+        <source>not tracked</source>
+        <translation type="unfinished">izlenmedi</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
+        <source>unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="164"/>
+        <source>unmodified</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="172"/>
         <source>ignored</source>
         <translation type="unfinished">yoksayıldı</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="188"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="190"/>
         <source>Commit the selected changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="189"/>
-        <source>Amend</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="191"/>
-        <source>Amend the latest commit with the selected changes</source>
+        <source>Amend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="193"/>
-        <source>Select all for commit</source>
+        <source>Amend the latest commit with the selected changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="195"/>
+        <source>Select all for commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="197"/>
         <source>Unselect all from commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="688"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="706"/>
         <source>Add</source>
         <translation type="unfinished">Ekle</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="201"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="203"/>
         <source>Add the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="202"/>
-        <source>Stage changes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="204"/>
-        <source>Stages all changes of the selected files</source>
+        <source>Stage changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="206"/>
-        <source>Unstage changes</source>
+        <source>Stages all changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="208"/>
+        <source>Unstage changes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210"/>
         <source>Unstages all changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="824"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="842"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="215"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="217"/>
         <source>Shows the differences of the selected entry in a separate dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="218"/>
-        <source>Differences Side-By-Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="220"/>
+        <source>Differences Side-By-Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="222"/>
         <source>Shows the differences of the selected entry side-by-side in a separate dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789"/>
         <source>Revert</source>
         <translation type="unfinished">Başa Dönme</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="228"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="230"/>
         <source>Reverts the changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="233"/>
-        <source>Forget missing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="235"/>
-        <source>Forgets about the selected missing files</source>
+        <source>Forget missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="237"/>
-        <source>Restore missing</source>
+        <source>Forgets about the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="239"/>
+        <source>Restore missing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="241"/>
         <source>Restores the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244"/>
-        <source>Edit file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="246"/>
+        <source>Edit file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="248"/>
         <source>Edit the selected conflicting file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="251"/>
-        <source>Adjust column sizes</source>
-        <translation type="unfinished">Sütün boyutunu ayarla</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253"/>
+        <source>Adjust column sizes</source>
+        <translation type="unfinished">Sütün boyutunu ayarla</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="255"/>
         <source>Adjusts the width of all columns to their contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="414"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="414"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="581"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="599"/>
         <source>all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="647"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="665"/>
         <source>There are no entries selected to be committed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="688"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="706"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="710"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="728"/>
         <source>Stage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="710"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="728"/>
         <source>There are no stageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="732"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="750"/>
         <source>Unstage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="732"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="750"/>
         <source>There are no unstageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="754"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="772"/>
         <source>Forget Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="795"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="813"/>
         <source>There are no missing entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789"/>
         <source>There are no uncommitted, unstaged changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="795"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="813"/>
         <source>Restore Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="824"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="842"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="876"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
         <source>Working Tree to Staging Area</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="855"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="873"/>
         <source>Staging Area to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="877"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="895"/>
         <source>Working Tree to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="879"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="897"/>
         <source>Side-by-Side Difference</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="879"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="897"/>
         <source>Select the compare method.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1188"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1212"/>
         <source>Revert selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1190"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1214"/>
         <source>Revert hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1191"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1215"/>
         <source>Are you sure you want to revert the selected changes?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26255,12 +26255,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="103"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="105"/>
         <source>Select Submodule Repository Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="129"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="131"/>
         <source>Select Submodule Directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26645,12 +26645,12 @@
 &lt;p&gt;Bu diyalog proje etiket yada branş listesini gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="95"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="97"/>
         <source>Commit</source>
         <translation type="unfinished">Teslimat</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="95"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="97"/>
         <source>Name</source>
         <translation type="unfinished">Adı</translation>
     </message>
@@ -26700,22 +26700,22 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="92"/>
         <source>Annotation Message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="96"/>
         <source>Git Branches List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="133"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="133"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
@@ -27621,7 +27621,7 @@
 <context>
     <name>HelpDocsInstaller</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpDocsInstaller.py" line="239"/>
+        <location filename="../WebBrowser/QtHelp/HelpDocsInstaller.py" line="241"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be registered. &lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -27825,22 +27825,22 @@
         <translation>A&amp;ra :</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="205"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="211"/>
         <source>Open Link</source>
         <translation>Açık Bağlantı</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="206"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="212"/>
         <source>Open Link in New Tab</source>
         <translation>Yeni Sekmede Yeni Bağlantı Aç</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="207"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="213"/>
         <source>Open Link in Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="209"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="215"/>
         <source>Open Link in New Window</source>
         <translation type="unfinished"></translation>
     </message>
@@ -27919,22 +27919,22 @@
 <context>
     <name>HelpSearchWidget</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="145"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="150"/>
         <source>Open Link</source>
         <translation>Açık Bağlantı</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="146"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="151"/>
         <source>Open Link in New Tab</source>
         <translation>Yeni Sekmede Yeni Bağlantı Aç</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="147"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="152"/>
         <source>Open Link in Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="149"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="154"/>
         <source>Open Link in New Window</source>
         <translation type="unfinished"></translation>
     </message>
@@ -28050,22 +28050,22 @@
 <context>
     <name>HelpTocWidget</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="158"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="164"/>
         <source>Open Link</source>
         <translation>Açık Bağlantı</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="159"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="165"/>
         <source>Open Link in New Tab</source>
         <translation>Yeni Sekmede Yeni Bağlantı Aç</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="160"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="166"/>
         <source>Open Link in Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="162"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="168"/>
         <source>Open Link in New Window</source>
         <translation type="unfinished"></translation>
     </message>
@@ -30484,12 +30484,12 @@
         <translation type="unfinished">Yardım</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="798"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="801"/>
         <source>&lt;p&gt;This part of the status bar displays the edit mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="806"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="810"/>
         <source>&lt;p&gt;This part of the status bar displays the read only mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -30499,111 +30499,111 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="790"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="792"/>
         <source>&lt;p&gt;This part of the status bar displays the size of the binary data.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="862"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="867"/>
         <source>ro</source>
         <translation type="unfinished">ro</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="862"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="867"/>
         <source>rw</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="880"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="885"/>
         <source>Overwrite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="880"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="885"/>
         <source>Insert</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="942"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="947"/>
         <source>Open binary file in new window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1061"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1066"/>
         <source>All Files (*)</source>
         <translation type="unfinished">Tüm Dosyalar (*)</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="963"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="968"/>
         <source>The loaded file has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="981"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="986"/>
         <source>The file &apos;{0}&apos; does not exist.</source>
         <translation type="unfinished">&apos;{0}&apos; dosyası mevcut değil.</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="988"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="993"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation type="unfinished">Dosya okunumıyor &apos;{0}:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1014"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1019"/>
         <source>Open binary file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1071"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1076"/>
         <source>Save binary file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1156"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1161"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası halen mevcut. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1181"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1186"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation type="unfinished">Dosyaya yazılamıyor &apos;{0}:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1187"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1192"/>
         <source>File saved</source>
         <translation type="unfinished">Dosya Kaydedildi</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1156"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1161"/>
         <source>Save to readable file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1140"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1145"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished">Metin Dosyaları (*.txt);;Tüm Dosyalar (*)</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1140"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1145"/>
         <source>Text Files (*.txt)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1223"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1228"/>
         <source>Untitled</source>
         <translation type="unfinished">Başlıksız</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1227"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1232"/>
         <source>{0}[*] - {1}</source>
         <translation type="unfinished">{0}[*] - {1}</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1227"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1232"/>
         <source>Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
@@ -30633,12 +30633,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="782"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="783"/>
         <source>&lt;p&gt;This part of the status bar displays some selection information.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="851"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="856"/>
         <source>Selection: -</source>
         <comment>no selection available</comment>
         <translation type="unfinished"></translation>
@@ -30659,18 +30659,18 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="826"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="831"/>
         <source>Address: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="845"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="850"/>
         <source>Selection: {0} - {1} ({2} Bytes)</source>
         <comment>0: start, 1: end, 2: selection length</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="899"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="904"/>
         <source>Size: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -30680,22 +30680,22 @@
         <translation type="unfinished">Geçmiş Dosyala&amp;rı Aç</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1431"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1436"/>
         <source>&amp;Clear</source>
         <translation type="unfinished">T&amp;emizle</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1181"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1186"/>
         <source>eric Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1284"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1289"/>
         <source>About eric Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1284"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1289"/>
         <source>The eric Hex Editor is a simple editor component to edit binary files.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -31841,7 +31841,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBackoutDialog.py" line="174"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBackoutDialog.py" line="176"/>
         <source>Backed out changeset &lt;{0}&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -31869,7 +31869,7 @@
 <context>
     <name>HgBookmarkDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="46"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="47"/>
         <source>Define Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
@@ -31974,7 +31974,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="43"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="44"/>
         <source>Move Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32076,12 +32076,12 @@
         <translation type="obsolete">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="46"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="48"/>
         <source>Mercurial Incoming Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="48"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="50"/>
         <source>Mercurial Outgoing Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32096,7 +32096,7 @@
         <translation type="obsolete">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="121"/>
         <source>no bookmarks found</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32196,7 +32196,7 @@
         <translation type="obsolete">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="125"/>
         <source>no bookmarks defined</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32211,67 +32211,67 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="247"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="258"/>
         <source>Switch to</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="251"/>
-        <source>Delete</source>
-        <translation type="unfinished">Sil</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="254"/>
-        <source>Rename</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="258"/>
-        <source>Pull</source>
-        <translation type="unfinished">Çekmek</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="262"/>
+        <source>Delete</source>
+        <translation type="unfinished">Sil</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="265"/>
+        <source>Rename</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="269"/>
+        <source>Pull</source>
+        <translation type="unfinished">Çekmek</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="273"/>
         <source>Push</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="299"/>
         <source>Switch</source>
         <translation type="unfinished">Değiştirmek</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="299"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished">Projenin yeniden okunması gerekiyor. Şimdi yapılsın mı?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="318"/>
         <source>Delete Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="318"/>
         <source>&lt;p&gt;Shall the bookmark &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="323"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="334"/>
         <source>Rename Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="323"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="334"/>
         <source>&lt;p&gt;Enter the new name for bookmark &lt;b&gt;{0}&lt;/b&gt;:&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="267"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="278"/>
         <source>Push Current</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="272"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="283"/>
         <source>Push All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32691,7 +32691,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="173"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="183"/>
         <source>Resolved</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32701,7 +32701,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="171"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="181"/>
         <source>Unresolved</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32771,12 +32771,12 @@
         <translation type="obsolete">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="51"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="54"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="53"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="56"/>
         <source>Press to refresh the list of conflicts</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32791,7 +32791,7 @@
         <translation type="obsolete">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="175"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="185"/>
         <source>Unknown Status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32963,52 +32963,52 @@
         <translation>Hatalar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="101"/>
         <source>Process Generation Error</source>
         <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="101"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="120"/>
         <source>There is no difference.</source>
         <translation>Herhangi bir farklılık bulunamadı.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="245"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="254"/>
         <source>Save Diff</source>
         <translation>Farklılıkları Kaydet</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="213"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="222"/>
         <source>Patch Files (*.diff)</source>
         <translation>Patch Dosyaları (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="245"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="254"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt;yama kaydedilemedi.&lt;br&gt;Sebep: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="230"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="239"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Yama dosyası &lt;b&gt;{0}&lt;/b&gt;  zaten var. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="91"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="93"/>
         <source>Patch Contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="137"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="143"/>
         <source>&lt;Start&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="138"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="144"/>
         <source>&lt;End&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -33289,7 +33289,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="218"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="228"/>
         <source>Revision</source>
         <translation type="unfinished">Gözden Geçirme</translation>
     </message>
@@ -33374,7 +33374,7 @@
         <translation type="obsolete">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="95"/>
         <source>no signatures found</source>
         <translation type="unfinished"></translation>
     </message>
@@ -33852,17 +33852,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="131"/>
         <source>Revision</source>
         <translation>Gözden Geçirme</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="129"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="132"/>
         <source>Author</source>
         <translation>Yazar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="130"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="133"/>
         <source>Message</source>
         <translation>Mesaj</translation>
     </message>
@@ -33977,22 +33977,22 @@
         <translation type="obsolete">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="208"/>
         <source>Added</source>
         <translation>Eklendi</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="206"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="209"/>
         <source>Deleted</source>
         <translation>Silindi</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="207"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="210"/>
         <source>Modified</source>
         <translation>Değiştirildi</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="842"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="847"/>
         <source>Mercurial Error</source>
         <translation type="unfinished"></translation>
     </message>
@@ -34027,53 +34027,53 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="190"/>
         <source>All</source>
         <translation>Hepsi</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="222"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="225"/>
         <source>Bookmarks</source>
         <translation type="unfinished">Yerimleri</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="117"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="120"/>
         <source>Press to refresh the list of changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="118"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="132"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="135"/>
         <source>Phase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="274"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="277"/>
         <source>Change the phase of the selected revisions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="276"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="279"/>
         <source>&lt;b&gt;Change Phase&lt;/b&gt;
 &lt;p&gt;This changes the phase of the selected revisions. The selected revisions have to have the same current phase.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="272"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="275"/>
         <source>Change Phase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1997"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2016"/>
         <source>Copy Changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2302"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2321"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished">Projenin yeniden okunması gerekiyor. Şimdi yapılsın mı?</translation>
     </message>
@@ -34083,42 +34083,42 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="266"/>
         <source>Copy the selected changesets to the current branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="281"/>
-        <source>Tag</source>
-        <translation type="unfinished">Etiket</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="284"/>
+        <source>Tag</source>
+        <translation type="unfinished">Etiket</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="287"/>
         <source>Tag the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2068"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2087"/>
         <source>Switch</source>
         <translation type="unfinished">Değiştirmek</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="294"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="297"/>
         <source>Switch the working directory to the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="317"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="320"/>
         <source>Pull Large Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="319"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="322"/>
         <source>Pull large files for selected revisions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1135"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1146"/>
         <source>{0} (large file)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -34143,137 +34143,137 @@
         <translation type="unfinished">Sonraki eşlişmeyi bulmak için basınız</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="128"/>
         <source>Find</source>
         <translation type="unfinished">Bul</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="126"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="129"/>
         <source>Filter</source>
         <translation type="unfinished">Süzgeç</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="172"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Etiketler&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="175"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="178"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2443"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2462"/>
         <source>Find Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2443"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2462"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished">&apos;{0}&apos; bulunamadı.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="134"/>
         <source>File</source>
         <translation type="unfinished">Dosya</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="211"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="214"/>
         <source>Draft</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="212"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="215"/>
         <source>Public</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="213"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="216"/>
         <source>Secret</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2165"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2184"/>
         <source>Pull Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="315"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="318"/>
         <source>Pull changes from a remote repository</source>
         <translation type="unfinished">Değişiklileri uzak kaynak havuzundan çek</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="324"/>
-        <source>Push Selected Changes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="327"/>
-        <source>Push changes of the selected changeset and its ancestors to a remote repository</source>
+        <source>Push Selected Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="330"/>
-        <source>Push All Changes</source>
+        <source>Push changes of the selected changeset and its ancestors to a remote repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="333"/>
+        <source>Push All Changes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="336"/>
         <source>Push all changes to a remote repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2211"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2230"/>
         <source>Strip Changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="376"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="379"/>
         <source>Strip changesets from a repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="299"/>
-        <source>Define Bookmark...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="302"/>
+        <source>Define Bookmark...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="305"/>
         <source>Bookmark the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="304"/>
-        <source>Move Bookmark...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="307"/>
+        <source>Move Bookmark...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="310"/>
         <source>Move bookmark to the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2091"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2110"/>
         <source>Define Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2091"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2110"/>
         <source>Enter bookmark name for changeset &quot;{0}&quot;:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2134"/>
         <source>Move Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2134"/>
         <source>Select the bookmark to be moved  to changeset &quot;{0}&quot;:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2054"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2073"/>
         <source>Select bookmark to switch to (leave empty to use revision):</source>
         <translation type="unfinished"></translation>
     </message>
@@ -34288,143 +34288,143 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="175"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Latest Tag&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="156"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branch&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;{4}&lt;tr&gt;&lt;td&gt;&lt;b&gt;Message&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="163"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Esas&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="166"/>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Esas&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="169"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Children&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="266"/>
-        <source>Merge with Changeset</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="269"/>
+        <source>Merge with Changeset</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="272"/>
         <source>Merge the working directory with the selected changeset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="338"/>
-        <source>Create Changegroup</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="341"/>
+        <source>Create Changegroup</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="344"/>
         <source>Create a changegroup file containing the selected changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="343"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="346"/>
         <source>&lt;b&gt;Create Changegroup&lt;/b&gt;
 &lt;p&gt;This creates a changegroup file containing the selected revisions. If no revisions are selected, all changesets will be bundled. If one revision is selected, it will be interpreted as the base revision. Otherwise the lowest revision will be used as the base revision and all other revision will be bundled. If the dialog is showing outgoing changesets, all selected changesets will be bundled.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2302"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2321"/>
         <source>Apply Changegroup</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="355"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="358"/>
         <source>Apply the currently viewed changegroup file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="360"/>
-        <source>Sign Revisions</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="363"/>
+        <source>Sign Revisions</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="366"/>
         <source>Add a signature for the selected revisions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="365"/>
-        <source>Verify Signatures</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="368"/>
+        <source>Verify Signatures</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="371"/>
         <source>Verify all signatures there may be for the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="381"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="384"/>
         <source>Select All Entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="383"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="386"/>
         <source>Deselect All Entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1376"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1392"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1387"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1403"/>
         <source>&lt;a href=&quot;sbsdiff:{0}_{1}&quot;&gt;Side-by-Side Compare&lt;/a&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1523"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1539"/>
         <source>Pull Selected Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2487"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2506"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2497"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2516"/>
         <source>Differences to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2513"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2532"/>
         <source>Diff to Parent {0}{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2538"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2557"/>
         <source>There is no difference.</source>
         <translation type="unfinished">Herhangi bir farklılık bulunamadı.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2680"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2699"/>
         <source>Save Diff</source>
         <translation type="unfinished">Farklılıkları Kaydet</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2648"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2667"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished">Patch Dosyaları (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2665"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2684"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Yama dosyası &lt;b&gt;{0}&lt;/b&gt;  zaten var. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2680"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2699"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt;yama kaydedilemedi.&lt;br&gt;Sebep: {1}&lt;/p&gt;</translation>
     </message>
@@ -34434,7 +34434,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2486"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2505"/>
         <source>Generating differences ...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -34444,12 +34444,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="286"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="289"/>
         <source>Close Heads</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="289"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="292"/>
         <source>Close the selected heads</source>
         <translation type="unfinished"></translation>
     </message>
@@ -36483,22 +36483,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="206"/>
         <source>Remove Guards</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="206"/>
         <source>Do you really want to remove the selected guards?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="253"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="258"/>
         <source>Apply Guard Definitions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="253"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="258"/>
         <source>&lt;p&gt;The defined guards could not be applied.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -36559,7 +36559,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesGuardsSelectionDialog.py" line="44"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesGuardsSelectionDialog.py" line="46"/>
         <source>Active Guards</source>
         <translation type="unfinished"></translation>
     </message>
@@ -36582,7 +36582,7 @@
         <translation type="obsolete">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py" line="118"/>
         <source>Error: </source>
         <translation type="unfinished"></translation>
     </message>
@@ -36700,32 +36700,32 @@
         <translation type="obsolete">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="138"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="145"/>
         <source>no patches found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="43"/>
-        <source>applied</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="45"/>
-        <source>guarded</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="46"/>
+        <source>applied</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="48"/>
+        <source>guarded</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="49"/>
         <source>missing</source>
         <translation type="unfinished">kayıp</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="193"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="205"/>
         <source>unknown</source>
         <translation type="unfinished">bilinmeyen</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="44"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="47"/>
         <source>not applied</source>
         <translation type="unfinished"></translation>
     </message>
@@ -36879,12 +36879,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="67"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="68"/>
         <source>Refresh</source>
         <translation type="unfinished">Tazele</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="69"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="70"/>
         <source>Press to refresh the queues list</source>
         <translation type="unfinished"></translation>
     </message>
@@ -37643,27 +37643,27 @@
         <translation type="obsolete">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="49"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="52"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="51"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="54"/>
         <source>Press to refresh the list of shelves</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="60"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="63"/>
         <source>Restore selected shelve</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="62"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="65"/>
         <source>Delete selected shelves</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="64"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="67"/>
         <source>Delete all shelves</source>
         <translation type="unfinished"></translation>
     </message>
@@ -37678,7 +37678,7 @@
         <translation type="obsolete">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="266"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="280"/>
         <source>%n file(s) changed</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -37686,7 +37686,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="268"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="282"/>
         <source>%n line(s) inserted</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -37694,7 +37694,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="270"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="284"/>
         <source>%n line(s) deleted</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -37776,7 +37776,7 @@
 <context>
     <name>HgStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="310"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="314"/>
         <source>Mercurial Status</source>
         <translation>Mercurial Durumu</translation>
     </message>
@@ -37853,47 +37853,47 @@
         <translation>Durum göstergesini yenilemek için bas</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="124"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="126"/>
         <source>Commit the selected changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="190"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="192"/>
         <source>Adjust column sizes</source>
         <translation type="unfinished">Sütün boyutunu ayarla</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="96"/>
         <source>added</source>
         <translation>eklendi</translation>
     </message>
     <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="99"/>
+        <source>modified</source>
+        <translation>değiştirildi</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="100"/>
+        <source>removed</source>
+        <translation>kaldırılmış</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="101"/>
+        <source>not tracked</source>
+        <translation>izlenmedi</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="102"/>
+        <source>missing</source>
+        <translation>kayıp</translation>
+    </message>
+    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="97"/>
-        <source>modified</source>
-        <translation>değiştirildi</translation>
+        <source>normal</source>
+        <translation>normal</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="98"/>
-        <source>removed</source>
-        <translation>kaldırılmış</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="99"/>
-        <source>not tracked</source>
-        <translation>izlenmedi</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="100"/>
-        <source>missing</source>
-        <translation>kayıp</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="95"/>
-        <source>normal</source>
-        <translation>normal</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="96"/>
         <source>ignored</source>
         <translation>yoksayıldı</translation>
     </message>
@@ -37908,37 +37908,37 @@
         <translation type="obsolete">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="494"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="506"/>
         <source>Commit</source>
         <translation>Teslimat</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="660"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="672"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="558"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="570"/>
         <source>Add</source>
         <translation>Ekle</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="558"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="570"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="581"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="593"/>
         <source>Remove</source>
         <translation>Kaldır</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="622"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="634"/>
         <source>There are no missing entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="622"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="634"/>
         <source>Revert</source>
         <translation>Başa Dönme</translation>
     </message>
@@ -37953,102 +37953,102 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="174"/>
         <source>Restore missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="416"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="428"/>
         <source>all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="640"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="652"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="494"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="506"/>
         <source>There are no entries selected to be committed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="125"/>
-        <source>Select all for commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="307"/>
-        <source>Mercurial Queue Repository Status</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="667"/>
-        <source>Side-by-Side Diff</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="667"/>
-        <source>Only one file with uncommitted changes must be selected.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="135"/>
-        <source>Add as Large Files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="140"/>
-        <source>Add as Normal Files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="168"/>
-        <source>Forget missing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="127"/>
-        <source>Unselect all from commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="134"/>
-        <source>Add the selected files</source>
+        <source>Select all for commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="311"/>
+        <source>Mercurial Queue Repository Status</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="679"/>
+        <source>Side-by-Side Diff</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="679"/>
+        <source>Only one file with uncommitted changes must be selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="137"/>
-        <source>Add the selected files as a large files using the &apos;Large Files&apos; extension</source>
+        <source>Add as Large Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="142"/>
+        <source>Add as Normal Files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="170"/>
+        <source>Forget missing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="129"/>
+        <source>Unselect all from commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="136"/>
+        <source>Add the selected files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="139"/>
+        <source>Add the selected files as a large files using the &apos;Large Files&apos; extension</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="144"/>
         <source>Add the selected files as a normal files using the &apos;Large Files&apos; extension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="150"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="152"/>
         <source>Shows the differences of the selected entry in a separate dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="153"/>
-        <source>Differences Side-By-Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="155"/>
+        <source>Differences Side-By-Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="157"/>
         <source>Shows the differences of the selected entry side-by-side in a separate dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="163"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="165"/>
         <source>Reverts the changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="172"/>
         <source>Forgets about the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
@@ -38058,37 +38058,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="174"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="176"/>
         <source>Restores the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="194"/>
         <source>Adjusts the width of all columns to their contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="179"/>
-        <source>Commit Merge</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="181"/>
-        <source>Commit all the merged changes.</source>
+        <source>Commit Merge</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="183"/>
-        <source>Abort Merge</source>
+        <source>Commit all the merged changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="185"/>
+        <source>Abort Merge</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="187"/>
         <source>Abort an uncommitted merge and lose all changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="761"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="779"/>
         <source>Merge</source>
         <translation type="unfinished">Birleştir</translation>
     </message>
@@ -38258,152 +38258,152 @@
         <translation type="obsolete">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="234"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="236"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="238"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="240"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished">&lt;tr&gt;&lt;td&gt;&lt;b&gt;Etiketler&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="242"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="244"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Message&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="248"/>
-        <source>empty repository</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="250"/>
+        <source>empty repository</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="252"/>
         <source>no revision checked out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="251"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="253"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Remarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="255"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="257"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branch&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="265"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="270"/>
-        <source>{0} modified</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="272"/>
-        <source>{0} added</source>
+        <source>{0} modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="274"/>
-        <source>{0} removed</source>
+        <source>{0} added</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="276"/>
-        <source>{0} renamed</source>
+        <source>{0} removed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="278"/>
-        <source>{0} copied</source>
+        <source>{0} renamed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="280"/>
-        <source>{0} deleted</source>
+        <source>{0} copied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="282"/>
-        <source>{0} unknown</source>
+        <source>{0} deleted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="284"/>
-        <source>{0} ignored</source>
+        <source>{0} unknown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="286"/>
+        <source>{0} ignored</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="288"/>
         <source>{0} unresolved</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="289"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="291"/>
         <source>{0} subrepos</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="292"/>
-        <source>Merge needed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="294"/>
-        <source>New Branch</source>
+        <source>Merge needed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="296"/>
-        <source>Head is closed</source>
+        <source>New Branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="298"/>
-        <source>No commit required</source>
+        <source>Head is closed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="300"/>
+        <source>No commit required</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="302"/>
         <source>New Branch Head</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="301"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="303"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Status&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="306"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="308"/>
         <source>current</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="321"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="323"/>
         <source>unknown status</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="322"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="324"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Update Status&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="327"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="329"/>
         <source>synched</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="331"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="333"/>
         <source>1 or more incoming changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="335"/>
         <source>%n outgoing changeset(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -38411,42 +38411,42 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="342"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="344"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Remote Status&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="349"/>
         <source>empty queue</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="351"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="353"/>
         <source>{0} applied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="354"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="356"/>
         <source>{0} unapplied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="357"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="359"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Queues Status&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="371"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="373"/>
         <source>&lt;p&gt;No status information available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="230"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="232"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="308"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="310"/>
         <source>%n new changeset(s)&lt;br/&gt;Update required</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -38454,7 +38454,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="312"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="314"/>
         <source>%n new changeset(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -38462,7 +38462,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="314"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="316"/>
         <source>%n branch head(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -38470,13 +38470,13 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="316"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="318"/>
         <source>{0}&lt;br/&gt;{1}&lt;br/&gt;Merge required</source>
         <comment>0 is changesets, 1 is branch heads</comment>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="336"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="338"/>
         <source>%n incoming bookmark(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -38484,7 +38484,7 @@
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="339"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="341"/>
         <source>%n outgoing bookmark(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -38492,12 +38492,12 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="362"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="364"/>
         <source>No files to upload</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="364"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="366"/>
         <source>%n file(s) to upload</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -38505,7 +38505,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="368"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Large Files&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -38597,12 +38597,12 @@
         <translation type="obsolete">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="90"/>
         <source>Mercurial Branches List</source>
         <translation>Mercurial Branş Listesi</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="91"/>
         <source>Status</source>
         <translation>Durum</translation>
     </message>
@@ -38617,62 +38617,62 @@
         <translation type="obsolete">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="200"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="211"/>
         <source>active</source>
         <translation>aktif</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="216"/>
         <source>yes</source>
         <translation>evet</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="42"/>
-        <source>&amp;Refresh</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="44"/>
+        <source>&amp;Refresh</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="46"/>
         <source>Press to refresh the list</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="278"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="292"/>
         <source>Switch to</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="347"/>
         <source>Close Branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="321"/>
         <source>Switch</source>
         <translation type="unfinished">Değiştirmek</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="321"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished">Projenin yeniden okunması gerekiyor. Şimdi yapılsın mı?</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="326"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="340"/>
         <source>The branch &quot;default&quot; cannot be closed. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="347"/>
         <source>&lt;p&gt;Shall the branch &lt;b&gt;{0}&lt;/b&gt; really be closed?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="380"/>
         <source>Close Branches</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="380"/>
         <source>Do you really want to close all listed branches?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -39441,7 +39441,7 @@
         <translation>Seçilen girişi kaldırmak için basınız</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="122"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="123"/>
         <source>&amp;Remove</source>
         <translation>Kaldı&amp;r</translation>
     </message>
@@ -39456,32 +39456,32 @@
         <translation>Hepsini K&amp;aldır</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="105"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="106"/>
         <source>&amp;Open</source>
         <translation>&amp;Aç</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="108"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="109"/>
         <source>Open in New &amp;Tab</source>
         <translation>Yeni Se&amp;kmede Aç</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="121"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="122"/>
         <source>&amp;Copy</source>
         <translation>&amp;Kopyala</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="111"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="112"/>
         <source>Open in New &amp;Background Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="114"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="115"/>
         <source>Open in New &amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="117"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="118"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation type="unfinished"></translation>
     </message>
@@ -39547,12 +39547,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryMenu.py" line="447"/>
+        <location filename="../WebBrowser/History/HistoryMenu.py" line="448"/>
         <source>Restore All Closed Tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryMenu.py" line="450"/>
+        <location filename="../WebBrowser/History/HistoryMenu.py" line="451"/>
         <source>Clear List</source>
         <translation type="unfinished"></translation>
     </message>
@@ -39578,12 +39578,12 @@
 <context>
     <name>HistoryTreeModel</name>
     <message>
-        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="64"/>
+        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="65"/>
         <source>Earlier Today</source>
         <translation>Bugünden Evvelkiler</translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="67"/>
+        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="68"/>
         <source>%n item(s)</source>
         <translation>
             <numerusform>%n madde(ler)</numerusform>
@@ -39696,12 +39696,12 @@
 <context>
     <name>IbmWatsonEngine</name>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="251"/>
+        <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="251"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
         <source>IBM Watson: No translation available.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -39716,12 +39716,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="243"/>
+        <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="231"/>
+        <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>
@@ -39730,102 +39730,102 @@
 <context>
     <name>IconEditorGrid</name>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="208"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="211"/>
         <source>Set Pixel</source>
         <translation>Pikseli Ayarla</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="209"/>
-        <source>Erase Pixel</source>
-        <translation>Pikseli Sil</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="210"/>
-        <source>Draw Line</source>
-        <translation>Çizgi Çizimi</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="211"/>
-        <source>Draw Rectangle</source>
-        <translation>Dikdörtgen çiz</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="212"/>
-        <source>Draw Filled Rectangle</source>
-        <translation>İçidolu Dikdörtgen Çiz</translation>
+        <source>Erase Pixel</source>
+        <translation>Pikseli Sil</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="213"/>
-        <source>Draw Circle</source>
-        <translation>Çember Çiz</translation>
+        <source>Draw Line</source>
+        <translation>Çizgi Çizimi</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="214"/>
-        <source>Draw Filled Circle</source>
-        <translation>Daire Çİz</translation>
+        <source>Draw Rectangle</source>
+        <translation>Dikdörtgen çiz</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="215"/>
-        <source>Draw Ellipse</source>
-        <translation>Elips Çiz</translation>
+        <source>Draw Filled Rectangle</source>
+        <translation>İçidolu Dikdörtgen Çiz</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="216"/>
-        <source>Draw Filled Ellipse</source>
-        <translation>İçi Dolu Elips Çiz</translation>
+        <source>Draw Circle</source>
+        <translation>Çember Çiz</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="217"/>
+        <source>Draw Filled Circle</source>
+        <translation>Daire Çİz</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="218"/>
+        <source>Draw Ellipse</source>
+        <translation>Elips Çiz</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="219"/>
+        <source>Draw Filled Ellipse</source>
+        <translation>İçi Dolu Elips Çiz</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="220"/>
         <source>Fill Region</source>
         <translation>Alanı Doldur</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="846"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="853"/>
         <source>Cut Selection</source>
         <translation>Seçimi Kes</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="905"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="912"/>
         <source>Paste</source>
         <translation>Yapıştır</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="905"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="912"/>
         <source>&lt;p&gt;The clipboard image is larger than the current image.&lt;br/&gt;Paste as new image?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Panodaki görüntü geçerli görüntüden daha büyük.&lt;br/&gt;Yeni bir resim olarak yapıştırılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="918"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="925"/>
         <source>Paste Clipboard</source>
         <translation>Panoyu Yapıştır</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="936"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="943"/>
         <source>Pasting Image</source>
         <translation>Görüntüyü Yapıştır</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="936"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="943"/>
         <source>Invalid image data in clipboard.</source>
         <translation>Panoyu Yeni Bir Resim Olarak Yapıştır.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="947"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="954"/>
         <source>Paste Clipboard as New Image</source>
         <translation>Panoya Yeni görüntü olarak yapıştır</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="976"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="983"/>
         <source>Clear Image</source>
         <translation>Görüntüyü Temizle</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="996"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="1003"/>
         <source>Resize Image</source>
         <translation>Görüntüyü Yeniden Boyutlandır</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="1023"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="1030"/>
         <source>Convert to Grayscale</source>
         <translation>Gri renge çevir</translation>
     </message>
@@ -39833,57 +39833,57 @@
 <context>
     <name>IconEditorPalette</name>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="48"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="49"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This is a 1:1 preview of the current icon.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Öngörünüm&lt;/b&gt;&lt;p&gt;Bu 1:1 ölçekte geçerli iconun öngörünümüdür.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="58"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="60"/>
         <source>&lt;b&gt;Current Color&lt;/b&gt;&lt;p&gt;This is the currently selected color used for drawing.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Geçerli Renk&lt;/b&gt;&lt;p&gt;Bu çizimde kullanılmak üzere seçilmiş geçerli renktir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="66"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="69"/>
         <source>&lt;b&gt;Current Color Value&lt;/b&gt;&lt;p&gt;This is the currently selected color value used for drawing.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Geçerli Renk Değeri&lt;/b&gt;&lt;p&gt;Bu çizimde kullanılmak üzere seçilmiş rengin değeridir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="73"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="76"/>
         <source>Select Color</source>
         <translation>Rengi Seç</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="74"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="77"/>
         <source>&lt;b&gt;Select Color&lt;/b&gt;&lt;p&gt;Select the current drawing color via a color selection dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Renk Seç&lt;/b&gt;&lt;p&gt;Çizim rengini renk seçim diyaloğu ile belirleyiniz.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="84"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="87"/>
         <source>&lt;b&gt;Select alpha channel value&lt;/b&gt;&lt;p&gt;Select the value for the alpha channel of the current color.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Alfa kanal değerini seçiniz&lt;/b&gt;&lt;p&gt;Geçerli rengin alfa kanal değirini seçiniz.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="92"/>
-        <source>Compositing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorPalette.py" line="95"/>
+        <source>Compositing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorPalette.py" line="98"/>
         <source>Replace</source>
         <translation>Yerdeğiştir</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="97"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="100"/>
         <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Replace the existing pixel with a new color.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="103"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="106"/>
         <source>Blend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="105"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="108"/>
         <source>&lt;b&gt;Blend&lt;/b&gt;&lt;p&gt;Blend the new color over the existing pixel.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -39891,1037 +39891,1037 @@
 <context>
     <name>IconEditorWindow</name>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="125"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="126"/>
         <source>Windows Bitmap File (*.bmp)</source>
         <translation>Windows Bitmap Dosyası (*.bmp)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="128"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="129"/>
         <source>Graphic Interchange Format File (*.gif)</source>
         <translation>Graphic Interchange Format Dosyası (*.gif)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="130"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="131"/>
         <source>Windows Icon File (*.ico)</source>
         <translation>Windows İkon Dosyası (*.ico)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="132"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="133"/>
         <source>JPEG File (*.jpg)</source>
         <translation>JPEG Dosyası (*.jpg)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="134"/>
-        <source>Multiple-Image Network Graphics File (*.mng)</source>
-        <translation>Çoklu-Resim Ağ Grafik Dosyası (*.mng)</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="135"/>
-        <source>Portable Bitmap File (*.pbm)</source>
-        <translation>Portable Bitmap Dosyası (*.pbm)</translation>
+        <source>Multiple-Image Network Graphics File (*.mng)</source>
+        <translation>Çoklu-Resim Ağ Grafik Dosyası (*.mng)</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="136"/>
-        <source>Paintbrush Bitmap File (*.pcx)</source>
-        <translation>Paintbrush Bitmap Dosyası (*.pcx)</translation>
+        <source>Portable Bitmap File (*.pbm)</source>
+        <translation>Portable Bitmap Dosyası (*.pbm)</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="137"/>
-        <source>Portable Graymap File (*.pgm)</source>
-        <translation>Portable Graymap Dosyası (*.pgm)</translation>
+        <source>Paintbrush Bitmap File (*.pcx)</source>
+        <translation>Paintbrush Bitmap Dosyası (*.pcx)</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="138"/>
-        <source>Portable Network Graphics File (*.png)</source>
-        <translation>Portable Network Graphics Dosyası (*.png)</translation>
+        <source>Portable Graymap File (*.pgm)</source>
+        <translation>Portable Graymap Dosyası (*.pgm)</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="139"/>
-        <source>Portable Pixmap File (*.ppm)</source>
-        <translation>Portable Pixmap Dosyası (*.ppm)</translation>
+        <source>Portable Network Graphics File (*.png)</source>
+        <translation>Portable Network Graphics Dosyası (*.png)</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="140"/>
-        <source>Silicon Graphics Image File (*.sgi)</source>
-        <translation>Silikon Gragik Resim Dosyası (*.sgi)</translation>
+        <source>Portable Pixmap File (*.ppm)</source>
+        <translation>Portable Pixmap Dosyası (*.ppm)</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="141"/>
+        <source>Silicon Graphics Image File (*.sgi)</source>
+        <translation>Silikon Gragik Resim Dosyası (*.sgi)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="142"/>
         <source>Scalable Vector Graphics File (*.svg)</source>
         <translation>Ölçeklenebilir Vektörel Grafik Dosyası (*.svg)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="144"/>
-        <source>Targa Graphic File (*.tga)</source>
-        <translation>Targa Gragik Dosyası (*.tga)</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="145"/>
+        <source>Targa Graphic File (*.tga)</source>
+        <translation>Targa Gragik Dosyası (*.tga)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="146"/>
         <source>TIFF File (*.tif)</source>
         <translation>TIFF Dosyası (*.tif)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="149"/>
-        <source>X11 Bitmap File (*.xbm)</source>
-        <translation>X11 Bitmap Dosyası (*.xbm)</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="150"/>
+        <source>X11 Bitmap File (*.xbm)</source>
+        <translation>X11 Bitmap Dosyası (*.xbm)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="151"/>
         <source>X11 Pixmap File (*.xpm)</source>
         <translation>X11 Pixmap Dosyası (*.xpm)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="161"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="162"/>
         <source>All Files (*)</source>
         <translation>Tüm Dosyalar (*)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
         <source>New</source>
         <translation>Yeni</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
         <source>&amp;New</source>
         <translation>Ye&amp;ni</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="199"/>
-        <source>Create a new icon</source>
-        <translation>Yeni bir ikon oluştur</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="200"/>
+        <source>Create a new icon</source>
+        <translation>Yeni bir ikon oluştur</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="201"/>
         <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;This creates a new icon.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Yeni&lt;/b&gt;&lt;p&gt;Bu yeni bir icon oluşturur.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="207"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="208"/>
         <source>New Window</source>
         <translation>Yeni Pencere</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="207"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="208"/>
         <source>New &amp;Window</source>
         <translation>Yeni &amp;Pencere</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="212"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="213"/>
         <source>Open a new icon editor window</source>
         <translation>Yeni bir ikon düzenlem penceresi aç</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="214"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="215"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new icon editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Yeni Pencere&lt;/b&gt;&lt;p&gt;Bu yeni bir ikon düzenleme penceresi açar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
         <source>Open</source>
         <translation>Aç</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
         <source>&amp;Open...</source>
         <translation>&amp;Aç...</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="227"/>
-        <source>Open an icon file for editing</source>
-        <translation>Düzenlemek için bir ikon dosyası aç</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="228"/>
+        <source>Open an icon file for editing</source>
+        <translation>Düzenlemek için bir ikon dosyası aç</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="229"/>
         <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new icon file for editing. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
         <source>Save</source>
         <translation>Kaydet</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
         <source>&amp;Save</source>
         <translation>&amp;Kaydet</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation>Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="242"/>
-        <source>Save the current icon</source>
-        <translation>Geçerli ikonu kaydet</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="243"/>
+        <source>Save the current icon</source>
+        <translation>Geçerli ikonu kaydet</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="244"/>
         <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of the icon editor window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
         <source>Save As</source>
         <translation>Farklı Kaydet</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
         <source>Save &amp;As...</source>
         <translation>Farklı K&amp;aydet...</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="256"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="257"/>
         <source>Save the current icon to a new file</source>
         <translation>Geçerli ikonu yeni bir dosyaya kaydet</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="258"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="259"/>
         <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current icon to a new file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Farklı Kaydet...&lt;/b&gt;&lt;p&gt;Geçerli ikonu yeni bir dosyaya kaydet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
         <source>Close</source>
         <translation>Kapat</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
         <source>&amp;Close</source>
         <translation>&amp;Kapat</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="271"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="272"/>
         <source>Close the current icon editor window</source>
         <translation>Geçerli ikon düzenleme penceresini kapat</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="273"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="274"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current icon editor window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kapat&lt;/b&gt;&lt;p&gt;Geçerli ikon düzenleyici penceresini kapat.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="280"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="281"/>
         <source>Close All</source>
         <translation>Hepsini Kapat</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="280"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="281"/>
         <source>Close &amp;All</source>
         <translation>Hepsini K&amp;apat</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="284"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="285"/>
         <source>Close all icon editor windows</source>
         <translation>Tüm ikon düzenleme pencerelerini kapat</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="286"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="287"/>
         <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all icon editor windows except the first one.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Hepsini Kapat&lt;/b&gt;&lt;p&gt;İlk açılan haricinde tüm ikon düzenleme pencerelerini kapat.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
         <source>Quit</source>
         <translation>Çık</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
         <source>&amp;Quit</source>
         <translation>&amp;Çıkış</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="312"/>
-        <source>Quit the icon editor</source>
-        <translation>İkon düzenleyiciden çık</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="313"/>
+        <source>Quit the icon editor</source>
+        <translation>İkon düzenleyiciden çık</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="314"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the icon editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Çıkış&lt;/b&gt;&lt;p&gt;İcon düzenleyicidn çık.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>Undo</source>
         <translation>Geri Al</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>&amp;Undo</source>
         <translation>&amp;Geri al</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="332"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="333"/>
         <source>Undo the last change</source>
         <translation>Enson değişikliği geri al</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="333"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="334"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
         <source>Redo</source>
         <translation>İleri al</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
         <source>&amp;Redo</source>
         <translation>&amp;İleri al</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="346"/>
-        <source>Redo the last change</source>
-        <translation>Son değişikliği ileri al</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="347"/>
+        <source>Redo the last change</source>
+        <translation>Son değişikliği ileri al</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="348"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Cut</source>
         <translation>Kes</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Cu&amp;t</source>
         <translation>Ke&amp;s</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="361"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="362"/>
         <source>Cut the selection</source>
         <translation>Seçimi kes</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="362"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="363"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kes&lt;/b&gt;&lt;p&gt;Seçilen resim alanı panoya aktararak keser.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>Copy</source>
         <translation>Kopyala</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>&amp;Copy</source>
         <translation>&amp;Kopyala</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="376"/>
-        <source>Copy the selection</source>
-        <translation>Seçimi kopyala</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="377"/>
+        <source>Copy the selection</source>
+        <translation>Seçimi kopyala</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="378"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected image area to the clipboard.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Kopya&lt;/b&gt;&lt;p&gt;Seçilen görüntüyü panoya kopyala.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>Paste</source>
         <translation>Yapıştır</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>&amp;Paste</source>
         <translation>Ya&amp;pıştır</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="391"/>
-        <source>Paste the clipboard image</source>
-        <translation>Panodaki görüntüyü yapıştır</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="392"/>
+        <source>Paste the clipboard image</source>
+        <translation>Panodaki görüntüyü yapıştır</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="393"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Yapıştır&lt;/b&gt;&lt;p&gt;Panodaki resmi yapıştır.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="399"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
         <source>Paste as New</source>
         <translation>Yeni olarak yapıştır</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="399"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
         <source>Paste as &amp;New</source>
         <translation>Ye&amp;ni olarak yapıştır</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="403"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="404"/>
         <source>Paste the clipboard image replacing the current one</source>
         <translation>Mevcut bir tanesinin üzerine panodan bir resim yapıştır</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="405"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="406"/>
         <source>&lt;b&gt;Paste as New&lt;/b&gt;&lt;p&gt;Paste the clipboard image replacing the current one.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
         <source>Clear</source>
         <translation>Temizle</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
         <source>Cl&amp;ear</source>
         <translation>T&amp;emizle</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="419"/>
-        <source>Clear the icon image</source>
-        <translation>İkon görüntüsünü temizle</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="420"/>
+        <source>Clear the icon image</source>
+        <translation>İkon görüntüsünü temizle</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="421"/>
         <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Clear the icon image and set it to be completely transparent.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Temizle&lt;/b&gt;&lt;p&gt;İkon resmini temizle ve tamamını transparan yap.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
         <source>Select All</source>
         <translation>Hepsini Seç</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
         <source>&amp;Select All</source>
         <translation>Hep&amp;sini Seç</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation>Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="434"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="435"/>
         <source>Select the complete icon image</source>
         <translation>Tüm ikon resmini seç</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="436"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="437"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Selects the complete icon image.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="444"/>
         <source>Change Size</source>
         <translation>Boyutları Değiştir</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="444"/>
         <source>Change Si&amp;ze...</source>
         <translation>Boyutları De&amp;ğiştir...</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="449"/>
-        <source>Change the icon size</source>
-        <translation>İkon boyutunu değiştir</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="450"/>
+        <source>Change the icon size</source>
+        <translation>İkon boyutunu değiştir</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="451"/>
         <source>&lt;b&gt;Change Size...&lt;/b&gt;&lt;p&gt;Changes the icon size.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Boyut Değşikliği...&lt;/b&gt;&lt;p&gt;İkon boyutunu değiştirir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="457"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="458"/>
         <source>Grayscale</source>
         <translation>Griskala</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="457"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="458"/>
         <source>&amp;Grayscale</source>
         <translation>&amp;Griskala</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="463"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="464"/>
         <source>Change the icon to grayscale</source>
         <translation>İkonu griskala ya çevir</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="465"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="466"/>
         <source>&lt;b&gt;Grayscale&lt;/b&gt;&lt;p&gt;Changes the icon to grayscale.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
         <source>Zoom in</source>
         <translation>Büyüt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
         <source>Zoom &amp;in</source>
         <translation>Bü&amp;yült</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="500"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="501"/>
         <source>Zoom in on the icon</source>
         <translation>İkın üzerinde büyüt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="501"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="502"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the icon. This makes the grid bigger.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
         <source>Zoom out</source>
         <translation>Küçült</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
         <source>Zoom &amp;out</source>
         <translation>Küçü&amp;lt</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="514"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="515"/>
         <source>Zoom out on the icon</source>
         <translation>İkon üzerinde küçült</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="515"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="516"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the icon. This makes the grid smaller.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
         <source>Zoom reset</source>
         <translation>Büyütmeyi sıfırla</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
         <source>Zoom &amp;reset</source>
         <translation>Büyütmeyi sıfı&amp;rla</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="528"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="529"/>
         <source>Reset the zoom of the icon</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="530"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="531"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the icon. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="538"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="539"/>
         <source>Show Grid</source>
         <translation>Grid Çizgilerini Göster</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="538"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="539"/>
         <source>Show &amp;Grid</source>
         <translation>&amp;Grid Çizgilerini Göster</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="544"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="545"/>
         <source>Toggle the display of the grid</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="546"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="547"/>
         <source>&lt;b&gt;Show Grid&lt;/b&gt;&lt;p&gt;Toggle the display of the grid.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="565"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
         <source>Freehand</source>
         <translation>Serbest çizim</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="565"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
         <source>&amp;Freehand</source>
         <translation>&amp;Serbest çizim</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="571"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="572"/>
         <source>&lt;b&gt;Free hand&lt;/b&gt;&lt;p&gt;Draws non linear lines.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Serbest Çizim&lt;/b&gt;&lt;p&gt;Düzgün olmayan çizgiler çizer.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="580"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="581"/>
         <source>Color Picker</source>
         <translation>Renk Toplayıcı</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="580"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="581"/>
         <source>&amp;Color Picker</source>
         <translation>Renk Toplayı&amp;cı</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="586"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="587"/>
         <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="597"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
         <source>Rectangle</source>
         <translation>Dikdörtgen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="597"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
         <source>&amp;Rectangle</source>
         <translation>Dikdö&amp;rtgen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="603"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="604"/>
         <source>&lt;b&gt;Rectangle&lt;/b&gt;&lt;p&gt;Draw a rectangle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Dikdörtgen&lt;/b&gt;&lt;p&gt;Bir dikdörtgen çiz.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="612"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="613"/>
         <source>Filled Rectangle</source>
         <translation>İçidolu Dikdörtgen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="612"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="613"/>
         <source>F&amp;illed Rectangle</source>
         <translation>İçido&amp;lu Dikdörtgen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="618"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="619"/>
         <source>&lt;b&gt;Filled Rectangle&lt;/b&gt;&lt;p&gt;Draw a filled rectangle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="628"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
         <source>Circle</source>
         <translation>Çember</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="634"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="635"/>
         <source>&lt;b&gt;Circle&lt;/b&gt;&lt;p&gt;Draw a circle.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Çember&lt;/b&gt;&lt;p&gt;Bir çember çiz.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="643"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="644"/>
         <source>Filled Circle</source>
         <translation>Daire</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="643"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="644"/>
         <source>Fille&amp;d Circle</source>
         <translation>&amp;Daire</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="649"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="650"/>
         <source>&lt;b&gt;Filled Circle&lt;/b&gt;&lt;p&gt;Draw a filled circle.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="659"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
         <source>Ellipse</source>
         <translation>Elips</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="659"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
         <source>&amp;Ellipse</source>
         <translation>&amp;Elips</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="665"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="666"/>
         <source>&lt;b&gt;Ellipse&lt;/b&gt;&lt;p&gt;Draw an ellipse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Elips&lt;/b&gt;&lt;p&gt;Bir elips çiz.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="674"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="675"/>
         <source>Filled Ellipse</source>
         <translation>İçidolu Elips</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="674"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="675"/>
         <source>Fille&amp;d Elli&amp;pse</source>
         <translation>İçi dolu Eli&amp;ps</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="680"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="681"/>
         <source>&lt;b&gt;Filled Ellipse&lt;/b&gt;&lt;p&gt;Draw a filled ellipse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;İçi dolu Elips&lt;/b&gt;&lt;p&gt;İçi dolu bir elips çiz.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="690"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="691"/>
         <source>Flood Fill</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="690"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="691"/>
         <source>Fl&amp;ood Fill</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="696"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="697"/>
         <source>&lt;b&gt;Flood Fill&lt;/b&gt;&lt;p&gt;Fill adjoining pixels with the same color with the current color.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="706"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
         <source>Line</source>
         <translation>Satır</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="706"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
         <source>&amp;Line</source>
         <translation>&amp;Satır</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="712"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="713"/>
         <source>&lt;b&gt;Line&lt;/b&gt;&lt;p&gt;Draw a line.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="721"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
         <source>Eraser (Transparent)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="721"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
         <source>Eraser (&amp;Transparent)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="727"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="728"/>
         <source>&lt;b&gt;Eraser (Transparent)&lt;/b&gt;&lt;p&gt;Erase pixels by setting them to transparent.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="736"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="737"/>
         <source>Rectangular Selection</source>
         <translation>Köşeli Seçim</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="753"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="754"/>
         <source>Rect&amp;angular Selection</source>
         <translation>Kö&amp;şeli Seçim</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="742"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="743"/>
         <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="753"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="754"/>
         <source>Circular Selection</source>
         <translation>Dairesel Seçim</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="759"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="760"/>
         <source>&lt;b&gt;Circular Selection&lt;/b&gt;&lt;p&gt;Select a circular section of the icon using the mouse.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Dairesel seçim&lt;/b&gt;&lt;p&gt;Fareyi kullanarak ikon üzerinde dairesel bir alanı seçiniz.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="776"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
         <source>About</source>
         <translation>Hakkında</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="776"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
         <source>&amp;About</source>
         <translation>H&amp;akkında</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="780"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="781"/>
         <source>Display information about this software</source>
         <translation>Bu yazılım hakkında bilgi göster</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="782"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="783"/>
         <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="../IconEditor/IconEditorWindow.py" line="788"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
         <source>About Qt</source>
         <translation>Qt Hakkında</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="788"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
         <source>About &amp;Qt</source>
         <translation>&amp;Qt Hakkında</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="792"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="793"/>
         <source>Display information about the Qt toolkit</source>
         <translation>Qt araçkiti hakkında bilgi göster</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="794"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="795"/>
         <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="../IconEditor/IconEditorWindow.py" line="801"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
         <source>What&apos;s This?</source>
         <translation>Bu nedir?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="801"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
         <source>&amp;What&apos;s This?</source>
         <translation>Bu &amp;Nedir?</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="801"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="807"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="808"/>
         <source>Context sensitive help</source>
         <translation>Duyarlı yardım</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="808"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="809"/>
         <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="../IconEditor/IconEditorWindow.py" line="825"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="826"/>
         <source>&amp;File</source>
         <translation>&amp;Dosya</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="842"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="843"/>
         <source>&amp;Edit</source>
         <translation>Düz&amp;en</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="858"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="859"/>
         <source>&amp;View</source>
         <translation>&amp;Görünüm</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="866"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="867"/>
         <source>&amp;Tools</source>
         <translation>&amp;Araçlar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="885"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="886"/>
         <source>&amp;Help</source>
         <translation>&amp;Yardım</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="895"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="896"/>
         <source>File</source>
         <translation>Dosya</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="909"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="910"/>
         <source>Edit</source>
         <translation>Düzen</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="922"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="923"/>
         <source>View</source>
         <translation>Görünüm</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="927"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="928"/>
         <source>Tools</source>
         <translation>Araçlar</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="945"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="946"/>
         <source>Help</source>
         <translation>Yardım</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="959"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="960"/>
         <source>&lt;p&gt;This part of the status bar displays the icon size.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="966"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="967"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1062"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1069"/>
         <source>Open icon file</source>
         <translation>İkon dosyasını aç</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1112"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1119"/>
         <source>Save icon file</source>
         <translation>İkon dosyasını kaydet</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1148"/>
-        <source>The file &apos;{0}&apos; does not exist.</source>
-        <translation>&apos;{0}&apos; dosyası mevcut değil.</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="1155"/>
+        <source>The file &apos;{0}&apos; does not exist.</source>
+        <translation>&apos;{0}&apos; dosyası mevcut değil.</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1162"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation>Dosya okunumıyor &apos;{0}:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1189"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1196"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation>Dosyaya yazılamıyor &apos;{0}:
 {1}.</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1201"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1208"/>
         <source>Icon saved</source>
         <translation>İkon kaydedildi</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1216"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1223"/>
         <source>Untitled</source>
         <translation>Başlıksız</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1227"/>
         <source>{0}[*] - {1}</source>
         <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1227"/>
         <source>Icon Editor</source>
         <translation>İkon Düzenleyici</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1112"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1119"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası halen mevcut. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1241"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1248"/>
         <source>The icon image has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="133"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="134"/>
         <source>JPEG File (*.jpeg)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="142"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="143"/>
         <source>Compressed Scalable Vector Graphics File (*.svgz)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="146"/>
-        <source>TIFF File (*.tiff)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="147"/>
+        <source>TIFF File (*.tiff)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="148"/>
         <source>WAP Bitmap File (*.wbmp)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -40941,57 +40941,57 @@
         <translation type="obsolete">Eric5İcon Düzenleyici icon çizme görevlerini yerine getirmek için hazırlanmış basit bir düzenleyici bileşenidir. {6 ?}</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="293"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="294"/>
         <source>Close Others</source>
         <translation type="unfinished">Diğerlerini Kapat</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="297"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="298"/>
         <source>Close all other icon editor windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="299"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="300"/>
         <source>&lt;b&gt;Close Others&lt;/b&gt;&lt;p&gt;Closes all other icon editor windows.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="148"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="149"/>
         <source>WebP Image File (*.webp)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="126"/>
-        <source>Windows Cursor File (*.cur)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="127"/>
+        <source>Windows Cursor File (*.cur)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="128"/>
         <source>DirectDraw-Surface File (*.dds)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="129"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="130"/>
         <source>Apple Icon File (*.icns)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="131"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="132"/>
         <source>JPEG2000 File (*.jp2)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1241"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1248"/>
         <source>eric Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1331"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1338"/>
         <source>About eric Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1331"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1338"/>
         <source>The eric Icon Editor is a simple editor component to perform icon drawing tasks.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -41261,22 +41261,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="175"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="176"/>
         <source>Include Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="175"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="176"/>
         <source>Select Include Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="388"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="391"/>
         <source>Undefine Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="388"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="391"/>
         <source>Enter a variable name to be undefined:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -41787,52 +41787,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="70"/>
+        <location filename="../UI/InstallInfoDialog.py" line="71"/>
         <source>Yes</source>
         <translation type="unfinished">Evet</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="70"/>
+        <location filename="../UI/InstallInfoDialog.py" line="71"/>
         <source>No</source>
         <translation type="unfinished">Hayır</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="74"/>
+        <location filename="../UI/InstallInfoDialog.py" line="75"/>
         <source>&apos;eric-ide&apos; was installed from PyPI using the pip command.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="80"/>
+        <location filename="../UI/InstallInfoDialog.py" line="81"/>
         <source>The information shown in this dialog was guessed at the first start of eric.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="98"/>
+        <location filename="../UI/InstallInfoDialog.py" line="99"/>
         <source>Load Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="98"/>
+        <location filename="../UI/InstallInfoDialog.py" line="99"/>
         <source>&lt;p&gt;The file containing the install information could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="150"/>
+        <location filename="../UI/InstallInfoDialog.py" line="151"/>
         <source>Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="150"/>
+        <location filename="../UI/InstallInfoDialog.py" line="151"/>
         <source>The install information was edited. Unsaved changes will be lost. Save first?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="187"/>
+        <location filename="../UI/InstallInfoDialog.py" line="188"/>
         <source>Save Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="187"/>
+        <location filename="../UI/InstallInfoDialog.py" line="188"/>
         <source>&lt;p&gt;The file containing the install information could not be written.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -41842,17 +41842,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="60"/>
+        <location filename="../UI/InstallInfoDialog.py" line="61"/>
         <source>Installed as Administrator:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="62"/>
+        <location filename="../UI/InstallInfoDialog.py" line="63"/>
         <source>Installed with sudo:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="92"/>
+        <location filename="../UI/InstallInfoDialog.py" line="93"/>
         <source>unknown</source>
         <translation type="unfinished">bilinmeyen</translation>
     </message>
@@ -41862,7 +41862,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="86"/>
+        <location filename="../UI/InstallInfoDialog.py" line="87"/>
         <source>The installation information was provided by the user.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -41872,22 +41872,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="254"/>
+        <location filename="../UI/InstallInfoDialog.py" line="255"/>
         <source>Upgrade Instructions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="200"/>
+        <location filename="../UI/InstallInfoDialog.py" line="201"/>
         <source>Delete Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="200"/>
+        <location filename="../UI/InstallInfoDialog.py" line="201"/>
         <source>Do you really want to delete the installation information? It will be recreated at the next start.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="227"/>
+        <location filename="../UI/InstallInfoDialog.py" line="228"/>
         <source>Perform the following step(s) with Administrator privileges.
 </source>
         <translation type="unfinished"></translation>
@@ -43130,62 +43130,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="189"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="191"/>
         <source>Edit Identity</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="172"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="174"/>
         <source>The identity must contain at least one nick name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="189"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="191"/>
         <source>The identity must have a real name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="237"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="239"/>
         <source>Add Identity</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="287"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="289"/>
         <source>Identity Name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="297"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="299"/>
         <source>An identity named &lt;b&gt;{0}&lt;/b&gt; already exists. You must provide a different name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="312"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="314"/>
         <source>The identity has to have a name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="312"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="314"/>
         <source>Copy Identity</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="297"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="299"/>
         <source>Rename Identity</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="336"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="338"/>
         <source>This identity is in use. If you remove it, the network settings using it will fall back to the default identity. Should it be deleted anyway?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="341"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="343"/>
         <source>Do you really want to delete all information for this identity?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="344"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="346"/>
         <source>Delete Identity</source>
         <translation type="unfinished"></translation>
     </message>
@@ -43195,12 +43195,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="477"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="480"/>
         <source>Press to show the password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="471"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="474"/>
         <source>Press to hide the password</source>
         <translation type="unfinished"></translation>
     </message>
@@ -43301,22 +43301,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="254"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="258"/>
         <source>Yes</source>
         <translation type="unfinished">Evet</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="256"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="260"/>
         <source>No</source>
         <translation type="unfinished">Hayır</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="185"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="189"/>
         <source>Delete Channel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="185"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="189"/>
         <source>Do you really want to delete channel &lt;b&gt;{0}&lt;/b&gt;?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -43432,7 +43432,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="346"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="348"/>
         <source>Press to connect to the selected network</source>
         <translation type="unfinished"></translation>
     </message>
@@ -43462,57 +43462,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="434"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="436"/>
         <source>Save Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="417"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="419"/>
         <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="434"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="436"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası halen mevcut. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="452"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="454"/>
         <source>Error saving Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="452"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="454"/>
         <source>&lt;p&gt;The messages contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="465"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="467"/>
         <source>Copy</source>
         <translation type="unfinished">Kopyala</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="469"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="471"/>
         <source>Cut all</source>
         <translation type="unfinished">Hepsini kopar</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="472"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="474"/>
         <source>Copy all</source>
         <translation type="unfinished">Hepsini kopyala</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="476"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="478"/>
         <source>Clear</source>
         <translation type="unfinished">Temizle</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="480"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="482"/>
         <source>Save</source>
         <translation type="unfinished">Kaydet</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="341"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="343"/>
         <source>Press to disconnect from the network</source>
         <translation type="unfinished"></translation>
     </message>
@@ -43962,253 +43962,253 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="244"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="245"/>
         <source>Disconnect from Server</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="244"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="245"/>
         <source>&lt;p&gt;Do you really want to disconnect from &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;&lt;p&gt;All channels will be closed.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="186"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="187"/>
         <source>SSL Connection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="186"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="187"/>
         <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="564"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="565"/>
         <source>Info</source>
         <translation type="unfinished">Bilgi</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="219"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="220"/>
         <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="230"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="231"/>
         <source>Looking for server {0} (port {1})...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="253"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="254"/>
         <source>Disconnecting from server {0}...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="519"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="520"/>
         <source>Server found,connecting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="528"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="529"/>
         <source>Connected,logging in...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="564"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="565"/>
         <source>Server disconnected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="611"/>
         <source>Message Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="611"/>
         <source>Unknown message received from server:&lt;br/&gt;{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="676"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="677"/>
         <source>Notice</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="694"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="695"/>
         <source>Mode</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="701"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="702"/>
         <source>You have left channel {0}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="712"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="713"/>
         <source>You are now known as {0}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="717"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="718"/>
         <source>User {0} is now known as {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="727"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="728"/>
         <source>Server Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="763"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="764"/>
         <source>Error</source>
         <translation type="unfinished">Hata</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="778"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="779"/>
         <source>Welcome</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="780"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="781"/>
         <source>Support</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="782"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="783"/>
         <source>User</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="784"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="785"/>
         <source>MOTD</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="786"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="787"/>
         <source>Away</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="788"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="789"/>
         <source>Info ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="792"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="793"/>
         <source>Message of the day</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="794"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="795"/>
         <source>End of message of the day</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="797"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="798"/>
         <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="803"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="804"/>
         <source>Current users on {0}: {1}, max. {2}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="808"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="809"/>
         <source>Current users on the network: {0}, max. {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="812"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="813"/>
         <source>You are no longer marked as being away.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="814"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="815"/>
         <source>You have been marked as being away.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="934"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
         <source>SSL Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="876"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="877"/>
         <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="907"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
         <source>Socket Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="884"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="885"/>
         <source>The host was not found. Please check the host name and port settings.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="890"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="891"/>
         <source>The connection was refused by the peer. Please check the host name and port settings.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="901"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="902"/>
         <source>The following network error occurred:&lt;br/&gt;{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1030"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1031"/>
         <source>{0} ({1})</source>
         <comment>channel name, users count</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1071"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1072"/>
         <source>Critical</source>
         <translation type="unfinished">Kritik</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1052"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1053"/>
         <source>No nickname acceptable to the server configured for &lt;b&gt;{0}&lt;/b&gt;. Disconnecting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1071"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1072"/>
         <source>The given nickname is already in use.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1015"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1016"/>
         <source>CTCP</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="992"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="993"/>
         <source>Received Version request from {0}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="998"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="999"/>
         <source>Received CTCP-PING request from {0}, sending answer.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1006"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1007"/>
         <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1015"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1016"/>
         <source>Received unknown CTCP-{0} request from {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="687"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="688"/>
         <source>You have set your personal modes to &lt;b&gt;[{0}]&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="691"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="692"/>
         <source>{0} has changed your personal modes to &lt;b&gt;[{1}]&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -44223,47 +44223,47 @@
         <translation type="unfinished">Ağ</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="896"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="897"/>
         <source>The SSL handshake failed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="907"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
         <source>A network error occurred.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="920"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="921"/>
         <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="934"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
         <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="258"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="259"/>
         <source>Disconnecting from network {0}...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="263"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="264"/>
         <source>Disconnecting from server.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="643"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="644"/>
         <source>Received CTCP-PING response from {0} with latency of {1} ms.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="649"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="650"/>
         <source>Received unknown CTCP-{0} response from {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="723"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="724"/>
         <source>Received PONG from {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46452,57 +46452,57 @@
 <context>
     <name>Listspace</name>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="257"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="258"/>
         <source>Close</source>
         <translation>Kapat</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="264"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="265"/>
         <source>Close All</source>
         <translation>Hepsini Kapat</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="267"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="268"/>
         <source>Save</source>
         <translation>Kaydet</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="270"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="271"/>
         <source>Save As...</source>
         <translation>Farklı Kaydet...</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="273"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="274"/>
         <source>Save All</source>
         <translation>Hepsini kaydet</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="281"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="282"/>
         <source>Print</source>
         <translation>Yazdır</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="440"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="441"/>
         <source>Untitled {0}</source>
         <translation>Başlıksız {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="581"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="582"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="277"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="278"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="285"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="286"/>
         <source>Copy Path to Clipboard</source>
         <translation type="unfinished">Yolu Panoya kopyala</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="260"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="261"/>
         <source>Close Others</source>
         <translation type="unfinished">Diğerlerini Kapat</translation>
     </message>
@@ -46729,67 +46729,67 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="57"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="58"/>
         <source>Uninstall Selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="60"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="62"/>
         <source>Cancel</source>
         <translation type="unfinished">Vazgeç</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="177"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="180"/>
         <source>Error downloading dictionaries list</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="177"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="180"/>
         <source>&lt;p&gt;Could not download the dictionaries list from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="200"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="203"/>
         <source>Dictionaries URL Changed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="200"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="203"/>
         <source>The URL of the spell check dictionaries has changed. Select the &quot;Refresh&quot; button to get the new dictionaries list.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="212"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="215"/>
         <source>Error installing dictionaries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="212"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="215"/>
         <source>&lt;p&gt;None of the dictionary locations is writable by you. Please download required dictionaries manually and install them as administrator.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="263"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="266"/>
         <source>{0} ({1})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="372"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="376"/>
         <source>Error downloading dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="357"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="361"/>
         <source>&lt;p&gt;Could not download the requested dictionary file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="357"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="361"/>
         <source>Error downloading dictionary file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="372"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="376"/>
         <source>&lt;p&gt;The downloaded dictionary archive is invalid. Skipping it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -46860,22 +46860,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="50"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="51"/>
         <source>Wrong password entered.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="54"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="55"/>
         <source>New password must not be empty.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="61"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="62"/>
         <source>Repeated password is wrong.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="66"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="67"/>
         <source>Old and new password must not be the same.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47359,7 +47359,7 @@
 <context>
     <name>MicroPythonCommandsInterface</name>
     <message>
-        <location filename="../MicroPython/MicroPythonCommandsInterface.py" line="284"/>
+        <location filename="../MicroPython/MicroPythonCommandsInterface.py" line="285"/>
         <source>Detected an error without indications.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47691,22 +47691,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="72"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="73"/>
         <source>max. X:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="81"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="83"/>
         <source>Enter the maximum number of data points to be plotted.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="330"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="332"/>
         <source>Save Chart Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="330"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="332"/>
         <source>&lt;p&gt;The chart data could not be saved into file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47789,7 +47789,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="69"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="77"/>
         <source>All Files (*)</source>
         <translation type="unfinished">Tüm Dosyalar (*)</translation>
     </message>
@@ -47864,37 +47864,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="48"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="49"/>
         <source>Dark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="50"/>
-        <source>Blue Cerulean</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="52"/>
+        <source>Blue Cerulean</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="55"/>
         <source>Brown Sand</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="54"/>
-        <source>Blue NCS</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="56"/>
-        <source>High Contrast</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="58"/>
+        <source>Blue NCS</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="61"/>
+        <source>High Contrast</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="64"/>
         <source>Blue Icy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="60"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="67"/>
         <source>Qt</source>
         <translation type="unfinished">Qt</translation>
     </message>
@@ -48035,17 +48035,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="562"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="566"/>
         <source>Press to connect the selected device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="276"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="278"/>
         <source>&lt;h3&gt;The QtSerialPort package is not available.&lt;br/&gt;MicroPython support is deactivated.&lt;/h3&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../MicroPython/MicroPythonWidget.py" line="318"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="320"/>
         <source>%n supported device(s) detected.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -48053,37 +48053,37 @@
         </translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="340"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="342"/>
         <source>No supported devices detected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="532"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="536"/>
         <source>Clear</source>
         <translation type="unfinished">Temizle</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="534"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="538"/>
         <source>Copy</source>
         <translation type="unfinished">Kopyala</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="535"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="539"/>
         <source>Paste</source>
         <translation type="unfinished">Yapıştır</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="557"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="561"/>
         <source>Press to disconnect the current device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="578"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="582"/>
         <source>No device attached</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="578"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="582"/>
         <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -48092,212 +48092,212 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="605"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="609"/>
         <source>Start REPL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="605"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="609"/>
         <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1054"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1068"/>
         <source>Serial Device Connect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1054"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1068"/>
         <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1099"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1113"/>
         <source>Run Script</source>
         <translation type="unfinished">Betiği Çalıştır</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1082"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1096"/>
         <source>There is no editor open. Abort...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1090"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1104"/>
         <source>The current editor does not contain a script. Abort...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1099"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1113"/>
         <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1123"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1137"/>
         <source>Open Python File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1123"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1137"/>
         <source>Python3 Files (*.py);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1168"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1182"/>
         <source>Start Chart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1168"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1182"/>
         <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1197"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1211"/>
         <source>Unsaved Chart Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1197"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1211"/>
         <source>The chart contains unsaved data.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1248"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1262"/>
         <source>Start File Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1248"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1262"/>
         <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1322"/>
-        <source>Show Version</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1325"/>
-        <source>Show Implementation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1452"/>
-        <source>Synchronize Time</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1333"/>
-        <source>Show Device Time</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../MicroPython/MicroPythonWidget.py" line="1336"/>
+        <source>Show Version</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1339"/>
+        <source>Show Implementation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1466"/>
+        <source>Synchronize Time</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1347"/>
+        <source>Show Device Time</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1350"/>
         <source>Show Local Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1673"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1687"/>
         <source>Compile Python File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1693"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1707"/>
         <source>Compile Current Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1388"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1402"/>
         <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1397"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1411"/>
         <source>No version information available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1399"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1413"/>
         <source>Device Version Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1422"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1436"/>
         <source>unknown</source>
         <translation type="unfinished">bilinmeyen</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1426"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1440"/>
         <source>Device Implementation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1426"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1440"/>
         <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1452"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1466"/>
         <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1475"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1489"/>
         <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1483"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1497"/>
         <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1500"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1514"/>
         <source>Device Date and Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1513"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1527"/>
         <source>Local Date and Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1513"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1527"/>
         <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1581"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1595"/>
         <source>Error handling device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1581"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1595"/>
         <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1621"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1635"/>
         <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1643"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1657"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation type="unfinished">Python Dosyaları (*.py);;Tüm Dosyalar (*)</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1653"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1667"/>
         <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1663"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1677"/>
         <source>&apos;mpy-cross&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1686"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1700"/>
         <source>The current editor does not contain a Python file. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48312,114 +48312,114 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1181"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1195"/>
         <source>&#xc2;&#xb5;Py Chart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1264"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1278"/>
         <source>&#xc2;&#xb5;Py Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1365"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1379"/>
         <source>Show Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1378"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1392"/>
         <source>Configure</source>
         <translation type="unfinished">Yapılandırma</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1339"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1353"/>
         <source>Show Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1358"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1372"/>
         <source>Download Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1556"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1570"/>
         <source>Date and Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1539"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1553"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{0}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1556"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1570"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align=&apos;center&apos;&gt;{0} {1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="410"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="412"/>
         <source>Unknown MicroPython Device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1375"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1389"/>
         <source>Ignored Serial Devices</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1304"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1318"/>
         <source>Downloads</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="323"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="325"/>
         <source>{0} - {1} ({2})</source>
         <comment>board name, description, port name</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="382"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="384"/>
         <source>&lt;p&gt;Detected these unknown serial devices&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please report them together with the board name and a short description to &lt;a href=&quot;mailto:{1}&quot;&gt; the eric bug reporting address&lt;/a&gt; if it is a MicroPython board.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="382"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="384"/>
         <source>{0} (0x{1:04x}/0x{2:04x})</source>
         <comment>description, VId, PId</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="410"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="412"/>
         <source>Would you like to add them to the list of manually configured devices?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1373"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1387"/>
         <source>Manage Unknown Devices</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1778"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1792"/>
         <source>Add Unknown Devices</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1778"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1792"/>
         <source>Select the devices to be added:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1370"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1384"/>
         <source>Flash UF2 Device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="350"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="352"/>
         <source>Manual Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../MicroPython/MicroPythonWidget.py" line="344"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="346"/>
         <source>
 %n unknown device(s) for manual selection.</source>
         <translation type="unfinished">
@@ -48615,599 +48615,599 @@
 <context>
     <name>MiniEditor</name>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="467"/>
+        <location filename="../QScintilla/MiniEditor.py" line="468"/>
         <source>Line: {0:5}</source>
         <translation>Satır: {0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="471"/>
+        <location filename="../QScintilla/MiniEditor.py" line="472"/>
         <source>Pos: {0:5}</source>
         <translation>Pos: {0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>New</source>
         <translation>Yeni</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>&amp;New</source>
         <translation>Ye&amp;ni</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="551"/>
+        <location filename="../QScintilla/MiniEditor.py" line="552"/>
         <source>Open an empty editor window</source>
         <translation>Boş bir düzenleyici penceresi aç</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="552"/>
+        <location filename="../QScintilla/MiniEditor.py" line="553"/>
         <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="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>Open</source>
         <translation>Aç</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>&amp;Open...</source>
         <translation>&amp;Aç...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="565"/>
-        <source>Open a file</source>
-        <translation>Bir dosya aç</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="566"/>
+        <source>Open a file</source>
+        <translation>Bir dosya aç</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="567"/>
         <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;Bir dosya aç&lt;/b&gt;&lt;p&gt;Açmak istediğiniz dosyanın adını giriniz.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>Save</source>
         <translation>Kaydet</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>&amp;Save</source>
         <translation>&amp;Kaydet</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation>Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="579"/>
-        <source>Save the current file</source>
-        <translation>Geçerli dosyayı kaydet</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="580"/>
+        <source>Save the current file</source>
+        <translation>Geçerli dosyayı kaydet</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="581"/>
         <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="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Save as</source>
         <translation>Farklı kaydet</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Save &amp;as...</source>
         <translation>Farklı k&amp;aydet...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="593"/>
+        <location filename="../QScintilla/MiniEditor.py" line="594"/>
         <source>Save the current file to a new one</source>
         <translation>Geçerli dosyayı yeni bir tane olarak kaydet</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="595"/>
+        <location filename="../QScintilla/MiniEditor.py" line="596"/>
         <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="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>Close</source>
         <translation>Kapat</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>&amp;Close</source>
         <translation>&amp;Kapat</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="624"/>
-        <source>Close the editor window</source>
-        <translation>Düzenleyici penceresini kapat</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="625"/>
+        <source>Close the editor window</source>
+        <translation>Düzenleyici penceresini kapat</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="626"/>
         <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="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>Print</source>
         <translation>Yazdır</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>&amp;Print</source>
         <translation>&amp;Yazdır</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation>Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="638"/>
-        <source>Print the current file</source>
-        <translation>Geçerli dosyayı yazdır</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="639"/>
+        <source>Print the current file</source>
+        <translation>Geçerli dosyayı yazdır</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="640"/>
         <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;Dosya Yazdır&lt;/b&gt;&lt;p&gt;Geçerli dosyanın içeriğini yazdır.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="646"/>
+        <location filename="../QScintilla/MiniEditor.py" line="647"/>
         <source>Print Preview</source>
         <translation>Baskı Öngörünümü</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="651"/>
+        <location filename="../QScintilla/MiniEditor.py" line="652"/>
         <source>Print preview of the current file</source>
         <translation>Geçerli dosyanın baskı öngörünümü</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="653"/>
+        <location filename="../QScintilla/MiniEditor.py" line="654"/>
         <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;Yazıcı Öngörünümü&lt;/b&gt;&lt;p&gt;Geçerli dosyanın yazıcı öngörünümü.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Undo</source>
         <translation>Geri Al</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>&amp;Undo</source>
         <translation>&amp;Geri al</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="671"/>
-        <source>Undo the last change</source>
-        <translation>Enson değişikliği geri al</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="672"/>
+        <source>Undo the last change</source>
+        <translation>Enson değişikliği geri al</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="673"/>
         <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="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>Redo</source>
         <translation>İleri al</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>&amp;Redo</source>
         <translation>&amp;İleri al</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="685"/>
-        <source>Redo the last change</source>
-        <translation>Son değişikliği ileri al</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="686"/>
+        <source>Redo the last change</source>
+        <translation>Son değişikliği ileri al</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="687"/>
         <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="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Cut</source>
         <translation>Kes</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Cu&amp;t</source>
         <translation>Ke&amp;s</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="700"/>
+        <location filename="../QScintilla/MiniEditor.py" line="701"/>
         <source>Cut the selection</source>
         <translation>Seçimi kes</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="701"/>
+        <location filename="../QScintilla/MiniEditor.py" line="702"/>
         <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="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Copy</source>
         <translation>Kopyala</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>&amp;Copy</source>
         <translation>&amp;Kopyala</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="716"/>
+        <location filename="../QScintilla/MiniEditor.py" line="717"/>
         <source>Copy the selection</source>
         <translation>Seçimi kopyala</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="717"/>
+        <location filename="../QScintilla/MiniEditor.py" line="718"/>
         <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="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Paste</source>
         <translation>Yapıştır</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>&amp;Paste</source>
         <translation>Ya&amp;pıştır</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="732"/>
+        <location filename="../QScintilla/MiniEditor.py" line="733"/>
         <source>Paste the last cut/copied text</source>
         <translation>En son kesilen/kopyalanan metni yapıştır</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="734"/>
+        <location filename="../QScintilla/MiniEditor.py" line="735"/>
         <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="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Clear</source>
         <translation>Temizle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Cl&amp;ear</source>
         <translation>T&amp;emizle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="749"/>
-        <source>Clear all text</source>
-        <translation>Tüm metni temizle</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="750"/>
+        <source>Clear all text</source>
+        <translation>Tüm metni temizle</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="751"/>
         <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="../QScintilla/MiniEditor.py" line="2353"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2354"/>
         <source>About</source>
         <translation>Hakkında</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2353"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2354"/>
         <source>&amp;About</source>
         <translation>H&amp;akkında</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2358"/>
         <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="2359"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2360"/>
         <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="2365"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2366"/>
         <source>About Qt</source>
         <translation>Qt Hakkında</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2365"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2366"/>
         <source>About &amp;Qt</source>
         <translation>&amp;Qt Hakkında</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2369"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2370"/>
         <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="2371"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2372"/>
         <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="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>What&apos;s This?</source>
         <translation>Bu nedir?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>&amp;What&apos;s This?</source>
         <translation>Bu &amp;Nedir?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2384"/>
-        <source>Context sensitive help</source>
-        <translation>Duyarlı yardım</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2385"/>
+        <source>Context sensitive help</source>
+        <translation>Duyarlı yardım</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
         <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="2401"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2402"/>
         <source>&amp;File</source>
         <translation>&amp;Dosya</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2413"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2414"/>
         <source>&amp;Edit</source>
         <translation>Düz&amp;en</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2439"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2440"/>
         <source>&amp;Help</source>
         <translation>&amp;Yardım</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2451"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2452"/>
         <source>File</source>
         <translation>Dosya</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2464"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2465"/>
         <source>Edit</source>
         <translation>Düzen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2474"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2475"/>
         <source>Find</source>
         <translation>Bul</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2488"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2489"/>
         <source>Help</source>
         <translation>Yardım</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2509"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2510"/>
         <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="2516"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2517"/>
         <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="2523"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2524"/>
         <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="2540"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2541"/>
         <source>Ready</source>
         <translation>Hazır</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2594"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2595"/>
         <source>Open File</source>
         <translation>Dosya Aç</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2594"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2595"/>
         <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="2622"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2623"/>
         <source>File loaded</source>
         <translation>Dosya Yüklendi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2701"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2702"/>
         <source>Save File</source>
         <translation>Dosyayı Kaydet</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2701"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2702"/>
         <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="2708"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2709"/>
         <source>File saved</source>
         <translation>Dosya Kaydedildi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3055"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3066"/>
         <source>Untitled</source>
         <translation>Başlıksız</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2737"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2738"/>
         <source>{0}[*] - {1}</source>
         <translation>{0}[*] - {1}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2737"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2738"/>
         <source>Mini Editor</source>
         <translation>Mini Düzenleyici</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3018"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3026"/>
         <source>Printing...</source>
         <translation>Yazılıyor...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3036"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3047"/>
         <source>Printing completed</source>
         <translation>Yazdırma tamalandı</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3038"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3049"/>
         <source>Error while printing</source>
         <translation>Yazdırılırken hata</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3041"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3052"/>
         <source>Printing aborted</source>
         <translation>Yazdırma iptal edildi</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3096"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3107"/>
         <source>Select all</source>
         <translation>Hepsini seç</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3097"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3108"/>
         <source>Deselect all</source>
         <translation>Tüm seçimi iptal et</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3111"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3122"/>
         <source>Languages</source>
         <translation>Diller</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3114"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3125"/>
         <source>No Language</source>
         <translation>Dil Yok</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3138"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3149"/>
         <source>Guessed</source>
         <translation>Tahmin edilen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3160"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3171"/>
         <source>Alternatives</source>
         <translation>Alternatifler</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3156"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3167"/>
         <source>Alternatives ({0})</source>
         <translation>Alternatifler ({0})</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3184"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3195"/>
         <source>Pygments Lexer</source>
         <translation>Pygments Lexer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3184"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3195"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>Kullanmak için Pygment lexer seç.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2567"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2568"/>
         <source>The document has unsaved changes.</source>
         <translation>Belgede kaydedilmemiş değişiklikler var.</translation>
     </message>
@@ -49227,77 +49227,77 @@
         <translation type="obsolete">eric5 Mini Düzenleyici {6 ?}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save &amp;Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="608"/>
+        <location filename="../QScintilla/MiniEditor.py" line="609"/>
         <source>Save a copy of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="610"/>
+        <location filename="../QScintilla/MiniEditor.py" line="611"/>
         <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="../QScintilla/MiniEditor.py" line="3698"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3709"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3698"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3709"/>
         <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="2720"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2721"/>
         <source>[*] - {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="486"/>
+        <location filename="../QScintilla/MiniEditor.py" line="487"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2431"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2432"/>
         <source>&amp;View</source>
         <translation type="unfinished">&amp;Görünüm</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2481"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2482"/>
         <source>View</source>
         <translation type="unfinished">Görünüm</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2501"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2502"/>
         <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2534"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2535"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="397"/>
+        <location filename="../QScintilla/MiniEditor.py" line="398"/>
         <source>About eric Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="397"/>
+        <location filename="../QScintilla/MiniEditor.py" line="398"/>
         <source>The eric 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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2567"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2568"/>
         <source>eric Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49792,12 +49792,12 @@
 <context>
     <name>MouseUtilities</name>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="29"/>
+        <location filename="../Utilities/MouseUtilities.py" line="31"/>
         <source>Shift</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="31"/>
+        <location filename="../Utilities/MouseUtilities.py" line="33"/>
         <source>Alt</source>
         <translation type="unfinished"></translation>
     </message>
@@ -49807,37 +49807,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="33"/>
+        <location filename="../Utilities/MouseUtilities.py" line="35"/>
         <source>Ctrl</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="35"/>
+        <location filename="../Utilities/MouseUtilities.py" line="37"/>
         <source>Meta</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="43"/>
-        <source>Left Button</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Utilities/MouseUtilities.py" line="45"/>
-        <source>Right Button</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Utilities/MouseUtilities.py" line="47"/>
-        <source>Middle Button</source>
+        <source>Left Button</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Utilities/MouseUtilities.py" line="49"/>
-        <source>Extra Button 1</source>
+        <source>Right Button</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Utilities/MouseUtilities.py" line="51"/>
+        <source>Middle Button</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Utilities/MouseUtilities.py" line="53"/>
+        <source>Extra Button 1</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Utilities/MouseUtilities.py" line="55"/>
         <source>Extra Button 2</source>
         <translation type="unfinished"></translation>
     </message>
@@ -50353,32 +50353,32 @@
 <context>
     <name>NavigationBar</name>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="55"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="56"/>
         <source>Move one screen backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="65"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="67"/>
         <source>Move one screen forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="83"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="86"/>
         <source>Move to the initial screen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="95"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="99"/>
         <source>Exit Fullscreen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="273"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="281"/>
         <source>Clear History</source>
         <translation type="unfinished">Geçmişi Sil</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="108"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="113"/>
         <source>Main Menu</source>
         <translation type="unfinished"></translation>
     </message>
@@ -50429,12 +50429,12 @@
         <translation type="unfinished">&lt;b&gt; &apos;{0}&apos; için kullanıcı adını ve parolayı giriniz&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/NetworkManager.py" line="336"/>
+        <location filename="../WebBrowser/Network/NetworkManager.py" line="338"/>
         <source>Authentication required</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/NetworkManager.py" line="337"/>
+        <location filename="../WebBrowser/Network/NetworkManager.py" line="339"/>
         <source>Authentication is required to access:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51090,27 +51090,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="184"/>
+        <location filename="../UI/NumbersWidget.py" line="194"/>
         <source>Auto</source>
         <translation>Otomatik</translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="185"/>
+        <location filename="../UI/NumbersWidget.py" line="195"/>
         <source>Dec</source>
         <translation>Onlu</translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="186"/>
+        <location filename="../UI/NumbersWidget.py" line="196"/>
         <source>Hex</source>
         <translation>Hex</translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="187"/>
+        <location filename="../UI/NumbersWidget.py" line="197"/>
         <source>Oct</source>
         <translation>Sekizli</translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="188"/>
+        <location filename="../UI/NumbersWidget.py" line="198"/>
         <source>Bin</source>
         <translation></translation>
     </message>
@@ -51267,17 +51267,17 @@
         <translation>Anahtar Sözcükler</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="136"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="143"/>
         <source>&lt;strong&gt;Description:&lt;/strong&gt; {0}</source>
         <translation>&lt;strong&gt;Açıklama:&lt;/strong&gt; {0}</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="141"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="148"/>
         <source>&lt;strong&gt;Provides contextual suggestions&lt;/strong&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="149"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="156"/>
         <source>Comma-separated list of keywords that may be entered in the location bar followed by search terms to search with this engine</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51285,7 +51285,7 @@
 <context>
     <name>OpenSearchManager</name>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchManager.py" line="462"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchManager.py" line="463"/>
         <source>&lt;p&gt;Do you want to add the following engine to your list of search engines?&lt;br/&gt;&lt;br/&gt;Name: {0}&lt;br/&gt;Searches on: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Aşağıdaki arama motorunu arama motoru listenize eklemek istiyor musunuz?&lt;br/&gt;&lt;br/&gt;Adı: {0}&lt;br/&gt;Arama yap: {1}&lt;/p&gt;</translation>
     </message>
@@ -51915,12 +51915,12 @@
         <translation type="unfinished">Hatalar</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="146"/>
+        <location filename="../PipInterface/PipDialog.py" line="156"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="146"/>
+        <location filename="../PipInterface/PipDialog.py" line="156"/>
         <source>The process {0} could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51996,7 +51996,7 @@
 <context>
     <name>PipFreezeDialog</name>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="225"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="227"/>
         <source>Generate Requirements</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52081,27 +52081,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="225"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="227"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished">Metin Dosyaları (*.txt);;Tüm Dosyalar (*)</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="114"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="116"/>
         <source>The requirements were changed. Do you want to overwrite these changes?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="156"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="158"/>
         <source>No output generated by &apos;pip freeze&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="193"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="195"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; already exists. Do you want to overwrite it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="205"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="207"/>
         <source>&lt;p&gt;The requirements could not be written to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52312,32 +52312,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="190"/>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="193"/>
         <source>any</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="229"/>
-        <source>B</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PipInterface/PipPackageDetailsDialog.py" line="232"/>
-        <source>KB</source>
+        <source>B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackageDetailsDialog.py" line="235"/>
-        <source>MB</source>
-        <translation type="unfinished">MB</translation>
+        <source>KB</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackageDetailsDialog.py" line="238"/>
+        <source>MB</source>
+        <translation type="unfinished">MB</translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="241"/>
         <source>GB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="239"/>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="242"/>
         <source>{0:.1f} {1}</source>
         <comment>value, unit</comment>
         <translation type="unfinished"></translation>
@@ -52479,7 +52479,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="189"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="192"/>
         <source>Name:</source>
         <translation type="unfinished">Adı:</translation>
     </message>
@@ -52494,7 +52494,7 @@
         <translation type="unfinished">Arama kriterlerini giriniz</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="193"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="196"/>
         <source>Summary:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52524,77 +52524,77 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="190"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="193"/>
         <source>Version:</source>
         <translation type="unfinished">Sürüm:</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="191"/>
-        <source>Location:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="192"/>
-        <source>Requires:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="194"/>
-        <source>Homepage:</source>
+        <source>Location:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="195"/>
-        <source>Author:</source>
-        <translation type="unfinished">Yazar:</translation>
-    </message>
-    <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="196"/>
-        <source>Author Email:</source>
+        <source>Requires:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="197"/>
-        <source>License:</source>
+        <source>Homepage:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="198"/>
-        <source>Metadata Version:</source>
-        <translation type="unfinished"></translation>
+        <source>Author:</source>
+        <translation type="unfinished">Yazar:</translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="199"/>
-        <source>Installer:</source>
+        <source>Author Email:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="200"/>
-        <source>Classifiers:</source>
+        <source>License:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="201"/>
-        <source>Entry Points:</source>
+        <source>Metadata Version:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="202"/>
+        <source>Installer:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="203"/>
+        <source>Classifiers:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="204"/>
+        <source>Entry Points:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="205"/>
         <source>Files:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="351"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="360"/>
         <source>Getting installed packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="366"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="375"/>
         <source>Getting outdated packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../PipInterface/PipPackagesWidget.py" line="776"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="791"/>
         <source>%n package(s) found.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -52602,7 +52602,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
         <source>Search PyPI</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52612,92 +52612,92 @@
         <translation type="obsolete">Hata: {0}</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
         <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="960"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="975"/>
         <source>Install Pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="963"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="978"/>
         <source>Install Pip to User-Site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="966"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="981"/>
         <source>Repair Pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1083"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1098"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="973"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="988"/>
         <source>Install Local Package</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="977"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="992"/>
         <source>Install Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="980"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="995"/>
         <source>Uninstall Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="983"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="998"/>
         <source>Generate Requirements...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1001"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1016"/>
         <source>Edit User Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1004"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1019"/>
         <source>Edit Environment Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1009"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1024"/>
         <source>Configure...</source>
         <translation type="unfinished">Ayarlanıyor...</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1194"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1209"/>
         <source>Edit Configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1194"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1209"/>
         <source>No valid configuration path determined. Aborting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="987"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1002"/>
         <source>Show Cache Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="990"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1005"/>
         <source>Show Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="993"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1008"/>
         <source>Remove Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="996"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1011"/>
         <source>Purge Cache...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52707,17 +52707,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="759"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="774"/>
         <source>&lt;p&gt;Received an error while searching for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="778"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="793"/>
         <source>Showing first 20 packages found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="785"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="800"/>
         <source>&lt;p&gt;There were no results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52980,17 +52980,17 @@
         <translation>Etkenleğene kaldır</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInfoDialog.py" line="101"/>
+        <location filename="../PluginManager/PluginInfoDialog.py" line="105"/>
         <source>Yes</source>
         <translation>Evet</translation>
     </message>
     <message>
+        <location filename="../PluginManager/PluginInfoDialog.py" line="78"/>
+        <source>No</source>
+        <translation>Hayır</translation>
+    </message>
+    <message>
         <location filename="../PluginManager/PluginInfoDialog.py" line="77"/>
-        <source>No</source>
-        <translation>Hayır</translation>
-    </message>
-    <message>
-        <location filename="../PluginManager/PluginInfoDialog.py" line="76"/>
         <source>On-Demand</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53071,17 +53071,17 @@
         <translation>Kur</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="75"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="77"/>
         <source>User plugins directory</source>
         <translation>Kullanıcı eklentiler dizini</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="81"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="83"/>
         <source>Global plugins directory</source>
         <translation>Evrensel eklentiler dizini</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="145"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="147"/>
         <source>Plugin ZIP-Archives:
 {0}
 
@@ -53090,77 +53090,77 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="162"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="164"/>
         <source>Select plugin ZIP-archives</source>
         <translation>ZIPli  eklenti arşivini seç</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="162"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="164"/>
         <source>Plugin archive (*.zip)</source>
         <translation>Eklenti arşivi (*.zip)</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="231"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="233"/>
         <source>Installing {0} ...</source>
         <translation>Kuruluyor {0} ...</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="236"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="238"/>
         <source>  ok</source>
         <translation>tamam</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="243"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="245"/>
         <source>The plugins were installed successfully.</source>
         <translation>Eklenti tam olarak kuruldu.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="246"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="248"/>
         <source>Some plugins could not be installed.</source>
         <translation>Bazı eklentiler kurulamadı.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="274"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="276"/>
         <source>&lt;p&gt;The archive file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="315"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="317"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not a valid plugin ZIP-archive. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="294"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="296"/>
         <source>&lt;p&gt;The destination directory &lt;b&gt;{0}&lt;/b&gt; is not writeable. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="364"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="366"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; does not contain a &apos;packageName&apos; attribute. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="374"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="376"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; does not conform with the PyQt v2 API. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="389"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="391"/>
         <source>&lt;p&gt;The plugin package &lt;b&gt;{0}&lt;/b&gt; exists. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="402"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="404"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; exists. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="496"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="498"/>
         <source>Error installing plugin. Reason: {0}</source>
         <translation>Eklenti kurulrmrunda hata. Sebep: {0}</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="505"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="507"/>
         <source>Unspecific exception installing plugin.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53208,22 +53208,22 @@
         <translation>&lt;p&gt;eklenti dizini &lt;b&gt;{0}&lt;/b&gt; oluşturulamıyor. Lütfen ayarlama diyaloğu aracılığı ile düzenleyin.&lt;/p&gt;&lt;p&gt;Sebep: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1292"/>
+        <location filename="../PluginManager/PluginManager.py" line="1293"/>
         <source>Error downloading file</source>
         <translation type="unfinished">Dosya yüklenirken hata</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1292"/>
+        <location filename="../PluginManager/PluginManager.py" line="1293"/>
         <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1329"/>
+        <location filename="../PluginManager/PluginManager.py" line="1330"/>
         <source>New plugin versions available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1329"/>
+        <location filename="../PluginManager/PluginManager.py" line="1330"/>
         <source>&lt;p&gt;There are new plug-ins or plug-in updates available. Use the plug-in repository dialog to get them.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53497,53 +53497,53 @@
         <translation>Kapat &amp;&amp; Kur</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="359"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="362"/>
         <source>Download Plugin Files</source>
         <translation>Eklenti Dosyalarını İndir</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="359"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="362"/>
         <source>The requested plugins were downloaded.</source>
         <translation>İhtiyaç duyulan eklentiler indirildi.</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="415"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="418"/>
         <source>Read plugins repository file</source>
         <translation>Kaynak havuzu eklentiler dosyasını oku</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="415"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="418"/>
         <source>&lt;p&gt;The plugins repository file &lt;b&gt;{0}&lt;/b&gt; could not be read. Select Update&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="423"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="426"/>
         <source>No plugin repository file available.
 Select Update.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="484"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="491"/>
         <source>Error downloading file</source>
         <translation>Dosya yüklenirken hata</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="484"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="491"/>
         <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="568"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="575"/>
         <source>Stable</source>
         <translation>Dengeli</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="574"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="581"/>
         <source>Unstable</source>
         <translation>Dengesiz</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="586"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="593"/>
         <source>Unknown</source>
         <translation>Bilinmeyen</translation>
     </message>
@@ -53553,87 +53553,87 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="407"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="410"/>
         <source>Plugins Repository URL Changed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="407"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="410"/>
         <source>The URL of the Plugins Repository has changed. Select the &quot;Update&quot; button to get the new repository file.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="117"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="120"/>
         <source>Hide</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="119"/>
-        <source>Hide Selected</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="122"/>
-        <source>Show All</source>
+        <source>Hide Selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="125"/>
+        <source>Show All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="128"/>
         <source>Cleanup Downloads</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="600"/>
-        <source>up-to-date</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="603"/>
-        <source>new download available</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="607"/>
+        <source>up-to-date</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="610"/>
+        <source>new download available</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="614"/>
         <source>update installable</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="611"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="618"/>
         <source>updated download available</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="979"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="986"/>
         <source>Cleanup of Plugin Downloads</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="979"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="986"/>
         <source>&lt;p&gt;The plugin download &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="430"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="433"/>
         <source>New: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="432"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="435"/>
         <source>Local Updates: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="434"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="437"/>
         <source>Remote Updates: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="580"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="587"/>
         <source>Obsolete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="615"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="622"/>
         <source>error determining status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53641,17 +53641,17 @@
 <context>
     <name>PluginRepositoryWindow</name>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>Process Generation Error</source>
         <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>&lt;p&gt;Could not start the process.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;İşlem başlatılamıyor.&lt;br&gt;Bu durum büyük olasılıkla şundan kaynaklanıyto &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>OK</source>
         <translation>TAMAM</translation>
     </message>
@@ -54003,17 +54003,17 @@
 <context>
     <name>Preferences</name>
     <message>
-        <location filename="../Preferences/__init__.py" line="1640"/>
+        <location filename="../Preferences/__init__.py" line="1649"/>
         <source>Export Preferences</source>
         <translation>Seçenekleri Dışa Aktar</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1668"/>
+        <location filename="../Preferences/__init__.py" line="1677"/>
         <source>Import Preferences</source>
         <translation>Seçenekleri İçe Aktar</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1668"/>
+        <location filename="../Preferences/__init__.py" line="1677"/>
         <source>Properties File (*.ini);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -54034,7 +54034,7 @@
 <context>
     <name>PreviewModel</name>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="432"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="434"/>
         <source>Variable Name</source>
         <translation type="unfinished"></translation>
     </message>
@@ -54042,27 +54042,27 @@
 <context>
     <name>PreviewProcessingThread</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="463"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="466"/>
         <source>&lt;p&gt;No preview available for this type of file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="632"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="635"/>
         <source>&lt;p&gt;ReStructuredText preview requires the &lt;b&gt;python-docutils&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager, &apos;pip install docutils&apos; or see &lt;a href=&quot;http://pypi.python.org/pypi/docutils&quot;&gt;this page.&lt;/a&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="572"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="575"/>
         <source>&lt;p&gt;ReStructuredText preview requires the &lt;b&gt;sphinx&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager,&apos;pip install Sphinx&apos; or see &lt;a href=&quot;http://pypi.python.org/pypi/Sphinx&quot;&gt;this page.&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Alternatively you may disable Sphinx usage on the Editor, Filehandling configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="675"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="678"/>
         <source>&lt;p&gt;Markdown preview requires the &lt;b&gt;Markdown&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager, &apos;pip install Markdown&apos; or see &lt;a href=&quot;http://pythonhosted.org/Markdown/install.html&quot;&gt;installation instructions.&lt;/a&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="647"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="650"/>
         <source>&lt;p&gt;Docutils returned an error:&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -54070,42 +54070,42 @@
 <context>
     <name>PreviewerHTML</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="75"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="78"/>
         <source>Select to enable JavaScript for HTML previews</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="74"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="77"/>
         <source>Enable JavaScript</source>
         <translation type="unfinished">Javabetiğini etkinleştir</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="81"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="84"/>
         <source>Select to enable support for Server Side Includes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="79"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="82"/>
         <source>Enable Server Side Includes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="194"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="197"/>
         <source>&lt;p&gt;No preview available for this type of file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="253"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="256"/>
         <source>Preview - {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="255"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="258"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="57"/>
+        <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 type="unfinished"></translation>
     </message>
@@ -54156,17 +54156,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="76"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="80"/>
         <source>Portrait</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="78"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="82"/>
         <source>Landscape</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="79"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="83"/>
         <source>{0}, {1}</source>
         <comment>page size, page orientation</comment>
         <translation type="unfinished"></translation>
@@ -54381,7 +54381,7 @@
         <translation>CORBA IDL Derleyicisi</translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="433"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="434"/>
         <source>(unknown)</source>
         <translation>(bilinmeyen)</translation>
     </message>
@@ -54396,12 +54396,12 @@
         <translation>(ayarlanmadı)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="436"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="437"/>
         <source>(not executable)</source>
         <translation>(yürütülemez)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="479"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="481"/>
         <source>(not found)</source>
         <translation>(bulunamadı)</translation>
     </message>
@@ -54456,7 +54456,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="398"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="399"/>
         <source>(module not found)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55896,32 +55896,32 @@
 <context>
     <name>ProjectBaseBrowser</name>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="128"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="132"/>
         <source>Open</source>
         <translation>Aç</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="496"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="503"/>
         <source>local</source>
         <translation>yerel</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="537"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="544"/>
         <source>Select entries</source>
         <translation>Girişi seçin</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="537"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="544"/>
         <source>There were no matching entries found.</source>
         <translation>Girilenle uyumlu birşey bulunmadı.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="294"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="300"/>
         <source>Delete directories</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="294"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="300"/>
         <source>Do you really want to delete these directories from the project?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -55982,7 +55982,7 @@
         <translation>VCS Durumu</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBrowserModel.py" line="797"/>
+        <location filename="../Project/ProjectBrowserModel.py" line="803"/>
         <source>local</source>
         <translation>yerel</translation>
     </message>
@@ -56181,7 +56181,7 @@
 <context>
     <name>ProjectFormsBrowser</name>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1009"/>
         <source>Forms</source>
         <translation>Formlar</translation>
     </message>
@@ -56361,52 +56361,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="784"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="788"/>
         <source>Form Compilation</source>
         <translation>Form Derleme</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="768"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="772"/>
         <source>The compilation of the form file was successful.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="775"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="779"/>
         <source>&lt;p&gt;The compilation of the form file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="784"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="788"/>
         <source>The compilation of the form file failed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="870"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="874"/>
         <source>Process Generation Error</source>
         <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="870"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="874"/>
         <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="962"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="966"/>
         <source>Compiling forms...</source>
         <translation>Formlar derleniyor...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>Abort</source>
         <translation>Vazgeç</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>Determining changed forms...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1031"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1035"/>
         <source>Compiling changed forms...</source>
         <translation>Değişen formlar derleniyor...</translation>
     </message>
@@ -56461,7 +56461,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>%v/%m Forms</source>
         <translation type="unfinished"></translation>
     </message>
@@ -57106,7 +57106,7 @@
 <context>
     <name>ProjectResourcesBrowser</name>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="861"/>
         <source>Resources</source>
         <translation>Kaynaklar</translation>
     </message>
@@ -57216,57 +57216,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="624"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="628"/>
         <source>Resource Compilation</source>
         <translation>Kaynak Derleme</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="610"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="614"/>
         <source>The compilation of the resource file was successful.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="617"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="621"/>
         <source>&lt;p&gt;The compilation of the resource file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="624"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="628"/>
         <source>The compilation of the resource file failed.</source>
         <translation>Kaynağın derlenmesinde hata.</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="713"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="717"/>
         <source>Process Generation Error</source>
         <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="713"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="717"/>
         <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="779"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="783"/>
         <source>Compiling resources...</source>
         <translation>Kaynaklar derleniyor...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>Abort</source>
         <translation>Vazgeç</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>Determining changed resources...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="889"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="893"/>
         <source>Compiling changed resources...</source>
         <translation>Değişen kaynaklar derleniyor...</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>%v/%m Resources</source>
         <translation type="unfinished"></translation>
     </message>
@@ -58338,7 +58338,7 @@
         <translation>Gerçekleşen</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="349"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="361"/>
         <source>Coverage</source>
         <translation>Kapsam</translation>
     </message>
@@ -58370,47 +58370,47 @@
         <translation>Bu süreç kod koruma işlemini gösterir</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="61"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="63"/>
         <source>Annotate</source>
         <translation>Açıklama</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="63"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="65"/>
         <source>Annotate all</source>
         <translation>Tüm Açıklamalar</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="64"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="66"/>
         <source>Delete annotated files</source>
         <translation>Açıklama dosyalarını sil</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="67"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="69"/>
         <source>Erase Coverage Info</source>
         <translation>Koruyucu Bilgisini Sil</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>Annotating files...</source>
         <translation>Ek açıklama dosyaları...</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>Abort</source>
         <translation>Vazgeç</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="58"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="60"/>
         <source>Open</source>
         <translation type="unfinished">Aç</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="243"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="246"/>
         <source>Parse Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../DataViews/PyCoverageDialog.py" line="243"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="246"/>
         <source>%n file(s) could not be parsed. Coverage info for these is not available.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -58418,7 +58418,7 @@
         </translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>%v/%m Files</source>
         <translation type="unfinished"></translation>
     </message>
@@ -58426,7 +58426,7 @@
 <context>
     <name>PyProfileDialog</name>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="234"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="239"/>
         <source>Profile Results</source>
         <translation>Kesit Sonucu</translation>
     </message>
@@ -58505,57 +58505,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="337"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="354"/>
         <source>Exclude Python Library</source>
         <translation>Dışarda Tutulan Python Kütüphaneleri</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="89"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="92"/>
         <source>Erase Profiling Info</source>
         <translation>Kesit Bilgisini Sil</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="91"/>
-        <source>Erase Timing Info</source>
-        <translation>Zamanlama Bilgisini Sil</translation>
-    </message>
-    <message>
         <location filename="../DataViews/PyProfileDialog.py" line="94"/>
+        <source>Erase Timing Info</source>
+        <translation>Zamanlama Bilgisini Sil</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="97"/>
         <source>Erase All Infos</source>
         <translation>Tüm Bilgileri Sil</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="215"/>
-        <source>function calls</source>
-        <translation>fonksiyon çağrısı</translation>
-    </message>
-    <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="218"/>
-        <source>primitive calls</source>
-        <translation>ilk çağrılar</translation>
-    </message>
-    <message>
         <location filename="../DataViews/PyProfileDialog.py" line="220"/>
+        <source>function calls</source>
+        <translation>fonksiyon çağrısı</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="223"/>
+        <source>primitive calls</source>
+        <translation>ilk çağrılar</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="225"/>
         <source>CPU seconds</source>
         <translation>CPU saniyesi</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="234"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="239"/>
         <source>&lt;p&gt;There is no profiling data available for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="246"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="251"/>
         <source>Loading Profiling Data</source>
         <translation>Kesit Verisi Yükleniyor</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="246"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="251"/>
         <source>&lt;p&gt;The profiling data could not be read from file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="333"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="350"/>
         <source>Include Python Library</source>
         <translation>Python kütüphanesini içer</translation>
     </message>
@@ -59136,122 +59136,122 @@
         <translation>Düzneli ifadeninin bir sonraki sonucunu göster</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="102"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="103"/>
         <source>Copy</source>
         <translation>Kopyala</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="104"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="105"/>
         <source>Copy the regular expression to the clipboard</source>
         <translation>Düzenli ifadeyi panoya kopyala</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="188"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="190"/>
         <source>Named reference</source>
         <translation>Tanımlanmış kaynaklar</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="182"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="184"/>
         <source>No named groups have been defined yet.</source>
         <translation>Henüz hiçbir grup tanımlanmamış.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="188"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="190"/>
         <source>Select group name:</source>
         <translation>Grup adı seç:</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="372"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="374"/>
         <source>Save regular expression</source>
         <translation>Düzenli ifadeleri kaydet</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="360"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="362"/>
         <source>RegExp Files (*.rx);;All Files (*)</source>
         <translation>RegExp Dosyaları (*.rx);;Tüm Dosyalar (*)</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="372"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="374"/>
         <source>&lt;p&gt;The regular expression could not be saved.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Düzenli ifade kaydedilemedi.&lt;/p&gt;&lt;p&gt;Sebep: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="360"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="362"/>
         <source>Load regular expression</source>
         <translation>Düzenli ifadeleri yükle</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="414"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="416"/>
         <source>The regular expression is valid.</source>
         <translation>Düzenli ifade geçerli.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="578"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="581"/>
         <source>Error</source>
         <translation>Hata</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="564"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="567"/>
         <source>Invalid regular expression: {0}</source>
         <translation>Geçersiz düzenli ifade: {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="571"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="574"/>
         <source>Invalid regular expression: missing group name</source>
         <translation>Geçersiz düzenli ifadeler: bilinmeyen grup ismi</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="433"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="435"/>
         <source>A regular expression must be given.</source>
         <translation>Bir düzenli ifade girilmeli.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="478"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="480"/>
         <source>Regexp</source>
         <translation>Regexp</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="488"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="490"/>
         <source>Offset</source>
         <translation>Ofset</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="496"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="498"/>
         <source>Captures</source>
         <translation>Ekran yakalamalar</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="503"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="505"/>
         <source>Text</source>
         <translation>Metin</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="506"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="508"/>
         <source>Characters</source>
         <translation>Karakterler</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="511"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="513"/>
         <source>Match</source>
         <translation>Eşleşme</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="526"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="528"/>
         <source>Capture #{0}</source>
         <translation>Yakala #{0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="546"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="549"/>
         <source>No more matches</source>
         <translation>Başka eşleşme yok</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="550"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="553"/>
         <source>No matches</source>
         <translation>Eşleşme yok</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="578"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="581"/>
         <source>A regular expression and a text must be given.</source>
         <translation>Bir düzenli ifade ve metin verilmelidir.</translation>
     </message>
@@ -59266,12 +59266,12 @@
         <translation type="obsolete">ASCII</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="334"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="336"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası halen mevcut. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="414"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="416"/>
         <source>Validation</source>
         <translation>Onaylama</translation>
     </message>
@@ -59852,37 +59852,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="247"/>
+        <location filename="../UI/PythonAstViewer.py" line="249"/>
         <source>Module</source>
         <translation type="unfinished">Modül</translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="279"/>
+        <location filename="../UI/PythonAstViewer.py" line="281"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="300"/>
+        <location filename="../UI/PythonAstViewer.py" line="302"/>
         <source>{0},{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="307"/>
+        <location filename="../UI/PythonAstViewer.py" line="309"/>
         <source>{0}  -  {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="211"/>
+        <location filename="../UI/PythonAstViewer.py" line="213"/>
         <source>No editor has been opened.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="222"/>
+        <location filename="../UI/PythonAstViewer.py" line="224"/>
         <source>The current editor does not contain any source code.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="228"/>
+        <location filename="../UI/PythonAstViewer.py" line="230"/>
         <source>The current editor does not contain Python source code.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59935,7 +59935,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="695"/>
+        <location filename="../UI/PythonDisViewer.py" line="698"/>
         <source>Code Object &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59990,72 +59990,72 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="810"/>
+        <location filename="../UI/PythonDisViewer.py" line="813"/>
         <source>Name</source>
         <translation type="unfinished">Adı</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="812"/>
+        <location filename="../UI/PythonDisViewer.py" line="815"/>
         <source>Filename</source>
         <translation type="unfinished">Dosyaadı</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="814"/>
+        <location filename="../UI/PythonDisViewer.py" line="817"/>
         <source>First Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="816"/>
+        <location filename="../UI/PythonDisViewer.py" line="819"/>
         <source>Argument Count</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="818"/>
+        <location filename="../UI/PythonDisViewer.py" line="821"/>
         <source>Positional-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../UI/PythonDisViewer.py" line="827"/>
+        <source>Number of Locals</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="829"/>
+        <source>Stack Size</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="831"/>
+        <source>Flags</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="834"/>
+        <source>Constants</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="837"/>
+        <source>Names</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="840"/>
+        <source>Variable Names</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="843"/>
+        <source>Free Variables</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="846"/>
+        <source>Cell Variables</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/PythonDisViewer.py" line="824"/>
-        <source>Number of Locals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="826"/>
-        <source>Stack Size</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="828"/>
-        <source>Flags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="831"/>
-        <source>Constants</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="834"/>
-        <source>Names</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="837"/>
-        <source>Variable Names</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="840"/>
-        <source>Free Variables</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="843"/>
-        <source>Cell Variables</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="821"/>
         <source>Keyword-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
@@ -61990,197 +61990,197 @@
 <context>
     <name>QRegularExpressionWizardWidget</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="96"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="97"/>
         <source>Save</source>
         <translation type="unfinished">Kaydet</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="98"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="99"/>
         <source>Save the regular expression to a file</source>
         <translation type="unfinished">Düzzenli ifadeleri bir dosyaya kaydet</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="100"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="101"/>
         <source>Load</source>
         <translation type="unfinished">Yükle</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="102"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="103"/>
         <source>Load a regular expression from a file</source>
         <translation type="unfinished">Düzenli ifadeyi bir dosyadan yükle</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="105"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="106"/>
         <source>Validate</source>
         <translation type="unfinished">Geçerli</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="107"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="108"/>
         <source>Validate the regular expression</source>
         <translation type="unfinished">Düzenli ifadeyi doğrula</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="109"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="110"/>
         <source>Execute</source>
         <translation type="unfinished">Gerçekleştir</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="111"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="112"/>
         <source>Execute the regular expression</source>
         <translation type="unfinished">Düzenli ifadeyi gerçekleştir</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="113"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="114"/>
         <source>Next match</source>
         <translation type="unfinished">Sonraki eşleşme</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="115"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="116"/>
         <source>Show the next match of the regular expression</source>
         <translation type="unfinished">Düzneli ifadeninin bir sonraki sonucunu göster</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="128"/>
-        <source>Copy</source>
-        <translation type="unfinished">Kopyala</translation>
-    </message>
-    <message>
         <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="130"/>
+        <source>Copy</source>
+        <translation type="unfinished">Kopyala</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="132"/>
         <source>Copy the regular expression to the clipboard</source>
         <translation type="unfinished">Düzenli ifadeyi panoya kopyala</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="292"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="295"/>
         <source>Named reference</source>
         <translation type="unfinished">Tanımlanmış kaynaklar</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="286"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="289"/>
         <source>No named groups have been defined yet.</source>
         <translation type="unfinished">Henüz hiçbir grup tanımlanmamış.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="292"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="295"/>
         <source>Select group name:</source>
         <translation type="unfinished">Grup adı seç:</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="454"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="457"/>
         <source>Save regular expression</source>
         <translation type="unfinished">Düzenli ifadeleri kaydet</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="416"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="419"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası halen mevcut. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="454"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="457"/>
         <source>&lt;p&gt;The regular expression could not be saved.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;Düzenli ifade kaydedilemedi.&lt;/p&gt;&lt;p&gt;Sebep: {0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="442"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="445"/>
         <source>Load regular expression</source>
         <translation type="unfinished">Düzenli ifadeleri yükle</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="507"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="510"/>
         <source>Validation</source>
         <translation type="unfinished">Onaylama</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="507"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="510"/>
         <source>The regular expression is valid.</source>
         <translation type="unfinished">Düzenli ifade geçerli.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="708"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="712"/>
         <source>Error</source>
         <translation type="unfinished">Hata</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="582"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="585"/>
         <source>Invalid regular expression: {0}</source>
         <translation type="unfinished">Geçersiz düzenli ifade: {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="538"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="541"/>
         <source>A regular expression must be given.</source>
         <translation type="unfinished">Bir düzenli ifade girilmeli.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="602"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="605"/>
         <source>Regexp</source>
         <translation type="unfinished">Regexp</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="613"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="616"/>
         <source>Offset</source>
         <translation type="unfinished">Ofset</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="621"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="624"/>
         <source>Captures</source>
         <translation type="unfinished">Ekran yakalamalar</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="629"/>
-        <source>Text</source>
-        <translation type="unfinished">Metin</translation>
-    </message>
-    <message>
         <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="632"/>
+        <source>Text</source>
+        <translation type="unfinished">Metin</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="635"/>
         <source>Characters</source>
         <translation type="unfinished">Karakterler</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="637"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="640"/>
         <source>Match</source>
         <translation type="unfinished">Eşleşme</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="652"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="655"/>
         <source>Capture #{0}</source>
         <translation type="unfinished">Yakala #{0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="676"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="680"/>
         <source>No more matches</source>
         <translation type="unfinished">Başka eşleşme yok</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="681"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="685"/>
         <source>No matches</source>
         <translation type="unfinished">Eşleşme yok</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="708"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="712"/>
         <source>A regular expression and a text must be given.</source>
         <translation type="unfinished">Bir düzenli ifade ve metin verilmelidir.</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="442"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="445"/>
         <source>RegExp Files (*.rx);;All Files (*)</source>
         <translation type="unfinished">RegExp Dosyaları (*.rx);;Tüm Dosyalar (*)</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="702"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="706"/>
         <source>Communication Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="169"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="172"/>
         <source>&lt;p&gt;The PyQt5 backend reported an error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="696"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="700"/>
         <source>Invalid response received from PyQt5 backend.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="702"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="706"/>
         <source>Communication with PyQt5 backend failed.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62226,7 +62226,7 @@
         <translation>Kaldır</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="174"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="176"/>
         <source>Add Documentation</source>
         <translation>Belgelere Ekle</translation>
     </message>
@@ -62241,22 +62241,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="174"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="176"/>
         <source>The namespace &lt;b&gt;{0}&lt;/b&gt; is already registered.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="211"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="213"/>
         <source>Remove Documentation</source>
         <translation>Belgelerden Kaldır</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="196"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="198"/>
         <source>Do you really want to remove the selected documentation sets from the database?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="211"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="213"/>
         <source>Some documents currently opened reference the documentation you are attempting to remove. Removing the documentation will close those documents. Remove anyway?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62316,7 +62316,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="406"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="410"/>
         <source>Remove Filters</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62326,7 +62326,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="434"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="438"/>
         <source>Remove Attributes</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62371,22 +62371,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="385"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="389"/>
         <source>Add Filter</source>
         <translation type="unfinished">Süzgeç Ekle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="385"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="389"/>
         <source>Filter name:</source>
         <translation type="unfinished">Süzgeç adı:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="406"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="410"/>
         <source>Do you really want to remove the selected filters from the database?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="434"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="438"/>
         <source>Do you really want to remove the selected attributes from the database?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -62404,27 +62404,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="139"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="142"/>
         <source>Delete Documentation Sets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="86"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="89"/>
         <source>Shall the selected documentation sets really be deleted?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="102"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="105"/>
         <source>&lt;p&gt;The documentation set &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="121"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="124"/>
         <source>Shall the selected documentation set categories really be deleted?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="139"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="142"/>
         <source>Shall all documentation sets really be deleted?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63945,87 +63945,87 @@
 <context>
     <name>SafeBrowsingAPI</name>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="391"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="400"/>
         <source>&lt;h3&gt;Malware Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to install harmful programs on your computer in order to steal or destroy your data.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="398"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="407"/>
         <source>&lt;h3&gt;Phishing Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to trick you into doing something dangerous online, such as revealing passwords or personal information, usually through a fake website.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="406"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="415"/>
         <source>&lt;h3&gt;Unwanted Software Warning&lt;/h3&gt;&lt;p&gt;The software you are about to download may negatively affect your browsing or computing experience.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="412"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="421"/>
         <source>&lt;h3&gt;Potentially Harmful Application&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to trick you into installing applications, that may negatively affect your browsing experience.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="426"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="435"/>
         <source>&lt;h3&gt;Unknown Threat Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit was found in the Safe Browsing Database but was not classified yet.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="446"/>
-        <source>Malware</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="449"/>
-        <source>Phishing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="452"/>
-        <source>Unwanted Software</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="455"/>
-        <source>Harmful Application</source>
+        <source>Malware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="458"/>
-        <source>Malicious Binary</source>
+        <source>Phishing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="461"/>
+        <source>Unwanted Software</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="464"/>
+        <source>Harmful Application</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="467"/>
+        <source>Malicious Binary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="470"/>
         <source>Unknown Threat</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="532"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="541"/>
         <source>any defined platform</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="535"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="544"/>
         <source>all defined platforms</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="538"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="547"/>
         <source>unknown platform</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="492"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="501"/>
         <source>executable program</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="495"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="504"/>
         <source>unknown type</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="419"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="428"/>
         <source>&lt;h3&gt;Malicious Binary Warning&lt;/h3&gt;&lt;p&gt;The software you are about to download may be harmful to your computer.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -64033,7 +64033,7 @@
 <context>
     <name>SafeBrowsingDialog</name>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="171"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="173"/>
         <source>Safe Browsing Management</source>
         <translation type="unfinished"></translation>
     </message>
@@ -64123,52 +64123,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="312"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="314"/>
         <source>Check URL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="171"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="173"/>
         <source>The dialog contains unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="213"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="215"/>
         <source>Update Safe Browsing Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="196"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="198"/>
         <source>Updating the Safe Browsing cache might be a lengthy operation. Please be patient!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="207"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="209"/>
         <source>&lt;p&gt;Updating the Safe Browsing cache failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="213"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="215"/>
         <source>&lt;p&gt;Updating the Safe Browsing cache failed.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="224"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="226"/>
         <source>Clear Safe Browsing Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="224"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="226"/>
         <source>Do you really want to clear the Safe Browsing cache? Re-populating it might take some time.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="304"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="306"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing Database.&lt;/p&gt;{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="312"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="314"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was not found in the Safe Browsing Database and may be considered safe.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -64198,17 +64198,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="339"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="341"/>
         <source>The next automatic threat list update will be done now.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="342"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="344"/>
         <source>&lt;p&gt;The next automatic threat list update will be done at &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="346"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="348"/>
         <source>Update Time</source>
         <translation type="unfinished"></translation>
     </message>
@@ -64228,7 +64228,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="296"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="298"/>
         <source>&lt;p&gt;The Google Safe Browsing Server reported an error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -64302,22 +64302,22 @@
         <translation>Sonrakini Bul</translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="173"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="174"/>
         <source>Find Prev</source>
         <translation>Öncekini Bul</translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="982"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="984"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation>&apos;{0}&apos; bulunamadı.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="1128"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="1130"/>
         <source>Replaced {0} occurrences.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="1133"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="1135"/>
         <source>Nothing replaced because &apos;{0}&apos; was not found.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -64341,17 +64341,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="181"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="183"/>
         <source>Replace and Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="191"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="193"/>
         <source>Replace Occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="201"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="203"/>
         <source>Replace All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -64453,12 +64453,12 @@
         <translation type="obsolete">Etrafını çevrele</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SearchWidget.py" line="98"/>
+        <location filename="../WebBrowser/SearchWidget.py" line="100"/>
         <source>Expression was not found.</source>
         <translation>İfade Bulunmadı.</translation>
     </message>
     <message>
-        <location filename="../UI/SearchWidget.py" line="208"/>
+        <location filename="../UI/SearchWidget.py" line="210"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished">&apos;{0}&apos; bulunamadı.</translation>
     </message>
@@ -64930,7 +64930,7 @@
 <context>
     <name>SendRefererWhitelistDialog</name>
     <message>
-        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="50"/>
+        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="51"/>
         <source>Send Referer Whitelist</source>
         <translation type="unfinished"></translation>
     </message>
@@ -64970,7 +64970,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="50"/>
+        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="51"/>
         <source>Enter host name to add to the whitelist:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65101,7 +65101,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Session/SessionManager.py" line="710"/>
+        <location filename="../WebBrowser/Session/SessionManager.py" line="712"/>
         <source>{0} (last session)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65615,57 +65615,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="153"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="155"/>
         <source>Reading Trove Classifiers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="153"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="155"/>
         <source>&lt;p&gt;The Trove Classifiers 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="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="544"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="549"/>
         <source>Package Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="576"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="581"/>
         <source>Packages Root Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="615"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="620"/>
         <source>Add Package</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="615"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="620"/>
         <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; is not a Python package.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="671"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="676"/>
         <source>Add Scripts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="671"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="676"/>
         <source>Python Files (*.py);;All Files(*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="710"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="715"/>
         <source>Add Python Modules</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="710"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="715"/>
         <source>Python Files (*.py)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="789"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="796"/>
         <source>Source Directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65693,79 +65693,79 @@
         <translation>Kabuk</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="248"/>
+        <location filename="../QScintilla/Shell.py" line="249"/>
         <source>Passive &gt;&gt;&gt; </source>
         <translation>Pasif &gt;&gt;&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="291"/>
+        <location filename="../QScintilla/Shell.py" line="292"/>
         <source>Start</source>
         <translation>Başla</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="296"/>
-        <source>History</source>
-        <translation>Geçmiş</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="297"/>
-        <source>Select entry</source>
-        <translation>Girişi Seç</translation>
+        <source>History</source>
+        <translation>Geçmiş</translation>
     </message>
     <message>
         <location filename="../QScintilla/Shell.py" line="298"/>
+        <source>Select entry</source>
+        <translation>Girişi Seç</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="299"/>
         <source>Show</source>
         <translation>Göster</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="311"/>
+        <location filename="../QScintilla/Shell.py" line="312"/>
         <source>Clear</source>
         <translation>Temizle</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="303"/>
-        <source>Cut</source>
-        <translation>Kes</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="304"/>
-        <source>Copy</source>
-        <translation>Kopyala</translation>
+        <source>Cut</source>
+        <translation>Kes</translation>
     </message>
     <message>
         <location filename="../QScintilla/Shell.py" line="305"/>
+        <source>Copy</source>
+        <translation>Kopyala</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="306"/>
         <source>Paste</source>
         <translation>Yapıştır</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="319"/>
+        <location filename="../QScintilla/Shell.py" line="320"/>
         <source>Configure...</source>
         <translation>Ayarlanıyor...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="773"/>
+        <location filename="../QScintilla/Shell.py" line="781"/>
         <source>Select History</source>
         <translation>Geçmişi Seç</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="773"/>
+        <location filename="../QScintilla/Shell.py" line="781"/>
         <source>Select the history entry to execute (most recent shown last).</source>
         <translation>geçmişte yapılanları göster (ençok gösterilenleri seç).</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="839"/>
+        <location filename="../QScintilla/Shell.py" line="847"/>
         <source>Passive Debug Mode</source>
         <translation>Pasif Hata Ayıklama Modu</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="840"/>
+        <location filename="../QScintilla/Shell.py" line="848"/>
         <source>
 Not connected</source>
         <translation>
 Bağlantı yok</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="843"/>
+        <location filename="../QScintilla/Shell.py" line="851"/>
         <source>No.</source>
         <translation>NO.</translation>
     </message>
@@ -65775,32 +65775,32 @@
         <translation type="obsolete">{0} üzerin {1}, {2}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1033"/>
+        <location filename="../QScintilla/Shell.py" line="1041"/>
         <source>StdOut: {0}</source>
         <translation>Stdçıktı:{0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1041"/>
+        <location filename="../QScintilla/Shell.py" line="1049"/>
         <source>StdErr: {0}</source>
         <translation>stdhata: {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2178"/>
+        <location filename="../QScintilla/Shell.py" line="2199"/>
         <source>Drop Error</source>
         <translation>Düşme hatası</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2178"/>
+        <location filename="../QScintilla/Shell.py" line="2199"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; bir dosya değil.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="309"/>
+        <location filename="../QScintilla/Shell.py" line="310"/>
         <source>Find</source>
         <translation type="unfinished">Bul</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="891"/>
+        <location filename="../QScintilla/Shell.py" line="899"/>
         <source>Exception &quot;{0}&quot;
 {1}
 File: {2}, Line: {3}
@@ -65808,81 +65808,81 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="926"/>
+        <location filename="../QScintilla/Shell.py" line="934"/>
         <source>Unspecified syntax error.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="901"/>
+        <location filename="../QScintilla/Shell.py" line="909"/>
         <source>Exception &quot;{0}&quot;
 {1}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="928"/>
+        <location filename="../QScintilla/Shell.py" line="936"/>
         <source>Syntax error &quot;{1}&quot; in file {0} at line {2}, character {3}.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="951"/>
+        <location filename="../QScintilla/Shell.py" line="959"/>
         <source>Signal &quot;{0}&quot; generated in file {1} at line {2}.
 Function: {3}({4})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2035"/>
+        <location filename="../QScintilla/Shell.py" line="2056"/>
         <source>Project</source>
         <translation type="unfinished">Proje</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Shell.py" line="313"/>
+        <source>Restart</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="314"/>
+        <source>Restart and Clear</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="318"/>
+        <source>Active Name</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="1867"/>
+        <source>Available Virtual Environments:
+{0}
+</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="1917"/>
+        <source>Current Virtual Environment: &apos;{0}&apos;
+</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="853"/>
+        <source>{0} on {1}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="1075"/>
+        <source>&lt;{0}&gt; {1}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Shell.py" line="159"/>
-        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;restart&apos; kills the shell and starts a new one. &apos;clear&apos; clears the display of the shell window. &apos;start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;envs&apos; or &apos;environments&apos; commands. The active virtual environment can be questioned by the &apos;which&apos; command. &apos;quit&apos; or &apos;exit&apos; is used to exit the application. These commands (except environments&apos;, &apos;envs&apos; and &apos;which&apos;) are available through the window menus as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="186"/>
-        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.&lt;/p&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;restart&apos; kills the shell and starts a new one. &apos;clear&apos; clears the display of the shell window. &apos;start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;envs&apos; or &apos;environments&apos; commands. The active virtual environment can be questioned by the &apos;which&apos; command. These commands (except environments&apos; and &apos;envs&apos;) are available through the context menu as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;&lt;p&gt;In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="312"/>
-        <source>Restart</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="313"/>
-        <source>Restart and Clear</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="317"/>
-        <source>Active Name</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="1850"/>
-        <source>Available Virtual Environments:
-{0}
-</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="1896"/>
-        <source>Current Virtual Environment: &apos;{0}&apos;
-</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="845"/>
-        <source>{0} on {1}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="1067"/>
-        <source>&lt;{0}&gt; {1}</source>
+        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;%restart&apos; kills the shell and starts a new one. &apos;%clear&apos; clears the display of the shell window. &apos;%start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. &apos;%start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;%envs&apos; or &apos;%environments&apos; commands. The active virtual environment can be questioned by the &apos;%which&apos; command. &apos;%quit&apos; or &apos;%exit&apos; is used to exit the application. These commands (except &apos;%environments&apos;, &apos;%envs&apos; and &apos;%which&apos;) are available through the window menus as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="187"/>
+        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.&lt;/p&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;%restart&apos; kills the shell and starts a new one. &apos;%clear&apos; clears the display of the shell window. &apos;%start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. &apos;%start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;%envs&apos; or &apos;%environments&apos; commands. The active virtual environment can be questioned by the &apos;%which&apos; command. These commands (except &apos;%environments&apos; and &apos;%envs&apos;) are available through the context menu as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;&lt;p&gt;In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -66789,82 +66789,82 @@
         <translation>Alternatif</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="131"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="132"/>
         <source>Project</source>
         <translation>Proje</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="135"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="136"/>
         <source>General</source>
         <translation>Genel</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="139"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="140"/>
         <source>Wizards</source>
         <translation>Sihirbaz</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="145"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="146"/>
         <source>Debug</source>
         <translation>Hata Ayıklama</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="149"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="150"/>
         <source>Edit</source>
         <translation>Düzen</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="153"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="154"/>
         <source>File</source>
         <translation>Dosya</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="157"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="158"/>
         <source>Search</source>
         <translation>Ara</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="161"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="162"/>
         <source>View</source>
         <translation>Görünüm</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="165"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="166"/>
         <source>Macro</source>
         <translation>MAkro</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="169"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="170"/>
         <source>Bookmarks</source>
         <translation>Yerimleri</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="174"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="175"/>
         <source>Spelling</source>
         <translation>Yazım kontolü yapılıyor</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="181"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="182"/>
         <source>Window</source>
         <translation>Pencere</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="364"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="365"/>
         <source>Edit shortcuts</source>
         <translation>Kısayolları düzenle</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="327"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="328"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has already been allocated to the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="347"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="348"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; hides the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="364"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="365"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is hidden by the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -66874,7 +66874,7 @@
         <translation type="obsolete">Eric5 Web Gözatıcısı {6 ?}</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="197"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="198"/>
         <source>eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
@@ -66983,32 +66983,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="263"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="264"/>
         <source>Preview not available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="290"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="291"/>
         <source>Copy Image Location to Clipboard</source>
         <translation type="unfinished">Görüntünün Yerini  Panoya kopyala</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="293"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="294"/>
         <source>Copy Image Name to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="357"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="358"/>
         <source>Save Image</source>
         <translation type="unfinished">Görüntüyü Kaydet</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="346"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="347"/>
         <source>All Files (*)</source>
         <translation type="unfinished">Tüm Dosyalar (*)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="357"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="358"/>
         <source>&lt;p&gt;Cannot write to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67023,12 +67023,12 @@
         <translation type="obsolete">Yol:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="276"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="277"/>
         <source>Loading...</source>
         <translation type="unfinished">Yükleniyor...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="334"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="335"/>
         <source>&lt;p&gt;This preview is not available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67066,62 +67066,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="68"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="70"/>
         <source>Your connection to this site is &lt;b&gt;secure&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="73"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="75"/>
         <source>Your connection to this site is &lt;b&gt;not secure&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="88"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="90"/>
         <source>This is your &lt;b&gt;{0}.&lt;/b&gt; visit of this site.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="94"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="96"/>
         <source>You have &lt;b&gt;never&lt;/b&gt; visited this site before.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="103"/>
-        <source>first</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="105"/>
-        <source>second</source>
+        <source>first</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="107"/>
+        <source>second</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="109"/>
         <source>third</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="108"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="110"/>
         <source>This is your &lt;b&gt;{0}&lt;/b&gt; visit of this site.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="129"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="131"/>
         <source>Register as &lt;b&gt;{0}&lt;/b&gt; links handler.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="136"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="138"/>
         <source>Register</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="153"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="156"/>
         <source>More...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="62"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="64"/>
         <source>Your connection to this site &lt;b&gt;may not be secure&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67259,17 +67259,17 @@
         <translation type="unfinished">X11 Pixmap Dosyası (*.xpm)</translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="252"/>
+        <location filename="../Snapshot/SnapWidget.py" line="253"/>
         <source>Save Snapshot</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="231"/>
+        <location filename="../Snapshot/SnapWidget.py" line="232"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası halen mevcut. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="252"/>
+        <location filename="../Snapshot/SnapWidget.py" line="253"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation type="unfinished">Dosyaya yazılamıyor &apos;{0}:
@@ -67316,7 +67316,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="389"/>
+        <location filename="../Snapshot/SnapWidget.py" line="390"/>
         <source>The application contains an unsaved snapshot.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67331,7 +67331,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="355"/>
+        <location filename="../Snapshot/SnapWidget.py" line="356"/>
         <source>Preview of the snapshot image ({0} x {1})</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67371,7 +67371,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="419"/>
+        <location filename="../Snapshot/SnapWidget.py" line="420"/>
         <source>eric Snapshot</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67379,7 +67379,7 @@
 <context>
     <name>SnapshotFreehandGrabber</name>
     <message>
-        <location filename="../Snapshot/SnapshotFreehandGrabber.py" line="72"/>
+        <location filename="../Snapshot/SnapshotFreehandGrabber.py" line="76"/>
         <source>Select a region using the mouse. To take the snapshot, press the Enter key or double click. Press Esc to quit.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67387,7 +67387,7 @@
 <context>
     <name>SnapshotRegionGrabber</name>
     <message>
-        <location filename="../Snapshot/SnapshotRegionGrabber.py" line="104"/>
+        <location filename="../Snapshot/SnapshotRegionGrabber.py" line="107"/>
         <source>Select a region using the mouse. To take the snapshot, press the Enter key or double click. Press Esc to quit.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67395,7 +67395,7 @@
 <context>
     <name>SnapshotTimer</name>
     <message numerus="yes">
-        <location filename="../Snapshot/SnapshotTimer.py" line="104"/>
+        <location filename="../Snapshot/SnapshotTimer.py" line="110"/>
         <source>Snapshot will be taken in %n seconds</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -67517,27 +67517,27 @@
 <context>
     <name>SpeedDial</name>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="401"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="402"/>
         <source>Unable to load</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="207"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="208"/>
         <source>Saving Speed Dial data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="207"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="208"/>
         <source>&lt;p&gt;Speed Dial data could not be saved to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="220"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="221"/>
         <source>Reset Speed Dials</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="220"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="221"/>
         <source>Are you sure you want to reset the speed dials to the default pages?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67931,22 +67931,22 @@
         <translation>Hazır</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="162"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="163"/>
         <source>Unable to open database</source>
         <translation>Veritabanı açılmaya uygun değil</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="162"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="163"/>
         <source>An error occurred while opening the connection.</source>
         <translation>Bağlantı kurulurken bir hata meydana geldi.</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="304"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="307"/>
         <source>Query OK.</source>
         <translation>Sorgu Tamam.</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="306"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="309"/>
         <source>Query OK, number of affected rows: {0}</source>
         <translation>Sorgu TAMAM, işlenen satır sayısı:{0}</translation>
     </message>
@@ -68115,62 +68115,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="52"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="53"/>
         <source>Revocation information for the certificate is not available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="55"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="56"/>
         <source>The certificate has been revoked.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="57"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="58"/>
         <source>The certificate is invalid.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="59"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="60"/>
         <source>The certificate is signed using a weak signature algorithm.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="62"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="63"/>
         <source>The host name specified in the certificate is not unique.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="65"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="66"/>
         <source>The certificate contains a weak key.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="67"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="69"/>
         <source>The certificate claimed DNS names that are in violation of name constraints.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="98"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="101"/>
         <source>No error description available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="129"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="132"/>
         <source>Remove Selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="134"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="137"/>
         <source>Remove All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="73"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="75"/>
         <source>The certificate has a validity period that is too long.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="82"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="85"/>
         <source>Certificate Transparency was required for this connection, but the server did not provide information that complied with the policy.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -68216,18 +68216,18 @@
 &lt;p&gt;Hata ayıklaması yapılacak uygulamaının çalışma dizinini giriniz.Bo olarak bırakırsanız çalışma dizini uygulama dizini olur.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="215"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="218"/>
         <source>Select this to erase the collected coverage information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="218"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="221"/>
         <source>&lt;b&gt;Erase coverage information&lt;/b&gt;
 &lt;p&gt;Select this to erase the collected coverage information before the next coverage run.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="151"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="154"/>
         <source>Environment Variables:</source>
         <translation type="unfinished">Ortam &amp;e:</translation>
     </message>
@@ -68237,64 +68237,64 @@
         <translation>Ortam değişkenlerini belirlemek için giriniz.</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="165"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="168"/>
         <source>Uncheck to disable exception reporting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="168"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="171"/>
         <source>&lt;b&gt;Report exceptions&lt;/b&gt;
 &lt;p&gt;Uncheck this in order to disable exception reporting.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="172"/>
-        <source>Report exceptions</source>
-        <translation type="unfinished">İstisnal&amp;ar Raporu</translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="175"/>
+        <source>Report exceptions</source>
+        <translation type="unfinished">İstisnal&amp;ar Raporu</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="178"/>
         <source>Alt+E</source>
         <translation>Alt+E</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="185"/>
-        <source>Select to clear the display of the interpreter window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="188"/>
-        <source>&lt;b&gt;Clear interpreter window&lt;/b&gt;&lt;p&gt;This clears the display of the interpreter window before starting the debug client.&lt;/p&gt;</source>
+        <source>Select to clear the display of the interpreter window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="191"/>
+        <source>&lt;b&gt;Clear interpreter window&lt;/b&gt;&lt;p&gt;This clears the display of the interpreter window before starting the debug client.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="194"/>
         <source>Clear interpreter window</source>
         <translation type="unfinished">Yorumlayıcı penceresini tem&amp;izle</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="201"/>
-        <source>Select to start the debugger in a console window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="204"/>
+        <source>Select to start the debugger in a console window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="207"/>
         <source>&lt;b&gt;Start in console&lt;/b&gt;
 &lt;p&gt;Select to start the debugger in a console window. The console command has to be configured on the Debugger-&amp;gt;General page&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="208"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="211"/>
         <source>Start in console</source>
         <translation>Konsolda başlat</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="222"/>
-        <source>Erase coverage information</source>
-        <translation type="unfinished">Kapsama bilgisi sil</translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="225"/>
+        <source>Erase coverage information</source>
+        <translation type="unfinished">Kapsama bilgisi sil</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="228"/>
         <source>Alt+C</source>
         <translation>Alt+C</translation>
     </message>
@@ -68304,7 +68304,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="141"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="144"/>
         <source>Virtual Environment:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -68516,42 +68516,42 @@
 <context>
     <name>StartDialog</name>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="108"/>
+        <location filename="../Debugger/StartDialog.py" line="109"/>
         <source>Clear Histories</source>
         <translation>Geçmişi temizle</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="279"/>
+        <location filename="../Debugger/StartDialog.py" line="281"/>
         <source>Edit History</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="266"/>
-        <source>Command Line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="267"/>
-        <source>Working Directory</source>
-        <translation type="unfinished">Çalışma Dizini</translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartDialog.py" line="268"/>
+        <source>Command Line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="269"/>
+        <source>Working Directory</source>
+        <translation type="unfinished">Çalışma Dizini</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="270"/>
         <source>Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Debugger/StartDialog.py" line="281"/>
+        <source>Select the history list to be edited:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Debugger/StartDialog.py" line="279"/>
-        <source>Select the history list to be edited:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="277"/>
         <source>No Debug Programs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="142"/>
+        <location filename="../Debugger/StartDialog.py" line="143"/>
         <source>Enter the list of programs or program patterns not to be debugged separated by &apos;{0}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -69323,12 +69323,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2244"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2245"/>
         <source>Subversion Lock</source>
         <translation>Altsürüm Kilidi</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2244"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2245"/>
         <source>Enter lock comment</source>
         <translation type="unfinished"></translation>
     </message>
@@ -69609,32 +69609,32 @@
         <translation>SVG-Gösterici</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="91"/>
+        <location filename="../Graphics/SvgDiagram.py" line="92"/>
         <source>Close</source>
         <translation>Kapat</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="96"/>
+        <location filename="../Graphics/SvgDiagram.py" line="97"/>
         <source>Print</source>
         <translation>Yazdır</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="101"/>
+        <location filename="../Graphics/SvgDiagram.py" line="102"/>
         <source>Print Preview</source>
         <translation>Baskı Öngörünümü</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="131"/>
+        <location filename="../Graphics/SvgDiagram.py" line="132"/>
         <source>Window</source>
         <translation>Pencere</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="135"/>
+        <location filename="../Graphics/SvgDiagram.py" line="136"/>
         <source>Graphics</source>
         <translation>Grafik</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="362"/>
+        <location filename="../Graphics/SvgDiagram.py" line="363"/>
         <source>Diagram: {0}</source>
         <translation>Şema: {0}</translation>
     </message>
@@ -69707,12 +69707,12 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="102"/>
         <source>Process Generation Error</source>
         <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="102"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
@@ -69787,22 +69787,22 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="83"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="85"/>
         <source>Files (relative to {0}):</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="152"/>
         <source>No changelists found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
@@ -70036,29 +70036,29 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="169"/>
         <source>Process Generation Error</source>
         <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="169"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="75"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="77"/>
         <source>Revision {0}.
 </source>
         <translation>Gözden geçirme {0}.
 </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="82"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="84"/>
         <source> (binary)</source>
         <translation> (ikili)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="86"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="88"/>
         <source>{0} {1}{2}
 </source>
         <translation>{0} {1}{2}
@@ -70096,7 +70096,7 @@
 <context>
     <name>SvnDiffDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="175"/>
         <source>Subversion Diff</source>
         <translation>Altsürüm farklılıkları</translation>
     </message>
@@ -70156,59 +70156,59 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="189"/>
         <source>Process Generation Error</source>
         <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="189"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="207"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="209"/>
         <source>There is no difference.</source>
         <translation>Herhangi bir farklılık bulunamadı.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="399"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="409"/>
         <source>Save Diff</source>
         <translation>Farklılıkları Kaydet</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="367"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="377"/>
         <source>Patch Files (*.diff)</source>
         <translation>Patch Dosyaları (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="399"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="409"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt;yama kaydedilemedi.&lt;br&gt;Sebep: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="175"/>
         <source>There is no temporary directory available.</source>
         <translation>HBu hazırda bir geçici dizin değil.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="211"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="219"/>
         <source>Processing file &apos;{0}&apos;...
 </source>
         <translation>&apos;{0}dosyası işleniyor&apos;...
 </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="384"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="394"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;Yama dosyası &lt;b&gt;{0}&lt;/b&gt;  zaten var. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="220"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="226"/>
         <source>&lt;Start&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="221"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="227"/>
         <source>&lt;End&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -70399,17 +70399,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="664"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="679"/>
         <source>Revision</source>
         <translation>Gözden Geçirme</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="661"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="676"/>
         <source>Author</source>
         <translation>Yazar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="164"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="167"/>
         <source>Message</source>
         <translation>Mesaj</translation>
     </message>
@@ -70539,37 +70539,37 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="93"/>
         <source>Added</source>
         <translation>Eklendi</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="91"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="94"/>
         <source>Deleted</source>
         <translation>Silindi</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="92"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="95"/>
         <source>Modified</source>
         <translation>Değiştirildi</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="519"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="535"/>
         <source>Subversion Error</source>
         <translation>Altsürüm Hatası</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="309"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="317"/>
         <source>Process Generation Error</source>
         <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="309"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="317"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="93"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="96"/>
         <source>Replaced</source>
         <translation type="unfinished"></translation>
     </message>
@@ -70736,7 +70736,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="129"/>
         <source>&amp;URL:</source>
         <translation>&amp;URL:</translation>
     </message>
@@ -70778,7 +70778,7 @@
         <translation>E&amp;tiket:</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="121"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="122"/>
         <source>Pat&amp;h:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -71668,17 +71668,17 @@
 &lt;p&gt;Bu altsürüm özelliklistesi komut hatalarını olası mesajlarını gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="154"/>
         <source>Process Generation Error</source>
         <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="154"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnPropListDialog.py" line="145"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnPropListDialog.py" line="152"/>
         <source>None</source>
         <translation>Yok</translation>
     </message>
@@ -71882,22 +71882,22 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="204"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="208"/>
         <source>The installed version of PySvn should be 1.4.0 or better.</source>
         <translation>Kurulan PySvn sürümü 1.4.0 veya daha yeni olmalıdır.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="281"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="288"/>
         <source>Subversion Error</source>
         <translation>Altsürüm Hatası</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="267"/>
         <source>Process Generation Error</source>
         <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="267"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
@@ -72013,7 +72013,7 @@
 <context>
     <name>SvnStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="400"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="406"/>
         <source>Subversion Status</source>
         <translation>Altsürüm Durumu</translation>
     </message>
@@ -72140,207 +72140,207 @@
         <translation>Durum göstergesini yenilemek için bas</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="83"/>
         <source>Commit changes to repository...</source>
         <translation>Yapılan değişiklekleri kaynak havuzuna teslim et...</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="90"/>
         <source>Add to repository</source>
         <translation>Kaynak havuzuna ekle</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="96"/>
         <source>Revert changes</source>
         <translation>Değişiklikleri başa döndür</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="102"/>
         <source>Add to Changelist</source>
         <translation>Değişiklik Listesine Ekle</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979"/>
         <source>Remove from Changelist</source>
         <translation>DEğişiklik listesinden çıkar</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="873"/>
-        <source>Lock</source>
-        <translation>Kilitli</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890"/>
+        <source>Lock</source>
+        <translation>Kilitli</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="907"/>
         <source>Unlock</source>
         <translation>Kilitsiz</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="111"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="113"/>
         <source>Break lock</source>
         <translation>Kırma Kilidi</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="116"/>
         <source>Steal lock</source>
         <translation>Hırsızlık kilidi</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="120"/>
         <source>Adjust column sizes</source>
         <translation>Sütün boyutunu ayarla</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="158"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="161"/>
         <source>added</source>
         <translation>eklendi</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="160"/>
-        <source>deleted</source>
-        <translation>silinmiş</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="171"/>
-        <source>modified</source>
-        <translation>değiştirildi</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="165"/>
-        <source>unversioned</source>
-        <translation>sürüm numarası verilmemiş</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="189"/>
-        <source>locked</source>
-        <translation>kilitlendi</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="190"/>
-        <source>other lock</source>
-        <translation>diğer kilitler</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="191"/>
-        <source>stolen lock</source>
-        <translation>hırsız kilidi</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="192"/>
-        <source>broken lock</source>
-        <translation>kırma kilidi</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="188"/>
-        <source>not locked</source>
-        <translation>kilitlenmedi</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="170"/>
-        <source>normal</source>
-        <translation>normal</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="163"/>
-        <source>replaced</source>
+        <source>deleted</source>
+        <translation>silinmiş</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="174"/>
+        <source>modified</source>
         <translation>değiştirildi</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="172"/>
-        <source>conflict</source>
-        <translation>çelişki</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="185"/>
-        <source>external</source>
-        <translation>harici</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="161"/>
-        <source>ignored</source>
-        <translation>yoksayıldı</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="166"/>
-        <source>missing</source>
-        <translation>kayıp</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="167"/>
-        <source>type error</source>
-        <translation>tip hatası</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="196"/>
-        <source>no</source>
-        <translation>no</translation>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="168"/>
+        <source>unversioned</source>
+        <translation>sürüm numarası verilmemiş</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="192"/>
+        <source>locked</source>
+        <translation>kilitlendi</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="193"/>
+        <source>other lock</source>
+        <translation>diğer kilitler</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="194"/>
+        <source>stolen lock</source>
+        <translation>hırsız kilidi</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="195"/>
+        <source>broken lock</source>
+        <translation>kırma kilidi</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="191"/>
+        <source>not locked</source>
+        <translation>kilitlenmedi</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="173"/>
+        <source>normal</source>
+        <translation>normal</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="166"/>
+        <source>replaced</source>
+        <translation>değiştirildi</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="175"/>
+        <source>conflict</source>
+        <translation>çelişki</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="188"/>
+        <source>external</source>
+        <translation>harici</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="164"/>
+        <source>ignored</source>
+        <translation>yoksayıldı</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="169"/>
+        <source>missing</source>
+        <translation>kayıp</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="170"/>
+        <source>type error</source>
+        <translation>tip hatası</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="199"/>
+        <source>no</source>
+        <translation>no</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="198"/>
         <source>yes</source>
         <translation>evet</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="413"/>
         <source>Process Generation Error</source>
         <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="413"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="742"/>
         <source>Commit</source>
         <translation>Teslimat</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="850"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="867"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="765"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="782"/>
         <source>Add</source>
         <translation>Ekle</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="765"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="782"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="811"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="828"/>
         <source>Revert</source>
         <translation>Başa Dönme</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="873"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890"/>
         <source>There are no unlocked files available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="926"/>
-        <source>There are no locked files available/selected.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="908"/>
-        <source>Break Lock</source>
-        <translation>Kırma Kilidi</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="926"/>
-        <source>Steal Lock</source>
-        <translation>Hırsızlık Kilidi</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="943"/>
+        <source>There are no locked files available/selected.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="925"/>
+        <source>Break Lock</source>
+        <translation>Kırma Kilidi</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="943"/>
+        <source>Steal Lock</source>
+        <translation>Hırsızlık Kilidi</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="960"/>
         <source>There are no files available/selected not belonging to a changelist.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979"/>
         <source>There are no files available/selected belonging to a changelist.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -72405,42 +72405,42 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="92"/>
         <source>Show differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="96"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="98"/>
         <source>Restore missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="637"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="654"/>
         <source>all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="829"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="846"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="742"/>
         <source>There are no entries selected to be committed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="811"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="828"/>
         <source>There are no missing entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="83"/>
-        <source>Select all for commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="85"/>
+        <source>Select all for commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="87"/>
         <source>Deselect all from commit</source>
         <translation type="unfinished"></translation>
     </message>
@@ -72455,17 +72455,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="92"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="94"/>
         <source>Show differences side-by-side</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="857"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="874"/>
         <source>Side-by-Side Diff</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="857"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="874"/>
         <source>Only one file with uncommitted changes must be selected.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -72637,52 +72637,52 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="96"/>
         <source>Subversion Branches List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="127"/>
         <source>Subversion Error</source>
         <translation>Altsürüm Hatası</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="107"/>
         <source>The URL of the project repository could not be retrieved from the working copy. The list operation will be aborted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="127"/>
         <source>The URL of the project repository has an invalid format. The list operation will be aborted</source>
         <translation>Proje kaynak havuzunun URL si geçersiz formata sahip. Listeleme operasyonu iptal edilecek</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="155"/>
         <source>Subversion List</source>
         <translation>Altsürüm Listesi</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="142"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="144"/>
         <source>Enter the repository URL containing the tags or branches</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="155"/>
         <source>The repository URL is empty. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="172"/>
         <source>Process Generation Error</source>
         <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="172"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="160"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="162"/>
         <source>The installed version of PySvn should be 1.4.0 or better.</source>
         <translation>Kurulan PySvn sürümü 1.4.0 veya daha yeni olmalıdır.</translation>
     </message>
@@ -74630,7 +74630,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="397"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="409"/>
         <source>No issues found.</source>
         <translation>Sorun bulunamadı.</translation>
     </message>
@@ -74655,7 +74655,7 @@
         <translation>Başla</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="288"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="297"/>
         <source>Error: {0}</source>
         <translation>Hata: {0}</translation>
     </message>
@@ -74665,17 +74665,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="274"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="283"/>
         <source>Preparing files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="98"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="101"/>
         <source>Errors</source>
         <translation type="unfinished">Hatalar</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="298"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="307"/>
         <source>Transferring data...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74961,72 +74961,72 @@
 <context>
     <name>TabManagerWidget</name>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="73"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="74"/>
         <source>Tab Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="127"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="128"/>
         <source>Saved Tabs</source>
         <translation type="unfinished">Sekmeleri Kaydet</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="171"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="172"/>
         <source>Local File System:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="173"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="174"/>
         <source>eric Web Browser:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="175"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="176"/>
         <source> [FTP]:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="314"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="317"/>
         <source>Window {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="315"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="318"/>
         <source>Double click to switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="506"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="509"/>
         <source>Group by</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="507"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="510"/>
         <source>&amp;Window</source>
         <translation type="unfinished">&amp;Pencere</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="512"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="515"/>
         <source>&amp;Domain</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="517"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="520"/>
         <source>&amp;Host</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="528"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="531"/>
         <source>&amp;Bookmark checked tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="533"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="536"/>
         <source>&amp;Close checked tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="567"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="570"/>
         <source>Show Tab Manager</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75034,7 +75034,7 @@
 <context>
     <name>TabWidget</name>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="212"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="216"/>
         <source>Show a navigation menu</source>
         <translation>Yönlendirme Menüsünü Göster</translation>
     </message>
@@ -75044,72 +75044,72 @@
         <translation type="obsolete">Geçerli düzenleyiciyi kapat</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="243"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="249"/>
         <source>Move Left</source>
         <translation>Sola Götür</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="246"/>
-        <source>Move Right</source>
-        <translation>Sağa Götür</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="249"/>
-        <source>Move First</source>
-        <translation>Başa Götür</translation>
-    </message>
-    <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="252"/>
+        <source>Move Right</source>
+        <translation>Sağa Götür</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="255"/>
+        <source>Move First</source>
+        <translation>Başa Götür</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="258"/>
         <source>Move Last</source>
         <translation>Sona Götür</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="256"/>
-        <source>Close</source>
-        <translation>Kapat</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="259"/>
-        <source>Close Others</source>
-        <translation>Diğerlerini Kapat</translation>
-    </message>
-    <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="262"/>
-        <source>Close All</source>
-        <translation>Hepsini Kapat</translation>
+        <source>Close</source>
+        <translation>Kapat</translation>
     </message>
     <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="265"/>
-        <source>Save</source>
-        <translation>Kaydet</translation>
+        <source>Close Others</source>
+        <translation>Diğerlerini Kapat</translation>
     </message>
     <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="268"/>
-        <source>Save As...</source>
-        <translation>Farklı Kaydet...</translation>
+        <source>Close All</source>
+        <translation>Hepsini Kapat</translation>
     </message>
     <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="271"/>
+        <source>Save</source>
+        <translation>Kaydet</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="274"/>
+        <source>Save As...</source>
+        <translation>Farklı Kaydet...</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="277"/>
         <source>Save All</source>
         <translation>Hepsini kaydet</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="279"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="285"/>
         <source>Print</source>
         <translation>Yazdır</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="437"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="443"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="283"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="289"/>
         <source>Copy Path to Clipboard</source>
         <translation>Yolu Panoya kopyala</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="275"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="281"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation type="unfinished"></translation>
     </message>
@@ -75193,12 +75193,12 @@
 <context>
     <name>Tabview</name>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1002"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1008"/>
         <source>Untitled {0}</source>
         <translation>Başlıksız {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1406"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1412"/>
         <source>{0} (ro)</source>
         <translation>{0} (ro)</translation>
     </message>
@@ -75751,17 +75751,17 @@
 <context>
     <name>TemplateMultipleVariablesDialog</name>
     <message>
-        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="105"/>
+        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="106"/>
         <source>Enter Template Variables</source>
         <translation>Şablon Değişkenlerini Gir</translation>
     </message>
     <message>
-        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="106"/>
-        <source>&amp;OK</source>
-        <translation>TA&amp;MAM</translation>
-    </message>
-    <message>
         <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="107"/>
+        <source>&amp;OK</source>
+        <translation>TA&amp;MAM</translation>
+    </message>
+    <message>
+        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="108"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Vazgeç</translation>
     </message>
@@ -76772,12 +76772,12 @@
         <translation>Tüm Dosyalar (*)</translation>
     </message>
     <message>
-        <location filename="../Project/TranslationPropertiesDialog.py" line="148"/>
+        <location filename="../Project/TranslationPropertiesDialog.py" line="149"/>
         <source>Exempt file from translation</source>
         <translation>Çeviriden muaf tutulacak dosya</translation>
     </message>
     <message>
-        <location filename="../Project/TranslationPropertiesDialog.py" line="161"/>
+        <location filename="../Project/TranslationPropertiesDialog.py" line="162"/>
         <source>Exempt directory from translation</source>
         <translation>Çeviriden muaf tutlacak dizin</translation>
     </message>
@@ -78206,97 +78206,97 @@
 <context>
     <name>UMLGraphicsView</name>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="78"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="79"/>
         <source>Delete shapes</source>
         <translation>KAlıpları sil</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="83"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="84"/>
         <source>Increase width by {0} points</source>
         <translation>{0} nokta büyüt</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="90"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="91"/>
         <source>Increase height by {0} points</source>
         <translation>Yüksekleği {0} nokta büyüt</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="97"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="98"/>
         <source>Decrease width by {0} points</source>
         <translation>Genişliği {0} nokta küçült</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="104"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="105"/>
         <source>Decrease height by {0} points</source>
         <translation>Yüksekleği {0} nokta küçült</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="111"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="112"/>
         <source>Set size</source>
         <translation>Boyutları ayarla</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="121"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="122"/>
         <source>Re-Layout</source>
         <translation>Yeniden-Yerleşim</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="126"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="127"/>
         <source>Align Left</source>
         <translation>Sola Hizala</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="132"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="134"/>
         <source>Align Center Horizontal</source>
         <translation>Yatay Ortaya Hizala</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="138"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="141"/>
         <source>Align Right</source>
         <translation>Sağa Hizala</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="144"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="148"/>
         <source>Align Top</source>
         <translation>Yukarı Hizala</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="150"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="155"/>
         <source>Align Center Vertical</source>
         <translation>Dikey Ortaya Hizala</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="156"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="162"/>
         <source>Align Bottom</source>
         <translation>Aşağı Hizala</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="208"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="215"/>
         <source>Graphics</source>
         <translation>Grafik</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="357"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="364"/>
         <source>Save Diagram</source>
         <translation>Şemayı Kaydet</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="330"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="337"/>
         <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source>
         <translation>Taşınabilir Şebeke Grafikleri (*.png);;Ölçeklenebilir vektör Grafikleri (*.svg)</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="357"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="364"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt;dosyası kaydedilemedi.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="345"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="352"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; dosyası halen mevcut. Üzerine yazılsın mı?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="116"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="117"/>
         <source>Re-Scan</source>
         <translation type="unfinished"></translation>
     </message>
@@ -78380,7 +78380,7 @@
 <context>
     <name>UnittestDialog</name>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="903"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="906"/>
         <source>Unittest</source>
         <translation>Birimtest</translation>
     </message>
@@ -78516,42 +78516,42 @@
         <translation>Idle</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="96"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="98"/>
         <source>Start</source>
         <translation>Başla</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="98"/>
-        <source>Start the selected testsuite</source>
-        <translation>Seçilen test yöntemini başmat</translation>
-    </message>
-    <message>
         <location filename="../PyUnit/UnittestDialog.py" line="100"/>
+        <source>Start the selected testsuite</source>
+        <translation>Seçilen test yöntemini başmat</translation>
+    </message>
+    <message>
+        <location filename="../PyUnit/UnittestDialog.py" line="102"/>
         <source>&lt;b&gt;Start Test&lt;/b&gt;&lt;p&gt;This button starts the selected testsuite.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="111"/>
-        <source>Stop</source>
-        <translation>Dur</translation>
-    </message>
-    <message>
         <location filename="../PyUnit/UnittestDialog.py" line="113"/>
+        <source>Stop</source>
+        <translation>Dur</translation>
+    </message>
+    <message>
+        <location filename="../PyUnit/UnittestDialog.py" line="115"/>
         <source>Stop the running unittest</source>
         <translation>Çalışan birimtestini durdur</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="114"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="116"/>
         <source>&lt;b&gt;Stop Test&lt;/b&gt;&lt;p&gt;This button stops a running unittest.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="166"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="168"/>
         <source>^Failure: </source>
         <translation>^Başarısızlık: </translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="167"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="169"/>
         <source>^Error: </source>
         <translation>^Hata: </translation>
     </message>
@@ -78561,7 +78561,7 @@
         <translation type="obsolete">Python3 Dosyaları ({1});;Python2 Dosyaları ({0});; Tüm Dosyalar (*)</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="304"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="306"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation>Python Dosyaları (*.py);;Tüm Dosyalar (*)</translation>
     </message>
@@ -78571,27 +78571,27 @@
         <translation type="obsolete">Testyönteminin dosyasını girmelisiniz.</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="699"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="702"/>
         <source>Preparing Testsuite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="985"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="988"/>
         <source>Running</source>
         <translation>Çalışıyor</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1029"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1032"/>
         <source>Failure: {0}</source>
         <translation>Başarısızlık:{0}</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1044"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1047"/>
         <source>Error: {0}</source>
         <translation>Hata: {0}</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1158"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1161"/>
         <source>Show Source</source>
         <translation>Kaynağı Göster</translation>
     </message>
@@ -78626,32 +78626,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1059"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1062"/>
         <source>    Skipped: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1077"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1080"/>
         <source>    Expected Failure</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1094"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1097"/>
         <source>    Unexpected Success</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="103"/>
-        <source>Rerun Failed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PyUnit/UnittestDialog.py" line="105"/>
-        <source>Reruns failed tests of the selected testsuite</source>
+        <source>Rerun Failed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PyUnit/UnittestDialog.py" line="107"/>
+        <source>Reruns failed tests of the selected testsuite</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PyUnit/UnittestDialog.py" line="109"/>
         <source>&lt;b&gt;Rerun Failed&lt;/b&gt;&lt;p&gt;This button reruns all failed tests of the selected testsuite.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -78738,17 +78738,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="703"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="706"/>
         <source>Unittest with auto-discovery</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="787"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="790"/>
         <source>You must enter a start directory for auto-discovery.</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../PyUnit/UnittestDialog.py" line="1009"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1012"/>
         <source>Ran %n test(s) in {0:.3f}s</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -78761,27 +78761,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="89"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="91"/>
         <source>Discover</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="91"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="93"/>
         <source>Discover tests</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="382"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="384"/>
         <source>Discovering Tests</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="447"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="449"/>
         <source>&lt;p&gt;Unable to discover tests.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../PyUnit/UnittestDialog.py" line="619"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="622"/>
         <source>Discovered %n Test(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -78789,27 +78789,27 @@
         </translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="624"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="627"/>
         <source>&lt;p&gt;Unable to discover tests.&lt;/p&gt;&lt;p&gt;{0}&lt;br/&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="690"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="693"/>
         <source>You must select auto-discovery or enter a test suite file or a dotted test name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="712"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="715"/>
         <source>&lt;Unnamed Test&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="903"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="906"/>
         <source>&lt;p&gt;Unable to run test &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;br/&gt;{2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="93"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="95"/>
         <source>&lt;b&gt;Discover&lt;/b&gt;&lt;p&gt;This button starts a discovery of available tests.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -78834,12 +78834,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="720"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="723"/>
         <source>No test case has been selected. Shall all test cases be run?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="300"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="302"/>
         <source>Python3 Files ({0});;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -78952,7 +78952,7 @@
 <context>
     <name>UrlBar</name>
     <message>
-        <location filename="../WebBrowser/UrlBar/UrlBar.py" line="454"/>
+        <location filename="../WebBrowser/UrlBar/UrlBar.py" line="465"/>
         <source>Unknown</source>
         <translation type="unfinished">Bilinmeyen</translation>
     </message>
@@ -79141,868 +79141,868 @@
         <translation>Araççubuğu Yöneticisi Yeniden yapılandırılıyor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
+        <location filename="../UI/UserInterface.py" line="1754"/>
         <source>Project-Viewer</source>
         <translation>Proje-Görüntüleyici</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
+        <location filename="../UI/UserInterface.py" line="1771"/>
         <source>Multiproject-Viewer</source>
         <translation>Çokluproje-Görüntüleyici</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
+        <location filename="../UI/UserInterface.py" line="1789"/>
         <source>Debug-Viewer</source>
         <translation>Hata Ayıklama Göstericisi</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1118"/>
+        <location filename="../UI/UserInterface.py" line="1123"/>
         <source>Cooperation</source>
         <translation>İşbirliği</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
         <source>Log-Viewer</source>
         <translation>Kayıt-Gösterici</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1849"/>
+        <location filename="../UI/UserInterface.py" line="1859"/>
         <source>Task-Viewer</source>
         <translation>Görev-Gösterici</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
+        <location filename="../UI/UserInterface.py" line="1878"/>
         <source>Template-Viewer</source>
         <translation>Şablon-Gösterici</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
+        <location filename="../UI/UserInterface.py" line="1824"/>
         <source>File-Browser</source>
         <translation>Dosya-Gözatıcısı</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>Shell</source>
         <translation>Kabuk</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1911"/>
+        <location filename="../UI/UserInterface.py" line="1921"/>
         <source>Horizontal Toolbox</source>
         <translation>Yatay Araçkutusu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1598"/>
+        <location filename="../UI/UserInterface.py" line="1608"/>
         <source>{0} - Passive Mode</source>
         <translation>{0} - Pasif Mod</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1605"/>
+        <location filename="../UI/UserInterface.py" line="1615"/>
         <source>{0} - {1} - Passive Mode</source>
         <translation>{0} - {1} -Pasif Mod</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1609"/>
+        <location filename="../UI/UserInterface.py" line="1619"/>
         <source>{0} - {1} - {2} - Passive Mode</source>
         <translation>{0} - {1} - {2} - Pasif Mod</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
+        <location filename="../UI/UserInterface.py" line="1642"/>
         <source>Quit</source>
         <translation>Çık</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
+        <location filename="../UI/UserInterface.py" line="1642"/>
         <source>&amp;Quit</source>
         <translation>&amp;Çıkış</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
+        <location filename="../UI/UserInterface.py" line="1642"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1638"/>
+        <location filename="../UI/UserInterface.py" line="1648"/>
         <source>Quit the IDE</source>
         <translation>IDE den Çık</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1639"/>
+        <location filename="../UI/UserInterface.py" line="1649"/>
         <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1710"/>
+        <location filename="../UI/UserInterface.py" line="1720"/>
         <source>Edit Profile</source>
         <translation>Düzenleme Kesiti</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1716"/>
+        <location filename="../UI/UserInterface.py" line="1726"/>
         <source>Activate the edit view profile</source>
         <translation>Düzenleyici görüntü kesitini aktif yap</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1718"/>
+        <location filename="../UI/UserInterface.py" line="1728"/>
         <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1727"/>
+        <location filename="../UI/UserInterface.py" line="1737"/>
         <source>Debug Profile</source>
         <translation>Hata Ayıklama Kesiti</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1733"/>
+        <location filename="../UI/UserInterface.py" line="1743"/>
         <source>Activate the debug view profile</source>
         <translation>Debug görüntü kesitini aktif et</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1735"/>
+        <location filename="../UI/UserInterface.py" line="1745"/>
         <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
+        <location filename="../UI/UserInterface.py" line="1754"/>
         <source>&amp;Project-Viewer</source>
         <translation>&amp;proje-Görüntüleyici</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
+        <location filename="../UI/UserInterface.py" line="1754"/>
         <source>Alt+Shift+P</source>
         <translation>Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
+        <location filename="../UI/UserInterface.py" line="1771"/>
         <source>&amp;Multiproject-Viewer</source>
         <translation>Çokluproje-Görü&amp;ntüleyici</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
+        <location filename="../UI/UserInterface.py" line="1771"/>
         <source>Alt+Shift+M</source>
         <translation>Alt+Shift+M</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
+        <location filename="../UI/UserInterface.py" line="1789"/>
         <source>&amp;Debug-Viewer</source>
         <translation>Ha&amp;ta Ayıklama-Göstericisi</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
+        <location filename="../UI/UserInterface.py" line="1789"/>
         <source>Alt+Shift+D</source>
         <translation>Alt+Shift+D</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>&amp;Shell</source>
         <translation>&amp;Kabuk</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>Alt+Shift+S</source>
         <translation>Alt+Shift+S</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
+        <location filename="../UI/UserInterface.py" line="1824"/>
         <source>Alt+Shift+F</source>
         <translation>Alt+Shift+F</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
         <source>Alt+Shift+G</source>
         <translation>Alt+Shift+G</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1849"/>
+        <location filename="../UI/UserInterface.py" line="1859"/>
         <source>Alt+Shift+T</source>
         <translation>Alt+Shift+T</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
+        <location filename="../UI/UserInterface.py" line="1878"/>
         <source>Alt+Shift+A</source>
         <translation>Alt+Shift+A</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1911"/>
+        <location filename="../UI/UserInterface.py" line="1921"/>
         <source>&amp;Horizontal Toolbox</source>
         <translation>Ya&amp;tay Araçkutusu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1915"/>
-        <source>Toggle the Horizontal Toolbox window</source>
-        <translation>Yatay Araçkutusu penceresini açkapa</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1917"/>
-        <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1925"/>
+        <source>Toggle the Horizontal Toolbox window</source>
+        <translation>Yatay Araçkutusu penceresini açkapa</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1927"/>
+        <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <source>Left Sidebar</source>
         <translation>Sol Durumçubuğu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1925"/>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <source>&amp;Left Sidebar</source>
         <translation>So&amp;l Durumçubuğu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1929"/>
+        <location filename="../UI/UserInterface.py" line="1939"/>
         <source>Toggle the left sidebar window</source>
         <translation>Sol Durum çubuğu penceresini açkapa</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1930"/>
+        <location filename="../UI/UserInterface.py" line="1940"/>
         <source>&lt;b&gt;Toggle the left sidebar window&lt;/b&gt;&lt;p&gt;If the left sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sol durum çubuğu penceresini açkapa&lt;/b&gt;&lt;p&gt;Eğer sol durum çubuğu penceresi gizli ise onu görünür yap. Eğer görünüyor ise kapat.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1952"/>
+        <location filename="../UI/UserInterface.py" line="1962"/>
         <source>Bottom Sidebar</source>
         <translation>Alt Durumçubuğu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1952"/>
+        <location filename="../UI/UserInterface.py" line="1962"/>
         <source>&amp;Bottom Sidebar</source>
         <translation>Alt Durumçu&amp;buğu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1956"/>
+        <location filename="../UI/UserInterface.py" line="1966"/>
         <source>Toggle the bottom sidebar window</source>
         <translation>Alt Durum çubuğu penceresini açkapa</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1958"/>
+        <location filename="../UI/UserInterface.py" line="1968"/>
         <source>&lt;b&gt;Toggle the bottom sidebar window&lt;/b&gt;&lt;p&gt;If the bottom sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Alt+Shift+O</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>What&apos;s This?</source>
         <translation>Bu nedir?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>&amp;What&apos;s This?</source>
         <translation>Bu &amp;Nedir?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>Shift+F1</source>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2122"/>
+        <location filename="../UI/UserInterface.py" line="2132"/>
         <source>Context sensitive help</source>
         <translation>Duyarlı yardım</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2123"/>
+        <location filename="../UI/UserInterface.py" line="2133"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Duyarlı yardım içeriğini görüntüle&lt;/b&gt;&lt;p&gt;Bu Nedir? modunda, Fare imleci soru işeretiyle beraber bir ok şeklindedir ve bir arayüz elemanı üzerinde tıklarsanız bu elemanın nasıl kullanılacağı ve hakkında kısa bilgi verir. bu özellik diyaloglarda başlık çubuğu üzerindeyken çıkarılan açılır menülerde de bulunmaktadır.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>Helpviewer</source>
         <translation>Yardımgösterici</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>&amp;Helpviewer...</source>
         <translation>&amp;Yardım Gösterici...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>F1</source>
         <translation>F1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2140"/>
+        <location filename="../UI/UserInterface.py" line="2150"/>
         <source>Open the helpviewer window</source>
         <translation>Yardımgösterici penceresini aç</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2160"/>
+        <location filename="../UI/UserInterface.py" line="2170"/>
         <source>Show Versions</source>
         <translation>Sürümü Göster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2160"/>
+        <location filename="../UI/UserInterface.py" line="2170"/>
         <source>Show &amp;Versions</source>
         <translation>Sürümü G&amp;öster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2164"/>
+        <location filename="../UI/UserInterface.py" line="2174"/>
         <source>Display version information</source>
         <translation>Sürüm bilgisini görüntüle</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2166"/>
-        <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Sürümleri Göster&lt;/b&gt;&lt;p&gt;Sürüm bilgisini göster.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2176"/>
+        <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Sürümleri Göster&lt;/b&gt;&lt;p&gt;Sürüm bilgisini göster.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2186"/>
         <source>Check for Updates</source>
         <translation>Güncellemeleri kontrol et</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2173"/>
+        <location filename="../UI/UserInterface.py" line="2183"/>
         <source>Check for &amp;Updates...</source>
         <translation>G&amp;üncellemeleri kontrol et...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2184"/>
+        <location filename="../UI/UserInterface.py" line="2194"/>
         <source>Show downloadable versions</source>
         <translation>Yüklenebilir sürümleri göster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2184"/>
+        <location filename="../UI/UserInterface.py" line="2194"/>
         <source>Show &amp;downloadable versions...</source>
         <translation>Yüklenebilir sürümler&amp;i göster...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2188"/>
+        <location filename="../UI/UserInterface.py" line="2198"/>
         <source>Show the versions available for download</source>
         <translation>İndirmek için mümkün olan sürümü göster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3818"/>
+        <location filename="../UI/UserInterface.py" line="3828"/>
         <source>Report Bug</source>
         <translation>Hata Raporu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2225"/>
+        <location filename="../UI/UserInterface.py" line="2235"/>
         <source>Report &amp;Bug...</source>
         <translation>Hata &amp;Raporu...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2229"/>
+        <location filename="../UI/UserInterface.py" line="2239"/>
         <source>Report a bug</source>
         <translation>Bir hata rapor et</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2230"/>
+        <location filename="../UI/UserInterface.py" line="2240"/>
         <source>&lt;b&gt;Report Bug...&lt;/b&gt;&lt;p&gt;Opens a dialog to report a bug.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
+        <location filename="../UI/UserInterface.py" line="2247"/>
         <source>Request Feature</source>
         <translation>İhtiyaç Duyulan Özellikler</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
+        <location filename="../UI/UserInterface.py" line="2247"/>
         <source>Request &amp;Feature...</source>
         <translation>İhtiyaç Duyulan Özellikler &amp;F...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2241"/>
+        <location filename="../UI/UserInterface.py" line="2251"/>
         <source>Send a feature request</source>
         <translation>ihtiyaç duyuulan bir özelliği gönder</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2243"/>
+        <location filename="../UI/UserInterface.py" line="2253"/>
         <source>&lt;b&gt;Request Feature...&lt;/b&gt;&lt;p&gt;Opens a dialog to send a feature request.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3361"/>
+        <location filename="../UI/UserInterface.py" line="3371"/>
         <source>Unittest</source>
         <translation>Birimtest</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2252"/>
+        <location filename="../UI/UserInterface.py" line="2262"/>
         <source>&amp;Unittest...</source>
         <translation>B&amp;irimtest...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2257"/>
+        <location filename="../UI/UserInterface.py" line="2267"/>
         <source>Start unittest dialog</source>
         <translation>Birimtest diyaloğunu başlat</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2258"/>
+        <location filename="../UI/UserInterface.py" line="2268"/>
         <source>&lt;b&gt;Unittest&lt;/b&gt;&lt;p&gt;Perform unit tests. The dialog gives you the ability to select and run a unittest suite.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2266"/>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>Unittest Restart</source>
         <translation>Birimtestini yeniden başlat</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2266"/>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>&amp;Restart Unittest...</source>
         <translation>Bi&amp;rimtestini Yeniden Başlat...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2271"/>
+        <location filename="../UI/UserInterface.py" line="2281"/>
         <source>Restart last unittest</source>
         <translation>En son birimtesti yeniden başlat</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2272"/>
+        <location filename="../UI/UserInterface.py" line="2282"/>
         <source>&lt;b&gt;Restart Unittest&lt;/b&gt;&lt;p&gt;Restart the unittest performed last.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2296"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Unittest Script</source>
         <translation>Betik Birimtesti</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2296"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Unittest &amp;Script...</source>
         <translation>Betik Birimte&amp;sti...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2301"/>
-        <source>Run unittest with current script</source>
-        <translation>Geçerli betikle test arabirimini çalıştır</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2303"/>
-        <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2311"/>
-        <source>Unittest Project</source>
-        <translation>Proje Birimtesti</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2311"/>
+        <source>Run unittest with current script</source>
+        <translation>Geçerli betikle test arabirimini çalıştır</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2313"/>
+        <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2321"/>
+        <source>Unittest Project</source>
+        <translation>Proje Birimtesti</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2321"/>
         <source>Unittest &amp;Project...</source>
         <translation>Birimtest &amp;Proje...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2316"/>
+        <location filename="../UI/UserInterface.py" line="2326"/>
         <source>Run unittest with current project</source>
         <translation>Geçerli proje ile test arabirimini çalıştır</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2318"/>
+        <location filename="../UI/UserInterface.py" line="2328"/>
         <source>&lt;b&gt;Unittest Project&lt;/b&gt;&lt;p&gt;Run unittest with current project.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2379"/>
+        <location filename="../UI/UserInterface.py" line="2389"/>
         <source>UI Previewer</source>
         <translation>UI Öngörünümü</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2379"/>
+        <location filename="../UI/UserInterface.py" line="2389"/>
         <source>&amp;UI Previewer...</source>
         <translation>&amp;UI Öngörünümü...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2384"/>
+        <location filename="../UI/UserInterface.py" line="2394"/>
         <source>Start the UI Previewer</source>
         <translation>UI Öngörünümünü Başlat</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2385"/>
+        <location filename="../UI/UserInterface.py" line="2395"/>
         <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
         <translation>&lt;b&gt;UI Öngörünümü&lt;/b&gt;&lt;p&gt;UI Öngörünümünü Başlat.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2392"/>
+        <location filename="../UI/UserInterface.py" line="2402"/>
         <source>Translations Previewer</source>
         <translation>Çevirilerin Öngörünümleri</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2392"/>
+        <location filename="../UI/UserInterface.py" line="2402"/>
         <source>&amp;Translations Previewer...</source>
         <translation>Çevirilerin &amp;Öngörünümleri...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2397"/>
+        <location filename="../UI/UserInterface.py" line="2407"/>
         <source>Start the Translations Previewer</source>
         <translation>Çevirilerin Öngörünümlerini Başlat</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2399"/>
+        <location filename="../UI/UserInterface.py" line="2409"/>
         <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Çeviri Öngörünümü&lt;/b&gt;&lt;p&gt;Çeviri Öngörünümünü Başlat.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2406"/>
+        <location filename="../UI/UserInterface.py" line="2416"/>
         <source>Compare Files</source>
         <translation>Dosyaları Karşılaştır</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2406"/>
+        <location filename="../UI/UserInterface.py" line="2416"/>
         <source>&amp;Compare Files...</source>
         <translation>D&amp;osyaları Karşılaştır...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2424"/>
+        <location filename="../UI/UserInterface.py" line="2434"/>
         <source>Compare two files</source>
         <translation>İki dosyayı karşılaştır</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2412"/>
+        <location filename="../UI/UserInterface.py" line="2422"/>
         <source>&lt;b&gt;Compare Files&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Dosyaları Karşılaştır&lt;/b&gt;&lt;p&gt;İki dosyayı karşılaştırmak için diyalog aç.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2419"/>
+        <location filename="../UI/UserInterface.py" line="2429"/>
         <source>Compare Files side by side</source>
         <translation>Dosyaları yan yana karşılaştır</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2425"/>
+        <location filename="../UI/UserInterface.py" line="2435"/>
         <source>&lt;b&gt;Compare Files side by side&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files and show the result side by side.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Dosyaları biribir karşılaştır&lt;/b&gt;&lt;p&gt;İki dosyayı karşılaştırmak için bir diyalog aç ve sonuçları yan yana göster.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2433"/>
+        <location filename="../UI/UserInterface.py" line="2443"/>
         <source>SQL Browser</source>
         <translation>SQL Gözatıcısı</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2433"/>
+        <location filename="../UI/UserInterface.py" line="2443"/>
         <source>SQL &amp;Browser...</source>
         <translation>SQL &amp;Gözatıcısı...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2438"/>
+        <location filename="../UI/UserInterface.py" line="2448"/>
         <source>Browse a SQL database</source>
         <translation>Bir SQL veritabanına gözat</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2439"/>
+        <location filename="../UI/UserInterface.py" line="2449"/>
         <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
         <translation>&lt;b&gt;SQL Gözatıcısı&lt;/b&gt;&lt;p&gt;Bir SQL veritabanına gözat.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2451"/>
+        <location filename="../UI/UserInterface.py" line="2461"/>
         <source>Mini Editor</source>
         <translation>Mini Düzenleyici</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2446"/>
+        <location filename="../UI/UserInterface.py" line="2456"/>
         <source>Mini &amp;Editor...</source>
         <translation>Mini &amp;Düzenleyici...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2452"/>
+        <location filename="../UI/UserInterface.py" line="2462"/>
         <source>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Open a dialog with a simplified editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Mini Düzenleyici&lt;/b&gt;&lt;p&gt;Basit bir düzenleyci ile bir diyalog açılır.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2488"/>
+        <location filename="../UI/UserInterface.py" line="2498"/>
         <source>Icon Editor</source>
         <translation>İkon Düzenleyici</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2488"/>
+        <location filename="../UI/UserInterface.py" line="2498"/>
         <source>&amp;Icon Editor...</source>
         <translation>&amp;İkon Düzenleyici...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2517"/>
+        <location filename="../UI/UserInterface.py" line="2527"/>
         <source>Preferences</source>
         <translation>Seçenekler</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2517"/>
+        <location filename="../UI/UserInterface.py" line="2527"/>
         <source>&amp;Preferences...</source>
         <translation>&amp;Seçenekler...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2522"/>
+        <location filename="../UI/UserInterface.py" line="2532"/>
         <source>Set the prefered configuration</source>
         <translation>tercih edilen ayarları yapınız</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2524"/>
+        <location filename="../UI/UserInterface.py" line="2534"/>
         <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tercihler&lt;/b&gt;&lt;p&gt;Uygulamanın ayarlama maddelerini tercih ettiğiniz değerlerle ayarlayınız.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2533"/>
+        <location filename="../UI/UserInterface.py" line="2543"/>
         <source>Export Preferences</source>
         <translation>Seçenekleri Dışa Aktar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2533"/>
+        <location filename="../UI/UserInterface.py" line="2543"/>
         <source>E&amp;xport Preferences...</source>
         <translation>Tercihleri Dı&amp;şa Aktar...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2538"/>
+        <location filename="../UI/UserInterface.py" line="2548"/>
         <source>Export the current configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2540"/>
+        <location filename="../UI/UserInterface.py" line="2550"/>
         <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2547"/>
+        <location filename="../UI/UserInterface.py" line="2557"/>
         <source>Import Preferences</source>
         <translation>Seçenekleri İçe Aktar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2547"/>
+        <location filename="../UI/UserInterface.py" line="2557"/>
         <source>I&amp;mport Preferences...</source>
         <translation>Tercihleri İ&amp;çeri Aktar...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2552"/>
+        <location filename="../UI/UserInterface.py" line="2562"/>
         <source>Import a previously exported configuration</source>
         <translation>daha önce dışa aktarılan ayrlamaları içe aktar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2554"/>
+        <location filename="../UI/UserInterface.py" line="2564"/>
         <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2561"/>
+        <location filename="../UI/UserInterface.py" line="2571"/>
         <source>Reload APIs</source>
         <translation>API&apos;leri yeniden yükle</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2561"/>
+        <location filename="../UI/UserInterface.py" line="2571"/>
         <source>Reload &amp;APIs</source>
         <translation>&amp;API&apos;leri yeniden yükle</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2565"/>
+        <location filename="../UI/UserInterface.py" line="2575"/>
         <source>Reload the API information</source>
         <translation>API bilgisini yeniden yükle</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2567"/>
+        <location filename="../UI/UserInterface.py" line="2577"/>
         <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2579"/>
+        <location filename="../UI/UserInterface.py" line="2589"/>
         <source>Show external tools</source>
         <translation>Harici araçları göster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2574"/>
+        <location filename="../UI/UserInterface.py" line="2584"/>
         <source>Show external &amp;tools</source>
         <translation>Karak&amp;ter tablosunu göster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2590"/>
+        <location filename="../UI/UserInterface.py" line="2600"/>
         <source>View Profiles</source>
         <translation>Görünüm Kesiti</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2590"/>
+        <location filename="../UI/UserInterface.py" line="2600"/>
         <source>&amp;View Profiles...</source>
         <translation>&amp;Görünüm Kesiti...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2595"/>
+        <location filename="../UI/UserInterface.py" line="2605"/>
         <source>Configure view profiles</source>
         <translation>Görünüm kesitlerini ayarla</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2597"/>
-        <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2607"/>
+        <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2617"/>
         <source>Toolbars</source>
         <translation>Araççubuğu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2607"/>
+        <location filename="../UI/UserInterface.py" line="2617"/>
         <source>Tool&amp;bars...</source>
         <translation>Araççu&amp;buğu...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2612"/>
-        <source>Configure toolbars</source>
-        <translation>Araççubuğunu ayarla</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2613"/>
-        <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2622"/>
-        <source>Keyboard Shortcuts</source>
-        <translation>Klavye Kısayolları</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2622"/>
+        <source>Configure toolbars</source>
+        <translation>Araççubuğunu ayarla</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2623"/>
+        <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2632"/>
+        <source>Keyboard Shortcuts</source>
+        <translation>Klavye Kısayolları</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2632"/>
         <source>Keyboard &amp;Shortcuts...</source>
         <translation>Klavye Kı&amp;sayolları...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2627"/>
-        <source>Set the keyboard shortcuts</source>
-        <translation>Klavye kısayollarını ayarla</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2629"/>
-        <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6313"/>
-        <source>Export Keyboard Shortcuts</source>
-        <translation>Kılavye Kısa Yollarını Dışa Aktar</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2637"/>
+        <source>Set the keyboard shortcuts</source>
+        <translation>Klavye kısayollarını ayarla</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2639"/>
+        <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6333"/>
+        <source>Export Keyboard Shortcuts</source>
+        <translation>Kılavye Kısa Yollarını Dışa Aktar</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2647"/>
         <source>&amp;Export Keyboard Shortcuts...</source>
         <translation>Kılavye Kısa Yo&amp;llarını Dışa Aktar...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2642"/>
+        <location filename="../UI/UserInterface.py" line="2652"/>
         <source>Export the keyboard shortcuts</source>
         <translation>Kılavye kısa yollarını dışa aktar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2644"/>
+        <location filename="../UI/UserInterface.py" line="2654"/>
         <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6329"/>
+        <location filename="../UI/UserInterface.py" line="6349"/>
         <source>Import Keyboard Shortcuts</source>
         <translation>Klavye kısayollarını İçe Aktar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2651"/>
+        <location filename="../UI/UserInterface.py" line="2661"/>
         <source>&amp;Import Keyboard Shortcuts...</source>
         <translation>Klavye K&amp;ısayollarını İçe Aktar...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2656"/>
+        <location filename="../UI/UserInterface.py" line="2666"/>
         <source>Import the keyboard shortcuts</source>
         <translation>Klavye kısayolları içeri aktarılıyor</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2658"/>
+        <location filename="../UI/UserInterface.py" line="2668"/>
         <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2716"/>
+        <location filename="../UI/UserInterface.py" line="2726"/>
         <source>Activate current editor</source>
         <translation>Geçerli düzenleyiciyi aktif yap</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2716"/>
-        <source>Alt+Shift+E</source>
-        <translation>Alt+Shift+E</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2726"/>
+        <source>Alt+Shift+E</source>
+        <translation>Alt+Shift+E</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2736"/>
         <source>Show next</source>
         <translation>Sonrakini göster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2726"/>
+        <location filename="../UI/UserInterface.py" line="2736"/>
         <source>Ctrl+Alt+Tab</source>
         <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2735"/>
+        <location filename="../UI/UserInterface.py" line="2745"/>
         <source>Show previous</source>
         <translation>Öncekini göster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2735"/>
+        <location filename="../UI/UserInterface.py" line="2745"/>
         <source>Shift+Ctrl+Alt+Tab</source>
         <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2744"/>
+        <location filename="../UI/UserInterface.py" line="2754"/>
         <source>Switch between tabs</source>
         <translation>Sekmeler arasında değiştir</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2744"/>
+        <location filename="../UI/UserInterface.py" line="2754"/>
         <source>Ctrl+1</source>
         <translation>Ctrl+1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2753"/>
+        <location filename="../UI/UserInterface.py" line="2763"/>
         <source>Plugin Infos</source>
         <translation>Eklenti Bilgisi</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2753"/>
+        <location filename="../UI/UserInterface.py" line="2763"/>
         <source>&amp;Plugin Infos...</source>
         <translation>Eklenti Bil&amp;gisi...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2757"/>
+        <location filename="../UI/UserInterface.py" line="2767"/>
         <source>Show Plugin Infos</source>
         <translation>Eklenti Bilgisini Göster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2758"/>
+        <location filename="../UI/UserInterface.py" line="2768"/>
         <source>&lt;b&gt;Plugin Infos...&lt;/b&gt;&lt;p&gt;This opens a dialog, that show some information about loaded plugins.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Eklenti Bilgileri...&lt;/b&gt;&lt;p&gt;Bu yüklenen eklentiler hakkında bazı bilgileri gösteren bir diyalog açar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2771"/>
+        <location filename="../UI/UserInterface.py" line="2781"/>
         <source>Install Plugins</source>
         <translation>Eklenti Kur</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2766"/>
+        <location filename="../UI/UserInterface.py" line="2776"/>
         <source>&amp;Install Plugins...</source>
         <translation>Ekle&amp;nti Kur...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2772"/>
+        <location filename="../UI/UserInterface.py" line="2782"/>
         <source>&lt;b&gt;Install Plugins...&lt;/b&gt;&lt;p&gt;This opens a dialog to install or update plugins.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Eklenti Kur...&lt;/b&gt;&lt;p&gt;Bu eklenti kurmak yada güncellemek için bir diyalog açar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2784"/>
+        <location filename="../UI/UserInterface.py" line="2794"/>
         <source>Uninstall Plugin</source>
         <translation>Eklenti Kaldır</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2779"/>
+        <location filename="../UI/UserInterface.py" line="2789"/>
         <source>&amp;Uninstall Plugin...</source>
         <translation>Ekle&amp;nti Kaldır...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2785"/>
+        <location filename="../UI/UserInterface.py" line="2795"/>
         <source>&lt;b&gt;Uninstall Plugin...&lt;/b&gt;&lt;p&gt;This opens a dialog to uninstall a plugin.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Eklenti Kaldır...&lt;/b&gt;&lt;p&gt;Bu bir eklentiyi kaldırmak için bir diyalog açar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2792"/>
+        <location filename="../UI/UserInterface.py" line="2802"/>
         <source>Plugin Repository</source>
         <translation>Eklenti Havuzu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2792"/>
+        <location filename="../UI/UserInterface.py" line="2802"/>
         <source>Plugin &amp;Repository...</source>
         <translation>Eklenti Hav&amp;uzu...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2797"/>
+        <location filename="../UI/UserInterface.py" line="2807"/>
         <source>Show Plugins available for download</source>
         <translation>İndirme için uygun olan eklentileri göster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2799"/>
+        <location filename="../UI/UserInterface.py" line="2809"/>
         <source>&lt;b&gt;Plugin Repository...&lt;/b&gt;&lt;p&gt;This opens a dialog, that shows a list of plugins available on the Internet.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Eklenti Kaynak Havuzu...&lt;/b&gt;&lt;p&gt;Bu internette hazır olan eklentilerin listelendiği bir diyalog açar.&lt;/p&gt;</translation>
     </message>
@@ -80032,7 +80032,7 @@
         <translation type="obsolete">PyQt4 Begelerini aç</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2949"/>
+        <location filename="../UI/UserInterface.py" line="2959"/>
         <source>Eric API Documentation</source>
         <translation>Eric API Belgeleri</translation>
     </message>
@@ -80042,7 +80042,7 @@
         <translation type="obsolete">&amp;Eric API Dökümanı</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2953"/>
+        <location filename="../UI/UserInterface.py" line="2963"/>
         <source>Open Eric API Documentation</source>
         <translation>Eric API Belgelerini Aç</translation>
     </message>
@@ -80062,112 +80062,112 @@
         <translation type="obsolete">PySide belgelerini açın</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3154"/>
+        <location filename="../UI/UserInterface.py" line="3164"/>
         <source>&amp;Unittest</source>
         <translation>Bir&amp;imtest</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3098"/>
-        <source>E&amp;xtras</source>
-        <translation>İla&amp;veler</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="3108"/>
+        <source>E&amp;xtras</source>
+        <translation>İla&amp;veler</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3118"/>
         <source>Wi&amp;zards</source>
         <translation>Sihirba&amp;z</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3171"/>
+        <location filename="../UI/UserInterface.py" line="3181"/>
         <source>Select Tool Group</source>
         <translation>Araç Grubunu Seç</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3182"/>
+        <location filename="../UI/UserInterface.py" line="3192"/>
         <source>Se&amp;ttings</source>
         <translation>Ayar&amp;lar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3212"/>
+        <location filename="../UI/UserInterface.py" line="3222"/>
         <source>&amp;Window</source>
         <translation>&amp;Pencere</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3273"/>
+        <location filename="../UI/UserInterface.py" line="3283"/>
         <source>&amp;Toolbars</source>
         <translation>&amp;Araççubuğu</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3135"/>
+        <location filename="../UI/UserInterface.py" line="3145"/>
         <source>P&amp;lugins</source>
         <translation>Ek&amp;lentiler</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3144"/>
+        <location filename="../UI/UserInterface.py" line="3154"/>
         <source>Configure...</source>
         <translation>Ayarlanıyor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3287"/>
+        <location filename="../UI/UserInterface.py" line="3297"/>
         <source>&amp;Help</source>
         <translation>&amp;Yardım</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3360"/>
+        <location filename="../UI/UserInterface.py" line="3370"/>
         <source>Tools</source>
         <translation>Araçlar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3362"/>
+        <location filename="../UI/UserInterface.py" line="3372"/>
         <source>Settings</source>
         <translation>Ayarlar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5220"/>
+        <location filename="../UI/UserInterface.py" line="5237"/>
         <source>Help</source>
         <translation>Yardım</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3364"/>
+        <location filename="../UI/UserInterface.py" line="3374"/>
         <source>Profiles</source>
         <translation>Kesitler</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3365"/>
+        <location filename="../UI/UserInterface.py" line="3375"/>
         <source>Plugins</source>
         <translation>Eklentiler</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3530"/>
+        <location filename="../UI/UserInterface.py" line="3540"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3537"/>
+        <location filename="../UI/UserInterface.py" line="3547"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3544"/>
+        <location filename="../UI/UserInterface.py" line="3554"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3551"/>
+        <location filename="../UI/UserInterface.py" line="3561"/>
         <source>&lt;p&gt;This part of the status bar displays an indication of the current editors files writability.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3558"/>
+        <location filename="../UI/UserInterface.py" line="3568"/>
         <source>&lt;p&gt;This part of the status bar displays the line number of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3565"/>
+        <location filename="../UI/UserInterface.py" line="3575"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3636"/>
+        <location filename="../UI/UserInterface.py" line="3646"/>
         <source>External Tools/{0}</source>
         <translation>Harici Araçlar/{0}</translation>
     </message>
@@ -80177,52 +80177,52 @@
         <translation type="obsolete">&lt;h3&gt;Sürüm Numaraları&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7279"/>
+        <location filename="../UI/UserInterface.py" line="7300"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3818"/>
+        <location filename="../UI/UserInterface.py" line="3828"/>
         <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
         <translation>E-posta adresi veya posta  sunucu adresi  boş. Lütfen e-posta ayarlarını özellikler diyaloğundan giriniz.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4138"/>
+        <location filename="../UI/UserInterface.py" line="4148"/>
         <source>Restart application</source>
         <translation>Uygulmayı yeniden başlat</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4138"/>
+        <location filename="../UI/UserInterface.py" line="4148"/>
         <source>The application needs to be restarted. Do it now?</source>
         <translation>Uygulama yeniden başlatılmaya ihtiyaç duyuyor. Şimdi yapılsın mı?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4219"/>
+        <location filename="../UI/UserInterface.py" line="4229"/>
         <source>Configure Tool Groups ...</source>
         <translation>Alet Grupları Ayarlanıyor...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4223"/>
+        <location filename="../UI/UserInterface.py" line="4233"/>
         <source>Configure current Tool Group ...</source>
         <translation>Geçerli alet grubunu ayarla...</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4174"/>
+        <location filename="../UI/UserInterface.py" line="4184"/>
         <source>&amp;Builtin Tools</source>
         <translation>Ya&amp;pılandırma Araçları</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4191"/>
+        <location filename="../UI/UserInterface.py" line="4201"/>
         <source>&amp;Plugin Tools</source>
         <translation>Eklen&amp;ti Araçları</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4340"/>
+        <location filename="../UI/UserInterface.py" line="4350"/>
         <source>&amp;Show all</source>
         <translation>Hepsini Gö&amp;ster</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4342"/>
+        <location filename="../UI/UserInterface.py" line="4352"/>
         <source>&amp;Hide all</source>
         <translation>&amp;Hepsini gizle</translation>
     </message>
@@ -80237,109 +80237,109 @@
         <translation type="obsolete">Qt3 Desteği</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5348"/>
+        <location filename="../UI/UserInterface.py" line="5365"/>
         <source>Problem</source>
         <translation>Problem</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5348"/>
+        <location filename="../UI/UserInterface.py" line="5365"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist or is zero length.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5543"/>
+        <location filename="../UI/UserInterface.py" line="5560"/>
         <source>Process Generation Error</source>
         <translation>İşlem Üretecinde Hata</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5073"/>
+        <location filename="../UI/UserInterface.py" line="5090"/>
         <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5143"/>
+        <location filename="../UI/UserInterface.py" line="5160"/>
         <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5187"/>
+        <location filename="../UI/UserInterface.py" line="5204"/>
         <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5220"/>
+        <location filename="../UI/UserInterface.py" line="5237"/>
         <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
         <translation>Hali hazırda kullanıcı göstericisi seçilmedi. Lütfen .birini belirlemek için özellikler diyaloğunu kullanının.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5234"/>
+        <location filename="../UI/UserInterface.py" line="5251"/>
         <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5254"/>
+        <location filename="../UI/UserInterface.py" line="5271"/>
         <source>&lt;p&gt;Could not start the help viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5304"/>
+        <location filename="../UI/UserInterface.py" line="5321"/>
         <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5361"/>
+        <location filename="../UI/UserInterface.py" line="5378"/>
         <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5384"/>
+        <location filename="../UI/UserInterface.py" line="5401"/>
         <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5488"/>
+        <location filename="../UI/UserInterface.py" line="5505"/>
         <source>External Tools</source>
         <translation>Harici Araçlar</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5479"/>
+        <location filename="../UI/UserInterface.py" line="5496"/>
         <source>No tool entry found for external tool &apos;{0}&apos; in tool group &apos;{1}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5488"/>
+        <location filename="../UI/UserInterface.py" line="5505"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5527"/>
+        <location filename="../UI/UserInterface.py" line="5544"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5543"/>
+        <location filename="../UI/UserInterface.py" line="5560"/>
         <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5621"/>
+        <location filename="../UI/UserInterface.py" line="5638"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="5900"/>
+        <source>Documentation Missing</source>
+        <translation>Eksik Belgeleme</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="5900"/>
+        <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; could not be found.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="5883"/>
-        <source>Documentation Missing</source>
-        <translation>Eksik Belgeleme</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5883"/>
-        <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; could not be found.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5866"/>
         <source>Documentation</source>
         <translation>Belgeleme</translation>
     </message>
@@ -80359,127 +80359,127 @@
         <translation type="obsolete">Görevler Okunuyor</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6518"/>
+        <location filename="../UI/UserInterface.py" line="6538"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1669"/>
+        <location filename="../UI/UserInterface.py" line="1679"/>
         <source>Save session</source>
         <translation>Oturumu kaydet</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6556"/>
+        <location filename="../UI/UserInterface.py" line="6576"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6611"/>
+        <location filename="../UI/UserInterface.py" line="6631"/>
         <source>Read session</source>
         <translation>Oturumu oku</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6611"/>
+        <location filename="../UI/UserInterface.py" line="6631"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6897"/>
+        <location filename="../UI/UserInterface.py" line="6917"/>
         <source>Drop Error</source>
         <translation>Düşme hatası</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6897"/>
+        <location filename="../UI/UserInterface.py" line="6917"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; bir dosya değil.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7062"/>
+        <location filename="../UI/UserInterface.py" line="7082"/>
         <source>&amp;Cancel</source>
         <translation>&amp;Vazgeç</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7071"/>
+        <location filename="../UI/UserInterface.py" line="7091"/>
         <source>Trying host {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7221"/>
+        <location filename="../UI/UserInterface.py" line="7242"/>
         <source>Update available</source>
         <translation>Güncelleme mümkün değil</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7240"/>
+        <location filename="../UI/UserInterface.py" line="7261"/>
         <source>Error during updates check</source>
         <translation>Güncellemeleri kontrol esnasında hata</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7240"/>
+        <location filename="../UI/UserInterface.py" line="7261"/>
         <source>Could not perform updates check.</source>
         <translation>Güncellemelere ulaşamıyorum.</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7264"/>
+        <location filename="../UI/UserInterface.py" line="7285"/>
         <source>&lt;h3&gt;Available versions&lt;/h3&gt;&lt;table&gt;</source>
         <translation>&lt;h3&gt;Mümkün sürümler&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7316"/>
+        <location filename="../UI/UserInterface.py" line="7337"/>
         <source>First time usage</source>
         <translation>İlk kullanım</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1174"/>
+        <location filename="../UI/UserInterface.py" line="1179"/>
         <source>Symbols</source>
         <translation>Semboller</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1183"/>
+        <location filename="../UI/UserInterface.py" line="1188"/>
         <source>Numbers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2004"/>
+        <location filename="../UI/UserInterface.py" line="2014"/>
         <source>Alt+Shift+Y</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
+        <location filename="../UI/UserInterface.py" line="2033"/>
         <source>Alt+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2927"/>
+        <location filename="../UI/UserInterface.py" line="2937"/>
         <source>Python 3 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2931"/>
+        <location filename="../UI/UserInterface.py" line="2941"/>
         <source>Open Python 3 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7129"/>
+        <location filename="../UI/UserInterface.py" line="7150"/>
         <source>Error getting versions information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7122"/>
+        <location filename="../UI/UserInterface.py" line="7143"/>
         <source>The versions information could not be downloaded. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6086"/>
+        <location filename="../UI/UserInterface.py" line="6103"/>
         <source>Open Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6086"/>
+        <location filename="../UI/UserInterface.py" line="6103"/>
         <source>Could not start a web browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7129"/>
+        <location filename="../UI/UserInterface.py" line="7150"/>
         <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80504,363 +80504,363 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
+        <location filename="../UI/UserInterface.py" line="1701"/>
         <source>New Window</source>
         <translation type="unfinished">Yeni Pencere</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
+        <location filename="../UI/UserInterface.py" line="1701"/>
         <source>New &amp;Window</source>
         <translation type="unfinished">Yeni &amp;Pencere</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
+        <location filename="../UI/UserInterface.py" line="1701"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2280"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <source>Unittest Rerun Failed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2280"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <source>Rerun Failed Tests...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2285"/>
+        <location filename="../UI/UserInterface.py" line="2295"/>
         <source>Rerun failed tests of the last run</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2287"/>
+        <location filename="../UI/UserInterface.py" line="2297"/>
         <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last unittest run.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2419"/>
+        <location filename="../UI/UserInterface.py" line="2429"/>
         <source>Compare &amp;Files side by side...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2502"/>
+        <location filename="../UI/UserInterface.py" line="2512"/>
         <source>Snapshot</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2502"/>
+        <location filename="../UI/UserInterface.py" line="2512"/>
         <source>&amp;Snapshot...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2507"/>
+        <location filename="../UI/UserInterface.py" line="2517"/>
         <source>Take snapshots of a screen region</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2509"/>
+        <location filename="../UI/UserInterface.py" line="2519"/>
         <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5456"/>
+        <location filename="../UI/UserInterface.py" line="5473"/>
         <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7335"/>
+        <location filename="../UI/UserInterface.py" line="7356"/>
         <source>Select Workspace Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1886"/>
+        <location filename="../UI/UserInterface.py" line="1896"/>
         <source>Left Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1898"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <source>Right Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
+        <location filename="../UI/UserInterface.py" line="1760"/>
         <source>Switch the input focus to the Project-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1752"/>
+        <location filename="../UI/UserInterface.py" line="1762"/>
         <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1767"/>
+        <location filename="../UI/UserInterface.py" line="1777"/>
         <source>Switch the input focus to the Multiproject-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1769"/>
+        <location filename="../UI/UserInterface.py" line="1779"/>
         <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
+        <location filename="../UI/UserInterface.py" line="1795"/>
         <source>Switch the input focus to the Debug-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1787"/>
+        <location filename="../UI/UserInterface.py" line="1797"/>
         <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1803"/>
+        <location filename="../UI/UserInterface.py" line="1813"/>
         <source>Switch the input focus to the Shell window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1805"/>
+        <location filename="../UI/UserInterface.py" line="1815"/>
         <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
+        <location filename="../UI/UserInterface.py" line="1824"/>
         <source>&amp;File-Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
+        <location filename="../UI/UserInterface.py" line="1830"/>
         <source>Switch the input focus to the File-Browser window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1822"/>
+        <location filename="../UI/UserInterface.py" line="1832"/>
         <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
         <source>Lo&amp;g-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1837"/>
+        <location filename="../UI/UserInterface.py" line="1847"/>
         <source>Switch the input focus to the Log-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
-        <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1849"/>
+        <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1859"/>
         <source>&amp;Task-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1855"/>
+        <location filename="../UI/UserInterface.py" line="1865"/>
         <source>Switch the input focus to the Task-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
+        <location filename="../UI/UserInterface.py" line="1878"/>
         <source>Templ&amp;ate-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1874"/>
+        <location filename="../UI/UserInterface.py" line="1884"/>
         <source>Switch the input focus to the Template-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1876"/>
-        <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="1886"/>
+        <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1896"/>
         <source>&amp;Left Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1889"/>
+        <location filename="../UI/UserInterface.py" line="1899"/>
         <source>Toggle the Left Toolbox window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1890"/>
+        <location filename="../UI/UserInterface.py" line="1900"/>
         <source>&lt;b&gt;Toggle the Left Toolbox window&lt;/b&gt;&lt;p&gt;If the Left Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1898"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <source>&amp;Right Toolbox</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1902"/>
+        <location filename="../UI/UserInterface.py" line="1912"/>
         <source>Toggle the Right Toolbox window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1903"/>
+        <location filename="../UI/UserInterface.py" line="1913"/>
         <source>&lt;b&gt;Toggle the Right Toolbox window&lt;/b&gt;&lt;p&gt;If the Right Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1948"/>
         <source>Right Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1948"/>
         <source>&amp;Right Sidebar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1942"/>
+        <location filename="../UI/UserInterface.py" line="1952"/>
         <source>Toggle the right sidebar window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1944"/>
+        <location filename="../UI/UserInterface.py" line="1954"/>
         <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Cooperation-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Co&amp;operation-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1973"/>
+        <location filename="../UI/UserInterface.py" line="1983"/>
         <source>Switch the input focus to the Cooperation-Viewer window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="1985"/>
         <source>&lt;b&gt;Activate Cooperation-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Cooperation-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2004"/>
+        <location filename="../UI/UserInterface.py" line="2014"/>
         <source>Symbols-Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="2014"/>
+        <source>S&amp;ymbols-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2020"/>
+        <source>Switch the input focus to the Symbols-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2022"/>
+        <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2033"/>
+        <source>Numbers-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2033"/>
+        <source>Num&amp;bers-Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2039"/>
+        <source>Switch the input focus to the Numbers-Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2041"/>
+        <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3231"/>
+        <source>&amp;Windows</source>
+        <translation type="unfinished">&amp;Pencereler</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1867"/>
+        <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1996"/>
+        <source>IRC</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1996"/>
+        <source>&amp;IRC</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2002"/>
+        <source>Switch the input focus to the IRC window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="2004"/>
-        <source>S&amp;ymbols-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2010"/>
-        <source>Switch the input focus to the Symbols-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2012"/>
-        <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
-        <source>Numbers-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
-        <source>Num&amp;bers-Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2029"/>
-        <source>Switch the input focus to the Numbers-Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2031"/>
-        <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3221"/>
-        <source>&amp;Windows</source>
-        <translation type="unfinished">&amp;Pencereler</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1857"/>
-        <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
-        <source>IRC</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
-        <source>&amp;IRC</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1992"/>
-        <source>Switch the input focus to the IRC window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
         <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2338"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Qt-Designer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2338"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Qt-&amp;Designer...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2343"/>
+        <location filename="../UI/UserInterface.py" line="2353"/>
         <source>Start Qt-Designer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2344"/>
+        <location filename="../UI/UserInterface.py" line="2354"/>
         <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2364"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Qt-Linguist</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2364"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Qt-&amp;Linguist...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2369"/>
+        <location filename="../UI/UserInterface.py" line="2379"/>
         <source>Start Qt-Linguist</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2370"/>
+        <location filename="../UI/UserInterface.py" line="2380"/>
         <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2858"/>
+        <location filename="../UI/UserInterface.py" line="2868"/>
         <source>Qt5 Documentation</source>
         <translation type="unfinished">Qt4 Belgeleri {5 ?}</translation>
     </message>
@@ -80870,57 +80870,57 @@
         <translation type="obsolete">Qt&amp;4 Belgeleri {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2862"/>
+        <location filename="../UI/UserInterface.py" line="2872"/>
         <source>Open Qt5 Documentation</source>
         <translation type="unfinished">QT4 Belgelerini Aç {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2666"/>
+        <location filename="../UI/UserInterface.py" line="2676"/>
         <source>Manage SSL Certificates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2666"/>
+        <location filename="../UI/UserInterface.py" line="2676"/>
         <source>Manage SSL Certificates...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2671"/>
+        <location filename="../UI/UserInterface.py" line="2681"/>
         <source>Manage the saved SSL certificates</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2673"/>
+        <location filename="../UI/UserInterface.py" line="2683"/>
         <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2682"/>
+        <location filename="../UI/UserInterface.py" line="2692"/>
         <source>Edit Message Filters</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2682"/>
+        <location filename="../UI/UserInterface.py" line="2692"/>
         <source>Edit Message Filters...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2687"/>
+        <location filename="../UI/UserInterface.py" line="2697"/>
         <source>Edit the message filters used to suppress unwanted messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2689"/>
+        <location filename="../UI/UserInterface.py" line="2699"/>
         <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2888"/>
+        <location filename="../UI/UserInterface.py" line="2898"/>
         <source>PyQt5 Documentation</source>
         <translation type="unfinished">PyQt4 Belgeleri {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2892"/>
+        <location filename="../UI/UserInterface.py" line="2902"/>
         <source>Open PyQt5 Documentation</source>
         <translation type="unfinished">PyQt4 Begelerini aç {5 ?}</translation>
     </message>
@@ -80930,32 +80930,32 @@
         <translation type="obsolete">&lt;p&gt;PyQt4 Belgelerinin başlama noktası ayarlanmamış.&lt;/p&gt; {5 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2933"/>
+        <location filename="../UI/UserInterface.py" line="2943"/>
         <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7062"/>
+        <location filename="../UI/UserInterface.py" line="7082"/>
         <source>%v/%m</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2203"/>
+        <location filename="../UI/UserInterface.py" line="2213"/>
         <source>Show Error Log</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2199"/>
+        <location filename="../UI/UserInterface.py" line="2209"/>
         <source>Show Error &amp;Log...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2204"/>
+        <location filename="../UI/UserInterface.py" line="2214"/>
         <source>&lt;b&gt;Show Error Log...&lt;/b&gt;&lt;p&gt;Opens a dialog showing the most recent error log.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7066"/>
+        <location filename="../UI/UserInterface.py" line="7086"/>
         <source>Version Check</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80995,67 +80995,67 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4194"/>
+        <location filename="../UI/UserInterface.py" line="4204"/>
         <source>&amp;User Tools</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4266"/>
+        <location filename="../UI/UserInterface.py" line="4276"/>
         <source>No User Tools Configured</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2459"/>
+        <location filename="../UI/UserInterface.py" line="2469"/>
         <source>Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2459"/>
+        <location filename="../UI/UserInterface.py" line="2469"/>
         <source>&amp;Hex Editor...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2705"/>
+        <location filename="../UI/UserInterface.py" line="2715"/>
         <source>Clear private data</source>
         <translation type="unfinished">Özel verileri temizle</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2707"/>
+        <location filename="../UI/UserInterface.py" line="2717"/>
         <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1665"/>
+        <location filename="../UI/UserInterface.py" line="1675"/>
         <source>Save session...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1670"/>
+        <location filename="../UI/UserInterface.py" line="1680"/>
         <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6650"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <source>Load session</source>
         <translation type="unfinished">Oturum yükleniyor</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1678"/>
+        <location filename="../UI/UserInterface.py" line="1688"/>
         <source>Load session...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1683"/>
+        <location filename="../UI/UserInterface.py" line="1693"/>
         <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6703"/>
+        <location filename="../UI/UserInterface.py" line="6723"/>
         <source>Crash Session found!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6703"/>
+        <location filename="../UI/UserInterface.py" line="6723"/>
         <source>A session file of a crashed session was found. Shall this session be restored?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -81070,448 +81070,448 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7209"/>
+        <location filename="../UI/UserInterface.py" line="7230"/>
         <source>Update Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7209"/>
+        <location filename="../UI/UserInterface.py" line="7230"/>
         <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2042"/>
+        <location filename="../UI/UserInterface.py" line="2052"/>
         <source>Code Documentation Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2863"/>
+        <location filename="../UI/UserInterface.py" line="2873"/>
         <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2894"/>
+        <location filename="../UI/UserInterface.py" line="2904"/>
         <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2970"/>
+        <location filename="../UI/UserInterface.py" line="2980"/>
         <source>PySide2 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2974"/>
+        <location filename="../UI/UserInterface.py" line="2984"/>
         <source>Open PySide2 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2976"/>
+        <location filename="../UI/UserInterface.py" line="2986"/>
         <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5866"/>
+        <location filename="../UI/UserInterface.py" line="5883"/>
         <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2813"/>
+        <location filename="../UI/UserInterface.py" line="2823"/>
         <source>Virtualenv Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2807"/>
+        <location filename="../UI/UserInterface.py" line="2817"/>
         <source>&amp;Virtualenv Manager...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2815"/>
+        <location filename="../UI/UserInterface.py" line="2825"/>
         <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2830"/>
+        <location filename="../UI/UserInterface.py" line="2840"/>
         <source>Virtualenv Configurator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2824"/>
+        <location filename="../UI/UserInterface.py" line="2834"/>
         <source>Virtualenv &amp;Configurator...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2832"/>
+        <location filename="../UI/UserInterface.py" line="2842"/>
         <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3228"/>
+        <location filename="../UI/UserInterface.py" line="3238"/>
         <source>Left Side</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3240"/>
+        <location filename="../UI/UserInterface.py" line="3250"/>
         <source>Bottom Side</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3247"/>
+        <location filename="../UI/UserInterface.py" line="3257"/>
         <source>Right Side</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3267"/>
+        <location filename="../UI/UserInterface.py" line="3277"/>
         <source>Plug-ins</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
+        <location filename="../UI/UserInterface.py" line="1659"/>
         <source>Restart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
+        <location filename="../UI/UserInterface.py" line="1659"/>
         <source>Ctrl+Shift+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1655"/>
+        <location filename="../UI/UserInterface.py" line="1665"/>
         <source>Restart the IDE</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1656"/>
+        <location filename="../UI/UserInterface.py" line="1666"/>
         <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6043"/>
+        <location filename="../UI/UserInterface.py" line="6060"/>
         <source>Start Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="2090"/>
+        <source>Conda</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2072"/>
+        <source>PyPI</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3586"/>
+        <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2108"/>
+        <source>MicroPython</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1996"/>
+        <source>Ctrl+Alt+Shift+I</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2052"/>
+        <source>Ctrl+Alt+Shift+D</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2058"/>
+        <source>Switch the input focus to the Code Documentation Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2061"/>
+        <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2072"/>
+        <source>Ctrl+Alt+Shift+P</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2078"/>
+        <source>Switch the input focus to the PyPI window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="2080"/>
-        <source>Conda</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2062"/>
-        <source>PyPI</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3576"/>
-        <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2098"/>
-        <source>MicroPython</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
-        <source>Ctrl+Alt+Shift+I</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2042"/>
-        <source>Ctrl+Alt+Shift+D</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2048"/>
-        <source>Switch the input focus to the Code Documentation Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2051"/>
-        <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2062"/>
-        <source>Ctrl+Alt+Shift+P</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2068"/>
-        <source>Switch the input focus to the PyPI window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2070"/>
         <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2080"/>
+        <location filename="../UI/UserInterface.py" line="2090"/>
         <source>Ctrl+Alt+Shift+C</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2086"/>
+        <location filename="../UI/UserInterface.py" line="2096"/>
         <source>Switch the input focus to the Conda window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2088"/>
-        <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2098"/>
+        <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2108"/>
         <source>Ctrl+Alt+Shift+M</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2104"/>
+        <location filename="../UI/UserInterface.py" line="2114"/>
         <source>Switch the input focus to the MicroPython window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2106"/>
+        <location filename="../UI/UserInterface.py" line="2116"/>
         <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3225"/>
+        <location filename="../UI/UserInterface.py" line="3235"/>
         <source>Central Park</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3745"/>
+        <location filename="../UI/UserInterface.py" line="3755"/>
         <source>&lt;h2&gt;Version Numbers&lt;/h2&gt;&lt;table&gt;</source>
         <translation type="unfinished">&lt;h3&gt;Sürüm Numaraları&lt;/h3&gt;&lt;table&gt; {2&gt;?} {2&gt;?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5082"/>
+        <location filename="../UI/UserInterface.py" line="5099"/>
         <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5152"/>
+        <location filename="../UI/UserInterface.py" line="5169"/>
         <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5196"/>
+        <location filename="../UI/UserInterface.py" line="5213"/>
         <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2211"/>
+        <location filename="../UI/UserInterface.py" line="2221"/>
         <source>Show Install Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2211"/>
+        <location filename="../UI/UserInterface.py" line="2221"/>
         <source>Show Install &amp;Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2215"/>
+        <location filename="../UI/UserInterface.py" line="2225"/>
         <source>Show Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2217"/>
+        <location filename="../UI/UserInterface.py" line="2227"/>
         <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2873"/>
+        <location filename="../UI/UserInterface.py" line="2883"/>
         <source>Qt6 Documentation</source>
         <translation type="unfinished">Qt4 Belgeleri {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2877"/>
+        <location filename="../UI/UserInterface.py" line="2887"/>
         <source>Open Qt6 Documentation</source>
         <translation type="unfinished">QT4 Belgelerini Aç {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2878"/>
+        <location filename="../UI/UserInterface.py" line="2888"/>
         <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2905"/>
+        <location filename="../UI/UserInterface.py" line="2915"/>
         <source>PyQt6 Documentation</source>
         <translation type="unfinished">PyQt4 Belgeleri {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2909"/>
+        <location filename="../UI/UserInterface.py" line="2919"/>
         <source>Open PyQt6 Documentation</source>
         <translation type="unfinished">PyQt4 Begelerini aç {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2911"/>
+        <location filename="../UI/UserInterface.py" line="2921"/>
         <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2990"/>
+        <location filename="../UI/UserInterface.py" line="3000"/>
         <source>PySide6 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2994"/>
+        <location filename="../UI/UserInterface.py" line="3004"/>
         <source>Open PySide6 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2996"/>
+        <location filename="../UI/UserInterface.py" line="3006"/>
         <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5761"/>
+        <location filename="../UI/UserInterface.py" line="5778"/>
         <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1697"/>
+        <location filename="../UI/UserInterface.py" line="1707"/>
         <source>Open a new eric instance</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1699"/>
+        <location filename="../UI/UserInterface.py" line="1709"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2142"/>
+        <location filename="../UI/UserInterface.py" line="2152"/>
         <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is search in the Qt help collection.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2177"/>
+        <location filename="../UI/UserInterface.py" line="2187"/>
         <source>&lt;b&gt;Check for Updates...&lt;/b&gt;&lt;p&gt;Checks the internet for updates of eric.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2190"/>
+        <location filename="../UI/UserInterface.py" line="2200"/>
         <source>&lt;b&gt;Show downloadable versions...&lt;/b&gt;&lt;p&gt;Shows the eric versions available for download from the internet.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2464"/>
-        <source>Start the eric Hex Editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2466"/>
-        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2474"/>
+        <source>Start the eric Hex Editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2476"/>
+        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2484"/>
         <source>eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2474"/>
+        <location filename="../UI/UserInterface.py" line="2484"/>
         <source>eric &amp;Web Browser...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2479"/>
+        <location filename="../UI/UserInterface.py" line="2489"/>
         <source>Start the eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2481"/>
+        <location filename="../UI/UserInterface.py" line="2491"/>
         <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2493"/>
+        <location filename="../UI/UserInterface.py" line="2503"/>
         <source>Start the eric Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2495"/>
+        <location filename="../UI/UserInterface.py" line="2505"/>
         <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2581"/>
+        <location filename="../UI/UserInterface.py" line="2591"/>
         <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2955"/>
+        <location filename="../UI/UserInterface.py" line="2965"/>
         <source>&lt;b&gt;Eric API Documentation&lt;/b&gt;&lt;p&gt;Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5979"/>
+        <location filename="../UI/UserInterface.py" line="5996"/>
         <source>The eric web browser could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6043"/>
+        <location filename="../UI/UserInterface.py" line="6060"/>
         <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7221"/>
+        <location filename="../UI/UserInterface.py" line="7242"/>
         <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7199"/>
+        <location filename="../UI/UserInterface.py" line="7220"/>
         <source>You are using a snapshot release of eric. A more up-to-date stable release might be available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7233"/>
+        <location filename="../UI/UserInterface.py" line="7254"/>
         <source>eric is up to date</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7233"/>
+        <location filename="../UI/UserInterface.py" line="7254"/>
         <source>You are using the latest version of eric</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7316"/>
+        <location filename="../UI/UserInterface.py" line="7337"/>
         <source>eric has not been configured yet. The configuration dialog will be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6294"/>
+        <location filename="../UI/UserInterface.py" line="6314"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard Shortcuts File (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6313"/>
+        <location filename="../UI/UserInterface.py" line="6333"/>
         <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6329"/>
+        <location filename="../UI/UserInterface.py" line="6349"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6518"/>
+        <location filename="../UI/UserInterface.py" line="6538"/>
         <source>Read Tasks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6627"/>
+        <location filename="../UI/UserInterface.py" line="6647"/>
         <source>Save Session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6584"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>Read Session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6650"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -81592,7 +81592,7 @@
 <context>
     <name>Utilities</name>
     <message>
-        <location filename="../Utilities/__init__.py" line="1453"/>
+        <location filename="../Utilities/__init__.py" line="1454"/>
         <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;%-alanlarda çeşitli kodları kullanabilirsiniz. Tanımlanan kodlar:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;geçerli düzenleyicinin imlecinin sütunu&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;geçerli düzenleyicinin dizini&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;geçerli düzenleyicinin dosya adı&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;geçerli kullancının ana dizini&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;geçerli düzenleyicinin imlecinin satırı&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;geçerli projenin yolu&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;Geçici kullanıcının kullanıcı adı&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;oran işareti&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</translation>
     </message>
@@ -81911,7 +81911,7 @@
 <context>
     <name>VariablesViewer</name>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="958"/>
+        <location filename="../Debugger/VariablesViewer.py" line="965"/>
         <source>Global Variables</source>
         <translation>Evrensel Değişkenler</translation>
     </message>
@@ -81931,12 +81931,12 @@
         <translation type="obsolete">Tip</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="959"/>
+        <location filename="../Debugger/VariablesViewer.py" line="966"/>
         <source>&lt;b&gt;The Global Variables Viewer Window&lt;/b&gt;&lt;p&gt;This window displays the global variables of the debugged program.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="965"/>
+        <location filename="../Debugger/VariablesViewer.py" line="972"/>
         <source>Local Variables</source>
         <translation>Yerel Değişkenler</translation>
     </message>
@@ -81946,17 +81946,17 @@
         <translation type="obsolete">Yereller</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="966"/>
+        <location filename="../Debugger/VariablesViewer.py" line="973"/>
         <source>&lt;b&gt;The Local Variables Viewer Window&lt;/b&gt;&lt;p&gt;This window displays the local variables of the debugged program.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1083"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1090"/>
         <source>Show Details...</source>
         <translation>Detayları Göster...</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1098"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1105"/>
         <source>Configure...</source>
         <translation>Ayarlanıyor...</translation>
     </message>
@@ -81966,7 +81966,7 @@
         <translation>{0} madde</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1096"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1103"/>
         <source>Refresh</source>
         <translation type="unfinished">Tazele</translation>
     </message>
@@ -81976,22 +81976,22 @@
         <translation type="obsolete">Hepsini daralt</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1085"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1092"/>
         <source>Expand</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1086"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1093"/>
         <source>Collapse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1087"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1094"/>
         <source>Collapse All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1099"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1106"/>
         <source>Variables Type Filter...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -82660,7 +82660,7 @@
         <translation>Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation>
     </message>
     <message>
-        <location filename="../VCS/VersionControl.py" line="761"/>
+        <location filename="../VCS/VersionControl.py" line="764"/>
         <source>Repository status checking is switched off</source>
         <translation>Kaynak havuzu durum konrol anahtarı kapalı</translation>
     </message>
@@ -82668,1503 +82668,1503 @@
 <context>
     <name>ViewManager</name>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>New</source>
         <translation>Yeni</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>&amp;New</source>
         <translation>Ye&amp;ni</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="592"/>
+        <location filename="../ViewManager/ViewManager.py" line="593"/>
         <source>Open an empty editor window</source>
         <translation>Boş bir düzenleyici penceresi aç</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="595"/>
+        <location filename="../ViewManager/ViewManager.py" line="596"/>
         <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="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>Open</source>
         <translation>Aç</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>&amp;Open...</source>
         <translation>&amp;Aç...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="611"/>
+        <location filename="../ViewManager/ViewManager.py" line="612"/>
         <source>Open a file</source>
         <translation>Bir dosya aç</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="613"/>
+        <location filename="../ViewManager/ViewManager.py" line="614"/>
         <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="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>Close</source>
         <translation>Kapat</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>&amp;Close</source>
         <translation>&amp;Kapat</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="632"/>
+        <location filename="../ViewManager/ViewManager.py" line="633"/>
         <source>Close the current window</source>
         <translation>Geçerli pencereyi kapat</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="636"/>
         <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="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="644"/>
         <source>Close All</source>
         <translation>Hepsini Kapat</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="644"/>
         <source>Clos&amp;e All</source>
         <translation>H&amp;epsini Kapat</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="647"/>
+        <location filename="../ViewManager/ViewManager.py" line="648"/>
         <source>Close all editor windows</source>
         <translation>Tüm düzenleme pencerelerini kapat</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="650"/>
+        <location filename="../ViewManager/ViewManager.py" line="651"/>
         <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="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>Save</source>
         <translation>Kaydet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>&amp;Save</source>
         <translation>&amp;Kaydet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation>Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="669"/>
+        <location filename="../ViewManager/ViewManager.py" line="670"/>
         <source>Save the current file</source>
         <translation>Geçerli dosyayı kaydet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="671"/>
+        <location filename="../ViewManager/ViewManager.py" line="672"/>
         <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="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Save as</source>
         <translation>Farklı kaydet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Save &amp;as...</source>
         <translation>Farklı k&amp;aydet...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="686"/>
+        <location filename="../ViewManager/ViewManager.py" line="687"/>
         <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="688"/>
+        <location filename="../ViewManager/ViewManager.py" line="689"/>
         <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="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="714"/>
         <source>Save all</source>
         <translation>Hepsini kaydet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="718"/>
+        <location filename="../ViewManager/ViewManager.py" line="719"/>
         <source>Save all files</source>
         <translation>Tüm dosyaları kaydet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="720"/>
+        <location filename="../ViewManager/ViewManager.py" line="721"/>
         <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="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>Print</source>
         <translation>Yazdır</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>&amp;Print</source>
         <translation>&amp;Yazdır</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation>Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="737"/>
+        <location filename="../ViewManager/ViewManager.py" line="738"/>
         <source>Print the current file</source>
         <translation>Geçerli dosyayı yazdır</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="739"/>
+        <location filename="../ViewManager/ViewManager.py" line="740"/>
         <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="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="749"/>
         <source>Print Preview</source>
         <translation>Baskı Öngörünümü</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="753"/>
+        <location filename="../ViewManager/ViewManager.py" line="754"/>
         <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="755"/>
+        <location filename="../ViewManager/ViewManager.py" line="756"/>
         <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="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Search File</source>
         <translation>Dosya Ara</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Search &amp;File...</source>
         <translation>Dosya A&amp;ra...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Alt+Ctrl+F</source>
         <comment>File|Search File</comment>
         <translation>Alt+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="771"/>
+        <location filename="../ViewManager/ViewManager.py" line="772"/>
         <source>Search for a file</source>
         <translation>Bir dosya için ara</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="773"/>
+        <location filename="../ViewManager/ViewManager.py" line="774"/>
         <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="787"/>
+        <location filename="../ViewManager/ViewManager.py" line="788"/>
         <source>&amp;File</source>
         <translation>&amp;Dosya</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="789"/>
+        <location filename="../ViewManager/ViewManager.py" line="790"/>
         <source>Open &amp;Recent Files</source>
         <translation>Geçmiş Dosyala&amp;rı Aç</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="792"/>
+        <location filename="../ViewManager/ViewManager.py" line="793"/>
         <source>Open &amp;Bookmarked Files</source>
         <translation>Yerimi D&amp;osyalarını Aç</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="840"/>
+        <location filename="../ViewManager/ViewManager.py" line="841"/>
         <source>File</source>
         <translation>Dosya</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="863"/>
+        <location filename="../ViewManager/ViewManager.py" line="864"/>
         <source>Export as</source>
         <translation>Farklı Dışaktar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Undo</source>
         <translation>Geri Al</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>&amp;Undo</source>
         <translation>&amp;Geri al</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="896"/>
+        <location filename="../ViewManager/ViewManager.py" line="897"/>
         <source>Undo the last change</source>
         <translation>Enson değişikliği geri al</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="898"/>
+        <location filename="../ViewManager/ViewManager.py" line="899"/>
         <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="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>Redo</source>
         <translation>İleri al</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>&amp;Redo</source>
         <translation>&amp;İleri al</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="914"/>
+        <location filename="../ViewManager/ViewManager.py" line="915"/>
         <source>Redo the last change</source>
         <translation>Son değişikliği ileri al</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="916"/>
+        <location filename="../ViewManager/ViewManager.py" line="917"/>
         <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="933"/>
+        <location filename="../ViewManager/ViewManager.py" line="934"/>
         <source>Revert to last saved state</source>
         <translation>En son kaydedileni eski haline getir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="924"/>
+        <location filename="../ViewManager/ViewManager.py" line="925"/>
         <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="924"/>
+        <location filename="../ViewManager/ViewManager.py" line="925"/>
         <source>Ctrl+Y</source>
         <comment>Edit|Revert</comment>
         <translation>Ctrl+Y</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="935"/>
+        <location filename="../ViewManager/ViewManager.py" line="936"/>
         <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="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Cut</source>
         <translation>Kes</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Cu&amp;t</source>
         <translation>Ke&amp;s</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="955"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Cut the selection</source>
         <translation>Seçimi kes</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="958"/>
         <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="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Copy</source>
         <translation>Kopyala</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>&amp;Copy</source>
         <translation>&amp;Kopyala</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="976"/>
         <source>Copy the selection</source>
         <translation>Seçimi kopyala</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="977"/>
+        <location filename="../ViewManager/ViewManager.py" line="978"/>
         <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="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Paste</source>
         <translation>Yapıştır</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>&amp;Paste</source>
         <translation>Ya&amp;pıştır</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="995"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <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="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="998"/>
         <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="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>Clear</source>
         <translation>Temizle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1014"/>
+        <location filename="../ViewManager/ViewManager.py" line="1015"/>
         <source>Clear all text</source>
         <translation>Tüm metni temizle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1016"/>
+        <location filename="../ViewManager/ViewManager.py" line="1017"/>
         <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="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>Indent</source>
         <translation>Girinti</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>&amp;Indent</source>
         <translation>G&amp;irintili</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>Ctrl+I</source>
         <comment>Edit|Indent</comment>
         <translation>Ctrl+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1049"/>
+        <location filename="../ViewManager/ViewManager.py" line="1050"/>
         <source>Indent line</source>
         <translation>Girinti satırı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1051"/>
+        <location filename="../ViewManager/ViewManager.py" line="1052"/>
         <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="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>Unindent</source>
         <translation>Girintisiz</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>U&amp;nindent</source>
         <translation>Giri&amp;ntisiz</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>Ctrl+Shift+I</source>
         <comment>Edit|Unindent</comment>
         <translation>Ctrl+Shift+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1068"/>
+        <location filename="../ViewManager/ViewManager.py" line="1069"/>
         <source>Unindent line</source>
         <translation>Girintisiz satır (hat)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1070"/>
+        <location filename="../ViewManager/ViewManager.py" line="1071"/>
         <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="1079"/>
+        <location filename="../ViewManager/ViewManager.py" line="1080"/>
         <source>Smart indent</source>
         <translation>Akıllı Girinti</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1085"/>
+        <location filename="../ViewManager/ViewManager.py" line="1086"/>
         <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="1087"/>
+        <location filename="../ViewManager/ViewManager.py" line="1088"/>
         <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="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>Comment</source>
         <translation>Yorumlayıcı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>C&amp;omment</source>
         <translation>Y&amp;orumlayıcı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>Ctrl+M</source>
         <comment>Edit|Comment</comment>
         <translation>Ctrl+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1104"/>
+        <location filename="../ViewManager/ViewManager.py" line="1105"/>
         <source>Comment Line or Selection</source>
         <translation>Satır Yorumlayıcı yada Seçim</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1106"/>
+        <location filename="../ViewManager/ViewManager.py" line="1107"/>
         <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="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Uncomment</source>
         <translation>Yorumlanamaz</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Unco&amp;mment</source>
         <translation>Yoru&amp;mlanamaz</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Alt+Ctrl+M</source>
         <comment>Edit|Uncomment</comment>
         <translation>Alt+Ctrl+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1123"/>
+        <location filename="../ViewManager/ViewManager.py" line="1124"/>
         <source>Uncomment Line or Selection</source>
         <translation>Yorumlanamaz Satır yada Seçim</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1125"/>
+        <location filename="../ViewManager/ViewManager.py" line="1126"/>
         <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="1156"/>
+        <location filename="../ViewManager/ViewManager.py" line="1157"/>
         <source>Stream Comment</source>
         <translation>Yorumlayıcı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1161"/>
+        <location filename="../ViewManager/ViewManager.py" line="1162"/>
         <source>Stream Comment Line or Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1164"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <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="1173"/>
+        <location filename="../ViewManager/ViewManager.py" line="1174"/>
         <source>Box Comment</source>
         <translation>Kutu Yorumlayıcı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1178"/>
+        <location filename="../ViewManager/ViewManager.py" line="1179"/>
         <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="1180"/>
+        <location filename="../ViewManager/ViewManager.py" line="1181"/>
         <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="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Select to brace</source>
         <translation>Köşeli ayracı seç</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Select to &amp;brace</source>
         <translation>Köşeli ayracı &amp;seç</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Ctrl+E</source>
         <comment>Edit|Select to brace</comment>
         <translation>Ctrl+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1196"/>
+        <location filename="../ViewManager/ViewManager.py" line="1197"/>
         <source>Select text to the matching brace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1198"/>
+        <location filename="../ViewManager/ViewManager.py" line="1199"/>
         <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="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>Select all</source>
         <translation>Hepsini seç</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>&amp;Select all</source>
         <translation>Hep&amp;sini seç</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select all</comment>
         <translation>Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1215"/>
+        <location filename="../ViewManager/ViewManager.py" line="1216"/>
         <source>Select all text</source>
         <translation>Tüm metni seç</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1217"/>
+        <location filename="../ViewManager/ViewManager.py" line="1218"/>
         <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="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>Deselect all</source>
         <translation>Tüm seçimi iptal et</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>&amp;Deselect all</source>
         <translation>&amp;Tüm seçimi iptal et</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>Alt+Ctrl+A</source>
         <comment>Edit|Deselect all</comment>
         <translation>Alt+Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1232"/>
+        <location filename="../ViewManager/ViewManager.py" line="1233"/>
         <source>Deselect all text</source>
         <translation>Seçilen tüm metni iptal et</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1234"/>
+        <location filename="../ViewManager/ViewManager.py" line="1235"/>
         <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="1249"/>
+        <location filename="../ViewManager/ViewManager.py" line="1250"/>
         <source>Convert Line End Characters</source>
         <translation>Satırsonu Karakterlerini Dönüştür</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1242"/>
+        <location filename="../ViewManager/ViewManager.py" line="1243"/>
         <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="1251"/>
+        <location filename="../ViewManager/ViewManager.py" line="1252"/>
         <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="1265"/>
+        <location filename="../ViewManager/ViewManager.py" line="1266"/>
         <source>Shorten empty lines</source>
         <translation>Boş satırları kısalt</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1267"/>
+        <location filename="../ViewManager/ViewManager.py" line="1268"/>
         <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="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1277"/>
         <source>&amp;Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2748"/>
+        <location filename="../ViewManager/ViewManager.py" line="2749"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1283"/>
+        <location filename="../ViewManager/ViewManager.py" line="1284"/>
         <source>Complete current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1294"/>
+        <location filename="../ViewManager/ViewManager.py" line="1295"/>
         <source>Complete from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1304"/>
+        <location filename="../ViewManager/ViewManager.py" line="1305"/>
         <source>Complete current word from Document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1317"/>
+        <location filename="../ViewManager/ViewManager.py" line="1318"/>
         <source>Complete from APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1328"/>
         <source>Complete current word from APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1340"/>
+        <location filename="../ViewManager/ViewManager.py" line="1341"/>
         <source>Complete from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1350"/>
+        <location filename="../ViewManager/ViewManager.py" line="1351"/>
         <source>Complete current word from Document and APIs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>Calltip</source>
         <translation>İpucu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>&amp;Calltip</source>
         <translation>İpu&amp;cu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>Meta+Alt+Space</source>
         <comment>Edit|Calltip</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1370"/>
+        <location filename="../ViewManager/ViewManager.py" line="1371"/>
         <source>Show Calltips</source>
         <translation>İpuçlarını Göster</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1372"/>
+        <location filename="../ViewManager/ViewManager.py" line="1373"/>
         <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="1452"/>
+        <location filename="../ViewManager/ViewManager.py" line="1453"/>
         <source>Move left one character</source>
         <translation>Bir karakter sola taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1452"/>
+        <location filename="../ViewManager/ViewManager.py" line="1453"/>
         <source>Left</source>
         <translation>Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1466"/>
+        <location filename="../ViewManager/ViewManager.py" line="1467"/>
         <source>Move right one character</source>
         <translation>Bir karakter sağa taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1466"/>
+        <location filename="../ViewManager/ViewManager.py" line="1467"/>
         <source>Right</source>
         <translation>Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1481"/>
         <source>Move up one line</source>
         <translation>Bir satır üste taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1481"/>
         <source>Up</source>
         <translation>Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1492"/>
+        <location filename="../ViewManager/ViewManager.py" line="1493"/>
         <source>Move down one line</source>
         <translation>Bir satır aşağı taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1492"/>
+        <location filename="../ViewManager/ViewManager.py" line="1493"/>
         <source>Down</source>
         <translation>Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1504"/>
+        <location filename="../ViewManager/ViewManager.py" line="1505"/>
         <source>Move left one word part</source>
         <translation>Bir kelime parçası sola taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1538"/>
+        <location filename="../ViewManager/ViewManager.py" line="1539"/>
         <source>Alt+Left</source>
         <translation>Alt+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1518"/>
+        <location filename="../ViewManager/ViewManager.py" line="1519"/>
         <source>Move right one word part</source>
         <translation>bir kelime parçası sağa taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2418"/>
+        <location filename="../ViewManager/ViewManager.py" line="2419"/>
         <source>Alt+Right</source>
         <translation>Alt+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1532"/>
+        <location filename="../ViewManager/ViewManager.py" line="1533"/>
         <source>Move left one word</source>
         <translation>Bir kelime sola taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1583"/>
+        <location filename="../ViewManager/ViewManager.py" line="1584"/>
         <source>Ctrl+Left</source>
         <translation>Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1547"/>
+        <location filename="../ViewManager/ViewManager.py" line="1548"/>
         <source>Move right one word</source>
         <translation>Bir kelime sağa taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2173"/>
         <source>Ctrl+Right</source>
         <translation>Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2373"/>
+        <location filename="../ViewManager/ViewManager.py" line="2374"/>
         <source>Home</source>
         <translation>Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1586"/>
+        <location filename="../ViewManager/ViewManager.py" line="1587"/>
         <source>Alt+Home</source>
         <translation>Alt+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2388"/>
+        <location filename="../ViewManager/ViewManager.py" line="2389"/>
         <source>End</source>
         <translation>End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1609"/>
+        <location filename="../ViewManager/ViewManager.py" line="1610"/>
         <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="1699"/>
+        <location filename="../ViewManager/ViewManager.py" line="1700"/>
         <source>Ctrl+Down</source>
         <translation>Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1621"/>
+        <location filename="../ViewManager/ViewManager.py" line="1622"/>
         <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="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1683"/>
         <source>Ctrl+Up</source>
         <translation>Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1632"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Move up one paragraph</source>
         <translation>Bir paragraf yukarı taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1632"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Alt+Up</source>
         <translation>Alt+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1641"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Move down one paragraph</source>
         <translation>Bir paragraf aşağı taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1641"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Alt+Down</source>
         <translation>Alt+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1653"/>
+        <location filename="../ViewManager/ViewManager.py" line="1654"/>
         <source>Move up one page</source>
         <translation>Bir sayfa yukarı taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1653"/>
+        <location filename="../ViewManager/ViewManager.py" line="1654"/>
         <source>PgUp</source>
         <translation>PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1662"/>
+        <location filename="../ViewManager/ViewManager.py" line="1663"/>
         <source>Move down one page</source>
         <translation>Bir sayfa aşağı taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1662"/>
+        <location filename="../ViewManager/ViewManager.py" line="1663"/>
         <source>PgDown</source>
         <translation>PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1685"/>
+        <location filename="../ViewManager/ViewManager.py" line="1686"/>
         <source>Ctrl+Home</source>
         <translation>Ctrl+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1702"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>Ctrl+End</source>
         <translation>Ctrl+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1708"/>
+        <location filename="../ViewManager/ViewManager.py" line="1709"/>
         <source>Indent one level</source>
         <translation>Bir seviye içeri girinti</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1708"/>
+        <location filename="../ViewManager/ViewManager.py" line="1709"/>
         <source>Tab</source>
         <translation>Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1717"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Unindent one level</source>
         <translation>Girintisiz birinci seviye</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1717"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Shift+Tab</source>
         <translation>Shift+Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1728"/>
         <source>Extend selection left one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1728"/>
         <source>Shift+Left</source>
         <translation>Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1742"/>
+        <location filename="../ViewManager/ViewManager.py" line="1743"/>
         <source>Extend selection right one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1742"/>
+        <location filename="../ViewManager/ViewManager.py" line="1743"/>
         <source>Shift+Right</source>
         <translation>Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1757"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Extend selection up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1757"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Shift+Up</source>
         <translation>Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1772"/>
+        <location filename="../ViewManager/ViewManager.py" line="1773"/>
         <source>Extend selection down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1772"/>
+        <location filename="../ViewManager/ViewManager.py" line="1773"/>
         <source>Shift+Down</source>
         <translation>Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1787"/>
+        <location filename="../ViewManager/ViewManager.py" line="1788"/>
         <source>Extend selection left one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1823"/>
+        <location filename="../ViewManager/ViewManager.py" line="1824"/>
         <source>Alt+Shift+Left</source>
         <translation>Alt+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1802"/>
         <source>Extend selection right one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2433"/>
+        <location filename="../ViewManager/ViewManager.py" line="2434"/>
         <source>Alt+Shift+Right</source>
         <translation>Alt+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1815"/>
+        <location filename="../ViewManager/ViewManager.py" line="1816"/>
         <source>Extend selection left one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2527"/>
+        <location filename="../ViewManager/ViewManager.py" line="2528"/>
         <source>Ctrl+Shift+Left</source>
         <translation>Ctrl+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1832"/>
+        <location filename="../ViewManager/ViewManager.py" line="1833"/>
         <source>Extend selection right one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2189"/>
+        <location filename="../ViewManager/ViewManager.py" line="2190"/>
         <source>Ctrl+Shift+Right</source>
         <translation>Ctrl+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1861"/>
+        <location filename="../ViewManager/ViewManager.py" line="1862"/>
         <source>Shift+Home</source>
         <translation>Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2293"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Alt+Shift+Home</source>
         <translation>Alt+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1878"/>
+        <location filename="../ViewManager/ViewManager.py" line="1879"/>
         <source>Shift+End</source>
         <translation>Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1884"/>
+        <location filename="../ViewManager/ViewManager.py" line="1885"/>
         <source>Extend selection up one paragraph</source>
         <translation>Seçimi bir paragraf yukarı genişlet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1884"/>
+        <location filename="../ViewManager/ViewManager.py" line="1885"/>
         <source>Alt+Shift+Up</source>
         <translation>Alt+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1897"/>
+        <location filename="../ViewManager/ViewManager.py" line="1898"/>
         <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="1897"/>
+        <location filename="../ViewManager/ViewManager.py" line="1898"/>
         <source>Alt+Shift+Down</source>
         <translation>Alt+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1910"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Extend selection up one page</source>
         <translation>Seçimi bir sayfa yukarı genişlet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1910"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Shift+PgUp</source>
         <translation>Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1922"/>
+        <location filename="../ViewManager/ViewManager.py" line="1923"/>
         <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="1922"/>
+        <location filename="../ViewManager/ViewManager.py" line="1923"/>
         <source>Shift+PgDown</source>
         <translation>Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1949"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Ctrl+Shift+Home</source>
         <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1966"/>
+        <location filename="../ViewManager/ViewManager.py" line="1967"/>
         <source>Ctrl+Shift+End</source>
         <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1972"/>
+        <location filename="../ViewManager/ViewManager.py" line="1973"/>
         <source>Delete previous character</source>
         <translation>Önceki karakteri sil</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1972"/>
+        <location filename="../ViewManager/ViewManager.py" line="1973"/>
         <source>Backspace</source>
         <translation>Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1984"/>
+        <location filename="../ViewManager/ViewManager.py" line="1985"/>
         <source>Shift+Backspace</source>
         <translation>Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2003"/>
+        <location filename="../ViewManager/ViewManager.py" line="2004"/>
         <source>Delete current character</source>
         <translation>Gçerli karakteri siler</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2003"/>
+        <location filename="../ViewManager/ViewManager.py" line="2004"/>
         <source>Del</source>
         <translation>Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2017"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <source>Delete word to left</source>
         <translation>Kelimeyi sola doğru sil</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2017"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <source>Ctrl+Backspace</source>
         <translation>Ctrl+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2028"/>
+        <location filename="../ViewManager/ViewManager.py" line="2029"/>
         <source>Delete word to right</source>
         <translation>Kelimeyi sağa doğru sil</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2028"/>
+        <location filename="../ViewManager/ViewManager.py" line="2029"/>
         <source>Ctrl+Del</source>
         <translation>Ctrl+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2038"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Delete line to left</source>
         <translation>Satırı solbaşa kadar sil</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2038"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation>Ctrl+Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2049"/>
+        <location filename="../ViewManager/ViewManager.py" line="2050"/>
         <source>Delete line to right</source>
         <translation>Satırı sağbaşa kadar sil</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2058"/>
+        <location filename="../ViewManager/ViewManager.py" line="2059"/>
         <source>Ctrl+Shift+Del</source>
         <translation>Ctrl+Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Insert new line</source>
         <translation>Araya yeni satır sok</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Return</source>
         <translation>Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Enter</source>
         <translation>Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <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="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <source>Shift+Return</source>
         <translation>Shift+Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <source>Shift+Enter</source>
         <translation>Shift+Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Delete current line</source>
         <translation>Geçerli satırı sil</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Ctrl+Shift+L</source>
         <translation>Ctrl+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2098"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Duplicate current line</source>
         <translation>Geçerli satırı çiftle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2098"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Ctrl+D</source>
         <translation>Ctrl+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2109"/>
+        <location filename="../ViewManager/ViewManager.py" line="2110"/>
         <source>Swap current and previous lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2109"/>
+        <location filename="../ViewManager/ViewManager.py" line="2110"/>
         <source>Ctrl+T</source>
         <translation>Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2132"/>
+        <location filename="../ViewManager/ViewManager.py" line="2133"/>
         <source>Cut current line</source>
         <translation>Geçerli satırı kes</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2132"/>
+        <location filename="../ViewManager/ViewManager.py" line="2133"/>
         <source>Alt+Shift+L</source>
         <translation>Alt+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2142"/>
+        <location filename="../ViewManager/ViewManager.py" line="2143"/>
         <source>Copy current line</source>
         <translation>Geçerli satırı kopyala</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2142"/>
+        <location filename="../ViewManager/ViewManager.py" line="2143"/>
         <source>Ctrl+Shift+T</source>
         <translation>Ctrl+Shift+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2153"/>
+        <location filename="../ViewManager/ViewManager.py" line="2154"/>
         <source>Toggle insert/overtype</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2153"/>
+        <location filename="../ViewManager/ViewManager.py" line="2154"/>
         <source>Ins</source>
         <translation>Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2717"/>
+        <location filename="../ViewManager/ViewManager.py" line="2718"/>
         <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="2717"/>
+        <location filename="../ViewManager/ViewManager.py" line="2718"/>
         <source>Alt+Shift+U</source>
         <translation>Alt+Shift+U</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2729"/>
+        <location filename="../ViewManager/ViewManager.py" line="2730"/>
         <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="2729"/>
+        <location filename="../ViewManager/ViewManager.py" line="2730"/>
         <source>Ctrl+Shift+U</source>
         <translation>Ctrl+Shift+U</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2175"/>
+        <location filename="../ViewManager/ViewManager.py" line="2176"/>
         <source>Alt+End</source>
         <translation>Alt+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2195"/>
+        <location filename="../ViewManager/ViewManager.py" line="2196"/>
         <source>Formfeed</source>
         <translation>Süreklibaskı kağıdı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2204"/>
+        <location filename="../ViewManager/ViewManager.py" line="2205"/>
         <source>Escape</source>
         <translation>Kaçış</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2204"/>
+        <location filename="../ViewManager/ViewManager.py" line="2205"/>
         <source>Esc</source>
         <translation>Esc</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2213"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <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="2213"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <source>Alt+Ctrl+Down</source>
         <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2229"/>
+        <location filename="../ViewManager/ViewManager.py" line="2230"/>
         <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="2229"/>
+        <location filename="../ViewManager/ViewManager.py" line="2230"/>
         <source>Alt+Ctrl+Up</source>
         <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2244"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <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="2244"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <source>Alt+Ctrl+Left</source>
         <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2262"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <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="2262"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Alt+Ctrl+Right</source>
         <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2318"/>
+        <location filename="../ViewManager/ViewManager.py" line="2319"/>
         <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="2333"/>
+        <location filename="../ViewManager/ViewManager.py" line="2334"/>
         <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="2351"/>
+        <location filename="../ViewManager/ViewManager.py" line="2352"/>
         <source>Duplicate current selection</source>
         <translation>Geçerli seçimi çoğalt</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2351"/>
+        <location filename="../ViewManager/ViewManager.py" line="2352"/>
         <source>Ctrl+Shift+D</source>
         <translation>Ctrl+Shift+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3262"/>
+        <location filename="../ViewManager/ViewManager.py" line="3263"/>
         <source>&amp;Search</source>
         <translation>A&amp;ra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2758"/>
+        <location filename="../ViewManager/ViewManager.py" line="2759"/>
         <source>&amp;Edit</source>
         <translation>Düz&amp;en</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2817"/>
+        <location filename="../ViewManager/ViewManager.py" line="2818"/>
         <source>Edit</source>
         <translation>Düzen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3296"/>
+        <location filename="../ViewManager/ViewManager.py" line="3297"/>
         <source>Search</source>
         <translation>Ara</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2849"/>
+        <location filename="../ViewManager/ViewManager.py" line="2850"/>
         <source>&amp;Search...</source>
         <translation>A&amp;ra...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2849"/>
+        <location filename="../ViewManager/ViewManager.py" line="2850"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation>Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2857"/>
+        <location filename="../ViewManager/ViewManager.py" line="2858"/>
         <source>Search for a text</source>
         <translation>Metin olarak ara</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2859"/>
+        <location filename="../ViewManager/ViewManager.py" line="2860"/>
         <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="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>Search next</source>
         <translation>Sonrakini ara</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>Search &amp;next</source>
         <translation>So&amp;nrakini ara</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation>F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2878"/>
+        <location filename="../ViewManager/ViewManager.py" line="2879"/>
         <source>Search next occurrence of text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2880"/>
+        <location filename="../ViewManager/ViewManager.py" line="2881"/>
         <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="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Search previous</source>
         <translation>Öncekini ara</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Search &amp;previous</source>
         <translation>Öncekini a&amp;ra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation>Shift+F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2898"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>Search previous occurrence of text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2900"/>
+        <location filename="../ViewManager/ViewManager.py" line="2901"/>
         <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="2910"/>
+        <location filename="../ViewManager/ViewManager.py" line="2911"/>
         <source>Clear search markers</source>
         <translation>Arama işaretlerini temizle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2910"/>
+        <location filename="../ViewManager/ViewManager.py" line="2911"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation>Ctrl+3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <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="2920"/>
+        <location filename="../ViewManager/ViewManager.py" line="2921"/>
         <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="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>Replace</source>
         <translation>Yerdeğiştir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>&amp;Replace...</source>
         <translation>&amp;Yerdeğiştir...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation>Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2982"/>
+        <location filename="../ViewManager/ViewManager.py" line="2983"/>
         <source>Replace some text</source>
         <translation>Bazı metinleri değiştir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2984"/>
+        <location filename="../ViewManager/ViewManager.py" line="2985"/>
         <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>
@@ -84232,96 +84232,96 @@
         <translation type="obsolete">Hızlıaramayı geçerli kelimenin sonuna genişlet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3070"/>
+        <location filename="../ViewManager/ViewManager.py" line="3071"/>
         <source>Goto Line</source>
         <translation>Satıra Git</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3062"/>
+        <location filename="../ViewManager/ViewManager.py" line="3063"/>
         <source>&amp;Goto Line...</source>
         <translation>Satıra &amp;Git...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3062"/>
+        <location filename="../ViewManager/ViewManager.py" line="3063"/>
         <source>Ctrl+G</source>
         <comment>Search|Goto Line</comment>
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3072"/>
+        <location filename="../ViewManager/ViewManager.py" line="3073"/>
         <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="3089"/>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
         <source>Goto Brace</source>
         <translation>Köşeli Ayraça Git</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3081"/>
+        <location filename="../ViewManager/ViewManager.py" line="3082"/>
         <source>Goto &amp;Brace</source>
         <translation>Köşeli &amp;Ayraça Git</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3081"/>
+        <location filename="../ViewManager/ViewManager.py" line="3082"/>
         <source>Ctrl+L</source>
         <comment>Search|Goto Brace</comment>
         <translation>Ctrl+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3091"/>
+        <location filename="../ViewManager/ViewManager.py" line="3092"/>
         <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="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Search in Files</source>
         <translation>Dosyalarda Ara</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Search in &amp;Files...</source>
         <translation>Dosyalar&amp;da Ara...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation>Shift+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3177"/>
+        <location filename="../ViewManager/ViewManager.py" line="3178"/>
         <source>Search for a text in files</source>
         <translation>Metni dosyada ara</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3179"/>
+        <location filename="../ViewManager/ViewManager.py" line="3180"/>
         <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="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Replace in Files</source>
         <translation>Dosyalarda yer değiştir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Replace in F&amp;iles...</source>
         <translation>Dosya İ&amp;çinde Değiştir...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation>Shift+Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3196"/>
+        <location filename="../ViewManager/ViewManager.py" line="3197"/>
         <source>Search for a text in files and replace it</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3198"/>
+        <location filename="../ViewManager/ViewManager.py" line="3199"/>
         <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>
@@ -84331,1479 +84331,1479 @@
         <translation type="obsolete">Metindüzenleyicide Hızlı Arama</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom in</source>
         <translation>Büyüt</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom &amp;in</source>
         <translation>Bü&amp;yült</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3344"/>
-        <source>Zoom in on the text</source>
-        <translation>MEtni Büyüt</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3346"/>
+        <source>Zoom in on the text</source>
+        <translation>MEtni Büyüt</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3348"/>
         <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="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom out</source>
         <translation>Küçült</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom &amp;out</source>
         <translation>Küçü&amp;lt</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3363"/>
+        <location filename="../ViewManager/ViewManager.py" line="3365"/>
         <source>Zoom out on the text</source>
         <translation>Metin üzerinde küçült</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3365"/>
+        <location filename="../ViewManager/ViewManager.py" line="3367"/>
         <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="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>Zoom</source>
         <translation>Büyüt</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>&amp;Zoom</source>
         <translation>Büyü&amp;t</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation>Ctrl+#</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3400"/>
-        <source>Zoom the text</source>
-        <translation>Metni büyüt</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3402"/>
+        <source>Zoom the text</source>
+        <translation>Metni büyüt</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3404"/>
         <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="3415"/>
-        <source>Toggle all folds</source>
-        <translation>Tüm Açkapaları Kapat</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3411"/>
-        <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="3417"/>
+        <source>Toggle all folds</source>
+        <translation>Tüm Açkapaları Kapat</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3413"/>
+        <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="3419"/>
         <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="3431"/>
-        <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="3425"/>
-        <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="3433"/>
+        <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="3427"/>
+        <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="3435"/>
         <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="3447"/>
-        <source>Toggle current fold</source>
-        <translation>Geçerli açkapayı kapat</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3443"/>
-        <source>Toggle &amp;current fold</source>
-        <translation>Geçerli a&amp;çkapayı kapat</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3449"/>
+        <source>Toggle current fold</source>
+        <translation>Geçerli açkapayı kapat</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3445"/>
+        <source>Toggle &amp;current fold</source>
+        <translation>Geçerli a&amp;çkapayı kapat</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3451"/>
         <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="3479"/>
-        <source>Remove all highlights</source>
-        <translation>Bütün parlatılmış alanları kaldır</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3481"/>
+        <source>Remove all highlights</source>
+        <translation>Bütün parlatılmış alanları kaldır</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3483"/>
         <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="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3529"/>
         <source>Split view</source>
         <translation>Bölünmüş görünüm</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3529"/>
         <source>&amp;Split view</source>
         <translation>Bölünmü&amp;ş görünüm</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3532"/>
-        <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="3534"/>
+        <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="3536"/>
         <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="3542"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Arrange horizontally</source>
         <translation>Yatay düzenleme</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3542"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Arrange &amp;horizontally</source>
         <translation>Yatay &amp;düzenleme</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
-        <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="3548"/>
+        <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="3550"/>
         <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="3557"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>Remove split</source>
         <translation>Bölümlemeyi kaldır</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3557"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>&amp;Remove split</source>
         <translation>Bölümlemeyi kaldı&amp;r</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3562"/>
-        <source>Remove the current split</source>
-        <translation>Geçerli ayrımı kaldır</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3564"/>
+        <source>Remove the current split</source>
+        <translation>Geçerli ayrımı kaldır</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3566"/>
         <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="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>Next split</source>
         <translation>Sonraki ayrım</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>&amp;Next split</source>
         <translation>So&amp;nraki ayrım</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation>Ctrl+Alt+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3579"/>
+        <location filename="../ViewManager/ViewManager.py" line="3581"/>
         <source>Move to the next split</source>
         <translation>Sonraki ayrıma taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3581"/>
+        <location filename="../ViewManager/ViewManager.py" line="3583"/>
         <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="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Previous split</source>
         <translation>Önceki ayrım</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>&amp;Previous split</source>
         <translation>Önceki a&amp;yrım</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation>Ctrl+Alt+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3595"/>
-        <source>Move to the previous split</source>
-        <translation>Önceki ayrıma taşı</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3597"/>
+        <source>Move to the previous split</source>
+        <translation>Önceki ayrıma taşı</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3599"/>
         <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="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3683"/>
         <source>&amp;View</source>
         <translation>&amp;Görünüm</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3718"/>
+        <location filename="../ViewManager/ViewManager.py" line="3720"/>
         <source>View</source>
         <translation>Görünüm</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3754"/>
-        <source>Start Macro Recording</source>
-        <translation>Makro Kaydı Başladı</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3748"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation>Makro Kaydını Başla&amp;t</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3756"/>
+        <source>Start Macro Recording</source>
+        <translation>Makro Kaydı Başladı</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3750"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation>Makro Kaydını Başla&amp;t</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3758"/>
         <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="3768"/>
-        <source>Stop Macro Recording</source>
-        <translation>Makro Kaydetmeyi Durdur</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3764"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation>Makro Kaydetmeyi D&amp;urdur</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3770"/>
+        <source>Stop Macro Recording</source>
+        <translation>Makro Kaydetmeyi Durdur</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3766"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation>Makro Kaydetmeyi D&amp;urdur</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3772"/>
         <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="3782"/>
-        <source>Run Macro</source>
-        <translation>Makroyu çalıştır</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3778"/>
-        <source>&amp;Run Macro</source>
-        <translation>Mak&amp;royu çalıştır</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3784"/>
+        <source>Run Macro</source>
+        <translation>Makroyu çalıştır</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3780"/>
+        <source>&amp;Run Macro</source>
+        <translation>Mak&amp;royu çalıştır</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <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="3796"/>
-        <source>Delete Macro</source>
-        <translation>Makroyu Sil</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3792"/>
-        <source>&amp;Delete Macro</source>
-        <translation>Makroy&amp;u Sil</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Delete Macro</source>
+        <translation>Makroyu Sil</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3794"/>
+        <source>&amp;Delete Macro</source>
+        <translation>Makroy&amp;u Sil</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3800"/>
         <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="3810"/>
-        <source>Load Macro</source>
-        <translation>Makroyu Yükle</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3806"/>
-        <source>&amp;Load Macro</source>
-        <translation>Makroyu Yük&amp;le</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3812"/>
+        <source>Load Macro</source>
+        <translation>Makroyu Yükle</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3808"/>
+        <source>&amp;Load Macro</source>
+        <translation>Makroyu Yük&amp;le</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3814"/>
         <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="3824"/>
-        <source>Save Macro</source>
-        <translation>Makroyu Kaydet</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3820"/>
-        <source>&amp;Save Macro</source>
-        <translation>Ma&amp;kroyu Kaydet</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3826"/>
+        <source>Save Macro</source>
+        <translation>Makroyu Kaydet</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
+        <source>&amp;Save Macro</source>
+        <translation>Ma&amp;kroyu Kaydet</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3828"/>
         <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="3842"/>
+        <location filename="../ViewManager/ViewManager.py" line="3844"/>
         <source>&amp;Macros</source>
         <translation>&amp;Makrolar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3868"/>
-        <source>Toggle Bookmark</source>
-        <translation>Yerimi Açkapa</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3860"/>
-        <source>&amp;Toggle Bookmark</source>
-        <translation>Yerimi A&amp;çkapa</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3860"/>
-        <source>Alt+Ctrl+T</source>
-        <comment>Bookmark|Toggle</comment>
-        <translation>Alt+Ctrl+T</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3870"/>
+        <source>Toggle Bookmark</source>
+        <translation>Yerimi Açkapa</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
+        <source>&amp;Toggle Bookmark</source>
+        <translation>Yerimi A&amp;çkapa</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
+        <source>Alt+Ctrl+T</source>
+        <comment>Bookmark|Toggle</comment>
+        <translation>Alt+Ctrl+T</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3872"/>
         <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="3887"/>
-        <source>Next Bookmark</source>
-        <translation>Sonraki Yerimi</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3879"/>
-        <source>&amp;Next Bookmark</source>
-        <translation>So&amp;nraki Yerimi</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3879"/>
-        <source>Ctrl+PgDown</source>
-        <comment>Bookmark|Next</comment>
-        <translation>Ctrl+PgDown</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3889"/>
+        <source>Next Bookmark</source>
+        <translation>Sonraki Yerimi</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3881"/>
+        <source>&amp;Next Bookmark</source>
+        <translation>So&amp;nraki Yerimi</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3881"/>
+        <source>Ctrl+PgDown</source>
+        <comment>Bookmark|Next</comment>
+        <translation>Ctrl+PgDown</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3891"/>
         <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="3905"/>
+        <location filename="../ViewManager/ViewManager.py" line="3907"/>
         <source>Previous Bookmark</source>
         <translation>Önceki Yerimi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3897"/>
+        <location filename="../ViewManager/ViewManager.py" line="3899"/>
         <source>&amp;Previous Bookmark</source>
         <translation>Önceki Yeri&amp;mi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3897"/>
+        <location filename="../ViewManager/ViewManager.py" line="3899"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation>Ctrl+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3907"/>
+        <location filename="../ViewManager/ViewManager.py" line="3909"/>
         <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="3922"/>
+        <location filename="../ViewManager/ViewManager.py" line="3924"/>
         <source>Clear Bookmarks</source>
         <translation>Yerimlerini Temizle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3915"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>&amp;Clear Bookmarks</source>
         <translation>Yerimlerini &amp;Temizle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3915"/>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation>Alt+Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3924"/>
+        <location filename="../ViewManager/ViewManager.py" line="3926"/>
         <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="3938"/>
-        <source>Goto Syntax Error</source>
-        <translation>Sözdizimi Hatasına Git</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3932"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation>Sözdizimi Hatasına &amp;Git</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3940"/>
+        <source>Goto Syntax Error</source>
+        <translation>Sözdizimi Hatasına Git</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3934"/>
+        <source>&amp;Goto Syntax Error</source>
+        <translation>Sözdizimi Hatasına &amp;Git</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3942"/>
         <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="3953"/>
-        <source>Clear Syntax Errors</source>
-        <translation>Sözdizimi Hatalarını Temizle</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3948"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation>&amp;Sözdizimi Hatalarını Temizli</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3955"/>
+        <source>Clear Syntax Errors</source>
+        <translation>Sözdizimi Hatalarını Temizle</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3950"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation>&amp;Sözdizimi Hatalarını Temizli</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3957"/>
         <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="3970"/>
+        <location filename="../ViewManager/ViewManager.py" line="3972"/>
         <source>Next warning message</source>
         <translation>Sonraki uyarı mesajı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3964"/>
+        <location filename="../ViewManager/ViewManager.py" line="3966"/>
         <source>&amp;Next warning message</source>
         <translation>So&amp;nraki uyarı mesajı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3989"/>
+        <location filename="../ViewManager/ViewManager.py" line="3991"/>
         <source>Previous warning message</source>
         <translation>Önceki uyarı mesajı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3981"/>
+        <location filename="../ViewManager/ViewManager.py" line="3983"/>
         <source>&amp;Previous warning message</source>
         <translation>&amp;Önceki uyarı mesajı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4007"/>
+        <location filename="../ViewManager/ViewManager.py" line="4009"/>
         <source>Clear Warning Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4000"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>Clear &amp;Warning Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4023"/>
-        <source>Next uncovered line</source>
-        <translation>Sonraki kapanmamış satır</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4017"/>
-        <source>&amp;Next uncovered line</source>
-        <translation>So&amp;nraki kapanmamış satır</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4025"/>
+        <source>Next uncovered line</source>
+        <translation>Sonraki kapanmamış satır</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4019"/>
+        <source>&amp;Next uncovered line</source>
+        <translation>So&amp;nraki kapanmamış satır</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4027"/>
         <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="4042"/>
-        <source>Previous uncovered line</source>
-        <translation>Önceki kaplanmamış satır</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4034"/>
-        <source>&amp;Previous uncovered line</source>
-        <translation>&amp;Önceki kaplanmamış satır</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4044"/>
+        <source>Previous uncovered line</source>
+        <translation>Önceki kaplanmamış satır</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
+        <source>&amp;Previous uncovered line</source>
+        <translation>&amp;Önceki kaplanmamış satır</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4046"/>
         <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="4060"/>
-        <source>Next Task</source>
-        <translation>Sonraki Görev</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4054"/>
-        <source>&amp;Next Task</source>
-        <translation>So&amp;nraki Görev</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4062"/>
+        <source>Next Task</source>
+        <translation>Sonraki Görev</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4056"/>
+        <source>&amp;Next Task</source>
+        <translation>So&amp;nraki Görev</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4064"/>
         <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="4077"/>
-        <source>Previous Task</source>
-        <translation>Önceki Görev</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4070"/>
-        <source>&amp;Previous Task</source>
-        <translation>Ön&amp;ceki Görev</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4079"/>
+        <source>Previous Task</source>
+        <translation>Önceki Görev</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4072"/>
+        <source>&amp;Previous Task</source>
+        <translation>Ön&amp;ceki Görev</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4081"/>
         <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="4133"/>
+        <location filename="../ViewManager/ViewManager.py" line="4135"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Yerimleri</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4179"/>
+        <location filename="../ViewManager/ViewManager.py" line="4181"/>
         <source>Bookmarks</source>
         <translation>Yerimleri</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4221"/>
+        <location filename="../ViewManager/ViewManager.py" line="4223"/>
         <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="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>Automatic spell checking</source>
         <translation>Otomatik yazım kontrolü</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>&amp;Automatic spell checking</source>
         <translation>Otom&amp;atik yazım kontrolü</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4239"/>
-        <source>(De-)Activate automatic spell checking</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4241"/>
+        <source>(De-)Activate automatic spell checking</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4243"/>
         <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="4308"/>
+        <location filename="../ViewManager/ViewManager.py" line="4310"/>
         <source>Spelling</source>
         <translation>Yazım kontolü yapılıyor</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4333"/>
         <source>Open files</source>
         <translation>Dosyaları aç</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4377"/>
         <source>File Modified</source>
         <translation>Dosya Değiştirildi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4377"/>
         <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="4774"/>
+        <location filename="../ViewManager/ViewManager.py" line="4776"/>
         <source>Line: {0:5}</source>
         <translation>Satır: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4780"/>
+        <location filename="../ViewManager/ViewManager.py" line="4782"/>
         <source>Pos: {0:5}</source>
         <translation>Pos: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5219"/>
+        <location filename="../ViewManager/ViewManager.py" line="5221"/>
         <source>&amp;Clear</source>
         <translation>T&amp;emizle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5213"/>
+        <location filename="../ViewManager/ViewManager.py" line="5215"/>
         <source>&amp;Add</source>
         <translation>&amp;Ekle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5216"/>
+        <location filename="../ViewManager/ViewManager.py" line="5218"/>
         <source>&amp;Edit...</source>
         <translation>Düz&amp;en...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1031"/>
+        <location filename="../ViewManager/ViewManager.py" line="1032"/>
         <source>Join Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1024"/>
+        <location filename="../ViewManager/ViewManager.py" line="1025"/>
         <source>Ctrl+J</source>
         <comment>Edit|Join Lines</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1033"/>
+        <location filename="../ViewManager/ViewManager.py" line="1034"/>
         <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="3110"/>
+        <location filename="../ViewManager/ViewManager.py" line="3111"/>
         <source>Goto Last Edit Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3099"/>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3099"/>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <source>Ctrl+Shift+G</source>
         <comment>Search|Goto Last Edit Location</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3113"/>
+        <location filename="../ViewManager/ViewManager.py" line="3114"/>
         <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="3122"/>
+        <location filename="../ViewManager/ViewManager.py" line="3123"/>
         <source>Goto Previous Method or Class</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3122"/>
+        <location filename="../ViewManager/ViewManager.py" line="3123"/>
         <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="3132"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <source>Go to the previous method or class definition</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3136"/>
+        <location filename="../ViewManager/ViewManager.py" line="3137"/>
         <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="3146"/>
+        <location filename="../ViewManager/ViewManager.py" line="3147"/>
         <source>Goto Next Method or Class</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3146"/>
+        <location filename="../ViewManager/ViewManager.py" line="3147"/>
         <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="3156"/>
+        <location filename="../ViewManager/ViewManager.py" line="3157"/>
         <source>Go to the next method or class definition</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3158"/>
+        <location filename="../ViewManager/ViewManager.py" line="3159"/>
         <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="3605"/>
+        <location filename="../ViewManager/ViewManager.py" line="3607"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3610"/>
-        <source>Preview the current file in the web browser</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3612"/>
+        <source>Preview the current file in the web browser</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3614"/>
         <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="1461"/>
+        <location filename="../ViewManager/ViewManager.py" line="1462"/>
         <source>Meta+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1474"/>
+        <location filename="../ViewManager/ViewManager.py" line="1475"/>
         <source>Meta+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1486"/>
+        <location filename="../ViewManager/ViewManager.py" line="1487"/>
         <source>Meta+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1498"/>
+        <location filename="../ViewManager/ViewManager.py" line="1499"/>
         <source>Meta+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1559"/>
+        <location filename="../ViewManager/ViewManager.py" line="1560"/>
         <source>Move to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1575"/>
+        <location filename="../ViewManager/ViewManager.py" line="1576"/>
         <source>Move to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1592"/>
+        <location filename="../ViewManager/ViewManager.py" line="1593"/>
         <source>Move to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1600"/>
+        <location filename="../ViewManager/ViewManager.py" line="1601"/>
         <source>Meta+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1668"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Meta+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1674"/>
+        <location filename="../ViewManager/ViewManager.py" line="1675"/>
         <source>Move to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1692"/>
         <source>Move to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1737"/>
         <source>Meta+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1751"/>
+        <location filename="../ViewManager/ViewManager.py" line="1752"/>
         <source>Meta+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1766"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Meta+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1781"/>
+        <location filename="../ViewManager/ViewManager.py" line="1782"/>
         <source>Meta+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1849"/>
+        <location filename="../ViewManager/ViewManager.py" line="1850"/>
         <source>Extend selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1867"/>
+        <location filename="../ViewManager/ViewManager.py" line="1868"/>
         <source>Extend selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1875"/>
+        <location filename="../ViewManager/ViewManager.py" line="1876"/>
         <source>Meta+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1932"/>
+        <location filename="../ViewManager/ViewManager.py" line="1933"/>
         <source>Meta+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1939"/>
         <source>Extend selection to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1946"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Ctrl+Shift+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1955"/>
+        <location filename="../ViewManager/ViewManager.py" line="1956"/>
         <source>Extend selection to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1963"/>
+        <location filename="../ViewManager/ViewManager.py" line="1964"/>
         <source>Ctrl+Shift+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1981"/>
+        <location filename="../ViewManager/ViewManager.py" line="1982"/>
         <source>Meta+H</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1990"/>
+        <location filename="../ViewManager/ViewManager.py" line="1991"/>
         <source>Delete previous character if not at start of line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2011"/>
+        <location filename="../ViewManager/ViewManager.py" line="2012"/>
         <source>Meta+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2055"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Meta+K</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2164"/>
+        <location filename="../ViewManager/ViewManager.py" line="2165"/>
         <source>Move to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Extend selection to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2223"/>
+        <location filename="../ViewManager/ViewManager.py" line="2224"/>
         <source>Meta+Alt+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2238"/>
+        <location filename="../ViewManager/ViewManager.py" line="2239"/>
         <source>Meta+Alt+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2256"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <source>Meta+Alt+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2275"/>
         <source>Meta+Alt+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2280"/>
+        <location filename="../ViewManager/ViewManager.py" line="2281"/>
         <source>Extend rectangular selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2299"/>
+        <location filename="../ViewManager/ViewManager.py" line="2300"/>
         <source>Extend rectangular selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2309"/>
+        <location filename="../ViewManager/ViewManager.py" line="2310"/>
         <source>Meta+Alt+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2312"/>
+        <location filename="../ViewManager/ViewManager.py" line="2313"/>
         <source>Alt+Shift+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2333"/>
+        <location filename="../ViewManager/ViewManager.py" line="2334"/>
         <source>Alt+Shift+PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2345"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <source>Meta+Alt+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2365"/>
+        <location filename="../ViewManager/ViewManager.py" line="2366"/>
         <source>Scroll to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2380"/>
+        <location filename="../ViewManager/ViewManager.py" line="2381"/>
         <source>Scroll to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2395"/>
+        <location filename="../ViewManager/ViewManager.py" line="2396"/>
         <source>Scroll vertically to center current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2403"/>
+        <location filename="../ViewManager/ViewManager.py" line="2404"/>
         <source>Meta+L</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2410"/>
+        <location filename="../ViewManager/ViewManager.py" line="2411"/>
         <source>Move to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2425"/>
+        <location filename="../ViewManager/ViewManager.py" line="2426"/>
         <source>Extend selection to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2441"/>
+        <location filename="../ViewManager/ViewManager.py" line="2442"/>
         <source>Move to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2453"/>
+        <location filename="../ViewManager/ViewManager.py" line="2454"/>
         <source>Extend selection to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2465"/>
+        <location filename="../ViewManager/ViewManager.py" line="2466"/>
         <source>Move to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2473"/>
+        <location filename="../ViewManager/ViewManager.py" line="2474"/>
         <source>Meta+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2480"/>
+        <location filename="../ViewManager/ViewManager.py" line="2481"/>
         <source>Extend selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2491"/>
+        <location filename="../ViewManager/ViewManager.py" line="2492"/>
         <source>Meta+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2498"/>
+        <location filename="../ViewManager/ViewManager.py" line="2499"/>
         <source>Extend rectangular selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2508"/>
+        <location filename="../ViewManager/ViewManager.py" line="2509"/>
         <source>Meta+Alt+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2516"/>
+        <location filename="../ViewManager/ViewManager.py" line="2517"/>
         <source>Extend selection to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2535"/>
+        <location filename="../ViewManager/ViewManager.py" line="2536"/>
         <source>Move to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2549"/>
+        <location filename="../ViewManager/ViewManager.py" line="2550"/>
         <source>Extend selection to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2564"/>
+        <location filename="../ViewManager/ViewManager.py" line="2565"/>
         <source>Move to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2581"/>
+        <location filename="../ViewManager/ViewManager.py" line="2582"/>
         <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="2598"/>
+        <location filename="../ViewManager/ViewManager.py" line="2599"/>
         <source>Move to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2612"/>
+        <location filename="../ViewManager/ViewManager.py" line="2613"/>
         <source>Extend selection to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2627"/>
+        <location filename="../ViewManager/ViewManager.py" line="2628"/>
         <source>Stuttered move up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2639"/>
+        <location filename="../ViewManager/ViewManager.py" line="2640"/>
         <source>Stuttered extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2652"/>
+        <location filename="../ViewManager/ViewManager.py" line="2653"/>
         <source>Stuttered move down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2664"/>
+        <location filename="../ViewManager/ViewManager.py" line="2665"/>
         <source>Stuttered extend selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2677"/>
+        <location filename="../ViewManager/ViewManager.py" line="2678"/>
         <source>Delete right to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2685"/>
+        <location filename="../ViewManager/ViewManager.py" line="2686"/>
         <source>Alt+Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2692"/>
+        <location filename="../ViewManager/ViewManager.py" line="2693"/>
         <source>Move selected lines up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2704"/>
+        <location filename="../ViewManager/ViewManager.py" line="2705"/>
         <source>Move selected lines down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2318"/>
+        <location filename="../ViewManager/ViewManager.py" line="2319"/>
         <source>Alt+Shift+PgUp</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1134"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Toggle Comment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1134"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Ctrl+Shift+M</source>
         <comment>Edit|Toggle Comment</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1142"/>
+        <location filename="../ViewManager/ViewManager.py" line="1143"/>
         <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="1146"/>
+        <location filename="../ViewManager/ViewManager.py" line="1147"/>
         <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="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Zoom reset</source>
         <translation type="unfinished">Büyütmeyi sıfırla</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished">Büyütmeyi sıfı&amp;rla</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation type="unfinished">Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3381"/>
+        <location filename="../ViewManager/ViewManager.py" line="3383"/>
         <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="3383"/>
+        <location filename="../ViewManager/ViewManager.py" line="3385"/>
         <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="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="714"/>
         <source>Save a&amp;ll</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4094"/>
-        <source>Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4088"/>
-        <source>&amp;Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4096"/>
+        <source>Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4090"/>
+        <source>&amp;Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <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="4112"/>
-        <source>Previous Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4105"/>
-        <source>&amp;Previous Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4114"/>
+        <source>Previous Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4107"/>
+        <source>&amp;Previous Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4116"/>
         <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="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Check spelling</source>
         <translation type="unfinished">Yazım denetimi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Check &amp;spelling...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4223"/>
+        <location filename="../ViewManager/ViewManager.py" line="4225"/>
         <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="4272"/>
-        <source>Edit Dictionary</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4274"/>
+        <source>Edit Dictionary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4276"/>
         <source>Project Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4277"/>
+        <location filename="../ViewManager/ViewManager.py" line="4279"/>
         <source>Project Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4282"/>
+        <location filename="../ViewManager/ViewManager.py" line="4284"/>
         <source>User Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4285"/>
+        <location filename="../ViewManager/ViewManager.py" line="4287"/>
         <source>User Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6255"/>
+        <location filename="../ViewManager/ViewManager.py" line="6257"/>
         <source>Edit Spelling Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6232"/>
+        <location filename="../ViewManager/ViewManager.py" line="6234"/>
         <source>Editing {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6214"/>
+        <location filename="../ViewManager/ViewManager.py" line="6216"/>
         <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="6243"/>
+        <location filename="../ViewManager/ViewManager.py" line="6245"/>
         <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="6255"/>
+        <location filename="../ViewManager/ViewManager.py" line="6257"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2929"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>Search current word forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2929"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation type="unfinished">Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2940"/>
+        <location filename="../ViewManager/ViewManager.py" line="2941"/>
         <source>Search next occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2943"/>
+        <location filename="../ViewManager/ViewManager.py" line="2944"/>
         <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="2952"/>
+        <location filename="../ViewManager/ViewManager.py" line="2953"/>
         <source>Search current word backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2952"/>
+        <location filename="../ViewManager/ViewManager.py" line="2953"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2963"/>
+        <location filename="../ViewManager/ViewManager.py" line="2964"/>
         <source>Search previous occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2966"/>
+        <location filename="../ViewManager/ViewManager.py" line="2967"/>
         <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="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <source>Search in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <source>Search in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <source>Meta+Ctrl+Alt+F</source>
         <comment>Search|Search Open Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3220"/>
+        <location filename="../ViewManager/ViewManager.py" line="3221"/>
         <source>Search for a text in open files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3222"/>
+        <location filename="../ViewManager/ViewManager.py" line="3223"/>
         <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="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <source>Replace in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <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="3242"/>
+        <location filename="../ViewManager/ViewManager.py" line="3243"/>
         <source>Search for a text in open files and replace it</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3244"/>
+        <location filename="../ViewManager/ViewManager.py" line="3245"/>
         <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="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <source>Replace in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1399"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Sort</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1399"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Ctrl+Alt+S</source>
         <comment>Edit|Sort</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1406"/>
+        <location filename="../ViewManager/ViewManager.py" line="1407"/>
         <source>Sort the lines containing the rectangular selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1409"/>
+        <location filename="../ViewManager/ViewManager.py" line="1410"/>
         <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="4801"/>
+        <location filename="../ViewManager/ViewManager.py" line="4803"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4808"/>
+        <location filename="../ViewManager/ViewManager.py" line="4810"/>
         <source>EOL Mode: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3491"/>
         <source>New Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3491"/>
         <source>New &amp;Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3494"/>
-        <source>Open a new view of the current document</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3496"/>
+        <source>Open a new view of the current document</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3498"/>
         <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="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3508"/>
         <source>New Document View (with new split)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3513"/>
+        <location filename="../ViewManager/ViewManager.py" line="3515"/>
         <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="3516"/>
+        <location filename="../ViewManager/ViewManager.py" line="3518"/>
         <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="3972"/>
+        <location filename="../ViewManager/ViewManager.py" line="3974"/>
         <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="3991"/>
+        <location filename="../ViewManager/ViewManager.py" line="3993"/>
         <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="4009"/>
+        <location filename="../ViewManager/ViewManager.py" line="4011"/>
         <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="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1277"/>
         <source>Ctrl+Space</source>
         <comment>Edit|Complete</comment>
         <translation type="unfinished">Ctrl+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1285"/>
+        <location filename="../ViewManager/ViewManager.py" line="1286"/>
         <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="1294"/>
+        <location filename="../ViewManager/ViewManager.py" line="1295"/>
         <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="1307"/>
+        <location filename="../ViewManager/ViewManager.py" line="1308"/>
         <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="1317"/>
+        <location filename="../ViewManager/ViewManager.py" line="1318"/>
         <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="1330"/>
+        <location filename="../ViewManager/ViewManager.py" line="1331"/>
         <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="1340"/>
+        <location filename="../ViewManager/ViewManager.py" line="1341"/>
         <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="1353"/>
+        <location filename="../ViewManager/ViewManager.py" line="1354"/>
         <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="697"/>
+        <location filename="../ViewManager/ViewManager.py" line="698"/>
         <source>Save Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="697"/>
+        <location filename="../ViewManager/ViewManager.py" line="698"/>
         <source>Save &amp;Copy...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="702"/>
+        <location filename="../ViewManager/ViewManager.py" line="703"/>
         <source>Save a copy of the current file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="704"/>
+        <location filename="../ViewManager/ViewManager.py" line="705"/>
         <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>
@@ -85814,141 +85814,141 @@
         <translation type="unfinished">Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2995"/>
         <source>Replace and Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2995"/>
         <source>Meta+R</source>
         <comment>Search|Replace and Search</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3004"/>
+        <location filename="../ViewManager/ViewManager.py" line="3005"/>
         <source>Replace the found text and search the next occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3007"/>
+        <location filename="../ViewManager/ViewManager.py" line="3008"/>
         <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="3018"/>
+        <location filename="../ViewManager/ViewManager.py" line="3019"/>
         <source>Replace Occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3018"/>
+        <location filename="../ViewManager/ViewManager.py" line="3019"/>
         <source>Ctrl+Meta+R</source>
         <comment>Search|Replace Occurrence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3028"/>
+        <location filename="../ViewManager/ViewManager.py" line="3029"/>
         <source>Replace the found text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3030"/>
+        <location filename="../ViewManager/ViewManager.py" line="3031"/>
         <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="3040"/>
+        <location filename="../ViewManager/ViewManager.py" line="3041"/>
         <source>Replace All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3040"/>
+        <location filename="../ViewManager/ViewManager.py" line="3041"/>
         <source>Shift+Meta+R</source>
         <comment>Search|Replace All</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3050"/>
+        <location filename="../ViewManager/ViewManager.py" line="3051"/>
         <source>Replace search text occurrences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3052"/>
+        <location filename="../ViewManager/ViewManager.py" line="3053"/>
         <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="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1382"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1382"/>
         <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="1389"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Show Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1392"/>
         <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="3462"/>
-        <source>Clear all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3458"/>
-        <source>Clear &amp;all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3464"/>
+        <source>Clear all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3460"/>
+        <source>Clear &amp;all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3466"/>
         <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="2120"/>
+        <location filename="../ViewManager/ViewManager.py" line="2121"/>
         <source>Reverse selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2120"/>
+        <location filename="../ViewManager/ViewManager.py" line="2121"/>
         <source>Meta+Alt+R</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3622"/>
+        <location filename="../ViewManager/ViewManager.py" line="3624"/>
         <source>Python AST Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3627"/>
-        <source>Show the AST for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3629"/>
+        <source>Show the AST for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3631"/>
         <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="3639"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>Python Disassembly Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3646"/>
-        <source>Show the Disassembly for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3648"/>
+        <source>Show the Disassembly for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3650"/>
         <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>
@@ -85968,23 +85968,23 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1418"/>
+        <location filename="../ViewManager/ViewManager.py" line="1419"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1418"/>
+        <location filename="../ViewManager/ViewManager.py" line="1419"/>
         <source>Ctrl+Alt+D</source>
         <comment>Edit|Generate Docstring</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1425"/>
+        <location filename="../ViewManager/ViewManager.py" line="1426"/>
         <source>Generate a docstring for the current function/method</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1428"/>
+        <location filename="../ViewManager/ViewManager.py" line="1429"/>
         <source>&lt;b&gt;Generate Docstring&lt;/b&gt;&lt;p&gt;Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -86465,32 +86465,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="342"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="346"/>
         <source>&lt;virtualenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="360"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="364"/>
         <source>&lt;No suitable virtualenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="362"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="366"/>
         <source>virtualenv Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="396"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="400"/>
         <source>&lt;pyvenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="416"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="420"/>
         <source>&lt;No suitable pyvenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="418"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="422"/>
         <source>pyvenv Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -86625,7 +86625,7 @@
         <translation type="unfinished">Metin Dosyaları (*.txt);;Tüm Dosyalar (*)</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="430"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="434"/>
         <source>conda Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -86660,85 +86660,85 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="110"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="112"/>
         <source>Executing: {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="154"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="163"/>
         <source>Failed
 
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="164"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="173"/>
         <source>
 pyvenv finished.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="166"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="175"/>
         <source>
 virtualenv finished.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="191"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="200"/>
         <source>No suitable pyvenv program could be started.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="195"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="204"/>
         <source>No suitable virtualenv program could be started.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="259"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="268"/>
         <source>
 Writing log file &apos;{0}&apos;.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="264"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="273"/>
         <source>Output:
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="269"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="278"/>
         <source>Errors:
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="272"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="281"/>
         <source>The logfile &apos;{0}&apos; could not be written.
 Reason: {1}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="302"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="311"/>
         <source>Done.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="292"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="301"/>
         <source>
 Writing script file &apos;{0}&apos;.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="299"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="308"/>
         <source>The script file &apos;{0}&apos; could not be written.
 Reason: {1}
 </source>
@@ -87198,82 +87198,82 @@
 <context>
     <name>WatchPointViewer</name>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="47"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="49"/>
         <source>Watchpoints</source>
         <translation>İzlemenoktası</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="174"/>
-        <source>Add</source>
-        <translation>Ekle</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="141"/>
-        <source>Edit...</source>
-        <translation>Düzenle...</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="143"/>
-        <source>Enable</source>
-        <translation>Etkinleştir</translation>
-    </message>
-    <message>
         <location filename="../Debugger/WatchPointViewer.py" line="178"/>
-        <source>Enable all</source>
-        <translation>Hepsini etkinleştir</translation>
+        <source>Add</source>
+        <translation>Ekle</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="145"/>
+        <source>Edit...</source>
+        <translation>Düzenle...</translation>
     </message>
     <message>
         <location filename="../Debugger/WatchPointViewer.py" line="147"/>
-        <source>Disable</source>
-        <translation>Onaylama</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="183"/>
-        <source>Disable all</source>
-        <translation>Hepsini Onaylama</translation>
+        <source>Enable</source>
+        <translation>Etkinleştir</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="182"/>
+        <source>Enable all</source>
+        <translation>Hepsini etkinleştir</translation>
     </message>
     <message>
         <location filename="../Debugger/WatchPointViewer.py" line="151"/>
+        <source>Disable</source>
+        <translation>Onaylama</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="187"/>
+        <source>Disable all</source>
+        <translation>Hepsini Onaylama</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="155"/>
         <source>Delete</source>
         <translation>Sil</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="188"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="192"/>
         <source>Delete all</source>
         <translation>Hepsini sil</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="191"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="195"/>
         <source>Configure...</source>
         <translation>Ayarlanıyor...</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="176"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="180"/>
         <source>Enable selected</source>
         <translation>Seçilenleri Etkinleştir</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="181"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="185"/>
         <source>Disable selected</source>
         <translation>Seçileni Onaylama</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="186"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="190"/>
         <source>Delete selected</source>
         <translation>Seçileni Sil</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="240"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="244"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; already exists.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="245"/>
-        <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/WatchPointViewer.py" line="249"/>
+        <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="253"/>
         <source>Watch expression already exists</source>
         <translation>Hali hazırda gözetleme ifadesi var</translation>
     </message>
@@ -87738,33 +87738,33 @@
         <translation type="unfinished">Hepsini Seç</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="42"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="43"/>
         <source>Info</source>
         <translation type="unfinished">Bilgi</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="43"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="45"/>
         <source>Warning</source>
         <translation type="unfinished">Dikkat</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="44"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="47"/>
         <source>Error</source>
         <translation type="unfinished">Hata</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="97"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="100"/>
         <source>[{0}] {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="102"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="105"/>
         <source> at line {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="107"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="110"/>
         <source>URL: {0}
 </source>
         <translation type="unfinished"></translation>
@@ -88334,12 +88334,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="185"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="188"/>
         <source>Suspicuous URL detected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="185"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="188"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -88578,12 +88578,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="702"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="706"/>
         <source>SSL Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="702"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="706"/>
         <source>This site does not contain SSL information.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -88649,107 +88649,107 @@
         <translation type="unfinished">Yönlendirme Menüsünü Göster</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="135"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="136"/>
         <source>Show a navigation menu for closed tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="149"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="152"/>
         <source>Open a new web browser tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="163"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="166"/>
         <source>New Tab</source>
         <translation type="unfinished">Yeni Sekme</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="167"/>
-        <source>Move Left</source>
-        <translation type="unfinished">Sola Götür</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="170"/>
+        <source>Move Left</source>
+        <translation type="unfinished">Sola Götür</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="173"/>
         <source>Move Right</source>
         <translation type="unfinished">Sağa Götür</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="174"/>
-        <source>Duplicate Page</source>
-        <translation type="unfinished">Sayfayı Çoğalt</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="177"/>
-        <source>Close</source>
-        <translation type="unfinished">Kapat</translation>
+        <source>Duplicate Page</source>
+        <translation type="unfinished">Sayfayı Çoğalt</translation>
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="180"/>
+        <source>Close</source>
+        <translation type="unfinished">Kapat</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="183"/>
         <source>Close Others</source>
         <translation type="unfinished">Diğerlerini Kapat</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="211"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="214"/>
         <source>Close All</source>
         <translation type="unfinished">Hepsini Kapat</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="186"/>
-        <source>Print Preview</source>
-        <translation type="unfinished">Baskı Öngörünümü</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="189"/>
-        <source>Print</source>
-        <translation type="unfinished">Yazdır</translation>
+        <source>Print Preview</source>
+        <translation type="unfinished">Baskı Öngörünümü</translation>
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="192"/>
+        <source>Print</source>
+        <translation type="unfinished">Yazdır</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="195"/>
         <source>Print as PDF</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="213"/>
-        <source>Reload All</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="216"/>
+        <source>Reload All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="219"/>
         <source>Bookmark All Tabs</source>
         <translation type="unfinished">Tüm Sekmeleri Yerimi yap</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="220"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="223"/>
         <source>Restore Closed Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="456"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="459"/>
         <source>...</source>
         <translation type="unfinished">...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="912"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="922"/>
         <source>Loading...</source>
         <translation type="unfinished">Yükleniyor...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="921"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="931"/>
         <source>Finished loading</source>
         <translation type="unfinished">Yükleme bitirildi</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="888"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="898"/>
         <source>Failed to load</source>
         <translation type="unfinished">Yüklerken başarısız olundu</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
         <source>Are you sure you want to close the window?</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
         <source>Are you sure you want to close the window?
 You have %n tab(s) open.</source>
         <translation type="unfinished">
@@ -88758,47 +88758,47 @@
         </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="969"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="979"/>
         <source>&amp;Quit</source>
         <translation type="unfinished">&amp;Çıkış</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="982"/>
         <source>C&amp;lose Current Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1153"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1165"/>
         <source>Restore All Closed Tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1155"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1167"/>
         <source>Clear List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="250"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="253"/>
         <source>Unmute Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="254"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="257"/>
         <source>Mute Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="753"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="763"/>
         <source>Print to PDF</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="703"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="713"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="753"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="763"/>
         <source>&lt;p&gt;The PDF could not be written to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Error:&lt;/b&gt; {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -88806,7 +88806,7 @@
 <context>
     <name>WebBrowserTools</name>
     <message>
-        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="250"/>
+        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="254"/>
         <source>&lt;unknown&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -89024,7 +89024,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1791"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1816"/>
         <source>Try reloading the page or closing some tabs to make more memory available.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -89044,22 +89044,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1780"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1797"/>
         <source>Render Process terminated abnormally</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1783"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1804"/>
         <source>The render process crashed while loading this page.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1786"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1811"/>
         <source>The render process was killed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1788"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1813"/>
         <source>The render process terminated while loading this page.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -89069,37 +89069,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1914"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1939"/>
         <source>Web Archive (*.mhtml *.mht)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1915"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1940"/>
         <source>HTML File (*.html *.htm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1916"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1941"/>
         <source>HTML File with all resources (*.html *.htm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1939"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1964"/>
         <source>Save Web Page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1731"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1742"/>
         <source>Empty Page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2289"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2321"/>
         <source>Quota Request</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2289"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2321"/>
         <source>&lt;p&gt; Allow the website at &lt;b&gt;{0}&lt;/b&gt; to use &lt;b&gt;{1}&lt;/b&gt; of persistent storage?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -89228,1214 +89228,1214 @@
         <translation type="unfinished">İçerik</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1467"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1472"/>
         <source>Index</source>
         <translation type="unfinished">Dizin</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1480"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1485"/>
         <source>Search</source>
         <translation type="unfinished">Ara</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1743"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1748"/>
         <source>JavaScript Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>New Tab</source>
         <translation type="unfinished">Yeni Sekme</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>&amp;New Tab</source>
         <translation type="unfinished">Ye&amp;ni Sekme</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>Ctrl+T</source>
         <comment>File|New Tab</comment>
         <translation type="unfinished">Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="666"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="671"/>
         <source>Open a new web browser tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="667"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="672"/>
         <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>New Window</source>
         <translation type="unfinished">Yeni Pencere</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>New &amp;Window</source>
         <translation type="unfinished">Yeni &amp;Pencere</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>Ctrl+N</source>
         <comment>File|New Window</comment>
         <translation type="unfinished">Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="680"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="685"/>
         <source>Open a new web browser window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="681"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="686"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new web browser window in the current privacy mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>New Private Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="689"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="694"/>
         <source>New &amp;Private Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="689"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="694"/>
         <source>Ctrl+Shift+P</source>
         <comment>File|New Private Window</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="695"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="700"/>
         <source>Open a new private web browser window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="697"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="702"/>
         <source>&lt;b&gt;New Private Window&lt;/b&gt;&lt;p&gt;This opens a new private web browser window by starting a new web browser instance in private mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2503"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2508"/>
         <source>Open File</source>
         <translation type="unfinished">Dosya Aç</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="705"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="710"/>
         <source>&amp;Open File</source>
         <translation type="unfinished">D&amp;osya Aç</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="705"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="710"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation type="unfinished">Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="711"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="716"/>
         <source>Open a file for display</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="712"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="717"/>
         <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new file for display. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Open File in New Tab</source>
         <translation type="unfinished">Yeni Sekmede Dosya Aç</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Open File in New &amp;Tab</source>
         <translation type="unfinished">Yeni Sek&amp;mede Dosya Aç</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Shift+Ctrl+O</source>
         <comment>File|Open in new tab</comment>
         <translation type="unfinished">Shift+Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="726"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="731"/>
         <source>Open a file for display in a new tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="733"/>
         <source>&lt;b&gt;Open File in New Tab&lt;/b&gt;&lt;p&gt;This opens a new file for display in a new tab. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="754"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="759"/>
         <source>Save Page Screen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="754"/>
-        <source>Save Page Screen...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="759"/>
+        <source>Save Page Screen...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="764"/>
         <source>Save the visible part of the current page as a screen shot</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="772"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="777"/>
         <source>Import Bookmarks</source>
         <translation type="unfinished">Yerimlerini İçeaktar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="772"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="777"/>
         <source>&amp;Import Bookmarks...</source>
         <translation type="unfinished">Yerimlerini &amp;İçeaktar...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="776"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="781"/>
         <source>Import bookmarks from other browsers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="778"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="783"/>
         <source>&lt;b&gt;Import Bookmarks&lt;/b&gt;&lt;p&gt;Import bookmarks from other browsers.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="786"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="791"/>
         <source>Export Bookmarks</source>
         <translation type="unfinished">Yerimlerini Dışaaktar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="786"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="791"/>
         <source>&amp;Export Bookmarks...</source>
         <translation type="unfinished">Y&amp;erimlerini Dışaaktar...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="790"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="795"/>
         <source>Export the bookmarks into a file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="792"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="797"/>
         <source>&lt;b&gt;Export Bookmarks&lt;/b&gt;&lt;p&gt;Export the bookmarks into a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2122"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2127"/>
         <source>Print</source>
         <translation type="unfinished">Yazdır</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="800"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="805"/>
         <source>&amp;Print</source>
         <translation type="unfinished">&amp;Yazdır</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="800"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="805"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation type="unfinished">Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="806"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="811"/>
         <source>Print the displayed help</source>
         <translation type="unfinished">Görüntülenen yardımı yazdır</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="807"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="812"/>
         <source>&lt;b&gt;Print&lt;/b&gt;&lt;p&gt;Print the displayed help text.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Yazdır&lt;/b&gt;&lt;p&gt;Görüntülenen yardım metnini yazdır.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="814"/>
-        <source>Print as PDF</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="819"/>
+        <source>Print as PDF</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="824"/>
         <source>Print the displayed help as PDF</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="821"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="826"/>
         <source>&lt;b&gt;Print as PDF&lt;/b&gt;&lt;p&gt;Print the displayed help text as a PDF file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="829"/>
-        <source>Print Preview</source>
-        <translation type="unfinished">Baskı Öngörünümü</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="834"/>
+        <source>Print Preview</source>
+        <translation type="unfinished">Baskı Öngörünümü</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="839"/>
         <source>Print preview of the displayed help</source>
         <translation type="unfinished">İlk yardım sayfasına taşı</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="836"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="841"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the displayed help text.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Yazıcı Öngörünümü&lt;/b&gt;&lt;p&gt;Görüntülenen yardım metninin yazıcı öngörünümü.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>Close</source>
         <translation type="unfinished">Kapat</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>&amp;Close</source>
         <translation type="unfinished">&amp;Kapat</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation type="unfinished">Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="864"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="869"/>
         <source>Close the current help window</source>
         <translation type="unfinished">Geçerli yardım penceresini kapat</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="866"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="871"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="873"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="878"/>
         <source>Close All</source>
         <translation type="unfinished">Hepsini Kapat</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="873"/>
-        <source>Close &amp;All</source>
-        <translation type="unfinished">Hepsini K&amp;apat</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="877"/>
-        <source>Close all help windows</source>
-        <translation type="unfinished">Tüm yardım pencerelerini kapat</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="878"/>
+        <source>Close &amp;All</source>
+        <translation type="unfinished">Hepsini K&amp;apat</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="882"/>
+        <source>Close all help windows</source>
+        <translation type="unfinished">Tüm yardım pencerelerini kapat</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="883"/>
         <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all web browser windows except the first one.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="886"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="891"/>
         <source>Quit</source>
         <translation type="unfinished">Çık</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2854"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2859"/>
         <source>&amp;Quit</source>
         <translation type="unfinished">&amp;Çıkış</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="886"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="891"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished">Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>Backward</source>
         <translation type="unfinished">Geriye Doğru</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>&amp;Backward</source>
         <translation type="unfinished">Geriye &amp;Doğru</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>Alt+Left</source>
         <comment>Go|Backward</comment>
         <translation type="unfinished">Alt+Left</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="906"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="911"/>
         <source>Move one screen backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="907"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="912"/>
         <source>&lt;b&gt;Backward&lt;/b&gt;&lt;p&gt;Moves one screen backward. If none is available, this action is disabled.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>Forward</source>
         <translation type="unfinished">İleriye</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>&amp;Forward</source>
         <translation type="unfinished">İleri&amp;ye</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>Alt+Right</source>
         <comment>Go|Forward</comment>
         <translation type="unfinished">Alt+Right</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="921"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="926"/>
         <source>Move one screen forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="923"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="928"/>
         <source>&lt;b&gt;Forward&lt;/b&gt;&lt;p&gt;Moves one screen forward. If none is available, this action is disabled.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>Home</source>
         <translation type="unfinished">Home</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>&amp;Home</source>
         <translation type="unfinished">&amp;Ev</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>Ctrl+Home</source>
         <comment>Go|Home</comment>
         <translation type="unfinished">Ctrl+Home</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="939"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="944"/>
         <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>Reload</source>
         <translation type="unfinished">Yeniden Yükle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>&amp;Reload</source>
         <translation type="unfinished">&amp;Yeniden Yükle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>Ctrl+R</source>
         <comment>Go|Reload</comment>
         <translation type="unfinished">Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>F5</source>
         <comment>Go|Reload</comment>
         <translation type="unfinished">F5</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="953"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="958"/>
         <source>Reload the current screen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="955"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="960"/>
         <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Stop</source>
         <translation type="unfinished">Dur</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>&amp;Stop</source>
         <translation type="unfinished">D&amp;ur</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Ctrl+.</source>
         <comment>Go|Stop</comment>
         <translation type="unfinished">Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Esc</source>
         <comment>Go|Stop</comment>
         <translation type="unfinished">Esc</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="969"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="974"/>
         <source>Stop loading</source>
         <translation type="unfinished">Yüklemeyi durdur</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="970"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="975"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>Copy</source>
         <translation type="unfinished">Kopyala</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>&amp;Copy</source>
         <translation type="unfinished">&amp;Kopyala</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished">Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="983"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="988"/>
         <source>Copy the selected text</source>
         <translation type="unfinished">Seçilen metni kopyala</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="984"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="989"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Kopya&lt;/b&gt;&lt;p&gt;Seçilen metni clipboard kopyala.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Cut</source>
         <translation type="unfinished">Kes</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Cu&amp;t</source>
         <translation type="unfinished">Ke&amp;s</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished">Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="997"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1002"/>
         <source>Cut the selected text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="998"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1003"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>Paste</source>
         <translation type="unfinished">Yapıştır</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>&amp;Paste</source>
         <translation type="unfinished">Ya&amp;pıştır</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished">Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1011"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1016"/>
         <source>Paste text from the clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1012"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1017"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>Undo</source>
         <translation type="unfinished">Geri Al</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>&amp;Undo</source>
         <translation type="unfinished">&amp;Geri al</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished">Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1025"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1030"/>
         <source>Undo the last edit action</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1026"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1031"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>Redo</source>
         <translation type="unfinished">İleri al</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>&amp;Redo</source>
         <translation type="unfinished">&amp;İleri al</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation type="unfinished">Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1039"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1044"/>
         <source>Redo the last edit action</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1040"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1045"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>Select All</source>
         <translation type="unfinished">Hepsini Seç</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>&amp;Select All</source>
         <translation type="unfinished">Hep&amp;sini Seç</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation type="unfinished">Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1053"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1058"/>
         <source>Select all text</source>
         <translation type="unfinished">Tüm metni seç</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1054"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1059"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>Find...</source>
         <translation type="unfinished">Bul...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>&amp;Find...</source>
         <translation type="unfinished">&amp;Bul...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>Ctrl+F</source>
         <comment>Edit|Find</comment>
         <translation type="unfinished">Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1080"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1085"/>
         <source>Find text in page</source>
         <translation type="unfinished">Metni sayfa içinde bul</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1081"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1086"/>
         <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;BUl&lt;/b&gt;&lt;p&gt;Metni geçerli sayfada bul.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>Find next</source>
         <translation type="unfinished">Sonrakini bul</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>Find &amp;next</source>
         <translation type="unfinished">So&amp;nrakini Bul</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>F3</source>
         <comment>Edit|Find next</comment>
         <translation type="unfinished">F3</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1094"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1099"/>
         <source>Find next occurrence of text in page</source>
         <translation type="unfinished">Geçerli sayfadaki metinde bir sonrakini bul</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1096"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1101"/>
         <source>&lt;b&gt;Find next&lt;/b&gt;&lt;p&gt;Find the next occurrence of text in the current page.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Bir sonrakini bul&lt;/b&gt;&lt;p&gt;Geçerli sayfadaki metinde bir sonrakini bul.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Find previous</source>
         <translation type="unfinished">Öncekini bul</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Find &amp;previous</source>
         <translation type="unfinished">Öncekini b&amp;ul</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Shift+F3</source>
         <comment>Edit|Find previous</comment>
         <translation type="unfinished">Shift+F3</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1109"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1114"/>
         <source>Find previous occurrence of text in page</source>
         <translation type="unfinished">Geçerli sayfadaki metinde bir öncekini bul</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1111"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1116"/>
         <source>&lt;b&gt;Find previous&lt;/b&gt;&lt;p&gt;Find the previous occurrence of text in the current page.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Bir öncekini bul&lt;/b&gt;&lt;p&gt;Geçerli sayfadaki metinde bir öncekini bul.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
         <source>Manage Bookmarks</source>
         <translation type="unfinished">Yerimleri Yönetimi</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
         <source>&amp;Manage Bookmarks...</source>
         <translation type="unfinished">Yerimleri Yöneti&amp;mi...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
         <source>Ctrl+Shift+B</source>
         <comment>Help|Manage bookmarks</comment>
         <translation type="unfinished">Ctrl+Shift+B</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1130"/>
         <source>Open a dialog to manage the bookmarks.</source>
         <translation type="unfinished">Yerimlerini yönetmek için diyalog aç.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1127"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1132"/>
         <source>&lt;b&gt;Manage Bookmarks...&lt;/b&gt;&lt;p&gt;Open a dialog to manage the bookmarks.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Yerimlerini Yönet...&lt;/b&gt;&lt;p&gt;Yerimlerini düzenlemek için bir diyalog açılır.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Add Bookmark</source>
         <translation type="unfinished">Yerimi Ekle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Add &amp;Bookmark...</source>
         <translation type="unfinished">&amp;Yerimi Ekle...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Ctrl+D</source>
         <comment>Help|Add bookmark</comment>
         <translation type="unfinished">Ctrl+D</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1142"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1147"/>
         <source>Open a dialog to add a bookmark.</source>
         <translation type="unfinished">Yerimlerine eklemek için bir diyalog aç.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1144"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1149"/>
         <source>&lt;b&gt;Add Bookmark&lt;/b&gt;&lt;p&gt;Open a dialog to add the current URL as a bookmark.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Yerimi Ekle&lt;/b&gt;&lt;p&gt;Geçerli URL yi yerimi olarak eklemek için bir diyalog açar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1151"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1156"/>
         <source>Add Folder</source>
         <translation type="unfinished">,Dizin Ekle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1151"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1156"/>
         <source>Add &amp;Folder...</source>
         <translation type="unfinished">Dizin &amp;Ekle...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1155"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1160"/>
         <source>Open a dialog to add a new bookmarks folder.</source>
         <translation type="unfinished">Yeni yerimi dizini eklemek için bir diyalog açar.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1157"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1162"/>
         <source>&lt;b&gt;Add Folder...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Kalsör Ekle...&lt;/b&gt;&lt;p&gt;Yeni yerimi klasörü eklemek için bir diyalog açar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1165"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1170"/>
         <source>Bookmark All Tabs</source>
         <translation type="unfinished">Tüm Sekmeleri Yerimi yap</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1165"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1170"/>
         <source>Bookmark All Tabs...</source>
         <translation type="unfinished">Tüm Sekmeleri Yerimi yap...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1169"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1174"/>
         <source>Bookmark all open tabs.</source>
         <translation type="unfinished">Tüm Açık Sekmeleri Yerimi yap.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1171"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1176"/>
         <source>&lt;b&gt;Bookmark All Tabs...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder for all open tabs.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished">Bu nedir?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished">Bu &amp;Nedir?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished">Shift+F1</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1185"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1190"/>
         <source>Context sensitive help</source>
         <translation type="unfinished">Duyarlı yardım</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1186"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1191"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Duyarlı yardım içeriğini görüntüle&lt;/b&gt;&lt;p&gt;Bu Nedir? modunda, Fare imleci soru işeretiyle beraber bir ok şeklindedir ve bir arayüz elemanı üzerinde tıklarsanız bu elemanın nasıl kullanılacağı ve hakkında kısa bilgi verir. bu özellik diyaloglarda başlık çubuğu üzerindeyken çıkarılan açılır menülerde de bulunmaktadır.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1197"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1202"/>
         <source>About</source>
         <translation type="unfinished">Hakkında</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1197"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1202"/>
         <source>&amp;About</source>
         <translation type="unfinished">H&amp;akkında</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1201"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1206"/>
         <source>Display information about this software</source>
         <translation type="unfinished">Bu yazılım hakkında bilgi göster</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1203"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1208"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Hakkında&lt;/b&gt;&lt;p&gt;Bu yazılım hakkındaki çeşitli bilgileri gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1210"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1215"/>
         <source>About Qt</source>
         <translation type="unfinished">Qt Hakkında</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1210"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1215"/>
         <source>About &amp;Qt</source>
         <translation type="unfinished">&amp;Qt Hakkında</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1214"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1219"/>
         <source>Display information about the Qt toolkit</source>
         <translation type="unfinished">Qt araçkiti hakkında bilgi göster</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1216"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1221"/>
         <source>&lt;b&gt;About Qt&lt;/b&gt;&lt;p&gt;Display some information about the Qt toolkit.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Qt Hakkında&lt;/b&gt;&lt;p&gt;Qt Araçkiti hakkında bazı bilgiler gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom in</source>
         <translation type="unfinished">Büyüt</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom &amp;in</source>
         <translation type="unfinished">Bü&amp;yült</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished">Ctrl++</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1230"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1235"/>
         <source>Zoom in on the web page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1231"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1236"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the web page. This makes the web page bigger.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom out</source>
         <translation type="unfinished">Küçült</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom &amp;out</source>
         <translation type="unfinished">Küçü&amp;lt</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished">Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1246"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1251"/>
         <source>Zoom out on the web page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1247"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1252"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the web page. This makes the web page smaller.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Zoom reset</source>
         <translation type="unfinished">Büyütmeyi sıfırla</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished">Büyütmeyi sıfı&amp;rla</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation type="unfinished">Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1261"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1266"/>
         <source>Reset the zoom of the web page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1263"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1268"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the web page. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1271"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1276"/>
         <source>Show page source</source>
         <translation type="unfinished">Sayfa kaynağını göster</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1271"/>
-        <source>Ctrl+U</source>
-        <translation type="unfinished">Ctrl+U</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1276"/>
+        <source>Ctrl+U</source>
+        <translation type="unfinished">Ctrl+U</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1281"/>
         <source>Show the page source in an editor</source>
         <translation type="unfinished">Sayfa kaynağını bir düzenleyici sayfasinda göster</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1278"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1283"/>
         <source>&lt;b&gt;Show page source&lt;/b&gt;&lt;p&gt;Show the page source in an editor.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Sayfa kaynağını göster&lt;/b&gt;&lt;p&gt;Sayfa kaynağını bir düzenleyicide göster.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1286"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1291"/>
         <source>Full Screen</source>
         <translation type="unfinished">Tam Ekran</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1286"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1291"/>
         <source>&amp;Full Screen</source>
         <translation type="unfinished">&amp;Tam Ekran</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1296"/>
-        <source>F11</source>
-        <translation type="unfinished">F11</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1301"/>
-        <source>Show next tab</source>
-        <translation type="unfinished">Sonraki sekmeyi göster</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1301"/>
+        <source>F11</source>
+        <translation type="unfinished">F11</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1306"/>
+        <source>Show next tab</source>
+        <translation type="unfinished">Sonraki sekmeyi göster</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1306"/>
         <source>Ctrl+Alt+Tab</source>
         <translation type="unfinished">Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1310"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1315"/>
         <source>Show previous tab</source>
         <translation type="unfinished">Önceki sekmeyi göster</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1310"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1315"/>
         <source>Shift+Ctrl+Alt+Tab</source>
         <translation type="unfinished">Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1319"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1324"/>
         <source>Switch between tabs</source>
         <translation type="unfinished">Sekmeler arasında değiştir</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1319"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1324"/>
         <source>Ctrl+1</source>
         <translation type="unfinished">Ctrl+1</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1328"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1333"/>
         <source>Preferences</source>
         <translation type="unfinished">Seçenekler</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1328"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1333"/>
         <source>&amp;Preferences...</source>
         <translation type="unfinished">&amp;Seçenekler...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1332"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1337"/>
         <source>Set the prefered configuration</source>
         <translation type="unfinished">tercih edilen ayarları yapınız</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1334"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1339"/>
         <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Tercihler&lt;/b&gt;&lt;p&gt;Uygulamanın ayarlama maddelerini tercih ettiğiniz değerlerle ayarlayınız.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1342"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1347"/>
         <source>Languages</source>
         <translation type="unfinished">Diller</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1342"/>
-        <source>&amp;Languages...</source>
-        <translation type="unfinished">Di&amp;ller...</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1347"/>
+        <source>&amp;Languages...</source>
+        <translation type="unfinished">Di&amp;ller...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1352"/>
         <source>Configure the accepted languages for web pages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1349"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1354"/>
         <source>&lt;b&gt;Languages&lt;/b&gt;&lt;p&gt;Configure the accepted languages for web pages.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1357"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1362"/>
         <source>Cookies</source>
         <translation type="unfinished">Çerezler</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1357"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1362"/>
         <source>C&amp;ookies...</source>
         <translation type="unfinished">&amp;Çerezler...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1361"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1366"/>
         <source>Configure cookies handling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1363"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1368"/>
         <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1371"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1376"/>
         <source>Personal Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1371"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1376"/>
         <source>Personal Information...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1377"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1382"/>
         <source>Configure personal information for completing form fields</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1379"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1384"/>
         <source>&lt;b&gt;Personal Information...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the personal information used for completing form fields.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1388"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1393"/>
         <source>GreaseMonkey Scripts</source>
         <translation type="unfinished">&amp;Özel verileri temizle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1388"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1393"/>
         <source>GreaseMonkey Scripts...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1394"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1399"/>
         <source>Configure the GreaseMonkey Scripts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1396"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1401"/>
         <source>&lt;b&gt;GreaseMonkey Scripts...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available GreaseMonkey Scripts.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1405"/>
-        <source>Edit Message Filters</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1405"/>
-        <source>Edit Message Filters...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1410"/>
+        <source>Edit Message Filters</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1410"/>
+        <source>Edit Message Filters...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1415"/>
         <source>Edit the message filters used to suppress unwanted messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1412"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1417"/>
         <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1422"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1427"/>
         <source>Edit HTML5 Feature Permissions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1422"/>
-        <source>Edit HTML5 Feature Permissions...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1427"/>
+        <source>Edit HTML5 Feature Permissions...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1432"/>
         <source>Edit the remembered HTML5 feature permissions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1429"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1434"/>
         <source>&lt;b&gt;Edit HTML5 Feature Permissions&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the remembered HTML5 feature permissions.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1439"/>
-        <source>Sync with Table of Contents</source>
-        <translation type="unfinished">İçindekiler Tablosu ile senkronize et</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1444"/>
+        <source>Sync with Table of Contents</source>
+        <translation type="unfinished">İçindekiler Tablosu ile senkronize et</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1449"/>
         <source>Synchronizes the table of contents with current page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1446"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1451"/>
         <source>&lt;b&gt;Sync with Table of Contents&lt;/b&gt;&lt;p&gt;Synchronizes the table of contents with current page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1454"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1459"/>
         <source>Table of Contents</source>
         <translation type="unfinished">İçindekiler Tablosu</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1458"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1463"/>
         <source>Shows the table of contents window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1460"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1465"/>
         <source>&lt;b&gt;Table of Contents&lt;/b&gt;&lt;p&gt;Shows the table of contents window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1471"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1476"/>
         <source>Shows the index window</source>
         <translation type="unfinished">Dizin penceresini göster</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1473"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1478"/>
         <source>&lt;b&gt;Index&lt;/b&gt;&lt;p&gt;Shows the index window.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Dizin&lt;/b&gt;&lt;p&gt;Dizin penceresini gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1484"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1489"/>
         <source>Shows the search window</source>
         <translation type="unfinished">Arama pencerelerini göster</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1486"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1491"/>
         <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Arama&lt;/b&gt;&lt;p&gt;Arama penceresini gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1494"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1499"/>
         <source>Manage QtHelp Documents</source>
         <translation type="unfinished">OtHelp Dökümanlları Yönetimi</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1494"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1499"/>
         <source>Manage QtHelp &amp;Documents</source>
         <translation type="unfinished">OtHelp &amp;Dökümanlları Yönetimi</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1498"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1503"/>
         <source>Shows a dialog to manage the QtHelp documentation set</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1500"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1505"/>
         <source>&lt;b&gt;Manage QtHelp Documents&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the QtHelp documentation set.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -90455,788 +90455,788 @@
         <translation type="obsolete">QtHelp filtrelerini yönetmek için bir diyalog gösterir</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1509"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1514"/>
         <source>Reindex Documentation</source>
         <translation type="unfinished">Belgeyi Yeniden İindexle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1509"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1514"/>
         <source>&amp;Reindex Documentation</source>
         <translation type="unfinished">&amp;Belgeyi Yeniden İindexle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1513"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1518"/>
         <source>Reindexes the documentation set</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1520"/>
         <source>&lt;b&gt;Reindex Documentation&lt;/b&gt;&lt;p&gt;Reindexes the documentation set.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1529"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1534"/>
         <source>Clear private data</source>
         <translation type="unfinished">Özel verileri temizle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1531"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1536"/>
         <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like browsing history, search history or the favicons database.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/>
-        <source>Clear icons database</source>
-        <translation type="unfinished">İkon veritabanını temizle</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/>
-        <source>Clear &amp;icons database</source>
-        <translation type="unfinished">İkon ver&amp;itabanını temizle</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1545"/>
+        <source>Clear icons database</source>
+        <translation type="unfinished">İkon veritabanını temizle</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1545"/>
+        <source>Clear &amp;icons database</source>
+        <translation type="unfinished">İkon ver&amp;itabanını temizle</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1550"/>
         <source>Clear the database of favicons</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1547"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1552"/>
         <source>&lt;b&gt;Clear icons database&lt;/b&gt;&lt;p&gt;Clears the database of favicons of previously visited URLs.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1555"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1560"/>
         <source>Manage saved Favicons</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1561"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/>
         <source>Show a dialog to manage the saved favicons</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1563"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1568"/>
         <source>&lt;b&gt;Manage saved Favicons&lt;/b&gt;&lt;p&gt;This shows a dialog to manage the saved favicons of previously visited URLs.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/>
-        <source>Configure Search Engines</source>
-        <translation type="unfinished">Arama Motoru Ayarları</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/>
-        <source>Configure Search &amp;Engines...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1576"/>
+        <source>Configure Search Engines</source>
+        <translation type="unfinished">Arama Motoru Ayarları</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1576"/>
+        <source>Configure Search &amp;Engines...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/>
         <source>Configure the available search engines</source>
         <translation type="unfinished">Ulaşılabilen Arama motorunu ayarla</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1578"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1583"/>
         <source>&lt;b&gt;Configure Search Engines...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available search engines.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Arama Motoru Ayarlanıyor...&lt;/b&gt;&lt;p&gt;Ulaşılabilen arama motorunu ayarlamak için bir diyalog açılır.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1592"/>
         <source>Manage Saved Passwords</source>
         <translation type="unfinished">Kaydedilmiş Parolaları Yönet</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1592"/>
         <source>Manage Saved Passwords...</source>
         <translation type="unfinished">Kaydedilmiş Parolaları Yönet...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1593"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/>
         <source>Manage the saved passwords</source>
         <translation type="unfinished">Kaydedilmiş parolaları yönet</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1595"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1600"/>
         <source>&lt;b&gt;Manage Saved Passwords...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved passwords.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Kaydadilmiş Parolaların Yönetimi...&lt;/b&gt;&lt;p&gt;Kaydedilmiş parolalları yönetmek için bir diyalog açılır.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1602"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/>
         <source>Ad Block</source>
         <translation type="unfinished">Engel ekle</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1602"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/>
         <source>&amp;Ad Block...</source>
         <translation type="unfinished">&amp;Engel Ekle...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1608"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1613"/>
         <source>Configure AdBlock subscriptions and rules</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1610"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1615"/>
         <source>&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure AdBlock subscriptions and rules.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1618"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/>
         <source>Manage SSL Certificate Errors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1618"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/>
         <source>Manage SSL Certificate Errors...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1624"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1629"/>
         <source>Manage the accepted SSL certificate Errors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1626"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/>
         <source>&lt;b&gt;Manage SSL Certificate Errors...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the accepted SSL certificate errors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1651"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1656"/>
         <source>Downloads</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1655"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1660"/>
         <source>Shows the downloads window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1657"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1662"/>
         <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>RSS Feeds Dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>&amp;RSS Feeds Dialog...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>Ctrl+Shift+F</source>
         <comment>Help|RSS Feeds Dialog</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1671"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1676"/>
         <source>Open a dialog showing the configured RSS feeds.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1673"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1678"/>
         <source>&lt;b&gt;RSS Feeds Dialog...&lt;/b&gt;&lt;p&gt;Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>Siteinfo Dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>&amp;Siteinfo Dialog...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>Ctrl+Shift+I</source>
         <comment>Help|Siteinfo Dialog</comment>
         <translation type="unfinished">Ctrl+Shift+I</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1688"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1693"/>
         <source>Open a dialog showing some information about the current site.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1690"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1695"/>
         <source>&lt;b&gt;Siteinfo Dialog...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the current site.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1703"/>
         <source>Manage User Agent Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1703"/>
         <source>Manage &amp;User Agent Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1702"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1707"/>
         <source>Shows a dialog to manage the User Agent settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1704"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1709"/>
         <source>&lt;b&gt;Manage User Agent Settings&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the User Agent settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1712"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1717"/>
         <source>Synchronize data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1712"/>
-        <source>&amp;Synchronize Data...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1717"/>
+        <source>&amp;Synchronize Data...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1722"/>
         <source>Shows a dialog to synchronize data via the network</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1719"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1724"/>
         <source>&lt;b&gt;Synchronize Data...&lt;/b&gt;&lt;p&gt;This shows a dialog to synchronize data via the network.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/>
         <source>Manage Saved Zoom Values</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/>
         <source>Manage Saved Zoom Values...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1734"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1739"/>
         <source>Manage the saved zoom values</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1736"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1741"/>
         <source>&lt;b&gt;Manage Saved Zoom Values...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved zoom values.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1747"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1752"/>
         <source>Toggle the JavaScript console window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1749"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1754"/>
         <source>&lt;b&gt;JavaScript Console&lt;/b&gt;&lt;p&gt;This toggles the JavaScript console window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1910"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1915"/>
         <source>&amp;File</source>
         <translation type="unfinished">&amp;Dosya</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1942"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1947"/>
         <source>&amp;Edit</source>
         <translation type="unfinished">Düz&amp;en</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2181"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2186"/>
         <source>&amp;View</source>
         <translation type="unfinished">&amp;Görünüm</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1969"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1974"/>
         <source>Text Encoding</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1981"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1986"/>
         <source>H&amp;istory</source>
         <translation type="unfinished">Geçmi&amp;ş</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1998"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2003"/>
         <source>&amp;Bookmarks</source>
         <translation type="unfinished">&amp;Yerimleri</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2014"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2019"/>
         <source>&amp;Settings</source>
         <translation type="unfinished">Ayar&amp;lar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2046"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2051"/>
         <source>Global User Agent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2212"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2217"/>
         <source>&amp;Tools</source>
         <translation type="unfinished">&amp;Araçlar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2087"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2092"/>
         <source>&amp;Help</source>
         <translation type="unfinished">&amp;Yardım</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2236"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2241"/>
         <source>File</source>
         <translation type="unfinished">Dosya</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2261"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2266"/>
         <source>Edit</source>
         <translation type="unfinished">Düzen</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2274"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2279"/>
         <source>View</source>
         <translation type="unfinished">Görünüm</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2284"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2289"/>
         <source>Find</source>
         <translation type="unfinished">Bul</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2293"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2298"/>
         <source>Filter</source>
         <translation type="unfinished">Süzgeç</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2303"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2308"/>
         <source>Filtered by: </source>
         <translation type="unfinished">Süzülen: </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2311"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2316"/>
         <source>Settings</source>
         <translation type="unfinished">Ayarlar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2323"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2328"/>
         <source>Tools</source>
         <translation type="unfinished">Araçlar</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2332"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2337"/>
         <source>Help</source>
         <translation type="unfinished">Yardım</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2339"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2344"/>
         <source>VirusTotal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1785"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1790"/>
         <source>Scan current site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4613"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4626"/>
         <source>IP Address Report</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4623"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4636"/>
         <source>Domain Report</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>&lt;p&gt;Could not start the process.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;İşlem başlatılamıyor.&lt;br&gt;Bu durum büyük olasılıkla şundan kaynaklanıyto &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>OK</source>
         <translation type="unfinished">TAMAM</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2667"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2672"/>
         <source>Saved Tabs</source>
         <translation type="unfinished">Sekmeleri Kaydet</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3392"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3399"/>
         <source>Could not find an associated content.</source>
         <translation type="unfinished">Birleştirilmiş bir içerek bulunamadı.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3486"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3493"/>
         <source>Updating search index</source>
         <translation type="unfinished">Arama index yenileniyor</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3560"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3567"/>
         <source>Looking for Documentation...</source>
         <translation type="unfinished">Dökümanlara bakılıyor...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3590"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3597"/>
         <source>Unfiltered</source>
         <translation type="unfinished">Süzülmemiş</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3607"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3614"/>
         <source>Help Engine</source>
         <translation type="unfinished">Yardım Motoru</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4144"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4151"/>
         <source>ISO</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4155"/>
+        <source>Windows</source>
+        <translation type="unfinished">Windows</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4153"/>
+        <source>Unicode</source>
+        <translation type="unfinished">Evrensel kod</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4161"/>
+        <source>Other</source>
+        <translation type="unfinished">Diğer</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4157"/>
+        <source>IBM</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4591"/>
+        <source>VirusTotal Scan</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4591"/>
+        <source>&lt;p&gt;The VirusTotal scan could not be scheduled.&lt;p&gt;
+&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4617"/>
+        <source>Enter a valid IPv4 address in dotted quad notation:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4626"/>
+        <source>The given IP address is not in dotted quad notation.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4636"/>
+        <source>Enter a valid domain name:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1762"/>
+        <source>Tab Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1766"/>
+        <source>Shows the tab manager window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1768"/>
+        <source>&lt;b&gt;Tab Manager&lt;/b&gt;&lt;p&gt;Shows the tab manager window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
+        <source>Save As</source>
+        <translation type="unfinished">Farklı Kaydet</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
+        <source>&amp;Save As...</source>
+        <translation type="unfinished">Farklı K&amp;aydet...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
+        <source>Shift+Ctrl+S</source>
+        <comment>File|Save As</comment>
+        <translation type="unfinished">Shift+Ctrl+S</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="748"/>
+        <source>Save the current page to disk</source>
+        <translation type="unfinished">Geçerli sayfayı harddiske kaydet</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="750"/>
+        <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current page to disk.&lt;/p&gt;</source>
+        <translation type="unfinished">&lt;b&gt;Farklı Kaydet...&lt;/b&gt;&lt;p&gt;Geçerli sayfayı harddiske kaydet.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1066"/>
+        <source>Unselect</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1071"/>
+        <source>Clear current selection</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1072"/>
+        <source>&lt;b&gt;Unselect&lt;/b&gt;&lt;p&gt;Clear the selection of the current browser.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1066"/>
+        <source>Alt+Ctrl+A</source>
+        <comment>Edit|Unselect</comment>
+        <translation type="unfinished">Alt+Ctrl+A</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2508"/>
+        <source>HTML Files (*.html *.htm *.mhtml *.mht);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="942"/>
+        <source>Move to the initial screen</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1298"/>
+        <source>Meta+Ctrl+F</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2223"/>
+        <source>&amp;VirusTotal</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2188"/>
+        <source>&amp;Windows</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2086"/>
+        <source>&amp;Toolbars</source>
+        <translation type="unfinished">&amp;Araççubuğu</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2121"/>
+        <source>Save</source>
+        <translation type="unfinished">Kaydet</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2140"/>
+        <source>Show All History...</source>
+        <translation type="unfinished">Tüm Geçmişi Göster...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4186"/>
+        <source>Menu Bar</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4191"/>
+        <source>Bookmarks</source>
+        <translation type="unfinished">Yerimleri</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4196"/>
+        <source>Status Bar</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4210"/>
+        <source>&amp;Show all</source>
+        <translation type="unfinished">Hepsini Gö&amp;ster</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4212"/>
+        <source>&amp;Hide all</source>
+        <translation type="unfinished">&amp;Hepsini gizle</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="849"/>
+        <source>Send Page Link</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="854"/>
+        <source>Send the link of the current page via email</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="856"/>
+        <source>&lt;b&gt;Send Page Link&lt;/b&gt;&lt;p&gt;Send the link of the current page via email.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1776"/>
+        <source>Session Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1776"/>
+        <source>Session Manager...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1780"/>
+        <source>Shows the session manager window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1782"/>
+        <source>&lt;b&gt;Session Manager&lt;/b&gt;&lt;p&gt;Shows the session manager window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2114"/>
+        <source>Sessions</source>
+        <translation type="unfinished">Oturumlar</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2850"/>
+        <source>Are you sure you want to close the web browser?</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2850"/>
+        <source>Are you sure you want to close the web browser?
+You have {0} windows with {1} tabs open.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/>
+        <source>Manage Safe Browsing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/>
+        <source>Manage Safe Browsing...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1647"/>
+        <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1645"/>
+        <source>Configure Safe Browsing and manage local cache</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="767"/>
+        <source>&lt;b&gt;Save Page Screen...&lt;/b&gt;&lt;p&gt;Saves the visible part of the current page as a screen shot.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1828"/>
+        <source>Keyboard Shortcuts</source>
+        <translation type="unfinished">Klavye Kısayolları</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1828"/>
+        <source>Keyboard &amp;Shortcuts...</source>
+        <translation type="unfinished">Klavye Kı&amp;sayolları...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1834"/>
+        <source>Set the keyboard shortcuts</source>
+        <translation type="unfinished">Klavye kısayollarını ayarla</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1836"/>
+        <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5009"/>
+        <source>Export Keyboard Shortcuts</source>
+        <translation type="unfinished">Kılavye Kısa Yollarını Dışa Aktar</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1844"/>
+        <source>&amp;Export Keyboard Shortcuts...</source>
+        <translation type="unfinished">Kılavye Kısa Yo&amp;llarını Dışa Aktar...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1849"/>
+        <source>Export the keyboard shortcuts</source>
+        <translation type="unfinished">Kılavye kısa yollarını dışa aktar</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1851"/>
+        <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5025"/>
+        <source>Import Keyboard Shortcuts</source>
+        <translation type="unfinished">Klavye kısayollarını İçe Aktar</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1858"/>
+        <source>&amp;Import Keyboard Shortcuts...</source>
+        <translation type="unfinished">Klavye K&amp;ısayollarını İçe Aktar...</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1863"/>
+        <source>Import the keyboard shortcuts</source>
+        <translation type="unfinished">Klavye kısayolları içeri aktarılıyor</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1865"/>
+        <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1872"/>
+        <source>Protocol Handler Manager</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1872"/>
+        <source>Protocol Handler Manager...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1876"/>
+        <source>Shows the protocol handler manager window</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1878"/>
+        <source>&lt;b&gt;Protocol Handler Manager&lt;/b&gt;&lt;p&gt;Shows the protocol handler manager window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="4148"/>
-        <source>Windows</source>
-        <translation type="unfinished">Windows</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4146"/>
-        <source>Unicode</source>
-        <translation type="unfinished">Evrensel kod</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4154"/>
-        <source>Other</source>
-        <translation type="unfinished">Diğer</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4150"/>
-        <source>IBM</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4578"/>
-        <source>VirusTotal Scan</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4578"/>
-        <source>&lt;p&gt;The VirusTotal scan could not be scheduled.&lt;p&gt;
-&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4604"/>
-        <source>Enter a valid IPv4 address in dotted quad notation:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4613"/>
-        <source>The given IP address is not in dotted quad notation.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4623"/>
-        <source>Enter a valid domain name:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1757"/>
-        <source>Tab Manager</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1761"/>
-        <source>Shows the tab manager window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1763"/>
-        <source>&lt;b&gt;Tab Manager&lt;/b&gt;&lt;p&gt;Shows the tab manager window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
-        <source>Save As</source>
-        <translation type="unfinished">Farklı Kaydet</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
-        <source>&amp;Save As...</source>
-        <translation type="unfinished">Farklı K&amp;aydet...</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
-        <source>Shift+Ctrl+S</source>
-        <comment>File|Save As</comment>
-        <translation type="unfinished">Shift+Ctrl+S</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="743"/>
-        <source>Save the current page to disk</source>
-        <translation type="unfinished">Geçerli sayfayı harddiske kaydet</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="745"/>
-        <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current page to disk.&lt;/p&gt;</source>
-        <translation type="unfinished">&lt;b&gt;Farklı Kaydet...&lt;/b&gt;&lt;p&gt;Geçerli sayfayı harddiske kaydet.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1061"/>
-        <source>Unselect</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1066"/>
-        <source>Clear current selection</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1067"/>
-        <source>&lt;b&gt;Unselect&lt;/b&gt;&lt;p&gt;Clear the selection of the current browser.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1061"/>
-        <source>Alt+Ctrl+A</source>
-        <comment>Edit|Unselect</comment>
-        <translation type="unfinished">Alt+Ctrl+A</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2503"/>
-        <source>HTML Files (*.html *.htm *.mhtml *.mht);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="937"/>
-        <source>Move to the initial screen</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1293"/>
-        <source>Meta+Ctrl+F</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2218"/>
-        <source>&amp;VirusTotal</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2183"/>
-        <source>&amp;Windows</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2081"/>
-        <source>&amp;Toolbars</source>
-        <translation type="unfinished">&amp;Araççubuğu</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2116"/>
-        <source>Save</source>
-        <translation type="unfinished">Kaydet</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2135"/>
-        <source>Show All History...</source>
-        <translation type="unfinished">Tüm Geçmişi Göster...</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4179"/>
-        <source>Menu Bar</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4184"/>
-        <source>Bookmarks</source>
-        <translation type="unfinished">Yerimleri</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4189"/>
-        <source>Status Bar</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4203"/>
-        <source>&amp;Show all</source>
-        <translation type="unfinished">Hepsini Gö&amp;ster</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4205"/>
-        <source>&amp;Hide all</source>
-        <translation type="unfinished">&amp;Hepsini gizle</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="844"/>
-        <source>Send Page Link</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="849"/>
-        <source>Send the link of the current page via email</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="851"/>
-        <source>&lt;b&gt;Send Page Link&lt;/b&gt;&lt;p&gt;Send the link of the current page via email.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1771"/>
-        <source>Session Manager</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1771"/>
-        <source>Session Manager...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1775"/>
-        <source>Shows the session manager window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1777"/>
-        <source>&lt;b&gt;Session Manager&lt;/b&gt;&lt;p&gt;Shows the session manager window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2109"/>
-        <source>Sessions</source>
-        <translation type="unfinished">Oturumlar</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2845"/>
-        <source>Are you sure you want to close the web browser?</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2845"/>
-        <source>Are you sure you want to close the web browser?
-You have {0} windows with {1} tabs open.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1635"/>
-        <source>Manage Safe Browsing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1635"/>
-        <source>Manage Safe Browsing...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1642"/>
-        <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/>
-        <source>Configure Safe Browsing and manage local cache</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="762"/>
-        <source>&lt;b&gt;Save Page Screen...&lt;/b&gt;&lt;p&gt;Saves the visible part of the current page as a screen shot.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1823"/>
-        <source>Keyboard Shortcuts</source>
-        <translation type="unfinished">Klavye Kısayolları</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1823"/>
-        <source>Keyboard &amp;Shortcuts...</source>
-        <translation type="unfinished">Klavye Kı&amp;sayolları...</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1829"/>
-        <source>Set the keyboard shortcuts</source>
-        <translation type="unfinished">Klavye kısayollarını ayarla</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1831"/>
-        <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4991"/>
-        <source>Export Keyboard Shortcuts</source>
-        <translation type="unfinished">Kılavye Kısa Yollarını Dışa Aktar</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1839"/>
-        <source>&amp;Export Keyboard Shortcuts...</source>
-        <translation type="unfinished">Kılavye Kısa Yo&amp;llarını Dışa Aktar...</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1844"/>
-        <source>Export the keyboard shortcuts</source>
-        <translation type="unfinished">Kılavye kısa yollarını dışa aktar</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1846"/>
-        <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5007"/>
-        <source>Import Keyboard Shortcuts</source>
-        <translation type="unfinished">Klavye kısayollarını İçe Aktar</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1853"/>
-        <source>&amp;Import Keyboard Shortcuts...</source>
-        <translation type="unfinished">Klavye K&amp;ısayollarını İçe Aktar...</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1858"/>
-        <source>Import the keyboard shortcuts</source>
-        <translation type="unfinished">Klavye kısayolları içeri aktarılıyor</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1860"/>
-        <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1867"/>
-        <source>Protocol Handler Manager</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1867"/>
-        <source>Protocol Handler Manager...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1871"/>
-        <source>Shows the protocol handler manager window</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1873"/>
-        <source>&lt;b&gt;Protocol Handler Manager&lt;/b&gt;&lt;p&gt;Shows the protocol handler manager window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4141"/>
         <source>System</source>
         <translation type="unfinished">Sistem</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4152"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4159"/>
         <source>Apple</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2189"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2194"/>
         <source>QtHelp</source>
         <translation type="unfinished">QtYardım</translation>
     </message>
@@ -91246,37 +91246,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3570"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3577"/>
         <source>eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="892"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="897"/>
         <source>Quit the eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="893"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="898"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2544"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2549"/>
         <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chrome {2}.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4972"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4990"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard Shortcuts File (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5009"/>
         <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5007"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5025"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -91682,12 +91682,12 @@
 <context>
     <name>eric6</name>
     <message>
-        <location filename="../eric6.py" line="397"/>
+        <location filename="../eric6.py" line="398"/>
         <source>Starting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../eric6.py" line="402"/>
+        <location filename="../eric6.py" line="403"/>
         <source>Generating Main Window...</source>
         <translation type="unfinished">Anapencere üretiliyor...</translation>
     </message>
--- a/eric6/i18n/eric6_zh_CN.ts	Tue Mar 02 19:22:12 2021 +0100
+++ b/eric6/i18n/eric6_zh_CN.ts	Tue Mar 02 19:49:43 2021 +0100
@@ -107,22 +107,22 @@
         <translation>动作</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="166"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="167"/>
         <source>Learn more about writing rules...</source>
         <translation>了解更多有关书写规则的信息…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="159"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="160"/>
         <source>Update Subscription</source>
         <translation>更新订阅组</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="146"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="147"/>
         <source>Browse Subscriptions...</source>
         <translation>浏览订阅组…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="243"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="244"/>
         <source>Remove Subscription</source>
         <translation>移除订阅组</translation>
     </message>
@@ -142,37 +142,37 @@
         <translation>搜索…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="139"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="140"/>
         <source>Add Rule</source>
         <translation>添加规则</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="142"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="143"/>
         <source>Remove Rule</source>
         <translation>移除规则</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="154"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="155"/>
         <source>Disable Subscription</source>
         <translation>禁用订阅组</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="156"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="157"/>
         <source>Enable Subscription</source>
         <translation>启用订阅组</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="162"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="163"/>
         <source>Update All Subscriptions</source>
         <translation>更新所有订阅组</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="233"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="234"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt; and all subscriptions requiring it?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</source>
         <translation>&lt;p&gt;确定要移除订阅组 &lt;b&gt;{0}&lt;/b&gt; 以及所有依赖它的其它订阅组吗?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="240"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockDialog.py" line="241"/>
         <source>&lt;p&gt;Do you really want to remove subscription &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation>&lt;p&gt;确定要移除订阅组 &lt;b&gt;{0}&lt;/b&gt; 吗?&lt;/p&gt;</translation>
     </message>
@@ -281,17 +281,17 @@
 <context>
     <name>AdBlockManager</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="232"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="233"/>
         <source>Custom Rules</source>
         <translation>自定义规则</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="334"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="335"/>
         <source>Subscribe?</source>
         <translation>订阅?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="334"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockManager.py" line="335"/>
         <source>&lt;p&gt;Subscribe to this AdBlock subscription?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;订阅这个 AdBlock 订阅组?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
@@ -299,22 +299,22 @@
 <context>
     <name>AdBlockSubscription</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="291"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="294"/>
         <source>Load subscription rules</source>
         <translation>载入订阅组规则</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="500"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="503"/>
         <source>Downloading subscription rules</source>
         <translation>正在下载订阅组规则</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="410"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="413"/>
         <source>Got empty subscription rules.</source>
         <translation>得到的订阅组规则为空。</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="523"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="527"/>
         <source>Saving subscription rules</source>
         <translation>正在保存订阅组规则</translation>
     </message>
@@ -324,7 +324,7 @@
         <translation type="obsolete">无法打开 adblock 文件“{0}”以读取数据。</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="397"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="400"/>
         <source>&lt;p&gt;Subscription rules could not be downloaded.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;订阅组规则无法下载。&lt;/p&gt;&lt;p&gt;错误:{0}&lt;/p&gt;</translation>
     </message>
@@ -334,22 +334,22 @@
         <translation type="obsolete">无法打开 adblock 文件“{0}”以写入数据。</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="291"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="294"/>
         <source>AdBlock file &apos;{0}&apos; does not start with [Adblock.</source>
         <translation>AdBlock 文件“{0}”不以 [Adblock 开头。</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="500"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="503"/>
         <source>&lt;p&gt;AdBlock subscription &lt;b&gt;{0}&lt;/b&gt; has a wrong checksum.&lt;br/&gt;Found: {1}&lt;br/&gt;Calculated: {2}&lt;br/&gt;Use it anyway?&lt;/p&gt;</source>
         <translation>&lt;p&gt;AdBlock 订阅组 &lt;b&gt;{0}&lt;/b&gt; 的校验和错误。&lt;br/&gt;原本得到:{1}&lt;br/&gt;计算值:{2}&lt;br/&gt;仍然使用吗?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="281"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="284"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for reading.</source>
         <translation>无法打开 AdBlock 文件“{0}”进行读取。</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="523"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockSubscription.py" line="527"/>
         <source>Unable to open AdBlock file &apos;{0}&apos; for writing.</source>
         <translation>无法打开 AdBlock 文件“{0}”进行写入。</translation>
     </message>
@@ -357,27 +357,27 @@
 <context>
     <name>AdBlockTreeWidget</name>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="123"/>
         <source>Add Custom Rule</source>
         <translation>添加自定义规则</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="121"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="123"/>
         <source>Write your rule here:</source>
         <translation>在这里写入您的规则:</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="164"/>
-        <source>Add Rule</source>
-        <translation>添加规则</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="166"/>
+        <source>Add Rule</source>
+        <translation>添加规则</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="168"/>
         <source>Remove Rule</source>
         <translation>移除规则</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="219"/>
+        <location filename="../WebBrowser/AdBlock/AdBlockTreeWidget.py" line="227"/>
         <source>{0} (recently updated)</source>
         <translation>{0}(最近更新)</translation>
     </message>
@@ -1162,7 +1162,7 @@
         <translation>为项目输入简短描述</translation>
     </message>
     <message>
-        <location filename="../MultiProject/AddProjectDialog.py" line="64"/>
+        <location filename="../MultiProject/AddProjectDialog.py" line="65"/>
         <source>Project Properties</source>
         <translation>项目属性</translation>
     </message>
@@ -1632,12 +1632,12 @@
 <context>
     <name>BackgroundService</name>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="134"/>
+        <location filename="../Utilities/BackgroundService.py" line="135"/>
         <source>{0} not configured.</source>
         <translation>{0} 未被配置。</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="189"/>
+        <location filename="../Utilities/BackgroundService.py" line="190"/>
         <source>Restart background client?</source>
         <translation>重启后台客户端?</translation>
     </message>
@@ -1647,27 +1647,27 @@
         <translation type="obsolete">Eric 后台客户端的一个错误停止了服务。</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="444"/>
+        <location filename="../Utilities/BackgroundService.py" line="445"/>
         <source>Eric&apos;s background client disconnected because of an unknown reason.</source>
         <translation>Erics 后台客户端因未知原因断开连接。</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="450"/>
+        <location filename="../Utilities/BackgroundService.py" line="451"/>
         <source>Background client disconnected.</source>
         <translation>后台客户端已断开连接。</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="189"/>
+        <location filename="../Utilities/BackgroundService.py" line="190"/>
         <source>&lt;p&gt;The background client for &lt;b&gt;{0}&lt;/b&gt; has stopped due to an exception. It&apos;s used by various plug-ins like the different checkers.&lt;/p&gt;&lt;p&gt;Select&lt;ul&gt;&lt;li&gt;&lt;b&gt;&apos;Yes&apos;&lt;/b&gt; to restart the client, but abort the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;Retry&apos;&lt;/b&gt; to restart the client and the last job&lt;/li&gt;&lt;li&gt;&lt;b&gt;&apos;No&apos;&lt;/b&gt; to leave the client off.&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Note: The client can be restarted by opening and accepting the preferences dialog or reloading/changing the project.&lt;/p&gt;</source>
         <translation>&lt;p&gt; &lt;b&gt;{0}&lt;/b&gt; 的背景客户端因意外终止。它被多种插件(如区别检查器)使用。&lt;/p&gt;&lt;p&gt; 选择 &lt;ul&gt;&lt;li&gt;&lt;b&gt;“是”&lt;/b&gt; 放弃最后任务,重启客户端 &lt;/li&gt;&lt;li&gt;&lt;b&gt;“重试”&lt;/b&gt; 重启客户端和最后任务&lt;/li&gt;&lt;li&gt;&lt;b&gt;“否”&lt;/b&gt; 关闭客户端。&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;注意:通过打开和接受首选项对话框,或重新加载、改变工程亦可重启客户端。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="450"/>
+        <location filename="../Utilities/BackgroundService.py" line="451"/>
         <source>The background client for &lt;b&gt;{0}&lt;/b&gt; disconnected because of an unknown reason.&lt;br&gt;Should it be restarted?</source>
         <translation>&lt;b&gt;{0}&lt;/b&gt; 的后台客户端因未知原因中断了连接。&lt;br&gt;是否对其重新启动?</translation>
     </message>
     <message>
-        <location filename="../Utilities/BackgroundService.py" line="215"/>
+        <location filename="../Utilities/BackgroundService.py" line="216"/>
         <source>An error in Eric&apos;s background client stopped the service.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1923,32 +1923,32 @@
         <translation>添加文件夹(&amp;F)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="155"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="156"/>
         <source>&amp;Open</source>
         <translation>打开(&amp;O)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="157"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="158"/>
         <source>Open in New &amp;Tab</source>
         <translation>在新选项卡中打开(&amp;T)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="168"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="169"/>
         <source>Edit &amp;Name</source>
         <translation>编辑名称(&amp;N)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="171"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="172"/>
         <source>Edit &amp;Address</source>
         <translation>编辑地址(&amp;A)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="173"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="174"/>
         <source>&amp;Delete</source>
         <translation>删除(&amp;D)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="342"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="355"/>
         <source>New Folder</source>
         <translation>新文件夹</translation>
     </message>
@@ -1958,37 +1958,37 @@
         <translation>点击删除选中的条目</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="177"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="178"/>
         <source>&amp;Properties...</source>
         <translation>属性(&amp;P)…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="162"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="163"/>
         <source>Open in New &amp;Window</source>
         <translation>在新窗口中打开(&amp;W)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="164"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="165"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation>在新私有窗口中打开(&amp;V)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="159"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="160"/>
         <source>Open in New &amp;Background Tab</source>
         <translation>在新背景标签中打开(&amp;B)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="181"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="182"/>
         <source>New &amp;Folder...</source>
         <translation>新文件夹(&amp;F)…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="334"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="347"/>
         <source>New Bookmark Folder</source>
         <translation>新书签文件夹</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="334"/>
+        <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="347"/>
         <source>Enter title for new bookmark folder:</source>
         <translation>为书签文件夹输入标题:</translation>
     </message>
@@ -2307,72 +2307,72 @@
 <context>
     <name>BreakPointViewer</name>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="52"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="54"/>
         <source>Breakpoints</source>
         <translation>断点</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="192"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="198"/>
         <source>Add</source>
         <translation>添加</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="159"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="165"/>
         <source>Edit...</source>
         <translation>编辑…</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="161"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="167"/>
         <source>Enable</source>
         <translation>允许</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="196"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="202"/>
         <source>Enable all</source>
         <translation>允许所有</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="164"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="170"/>
         <source>Disable</source>
         <translation>禁止</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="201"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="207"/>
         <source>Disable all</source>
         <translation>禁止所有</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="168"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="174"/>
         <source>Delete</source>
         <translation>删除</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="206"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="212"/>
         <source>Delete all</source>
         <translation>全部删除</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="171"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="177"/>
         <source>Goto</source>
         <translation>跳转</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="209"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="215"/>
         <source>Configure...</source>
         <translation>配置…</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="194"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="200"/>
         <source>Enable selected</source>
         <translation>允许所选择的</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="199"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="205"/>
         <source>Disable selected</source>
         <translation>禁止所选择的</translation>
     </message>
     <message>
-        <location filename="../Debugger/BreakPointViewer.py" line="204"/>
+        <location filename="../Debugger/BreakPointViewer.py" line="210"/>
         <source>Delete selected</source>
         <translation>删除所选择的</translation>
     </message>
@@ -2385,12 +2385,12 @@
         <translation>文件浏览器</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="282"/>
+        <location filename="../UI/Browser.py" line="284"/>
         <source>Open</source>
         <translation>打开</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="231"/>
+        <location filename="../UI/Browser.py" line="233"/>
         <source>Run unittest...</source>
         <translation>运行单元测试…</translation>
     </message>
@@ -2400,22 +2400,22 @@
         <translation type="obsolete">配置…</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="340"/>
+        <location filename="../UI/Browser.py" line="342"/>
         <source>New toplevel directory...</source>
         <translation>新顶层文件夹…</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="296"/>
+        <location filename="../UI/Browser.py" line="298"/>
         <source>Add as toplevel directory</source>
         <translation>添加为顶层文件夹</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="299"/>
+        <location filename="../UI/Browser.py" line="301"/>
         <source>Remove from toplevel</source>
         <translation>从顶层移除</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="307"/>
+        <location filename="../UI/Browser.py" line="309"/>
         <source>Find in this directory</source>
         <translation>在该文件夹中查找</translation>
     </message>
@@ -2425,32 +2425,32 @@
         <translation type="obsolete">在该文件夹中查找和替换(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="642"/>
+        <location filename="../UI/Browser.py" line="644"/>
         <source>New toplevel directory</source>
         <translation>新建顶层文件夹</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="261"/>
+        <location filename="../UI/Browser.py" line="263"/>
         <source>Open in Icon Editor</source>
         <translation>在图标编辑器中打开</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="314"/>
+        <location filename="../UI/Browser.py" line="316"/>
         <source>Copy Path to Clipboard</source>
         <translation>将路径复制到剪贴板</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="303"/>
+        <location filename="../UI/Browser.py" line="305"/>
         <source>Refresh directory</source>
         <translation>刷新目录</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="326"/>
+        <location filename="../UI/Browser.py" line="328"/>
         <source>Goto</source>
         <translation>跳转</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="433"/>
+        <location filename="../UI/Browser.py" line="435"/>
         <source>Line {0}</source>
         <translation>行 {0}</translation>
     </message>
@@ -2460,152 +2460,152 @@
         <translation>&lt;b&gt;浏览器窗口&lt;/b&gt;&lt;p&gt;让您轻易地找到您系统中文件(夹)的层级,确认 Python 程序并在源码查看器中打开它们。该窗口显示独立的多级层次。&lt;/p&gt;&lt;p&gt;第一级仅在您已打开一个程序用来调试,且其根路径系包含该程序的目录时才会显示。通常,所有这些分离的文件构成了一个 Python 应用,而该应用亦在同一目录中。因此,此层级可让您轻易地访问到大多数您所需的文件。&lt;/p&gt;&lt;p&gt;下一个层级用以访问在 Python &lt;tt&gt;sys.path&lt;/tt&gt; 变量中声明的目录。&lt;/p&gt;&lt;p&gt;剩下的层次可让您在您的整个系统中导航。在 UNIX 系统中,在根路径有一个 &lt;tt&gt;/&lt;/tt&gt; 层级,另一个则是用户的家目录。在 Windows 系统中,每一个驱动器都有一个层级。&lt;/p&gt;&lt;p&gt;Python 程序(如:以 &lt;tt&gt;.py&lt;/tt&gt; 为扩展名)将在该层级中以 Python 图标标识。单击鼠标右键将会弹出快捷菜单,让您可以在源码查看器中打开此文件,以便调试或进行单元测试&lt;/p&gt;&lt;p&gt;一个类、函数或方法的关联菜单可让您打开此文件并定义该类、函数或方法,同时确保正确的源码行可见。&lt;/p&gt;&lt;p&gt;Qt-Designer 文件(如:以 &lt;tt&gt;.ui&lt;/tt&gt; 为扩展名) 将以设计器的图标显示。该类文件的关联菜单可让您用 Qt-Designer 打开这些文件。&lt;/p&gt;&lt;p&gt;Qt-Linguist 文件(如:以 &lt;tt&gt;.ts&lt;/tt&gt; 为扩展名)将以语言家的图标显示。该类文件的关联菜单可让您用 Qt-Linguist 打开这些文件。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="553"/>
+        <location filename="../UI/Browser.py" line="555"/>
         <source>Show Mime-Type</source>
         <translation>显示 MIME 类型</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="526"/>
+        <location filename="../UI/Browser.py" line="528"/>
         <source>The mime type of the file could not be determined.</source>
         <translation>文件 MIME 类型无法确定。</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="544"/>
+        <location filename="../UI/Browser.py" line="546"/>
         <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.</source>
         <translation>文件的 MIME 类型为 &lt;b&gt;{0}&lt;/b&gt;。</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="553"/>
+        <location filename="../UI/Browser.py" line="555"/>
         <source>The file has the mime type &lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt; Shall it be added to the list of text mime types?</source>
         <translation>该文件有 MIME 类型。&lt;b&gt;{0}&lt;/b&gt;.&lt;br/&gt;将其添加至文本 MIME 类型列表?</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="258"/>
+        <location filename="../UI/Browser.py" line="260"/>
         <source>Open in Hex Editor</source>
         <translation>在十六进制编辑器中打开</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="310"/>
+        <location filename="../UI/Browser.py" line="312"/>
         <source>Find &amp;&amp; Replace in this directory</source>
         <translation>在此目录中查找 &amp;&amp; 替换</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="239"/>
+        <location filename="../UI/Browser.py" line="241"/>
         <source>Refresh Source File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="212"/>
+        <location filename="../UI/Browser.py" line="214"/>
         <source>Show Hidden Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="219"/>
-        <source>New</source>
-        <translation type="unfinished">新建</translation>
-    </message>
-    <message>
         <location filename="../UI/Browser.py" line="221"/>
+        <source>New</source>
+        <translation type="unfinished">新建</translation>
+    </message>
+    <message>
+        <location filename="../UI/Browser.py" line="223"/>
         <source>Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="224"/>
+        <location filename="../UI/Browser.py" line="226"/>
         <source>File</source>
         <translation type="unfinished">文件</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="321"/>
+        <location filename="../UI/Browser.py" line="323"/>
         <source>Delete</source>
         <translation type="unfinished">删除</translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="879"/>
+        <location filename="../UI/Browser.py" line="881"/>
         <source>New Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="861"/>
+        <location filename="../UI/Browser.py" line="863"/>
         <source>Name for new directory:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="902"/>
+        <location filename="../UI/Browser.py" line="904"/>
         <source>A file or directory named &lt;b&gt;{0}&lt;/b&gt; exists already. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="879"/>
+        <location filename="../UI/Browser.py" line="881"/>
         <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="913"/>
+        <location filename="../UI/Browser.py" line="915"/>
         <source>New File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="894"/>
+        <location filename="../UI/Browser.py" line="896"/>
         <source>Name for new file:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="913"/>
+        <location filename="../UI/Browser.py" line="915"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be created.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="942"/>
+        <location filename="../UI/Browser.py" line="944"/>
         <source>Do you really want to move this file to the trash?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="946"/>
+        <location filename="../UI/Browser.py" line="948"/>
         <source>Do you really want to delete this file?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1043"/>
+        <location filename="../UI/Browser.py" line="1045"/>
         <source>Delete File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1043"/>
+        <location filename="../UI/Browser.py" line="1045"/>
         <source>&lt;p&gt;The selected file &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="979"/>
+        <location filename="../UI/Browser.py" line="981"/>
         <source>Do you really want to move this directory to the trash?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="983"/>
+        <location filename="../UI/Browser.py" line="985"/>
         <source>Do you really want to delete this directory?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1000"/>
+        <location filename="../UI/Browser.py" line="1002"/>
         <source>Delete Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1000"/>
+        <location filename="../UI/Browser.py" line="1002"/>
         <source>&lt;p&gt;The selected directory &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1023"/>
+        <location filename="../UI/Browser.py" line="1025"/>
         <source>Do you really want to move these files to the trash?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1027"/>
+        <location filename="../UI/Browser.py" line="1029"/>
         <source>Do you really want to delete these files?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Browser.py" line="1032"/>
+        <location filename="../UI/Browser.py" line="1034"/>
         <source>Delete Files</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2618,27 +2618,27 @@
         <translation>名称</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="660"/>
+        <location filename="../UI/BrowserModel.py" line="667"/>
         <source>Globals</source>
         <translation>全局</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="759"/>
+        <location filename="../UI/BrowserModel.py" line="766"/>
         <source>Attributes</source>
         <translation>属性</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="653"/>
+        <location filename="../UI/BrowserModel.py" line="660"/>
         <source>Coding: {0}</source>
         <translation>编码: {0}</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="769"/>
+        <location filename="../UI/BrowserModel.py" line="776"/>
         <source>Class Attributes</source>
         <translation>类属性</translation>
     </message>
     <message>
-        <location filename="../UI/BrowserModel.py" line="666"/>
+        <location filename="../UI/BrowserModel.py" line="673"/>
         <source>Imports</source>
         <translation>导入</translation>
     </message>
@@ -2661,7 +2661,7 @@
         <translation>保存</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="71"/>
+        <location filename="../Debugger/CallStackViewer.py" line="72"/>
         <source>File: {0}
 Line: {1}
 {2}{3}</source>
@@ -2670,34 +2670,34 @@
 {2}{3}</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="73"/>
+        <location filename="../Debugger/CallStackViewer.py" line="74"/>
         <source>File: {0}
 Line: {1}</source>
         <translation>文件: {0}
 行: {1}</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="202"/>
+        <location filename="../Debugger/CallStackViewer.py" line="203"/>
         <source>Save Call Stack Info</source>
         <translation>保存调用堆栈信息</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="188"/>
+        <location filename="../Debugger/CallStackViewer.py" line="189"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation>文本文件 (*.txt);;所有文件 (*)</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="202"/>
+        <location filename="../Debugger/CallStackViewer.py" line="203"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="224"/>
+        <location filename="../Debugger/CallStackViewer.py" line="225"/>
         <source>Error saving Call Stack Info</source>
         <translation>保存调用堆栈信息错误</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="224"/>
+        <location filename="../Debugger/CallStackViewer.py" line="225"/>
         <source>&lt;p&gt;The call stack info could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>调用堆栈信息不能写入到 &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;原因: {1}&lt;/p&gt;</translation>
     </message>
@@ -2707,7 +2707,7 @@
         <translation>调用堆栈</translation>
     </message>
     <message>
-        <location filename="../Debugger/CallStackViewer.py" line="213"/>
+        <location filename="../Debugger/CallStackViewer.py" line="214"/>
         <source>Call Stack of &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3419,32 +3419,32 @@
 <context>
     <name>CodeDocumentationViewer</name>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="208"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="211"/>
         <source>Code Info Provider:</source>
         <translation>代码信息提供者:</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="221"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="227"/>
         <source>Select the code info provider</source>
         <translation>选择代码信息提供者</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="223"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="229"/>
         <source>&lt;disabled&gt;</source>
         <translation>&lt;不可用&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="404"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="410"/>
         <source>No documentation available</source>
         <translation>无文档可用</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="425"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="431"/>
         <source>No source code documentation provider has been registered. This function has been disabled.</source>
         <translation>没有已注册的源代码文档提供者。此功能已被禁用。</translation>
     </message>
     <message>
-        <location filename="../UI/CodeDocumentationViewer.py" line="430"/>
+        <location filename="../UI/CodeDocumentationViewer.py" line="436"/>
         <source>This function has been disabled.</source>
         <translation>此功能已被禁用。</translation>
     </message>
@@ -3561,32 +3561,32 @@
         <translation type="obsolete">展开所有</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="193"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="205"/>
         <source>files</source>
         <translation>文件</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="195"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="207"/>
         <source>lines</source>
         <translation>行</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="197"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="209"/>
         <source>bytes</source>
         <translation>字节</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="199"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="211"/>
         <source>comments</source>
         <translation>注释</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="203"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="215"/>
         <source>empty lines</source>
         <translation>空行</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="205"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="217"/>
         <source>non-commentary lines</source>
         <translation>没有注释的行</translation>
     </message>
@@ -3611,17 +3611,17 @@
         <translation>%v/%m 文件</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="201"/>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="213"/>
         <source>comment lines</source>
         <translation>注释行</translation>
     </message>
     <message>
-        <location filename="../DataViews/CodeMetricsDialog.py" line="52"/>
-        <source>Collapse All</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../DataViews/CodeMetricsDialog.py" line="54"/>
+        <source>Collapse All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../DataViews/CodeMetricsDialog.py" line="56"/>
         <source>Expand All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -3870,7 +3870,7 @@
         <translation>按下以统计所有有问题的文件</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="244"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="246"/>
         <source>Error: {0}</source>
         <translation>错误:{0}</translation>
     </message>
@@ -3880,7 +3880,7 @@
         <translation>修复: {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1037"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1044"/>
         <source>No issues found.</source>
         <translation>未发现问题。</translation>
     </message>
@@ -3905,12 +3905,12 @@
         <translation>显示忽略</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="963"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="968"/>
         <source>{0} (ignored)</source>
         <translation>{0}(已忽略)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="856"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="861"/>
         <source>Preparing files...</source>
         <translation>正在准备文件…</translation>
     </message>
@@ -3920,12 +3920,12 @@
         <translation>输入充许的最大代码复杂度(McCabe: 10)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="217"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="219"/>
         <source>Errors</source>
         <translation>错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="895"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="900"/>
         <source>Transferring data...</source>
         <translation>传输数据…</translation>
     </message>
@@ -4030,7 +4030,7 @@
         <translation>重置(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1040"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1047"/>
         <source>No files found (check your ignore list).</source>
         <translation>找不到文件(检查您忽略的列表)。</translation>
     </message>
@@ -4345,12 +4345,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2004"/>
         <source>Commented Code Whitelist Pattern</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="1995"/>
+        <location filename="../Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleCheckerDialog.py" line="2004"/>
         <source>Enter a Commented Code Whitelist Pattern</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5204,7 +5204,7 @@
 <context>
     <name>CondaExecDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="96"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="102"/>
         <source>Conda Execution</source>
         <translation>Conda 执行</translation>
     </message>
@@ -5233,48 +5233,48 @@
 &lt;p&gt;显示 conda 命令的错误。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="96"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="102"/>
         <source>The conda executable could not be started. Is it configured correctly?</source>
         <translation>Conda 可执行文件无法启动。配置是否正确?</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="103"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="109"/>
         <source>Operation started.
 </source>
         <translation>操作启动。
 </translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="134"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="143"/>
         <source>Operation finished.
 </source>
         <translation>操作完成。
 </translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="154"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="163"/>
         <source>Conda command &apos;{0}&apos; did not return success.</source>
         <translation>Conda 命令 “{0}” 无法返回成功。</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="164"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="173"/>
         <source>
 Conda Message: {0}</source>
         <translation>
 Conda 消息: {0}</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="203"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="212"/>
         <source>{0} (Size: {1})</source>
         <translation>{0} (大小: {1})</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="208"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="217"/>
         <source>Fetching {0} ...</source>
         <translation>取回 {0} …</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExecDialog.py" line="212"/>
+        <location filename="../CondaInterface/CondaExecDialog.py" line="221"/>
         <source> Done.
 </source>
         <translation> 完成。
@@ -5284,7 +5284,7 @@
 <context>
     <name>CondaExportDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="209"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="211"/>
         <source>Generate Requirements</source>
         <translation>生成必要文件</translation>
     </message>
@@ -5364,27 +5364,27 @@
         <translation>刷新(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="209"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="211"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation>文本文件 (*.txt);;所有文件 (*)</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="109"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="111"/>
         <source>The requirements were changed. Do you want to overwrite these changes?</source>
         <translation>必要文件已改变。覆盖此更变?</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="140"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="142"/>
         <source>No output generated by conda.</source>
         <translation>Conda 没有产生任何输出。</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="177"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="179"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; already exists. Do you want to overwrite it?</source>
         <translation>文件 &lt;b&gt;{0}&lt;/b&gt; 已存在。覆盖?</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaExportDialog.py" line="189"/>
+        <location filename="../CondaInterface/CondaExportDialog.py" line="191"/>
         <source>&lt;p&gt;The requirements could not be written to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;必要文件无法写入&lt;b&gt;{0}&lt;/b&gt;。&lt;/p&gt;&lt;p&gt;原因: {1}&lt;/P&gt;</translation>
     </message>
@@ -5571,7 +5571,7 @@
 <context>
     <name>CondaPackageDetailsDialog</name>
     <message>
-        <location filename="../CondaInterface/CondaPackageDetailsWidget.py" line="91"/>
+        <location filename="../CondaInterface/CondaPackageDetailsWidget.py" line="93"/>
         <source>Package Details</source>
         <translation type="unfinished"></translation>
     </message>
@@ -5787,132 +5787,132 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="123"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="125"/>
         <source>Clean</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="124"/>
-        <source>All</source>
-        <translation type="unfinished">全部</translation>
-    </message>
-    <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="126"/>
-        <source>Cache</source>
-        <translation type="unfinished"></translation>
+        <source>All</source>
+        <translation type="unfinished">全部</translation>
     </message>
     <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="128"/>
+        <source>Cache</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="130"/>
         <source>Lock Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="131"/>
-        <source>Packages</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../CondaInterface/CondaPackagesWidget.py" line="133"/>
+        <source>Packages</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="135"/>
         <source>Tarballs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="136"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="138"/>
         <source>About Conda...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="139"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="141"/>
         <source>Update Conda</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="575"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="581"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="144"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="146"/>
         <source>Install Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="147"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="149"/>
         <source>Generate Requirements</source>
         <translation type="unfinished">生成必要文件</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="150"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="152"/>
         <source>Create Environment from Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="617"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="623"/>
         <source>Clone Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="662"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="668"/>
         <source>Delete Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="160"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="162"/>
         <source>Edit User Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="164"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="166"/>
         <source>Configure...</source>
         <translation type="unfinished">配置…</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="221"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="223"/>
         <source>Getting installed packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="234"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="236"/>
         <source>Getting outdated packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="256"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="260"/>
         <source>{0} (Build: {1})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="397"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="403"/>
         <source>Conda Search Package Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="555"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="561"/>
         <source>Package Specifications (separated by whitespace):</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="575"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="581"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished">文本文件 (*.txt);;所有文件 (*)</translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="641"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="647"/>
         <source>Create Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="662"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="668"/>
         <source>&lt;p&gt;Shall the environment &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="687"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="693"/>
         <source>Edit Configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../CondaInterface/CondaPackagesWidget.py" line="687"/>
+        <location filename="../CondaInterface/CondaPackagesWidget.py" line="693"/>
         <source>The configuration file &quot;{0}&quot; does not exist or is not writable.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6148,18 +6148,18 @@
         <translation>外观</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="571"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="578"/>
         <source>Preferences</source>
         <translation>首选项</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="576"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="584"/>
         <source>Please select an entry of the list 
 to display the configuration page.</source>
         <translation>请在左边选择一个列表项以显示配置页面。</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
+        <location filename="../Preferences/ConfigurationDialog.py" line="661"/>
         <source>Configuration Page Error</source>
         <translation>配置页面错误</translation>
     </message>
@@ -6169,7 +6169,7 @@
         <translation>Python3</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationDialog.py" line="653"/>
+        <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;配置页面 &lt;b&gt;{0}&lt;/b&gt; 无法载入。&lt;/p&gt;</translation>
     </message>
@@ -6412,17 +6412,17 @@
         <translation>状态</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="82"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="87"/>
         <source>Allow</source>
         <translation>允许</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="91"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="96"/>
         <source>Block</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="100"/>
+        <location filename="../WebBrowser/CookieJar/CookieExceptionsModel.py" line="105"/>
         <source>Allow For Session</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6596,7 +6596,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="175"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="176"/>
         <source>&lt;no cookie selected&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6641,37 +6641,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="143"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="144"/>
         <source>Remove All Cookies</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="143"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="144"/>
         <source>Do you really want to remove all stored cookies?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="177"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="178"/>
         <source>Remove Cookies</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="186"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="187"/>
         <source>Secure connections only</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="188"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="189"/>
         <source>All connections</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="190"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="191"/>
         <source>Session Cookie</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="197"/>
+        <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="198"/>
         <source>Remove Cookie</source>
         <translation type="unfinished"></translation>
     </message>
@@ -6957,57 +6957,57 @@
         <translation>过滤器(&amp;w):</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="135"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="136"/>
         <source>Create Dialog Code</source>
         <translation>创建对话框代码</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="225"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="226"/>
         <source>uic error</source>
         <translation>uic 错误</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="578"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="580"/>
         <source>Code Generation</source>
         <translation>代码生成</translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="135"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="136"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; exists but does not contain any classes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="216"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="217"/>
         <source>&lt;p&gt;There was an error loading the form &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="448"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="449"/>
         <source>&lt;p&gt;Could not open the code template file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="485"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="486"/>
         <source>&lt;p&gt;Could not open the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="578"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="580"/>
         <source>&lt;p&gt;Could not write the source file &quot;{0}&quot;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="225"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="226"/>
         <source>&lt;p&gt;The project specific Python interpreter &lt;b&gt;{0}&lt;/b&gt; could not be started or did not finish within 30 seconds.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="401"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="402"/>
         <source>&lt;p&gt;Code generation for project language &quot;{0}&quot; is not supported.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/CreateDialogCodeDialog.py" line="437"/>
+        <location filename="../Project/CreateDialogCodeDialog.py" line="438"/>
         <source>&lt;p&gt;No code template file available for project type &quot;{0}&quot;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7050,12 +7050,12 @@
         <translation>改变</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="865"/>
+        <location filename="../Debugger/DebugServer.py" line="867"/>
         <source>Connection from illegal host</source>
         <translation>连接非法主机</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1875"/>
+        <location filename="../Debugger/DebugServer.py" line="1877"/>
         <source>
 Not connected
 </source>
@@ -7064,39 +7064,39 @@
 </translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="865"/>
+        <location filename="../Debugger/DebugServer.py" line="867"/>
         <source>&lt;p&gt;A connection was attempted by the illegal host &lt;b&gt;{0}&lt;/b&gt;. Accept this connection?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="2144"/>
+        <location filename="../Debugger/DebugServer.py" line="2146"/>
         <source>Passive debug connection received
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="2158"/>
+        <location filename="../Debugger/DebugServer.py" line="2160"/>
         <source>Passive debug connection closed
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="351"/>
+        <location filename="../Debugger/DebugServer.py" line="353"/>
         <source>Register Debugger Interface</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="351"/>
+        <location filename="../Debugger/DebugServer.py" line="353"/>
         <source>&lt;p&gt;The debugger interface &lt;b&gt;{0}&lt;/b&gt; has already been registered. Ignoring this request.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1601"/>
         <source>Start Debugger</source>
         <translation type="unfinished">启动调试器</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugServer.py" line="1599"/>
+        <location filename="../Debugger/DebugServer.py" line="1601"/>
         <source>&lt;p&gt;The debugger type &lt;b&gt;{0}&lt;/b&gt; is not supported or not configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7104,7 +7104,7 @@
 <context>
     <name>DebugUI</name>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1961"/>
+        <location filename="../Debugger/DebugUI.py" line="1964"/>
         <source>Run Script</source>
         <translation>运行脚本</translation>
     </message>
@@ -7124,7 +7124,7 @@
         <translation>&lt;b&gt;运行脚本&lt;/b&gt;&lt;p&gt;设置命令行参数,并在调试器之外运行脚本。如果文件未对更改进行保存,则可能会先行保存。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1973"/>
+        <location filename="../Debugger/DebugUI.py" line="1976"/>
         <source>Run Project</source>
         <translation>运行项目</translation>
     </message>
@@ -7134,384 +7134,384 @@
         <translation>运行项目(&amp;P)…</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="220"/>
+        <location filename="../Debugger/DebugUI.py" line="221"/>
         <source>Run the current Project</source>
         <translation>运行当前项目</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="221"/>
+        <location filename="../Debugger/DebugUI.py" line="222"/>
         <source>&lt;b&gt;Run Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project outside the debugger. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;运行项目&lt;/b&gt;&lt;p&gt;设置命令行参数,并在调试器之外运行当前项目。如果当前项目未对更改进行保存,则可能会先行保存。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="231"/>
+        <location filename="../Debugger/DebugUI.py" line="232"/>
         <source>Coverage run of Script</source>
         <translation>脚本覆盖率测试</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="231"/>
+        <location filename="../Debugger/DebugUI.py" line="232"/>
         <source>Coverage run of Script...</source>
         <translation>脚本覆盖率测试…</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="236"/>
+        <location filename="../Debugger/DebugUI.py" line="237"/>
         <source>Perform a coverage run of the current Script</source>
         <translation>对当前脚本进行覆盖率测试运行</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="238"/>
+        <location filename="../Debugger/DebugUI.py" line="239"/>
         <source>&lt;b&gt;Coverage run of Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the script under the control of a coverage analysis tool. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;脚本覆盖率测试&lt;/b&gt;&lt;p&gt;设置命令行参数,并在覆盖率分析工具的控制下运行脚本。如果文件未保存则会先行保存。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="247"/>
+        <location filename="../Debugger/DebugUI.py" line="248"/>
         <source>Coverage run of Project</source>
         <translation>项目覆盖率测试</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="247"/>
+        <location filename="../Debugger/DebugUI.py" line="248"/>
         <source>Coverage run of Project...</source>
         <translation>项目覆盖率测试…</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="252"/>
+        <location filename="../Debugger/DebugUI.py" line="253"/>
         <source>Perform a coverage run of the current Project</source>
         <translation>对当前项目进行覆盖率测试运行</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="254"/>
+        <location filename="../Debugger/DebugUI.py" line="255"/>
         <source>&lt;b&gt;Coverage run of Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and run the current project under the control of a coverage analysis tool. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;项目覆盖率测试&lt;/b&gt;&lt;p&gt;设置命令行参数,并在覆盖率分析工具的控制下运行项目。如果当前项目的文件未保存则会先行保存。&lt;/P&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="264"/>
+        <location filename="../Debugger/DebugUI.py" line="265"/>
         <source>Profile Script</source>
         <translation>剖析脚本</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="264"/>
+        <location filename="../Debugger/DebugUI.py" line="265"/>
         <source>Profile Script...</source>
         <translation>剖析脚本…</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="268"/>
-        <source>Profile the current Script</source>
-        <translation>剖析当前脚本</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="269"/>
+        <source>Profile the current Script</source>
+        <translation>剖析当前脚本</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="270"/>
         <source>&lt;b&gt;Profile Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the script. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;剖析脚本&lt;/b&gt;&lt;p&gt;设置命令行参数,并剖析脚本。如果文件未保存则会先行保存。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="277"/>
+        <location filename="../Debugger/DebugUI.py" line="278"/>
         <source>Profile Project</source>
         <translation>剖析项目</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="277"/>
+        <location filename="../Debugger/DebugUI.py" line="278"/>
         <source>Profile Project...</source>
         <translation>剖析项目…</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="282"/>
+        <location filename="../Debugger/DebugUI.py" line="283"/>
         <source>Profile the current Project</source>
         <translation>剖析当前项目</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="284"/>
+        <location filename="../Debugger/DebugUI.py" line="285"/>
         <source>&lt;b&gt;Profile Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and profile the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;剖析项目&lt;/b&gt;&lt;p&gt;设置命令行参数,并剖析当前项目。如果当前项目的文件未保存则会先行保存。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2094"/>
+        <location filename="../Debugger/DebugUI.py" line="2097"/>
         <source>Debug Script</source>
         <translation>调试脚本</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="293"/>
+        <location filename="../Debugger/DebugUI.py" line="294"/>
         <source>&amp;Debug Script...</source>
         <translation>调试脚本(&amp;D)…</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="298"/>
-        <source>Debug the current Script</source>
-        <translation>调试当前脚本</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="299"/>
+        <source>Debug the current Script</source>
+        <translation>调试当前脚本</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="300"/>
         <source>&lt;b&gt;Debug Script&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the current editor window. If the file has unsaved changes it may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;调试脚本&lt;/b&gt;&lt;p&gt;设置命令行参数,并将当前行设为当前编辑窗口首先执行的 Python 声明。如果文件未保存则会先行保存。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2111"/>
+        <location filename="../Debugger/DebugUI.py" line="2114"/>
         <source>Debug Project</source>
         <translation>调试项目</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="309"/>
+        <location filename="../Debugger/DebugUI.py" line="310"/>
         <source>Debug &amp;Project...</source>
         <translation>调试项目(&amp;P)…</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="314"/>
-        <source>Debug the current Project</source>
-        <translation>调试当前项目</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="316"/>
+        <source>Debug the current Project</source>
+        <translation>调试当前项目</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="318"/>
         <source>&lt;b&gt;Debug Project&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the main script of the current project. If files of the current project have unsaved changes they may be saved first.&lt;/p&gt;</source>
         <translation>&lt;b&gt;调试当前项目&lt;/b&gt;&lt;p&gt;设置命令行参数,并将当前行设为当前项目主脚本首先执行的 Python 声明。如果当前项目的文件未保存则会先行保存。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="330"/>
+        <location filename="../Debugger/DebugUI.py" line="332"/>
         <source>Restart the last debugged script</source>
         <translation>重新启动最后调试的脚本</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="347"/>
+        <location filename="../Debugger/DebugUI.py" line="349"/>
         <source>Stop the running script.</source>
         <translation>中止正在运行的脚本。</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="357"/>
+        <location filename="../Debugger/DebugUI.py" line="359"/>
         <source>Continue</source>
         <translation>继续</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="357"/>
+        <location filename="../Debugger/DebugUI.py" line="359"/>
         <source>&amp;Continue</source>
         <translation>继续(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="362"/>
-        <source>Continue running the program from the current line</source>
-        <translation>从当前行继续运行程序</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="364"/>
+        <source>Continue running the program from the current line</source>
+        <translation>从当前行继续运行程序</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="366"/>
         <source>&lt;b&gt;Continue&lt;/b&gt;&lt;p&gt;Continue running the program from the current line. The program will stop when it terminates or when a breakpoint is reached.&lt;/p&gt;</source>
         <translation>&lt;b&gt;继续&lt;/b&gt;&lt;p&gt;从当前行继续运行程序。当程序终止或到达断点的时候,程序也将中止。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="373"/>
+        <location filename="../Debugger/DebugUI.py" line="375"/>
         <source>Continue to Cursor</source>
         <translation>继续到光标</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="373"/>
+        <location filename="../Debugger/DebugUI.py" line="375"/>
         <source>Continue &amp;To Cursor</source>
         <translation>继续到光标(&amp;T)</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="378"/>
-        <source>Continue running the program from the current line to the current cursor position</source>
-        <translation>继续运行程序从当前行到当前光标所在位置</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="381"/>
+        <source>Continue running the program from the current line to the current cursor position</source>
+        <translation>继续运行程序从当前行到当前光标所在位置</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="384"/>
         <source>&lt;b&gt;Continue To Cursor&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the current cursor position.&lt;/p&gt;</source>
         <translation>&lt;b&gt;继续到光标&lt;/b&gt;&lt;p&gt;继续运行程序从当前行到当前光标所在位置。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="426"/>
+        <location filename="../Debugger/DebugUI.py" line="429"/>
         <source>Single Step</source>
         <translation>单步执行</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="426"/>
+        <location filename="../Debugger/DebugUI.py" line="429"/>
         <source>Sin&amp;gle Step</source>
         <translation>单步执行(&amp;Q)</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="431"/>
+        <location filename="../Debugger/DebugUI.py" line="434"/>
         <source>Execute a single Python statement</source>
         <translation>执行单条 Python 语句</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="432"/>
+        <location filename="../Debugger/DebugUI.py" line="435"/>
         <source>&lt;b&gt;Single Step&lt;/b&gt;&lt;p&gt;Execute a single Python statement. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger at the next statement.&lt;/p&gt;</source>
         <translation>&lt;b&gt;单步执行&lt;/b&gt;&lt;p&gt;执行单条 Python 语句。如果该语句是 &lt;tt&gt;import&lt;/tt&gt; 语句、类构造函数或者函数调用的方法,则由调试器 控制下一行语句。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="442"/>
+        <location filename="../Debugger/DebugUI.py" line="445"/>
         <source>Step Over</source>
         <translation>跳过</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="442"/>
+        <location filename="../Debugger/DebugUI.py" line="445"/>
         <source>Step &amp;Over</source>
         <translation>跳过(&amp;O)</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="447"/>
-        <source>Execute a single Python statement staying in the current frame</source>
-        <translation>保持在当前框架中执行单条 Python 语句</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="450"/>
+        <source>Execute a single Python statement staying in the current frame</source>
+        <translation>保持在当前框架中执行单条 Python 语句</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="453"/>
         <source>&lt;b&gt;Step Over&lt;/b&gt;&lt;p&gt;Execute a single Python statement staying in the same frame. If the statement is an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the statement has completed.&lt;/p&gt;</source>
         <translation>&lt;b&gt;跳过&lt;/b&gt;&lt;p&gt;保持在相同框架中执行单条 Python 语句。如果该语句是 &lt;tt&gt;import&lt;/tt&gt; 语句、类构造函数或者函数调用的方法,则则由调试器控制下一行语句。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="461"/>
+        <location filename="../Debugger/DebugUI.py" line="464"/>
         <source>Step Out</source>
         <translation>跳出</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="461"/>
+        <location filename="../Debugger/DebugUI.py" line="464"/>
         <source>Step Ou&amp;t</source>
         <translation>跳出(&amp;T)</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="466"/>
-        <source>Execute Python statements until leaving the current frame</source>
-        <translation>执行 Python 语句直到离开当前框架</translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="469"/>
+        <source>Execute Python statements until leaving the current frame</source>
+        <translation>执行 Python 语句直到离开当前框架</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="472"/>
         <source>&lt;b&gt;Step Out&lt;/b&gt;&lt;p&gt;Execute Python statements until leaving the current frame. If the statements are inside an &lt;tt&gt;import&lt;/tt&gt; statement, a class constructor, or a method or function call then control is returned to the debugger after the current frame has been left.&lt;/p&gt;</source>
         <translation>&lt;b&gt;跳出&lt;/b&gt;&lt;p&gt;执行 Python 语句直到离开当前框架。如果该语句处于 &lt;tt&gt;import&lt;/tt&gt; 声明、类构造函数或函数调用的方法中,在离开当前框架后将由调试器进行控制。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="480"/>
+        <location filename="../Debugger/DebugUI.py" line="483"/>
         <source>Stop</source>
         <translation>中止</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="480"/>
+        <location filename="../Debugger/DebugUI.py" line="483"/>
         <source>&amp;Stop</source>
         <translation>中止(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="485"/>
+        <location filename="../Debugger/DebugUI.py" line="488"/>
         <source>Stop debugging</source>
         <translation>中止调试</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="486"/>
+        <location filename="../Debugger/DebugUI.py" line="489"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stop the running debugging session.&lt;/p&gt;</source>
         <translation>&lt;b&gt;中止&lt;/b&gt;&lt;p&gt;中止正在运行中的调试会话。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="493"/>
+        <location filename="../Debugger/DebugUI.py" line="496"/>
         <source>Variables Type Filter</source>
         <translation>变量类型过滤器</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="493"/>
+        <location filename="../Debugger/DebugUI.py" line="496"/>
         <source>Varia&amp;bles Type Filter...</source>
         <translation>变量类型过滤器(&amp;B)…</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="497"/>
+        <location filename="../Debugger/DebugUI.py" line="500"/>
         <source>Configure variables type filter</source>
         <translation>配置变量类型过滤器</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="499"/>
+        <location filename="../Debugger/DebugUI.py" line="502"/>
         <source>&lt;b&gt;Variables Type Filter&lt;/b&gt;&lt;p&gt;Configure the variables type filter. Only variable types that are not selected are displayed in the global or local variables window during a debugging session.&lt;/p&gt;</source>
         <translation>&lt;b&gt;变量类型过滤器&lt;/b&gt;&lt;p&gt;配置变量类型过滤器。在调试会话期间,只有未被选择的变量类型会被显示在全局或局部变量窗口中。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="509"/>
+        <location filename="../Debugger/DebugUI.py" line="512"/>
         <source>Exceptions Filter</source>
         <translation>异常过滤器</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="509"/>
+        <location filename="../Debugger/DebugUI.py" line="512"/>
         <source>&amp;Exceptions Filter...</source>
         <translation>异常过滤器(&amp;E)…</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="513"/>
+        <location filename="../Debugger/DebugUI.py" line="516"/>
         <source>Configure exceptions filter</source>
         <translation>配置异常过滤器</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="515"/>
+        <location filename="../Debugger/DebugUI.py" line="518"/>
         <source>&lt;b&gt;Exceptions Filter&lt;/b&gt;&lt;p&gt;Configure the exceptions filter. Only exception types that are listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that all unhandled exceptions are highlighted indepent from the filter list.&lt;/p&gt;</source>
         <translation>&lt;b&gt;异常过滤器&lt;/b&gt;&lt;p&gt;配置异常过滤器。在调试会话期间,只有已列出的异常类型会被加亮显示。&lt;/p&gt;&lt;p&gt;注意:所有未处理的异常在过滤器列表中将被取消加亮。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="526"/>
+        <location filename="../Debugger/DebugUI.py" line="529"/>
         <source>Ignored Exceptions</source>
         <translation>忽略的异常</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="526"/>
+        <location filename="../Debugger/DebugUI.py" line="529"/>
         <source>&amp;Ignored Exceptions...</source>
         <translation>忽略的异常(&amp;I)</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="530"/>
+        <location filename="../Debugger/DebugUI.py" line="533"/>
         <source>Configure ignored exceptions</source>
         <translation>配置忽略的异常</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="532"/>
+        <location filename="../Debugger/DebugUI.py" line="535"/>
         <source>&lt;b&gt;Ignored Exceptions&lt;/b&gt;&lt;p&gt;Configure the ignored exceptions. Only exception types that are not listed are highlighted during a debugging session.&lt;/p&gt;&lt;p&gt;Please note, that unhandled exceptions cannot be ignored.&lt;/p&gt;</source>
         <translation>&lt;b&gt;忽略的异常&lt;/b&gt;&lt;p&gt;配置忽略的异常。在调试会话期间,只有已列出的异常类型会被加亮显示。&lt;/p&gt;&lt;p&gt;注意:未处理的异常不能被忽略。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="551"/>
+        <location filename="../Debugger/DebugUI.py" line="554"/>
         <source>Toggle Breakpoint</source>
         <translation>切换断点</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="552"/>
+        <location filename="../Debugger/DebugUI.py" line="555"/>
         <source>&lt;b&gt;Toggle Breakpoint&lt;/b&gt;&lt;p&gt;Toggles a breakpoint at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;切换断点&lt;/b&gt;&lt;p&gt;在当前编辑器的当前行切换断点。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="566"/>
+        <location filename="../Debugger/DebugUI.py" line="569"/>
         <source>Edit Breakpoint</source>
         <translation>编辑断点</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="560"/>
+        <location filename="../Debugger/DebugUI.py" line="563"/>
         <source>Edit Breakpoint...</source>
         <translation>编辑断点…</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="567"/>
+        <location filename="../Debugger/DebugUI.py" line="570"/>
         <source>&lt;b&gt;Edit Breakpoint&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the breakpoints properties. It works at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;编辑断点&lt;/b&gt;&lt;p&gt;打开一个对话框编辑断点属性。对当前编辑器的当前行起作用。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="582"/>
+        <location filename="../Debugger/DebugUI.py" line="585"/>
         <source>Next Breakpoint</source>
         <translation>下一个断点</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="575"/>
+        <location filename="../Debugger/DebugUI.py" line="578"/>
         <source>Ctrl+Shift+PgDown</source>
         <comment>Debug|Next Breakpoint</comment>
         <translation>Ctrl+Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="583"/>
+        <location filename="../Debugger/DebugUI.py" line="586"/>
         <source>&lt;b&gt;Next Breakpoint&lt;/b&gt;&lt;p&gt;Go to next breakpoint of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;下一个断点&lt;/b&gt;&lt;p&gt;跳转到当前编辑器的下一个断点。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="597"/>
+        <location filename="../Debugger/DebugUI.py" line="600"/>
         <source>Previous Breakpoint</source>
         <translation>前一个断点</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="590"/>
+        <location filename="../Debugger/DebugUI.py" line="593"/>
         <source>Ctrl+Shift+PgUp</source>
         <comment>Debug|Previous Breakpoint</comment>
         <translation>Ctrl+Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="598"/>
+        <location filename="../Debugger/DebugUI.py" line="601"/>
         <source>&lt;b&gt;Previous Breakpoint&lt;/b&gt;&lt;p&gt;Go to previous breakpoint of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;前一个断点&lt;/b&gt;&lt;p&gt;跳转到当前编辑器的前一个断点。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="610"/>
+        <location filename="../Debugger/DebugUI.py" line="613"/>
         <source>Clear Breakpoints</source>
         <translation>清除断点</translation>
     </message>
@@ -7522,12 +7522,12 @@
         <translation type="obsolete">Ctrl+Shift+C</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="611"/>
+        <location filename="../Debugger/DebugUI.py" line="614"/>
         <source>&lt;b&gt;Clear Breakpoints&lt;/b&gt;&lt;p&gt;Clear breakpoints of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;清除断点&lt;/b&gt;&lt;p&gt;清除所有编辑器的断点。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="637"/>
+        <location filename="../Debugger/DebugUI.py" line="640"/>
         <source>&amp;Debug</source>
         <translation>调试(&amp;D)</translation>
     </message>
@@ -7537,184 +7537,184 @@
         <translation type="obsolete">开始(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="641"/>
+        <location filename="../Debugger/DebugUI.py" line="644"/>
         <source>&amp;Breakpoints</source>
         <translation>断点(&amp;B)</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="684"/>
+        <location filename="../Debugger/DebugUI.py" line="687"/>
         <source>Start</source>
         <translation>开始</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="698"/>
+        <location filename="../Debugger/DebugUI.py" line="701"/>
         <source>Debug</source>
         <translation>调试</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1169"/>
+        <location filename="../Debugger/DebugUI.py" line="1172"/>
         <source>The program being debugged contains an unspecified syntax error.</source>
         <translation>被调试的程序包含一个未指定的语法错误。</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1212"/>
+        <location filename="../Debugger/DebugUI.py" line="1215"/>
         <source>An unhandled exception occured. See the shell window for details.</source>
         <translation>产生了一个未处理的异常。详细信息参见命令行窗口。</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1345"/>
+        <location filename="../Debugger/DebugUI.py" line="1348"/>
         <source>The program being debugged has terminated unexpectedly.</source>
         <translation>被调试的程序意外终止。</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1452"/>
+        <location filename="../Debugger/DebugUI.py" line="1455"/>
         <source>Breakpoint Condition Error</source>
         <translation>断点条件错误</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1491"/>
+        <location filename="../Debugger/DebugUI.py" line="1494"/>
         <source>Watch Expression Error</source>
         <translation>监视表达式出错</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1531"/>
+        <location filename="../Debugger/DebugUI.py" line="1534"/>
         <source>Watch expression already exists</source>
         <translation>监视表达式已存在</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1700"/>
+        <location filename="../Debugger/DebugUI.py" line="1703"/>
         <source>Coverage of Project</source>
         <translation>项目覆盖率</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1687"/>
+        <location filename="../Debugger/DebugUI.py" line="1690"/>
         <source>Coverage of Script</source>
         <translation>脚本覆盖率</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1973"/>
+        <location filename="../Debugger/DebugUI.py" line="1976"/>
         <source>There is no main script defined for the current project. Aborting</source>
         <translation>当前项目未定义主脚本。终止</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1837"/>
+        <location filename="../Debugger/DebugUI.py" line="1840"/>
         <source>Profile of Project</source>
         <translation>项目轮廓</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1824"/>
+        <location filename="../Debugger/DebugUI.py" line="1827"/>
         <source>Profile of Script</source>
         <translation>脚本轮廓</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="2111"/>
+        <location filename="../Debugger/DebugUI.py" line="2114"/>
         <source>There is no main script defined for the current project. No debugging possible.</source>
         <translation>当前项目未定义主脚本。不能进行调试。</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="545"/>
+        <location filename="../Debugger/DebugUI.py" line="548"/>
         <source>Shift+F11</source>
         <comment>Debug|Toggle Breakpoint</comment>
         <translation>Shift+F11</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="560"/>
+        <location filename="../Debugger/DebugUI.py" line="563"/>
         <source>Shift+F12</source>
         <comment>Debug|Edit Breakpoint</comment>
         <translation>Shift+F12</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1188"/>
+        <location filename="../Debugger/DebugUI.py" line="1191"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; contains the syntax error &lt;b&gt;{1}&lt;/b&gt; at line &lt;b&gt;{2}&lt;/b&gt;, character &lt;b&gt;{3}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1262"/>
+        <location filename="../Debugger/DebugUI.py" line="1265"/>
         <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;br&gt;File: &lt;b&gt;{2}&lt;/b&gt;, Line: &lt;b&gt;{3}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Break here?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1277"/>
+        <location filename="../Debugger/DebugUI.py" line="1280"/>
         <source>&lt;p&gt;The debugged program raised the exception &lt;b&gt;{0}&lt;/b&gt;&lt;br&gt;&quot;&lt;b&gt;{1}&lt;/b&gt;&quot;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1452"/>
+        <location filename="../Debugger/DebugUI.py" line="1455"/>
         <source>&lt;p&gt;The condition of the breakpoint &lt;b&gt;{0}, {1}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1491"/>
+        <location filename="../Debugger/DebugUI.py" line="1494"/>
         <source>&lt;p&gt;The watch expression &lt;b&gt;{0}&lt;/b&gt; contains a syntax error.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1521"/>
+        <location filename="../Debugger/DebugUI.py" line="1524"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; already exists.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1526"/>
+        <location filename="../Debugger/DebugUI.py" line="1529"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1141"/>
+        <location filename="../Debugger/DebugUI.py" line="1144"/>
         <source>Program terminated</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="326"/>
+        <location filename="../Debugger/DebugUI.py" line="328"/>
         <source>Restart</source>
         <translation type="unfinished">重启</translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="332"/>
+        <location filename="../Debugger/DebugUI.py" line="334"/>
         <source>&lt;b&gt;Restart&lt;/b&gt;&lt;p&gt;Set the command line arguments and set the current line to be the first executable Python statement of the script that was debugged last. If there are unsaved changes, they may be saved first.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="348"/>
+        <location filename="../Debugger/DebugUI.py" line="350"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;This stops the script running in the debugger backend.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1331"/>
+        <location filename="../Debugger/DebugUI.py" line="1334"/>
         <source>&lt;p&gt;The program generate the signal &quot;{0}&quot;.&lt;br/&gt;File: &lt;b&gt;{1}&lt;/b&gt;, Line: &lt;b&gt;{2}&lt;/b&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1122"/>
+        <location filename="../Debugger/DebugUI.py" line="1125"/>
         <source>Message: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="406"/>
+        <location filename="../Debugger/DebugUI.py" line="409"/>
         <source>Move Instruction Pointer to Cursor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="406"/>
+        <location filename="../Debugger/DebugUI.py" line="409"/>
         <source>&amp;Jump To Cursor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="411"/>
-        <source>Skip the code from the current line to the current cursor position</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="414"/>
+        <source>Skip the code from the current line to the current cursor position</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="417"/>
         <source>&lt;b&gt;Move Instruction Pointer to Cursor&lt;/b&gt;&lt;p&gt;Move the Python internal instruction pointer to the current cursor position without executing the code in between.&lt;/p&gt;&lt;p&gt;It&apos;s not possible to jump out of a function or jump in a code block, e.g. a loop. In these cases, a error message is printed to the log window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1409"/>
+        <location filename="../Debugger/DebugUI.py" line="1412"/>
         <source>No locals available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="639"/>
+        <location filename="../Debugger/DebugUI.py" line="642"/>
         <source>Sta&amp;rt</source>
         <translation type="unfinished"></translation>
     </message>
@@ -7724,32 +7724,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="389"/>
+        <location filename="../Debugger/DebugUI.py" line="392"/>
         <source>Continue Until</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="389"/>
+        <location filename="../Debugger/DebugUI.py" line="392"/>
         <source>Continue &amp;Until</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="394"/>
-        <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Debugger/DebugUI.py" line="397"/>
+        <source>Continue running the program from the current line to the current cursor position or until leaving the current frame</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/DebugUI.py" line="400"/>
         <source>&lt;b&gt;Continue Until&lt;/b&gt;&lt;p&gt;Continue running the program from the current line to the cursor position greater than the current line or until leaving the current frame.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1127"/>
+        <location filename="../Debugger/DebugUI.py" line="1130"/>
         <source>&lt;p&gt;The program has terminated with an exit status of {0}.&lt;/p&gt;&lt;p&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/DebugUI.py" line="1131"/>
+        <location filename="../Debugger/DebugUI.py" line="1134"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has terminated with an exit status of {1}.&lt;/p&gt;&lt;p&gt;{2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8112,17 +8112,17 @@
         <translation>自动保存已更改的脚本</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="282"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="283"/>
         <source>Add allowed host</source>
         <translation>添加允许的主机</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="304"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="305"/>
         <source>Enter the IP address of an allowed host</source>
         <translation>输入允许主机的 IP 地址</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="316"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318"/>
         <source>Edit allowed host</source>
         <translation>编辑允许的主机</translation>
     </message>
@@ -8167,7 +8167,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="316"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="318"/>
         <source>&lt;p&gt;The entered address &lt;b&gt;{0}&lt;/b&gt; is not a valid IP v4 or IP v6 address. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -8491,7 +8491,7 @@
         <translation>不要设定调试客户的编码</translation>
     </message>
     <message>
-        <location filename="../Project/DebuggerPropertiesDialog.py" line="129"/>
+        <location filename="../Project/DebuggerPropertiesDialog.py" line="130"/>
         <source>All Files (*)</source>
         <translation>所有文件 (*)</translation>
     </message>
@@ -9372,7 +9372,7 @@
 <context>
     <name>DotDesktopWizardDialog</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="316"/>
         <source>.desktop Wizard</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9707,22 +9707,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>FreeDesktop Standard .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>KDE Plasma MetaData .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="80"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="81"/>
         <source>Ubuntu Unity QuickList .desktop</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="314"/>
+        <location filename="../Plugins/WizardPlugins/DotDesktopWizard/DotDesktopWizardDialog.py" line="316"/>
         <source>Only one of &apos;Only Show In&apos; or  &apos;Not Show In&apos; allowed.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9813,17 +9813,17 @@
         <translation>点击打开已下载文件</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="220"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="223"/>
         <source>Download canceled: {0}</source>
         <translation>下载已取消:{0}</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="210"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="213"/>
         <source>Save File</source>
         <translation>保存文件</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="249"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="252"/>
         <source>Download directory ({0}) couldn&apos;t be created.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9833,17 +9833,17 @@
         <translation type="obsolete">网络错误:{0}</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="439"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="442"/>
         <source>?</source>
         <translation type="unfinished">?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="452"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="455"/>
         <source>{0} of {1} - Stopped</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="193"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="196"/>
         <source>VirusTotal scan scheduled: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9853,7 +9853,7 @@
         <translation>点击暂停下载</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="448"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="451"/>
         <source>{0} downloaded</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9873,7 +9873,7 @@
         <translation>日期和时间</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadItem.py" line="437"/>
+        <location filename="../WebBrowser/Download/DownloadItem.py" line="440"/>
         <source>{0} of {1} ({2}/sec) {3}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9891,7 +9891,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="168"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="169"/>
         <source>There are %n downloads in progress.
 Do you want to quit anyway?</source>
         <translation type="unfinished">
@@ -9909,37 +9909,37 @@
         <translation type="obsolete">重试</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="107"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="108"/>
         <source>Open</source>
         <translation>打开</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="111"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="112"/>
         <source>Cancel</source>
         <translation>取消</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="115"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="116"/>
         <source>Open Containing Folder</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="119"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="120"/>
         <source>Go to Download Page</source>
         <translation>前往下载页面</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="122"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="123"/>
         <source>Copy Download Link</source>
         <translation>复制下载链接</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="126"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="127"/>
         <source>Select All</source>
         <translation>全选</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="135"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="136"/>
         <source>Remove From List</source>
         <translation type="unfinished"></translation>
     </message>
@@ -9951,39 +9951,39 @@
         </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="257"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="258"/>
         <source>Suspicuous URL detected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="257"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="258"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="588"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="589"/>
         <source>Download Manager</source>
         <translation>下载管理器</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="500"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="501"/>
         <source>Downloads finished</source>
         <translation>下载已完成</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="500"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="501"/>
         <source>All files have been downloaded.</source>
         <translation>所有文件均已下载。</translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="622"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="623"/>
         <source>{0}% of %n file(s) ({1}) {2}</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Download/DownloadManager.py" line="629"/>
+        <location filename="../WebBrowser/Download/DownloadManager.py" line="630"/>
         <source>{0}% - Download Manager</source>
         <translation>{0}% - 下载管理器</translation>
     </message>
@@ -10139,27 +10139,27 @@
 <context>
     <name>E5GoogleMail</name>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="159"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="160"/>
         <source>The client secrets file is not present. Has the Gmail API been enabled?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="196"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="197"/>
         <source>OAuth2 Authorization Code</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="196"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="197"/>
         <source>Enter the OAuth2 authorization code:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="240"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="241"/>
         <source>No authorized session available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5GoogleMail.py" line="258"/>
+        <location filename="../E5Network/E5GoogleMail.py" line="259"/>
         <source>Message #{0} sent.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10167,7 +10167,7 @@
 <context>
     <name>E5GraphicsView</name>
     <message>
-        <location filename="../E5Graphics/E5GraphicsView.py" line="57"/>
+        <location filename="../E5Graphics/E5GraphicsView.py" line="59"/>
         <source>&lt;b&gt;Graphics View&lt;/b&gt;
 &lt;p&gt;This graphics view is used to show a diagram. 
 There are various actions available to manipulate the 
@@ -10187,7 +10187,7 @@
 可以使用多种动作对显示的内容进行操纵。&lt;/p&gt;&lt;ul&gt;&lt;li&gt;在对象上单击可以选择对象。&lt;/li&gt;&lt;li&gt;Ctrl-单击将对象添加到选择范围中。&lt;/li&gt;&lt;li&gt;Ctrl-单击一个已选对象可取消对其选择。&lt;/li&gt;&lt;li&gt;在画布的空白区域单击可取消所有选择。&lt;/li&gt;&lt;li&gt;在画布上拖动鼠标可以用选框方式选择多个对象。&lt;/li&gt;&lt;li&gt;在已选对象上拖动鼠标可以对其进行整体移动。&lt;/li&gt;&lt;/ul&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Graphics/E5GraphicsView.py" line="415"/>
+        <location filename="../E5Graphics/E5GraphicsView.py" line="417"/>
         <source>{0}, Page {1}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10643,7 +10643,7 @@
 <context>
     <name>E5NetworkProxyFactory</name>
     <message>
-        <location filename="../E5Network/E5NetworkProxyFactory.py" line="227"/>
+        <location filename="../E5Network/E5NetworkProxyFactory.py" line="229"/>
         <source>Proxy Configuration Error</source>
         <translation>代理配置错误</translation>
     </message>
@@ -10653,7 +10653,7 @@
         <translation type="unfinished">&lt;b&gt;连接到代理“{0}”,使用:&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5NetworkProxyFactory.py" line="227"/>
+        <location filename="../E5Network/E5NetworkProxyFactory.py" line="229"/>
         <source>Proxy usage was activated but no proxy host for protocol &apos;{0}&apos; configured.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10661,32 +10661,32 @@
 <context>
     <name>E5PathPickerBase</name>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="161"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="162"/>
         <source>Enter Path Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="158"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="159"/>
         <source>Enter Path Names separated by &apos;;&apos;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="499"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="500"/>
         <source>Choose a file to open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="501"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="502"/>
         <source>Choose files to open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="506"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="507"/>
         <source>Choose a file to save</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5PathPicker.py" line="508"/>
+        <location filename="../E5Gui/E5PathPicker.py" line="509"/>
         <source>Choose a directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10752,32 +10752,32 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="107"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="117"/>
         <source>Process canceled.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="121"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="134"/>
         <source>Process finished successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="123"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="136"/>
         <source>Process crashed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="125"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="138"/>
         <source>Process finished with exit code {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="179"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="192"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">进程生成错误</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ProcessDialog.py" line="179"/>
+        <location filename="../E5Gui/E5ProcessDialog.py" line="192"/>
         <source>&lt;p&gt;The process &lt;b&gt;{0}&lt;/b&gt; could not be started.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10841,12 +10841,12 @@
         <translation type="unfinished">查看(&amp;V)…</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="80"/>
+        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="82"/>
         <source>(Unknown)</source>
         <translation type="unfinished">(未知)</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="82"/>
+        <location filename="../E5Network/E5SslCertificateSelectionDialog.py" line="84"/>
         <source>(Unknown common name)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10934,72 +10934,72 @@
         <translation>您有识别这些证书颁发机构的证书文件:</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="300"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="305"/>
         <source>(Unknown)</source>
         <translation>(未知)</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="302"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="307"/>
         <source>(Unknown common name)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="150"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="152"/>
         <source>Delete Server Certificate</source>
         <translation>删除服务器证书</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="150"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="152"/>
         <source>&lt;p&gt;Shall the server certificate really be deleted?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;&lt;p&gt;If the server certificate is deleted, the normal security checks will be reinstantiated and the server has to present a valid certificate.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="489"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="495"/>
         <source>Import Certificate</source>
         <translation>导入证书</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="399"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="405"/>
         <source>&lt;p&gt;The certificate &lt;b&gt;{0}&lt;/b&gt; already exists. Skipping.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="354"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="359"/>
         <source>Delete CA Certificate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="354"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="359"/>
         <source>&lt;p&gt;Shall the CA certificate really be deleted?&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;&lt;p&gt;If the CA certificate is deleted, the browser will not trust any certificate issued by this CA.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="499"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="505"/>
         <source>Export Certificate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="440"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="446"/>
         <source>Certificate File (PEM) (*.pem);;Certificate File (DER) (*.der)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="456"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="462"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="467"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="473"/>
         <source>&lt;p&gt;The certificate could not be written to file &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="489"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="495"/>
         <source>Certificate Files (*.pem *.crt *.der *.cer *.ca);;All Files (*)</source>
         <translation>证书文件 (*.pem *.crt *.der *.cer *.ca);;所有文件 (*)</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesDialog.py" line="499"/>
+        <location filename="../E5Network/E5SslCertificatesDialog.py" line="505"/>
         <source>&lt;p&gt;The certificate could not be read from file &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11095,7 +11095,7 @@
         <translation>MD5 指纹:</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslCertificatesInfoWidget.py" line="151"/>
+        <location filename="../E5Network/E5SslCertificatesInfoWidget.py" line="156"/>
         <source>&lt;not part of the certificate&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11103,42 +11103,42 @@
 <context>
     <name>E5SslErrorHandler</name>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="141"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="142"/>
         <source>SSL Errors</source>
         <translation>SSL 错误</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="141"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="142"/>
         <source>&lt;p&gt;SSL Errors for &lt;br /&gt;&lt;b&gt;{0}&lt;/b&gt;&lt;ul&gt;&lt;li&gt;{1}&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p&gt;Do you want to ignore these errors?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="156"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="157"/>
         <source>Certificates</source>
         <translation>证书</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="156"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="157"/>
         <source>&lt;p&gt;Certificates:&lt;br/&gt;{0}&lt;br/&gt;Do you want to accept all these certificates?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="210"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="212"/>
         <source>Name: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="220"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="223"/>
         <source>&lt;br/&gt;Organization: {0}</source>
         <translation>&lt;br/&gt;组织:{0}</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="230"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="234"/>
         <source>&lt;br/&gt;Issuer: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslErrorHandler.py" line="239"/>
+        <location filename="../E5Network/E5SslErrorHandler.py" line="244"/>
         <source>&lt;br/&gt;Not valid before: {0}&lt;br/&gt;Valid Until: {1}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11146,61 +11146,61 @@
 <context>
     <name>E5SslInfoWidget</name>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="55"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="56"/>
         <source>Identity</source>
         <translation type="unfinished">身份</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="65"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="66"/>
         <source>Warning: this site is NOT carrying a certificate.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="73"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="74"/>
         <source>The certificate for this site is valid and has been verified by:
 {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="89"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="90"/>
         <source>Certificate Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="104"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="105"/>
         <source>Encryption</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="115"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="116"/>
         <source>Your connection to &quot;{0}&quot; is NOT encrypted.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="124"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="125"/>
         <source>Your connection to &quot;{0}&quot; is encrypted.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="143"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="144"/>
         <source>unknown</source>
         <translation type="unfinished">未知</translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="166"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="167"/>
         <source>It uses protocol: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="173"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="174"/>
         <source>It is encrypted using {0} at {1} bits, with {2} for message authentication and {3} as key exchange mechanism.
 
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Network/E5SslInfoWidget.py" line="80"/>
+        <location filename="../E5Network/E5SslInfoWidget.py" line="81"/>
         <source>The certificate for this site is NOT valid.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11243,12 +11243,12 @@
         <translation>移除全部(&amp;E)</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5StringListEditWidget.py" line="99"/>
+        <location filename="../E5Gui/E5StringListEditWidget.py" line="100"/>
         <source>Add Entry</source>
         <translation>添加条目</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5StringListEditWidget.py" line="99"/>
+        <location filename="../E5Gui/E5StringListEditWidget.py" line="100"/>
         <source>Enter the entry to add to the list:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11266,32 +11266,32 @@
 <context>
     <name>E5TextEditSearchWidget</name>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="81"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="83"/>
         <source>Find:</source>
         <translation>查找:</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="104"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="107"/>
         <source>Match case</source>
         <translation>匹配大小写</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="109"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="112"/>
         <source>Whole word</source>
         <translation>全部文字</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="119"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="122"/>
         <source>Press to find the previous occurrence</source>
         <translation>点击查找上一次出现</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="126"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="129"/>
         <source>Press to find the next occurrence</source>
         <translation>点击查找下一次出现</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="341"/>
+        <location filename="../E5Gui/E5TextEditSearchWidget.py" line="347"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation>“{0}”未找到。</translation>
     </message>
@@ -11407,42 +11407,42 @@
         <translation>点击向下移动所选行为。</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="84"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="85"/>
         <source>--Separator--</source>
         <translation>--分隔符--</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="145"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="151"/>
         <source>New Toolbar</source>
         <translation>新建工具栏</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="137"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="143"/>
         <source>Toolbar Name:</source>
         <translation>工具栏名称:</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="208"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="214"/>
         <source>A toolbar with the name &lt;b&gt;{0}&lt;/b&gt; already exists.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="170"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="176"/>
         <source>Remove Toolbar</source>
         <translation>移除工具栏</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="170"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="176"/>
         <source>Should the toolbar &lt;b&gt;{0}&lt;/b&gt; really be removed?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="208"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="214"/>
         <source>Rename Toolbar</source>
         <translation>重命名工具栏</translation>
     </message>
     <message>
-        <location filename="../E5Gui/E5ToolBarDialog.py" line="197"/>
+        <location filename="../E5Gui/E5ToolBarDialog.py" line="203"/>
         <source>New Toolbar Name:</source>
         <translation>新工具栏名称:</translation>
     </message>
@@ -11450,7 +11450,7 @@
 <context>
     <name>E5XmlRpcClient</name>
     <message>
-        <location filename="../E5Network/E5XmlRpcClient.py" line="108"/>
+        <location filename="../E5Network/E5XmlRpcClient.py" line="111"/>
         <source>SSL Error</source>
         <translation>SSL 错误</translation>
     </message>
@@ -11546,7 +11546,7 @@
         <translation>忽略计数:</translation>
     </message>
     <message>
-        <location filename="../Debugger/EditBreakpointDialog.py" line="86"/>
+        <location filename="../Debugger/EditBreakpointDialog.py" line="87"/>
         <source>Add Breakpoint</source>
         <translation>添加断点</translation>
     </message>
@@ -11627,932 +11627,932 @@
 <context>
     <name>Editor</name>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3146"/>
+        <location filename="../QScintilla/Editor.py" line="3153"/>
         <source>Open File</source>
         <translation>打开文件</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="478"/>
+        <location filename="../QScintilla/Editor.py" line="480"/>
         <source>&lt;b&gt;A Source Editor Window&lt;/b&gt;&lt;p&gt;This window is used to display and edit a source file.  You can open as many of these as you like. The name of the file is displayed in the window&apos;s titlebar.&lt;/p&gt;&lt;p&gt;In order to set breakpoints just click in the space between the line numbers and the fold markers. Via the context menu of the margins they may be edited.&lt;/p&gt;&lt;p&gt;In order to set bookmarks just Shift click in the space between the line numbers and the fold markers.&lt;/p&gt;&lt;p&gt;These actions can be reversed via the context menu.&lt;/p&gt;&lt;p&gt;Ctrl clicking on a syntax error marker shows some info about this error.&lt;/p&gt;</source>
         <translation>&lt;b&gt;源代码编辑器窗口&lt;/b&gt;&lt;p&gt;该窗口用于显示和编辑源文件。可以打开任意多个窗口。文件名显示在窗口标题栏中。&lt;/p&gt;&lt;p&gt;要设置断点只需在行号与折叠标记之间的空白处点击即可。通过页边空白的上下文菜单可进行编辑。&lt;/p&gt;&lt;p&gt;要设置书签只需按住 Shift 键再在行号与折叠标记之间的空白处点击即可。&lt;/p&gt;&lt;p&gt;以上行为都可能通过上下文菜单进行反转。&lt;/p&gt;&lt;p&gt;按住 Ctrl 再语法错误标记上点击可显示该错误的部分信息。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="795"/>
+        <location filename="../QScintilla/Editor.py" line="797"/>
         <source>Undo</source>
         <translation>撤消</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="798"/>
+        <location filename="../QScintilla/Editor.py" line="800"/>
         <source>Redo</source>
         <translation>重做</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="801"/>
+        <location filename="../QScintilla/Editor.py" line="803"/>
         <source>Revert to last saved state</source>
         <translation>还原到最后保存的状态</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="805"/>
+        <location filename="../QScintilla/Editor.py" line="807"/>
         <source>Cut</source>
         <translation>剪切</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="808"/>
+        <location filename="../QScintilla/Editor.py" line="810"/>
         <source>Copy</source>
         <translation>复制</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="811"/>
+        <location filename="../QScintilla/Editor.py" line="813"/>
         <source>Paste</source>
         <translation>粘贴</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="819"/>
+        <location filename="../QScintilla/Editor.py" line="821"/>
         <source>Indent</source>
         <translation>缩进</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="822"/>
+        <location filename="../QScintilla/Editor.py" line="824"/>
         <source>Unindent</source>
         <translation>取消缩进</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="825"/>
+        <location filename="../QScintilla/Editor.py" line="827"/>
         <source>Comment</source>
         <translation>注释</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="828"/>
+        <location filename="../QScintilla/Editor.py" line="830"/>
         <source>Uncomment</source>
         <translation>取消注释</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="831"/>
+        <location filename="../QScintilla/Editor.py" line="833"/>
         <source>Stream Comment</source>
         <translation>流注释</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="834"/>
+        <location filename="../QScintilla/Editor.py" line="836"/>
         <source>Box Comment</source>
         <translation>块注释</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="842"/>
-        <source>Select to brace</source>
-        <translation>选择括号内容</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="844"/>
+        <source>Select to brace</source>
+        <translation>选择括号内容</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="846"/>
         <source>Select all</source>
         <translation>全选</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="845"/>
+        <location filename="../QScintilla/Editor.py" line="847"/>
         <source>Deselect all</source>
         <translation>全部取消选择</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7935"/>
+        <location filename="../QScintilla/Editor.py" line="7978"/>
         <source>Check spelling...</source>
         <translation>正在进行拼写检查…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="853"/>
+        <location filename="../QScintilla/Editor.py" line="855"/>
         <source>Check spelling of selection...</source>
         <translation>正在对所选内容进行拼写检查…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="863"/>
+        <location filename="../QScintilla/Editor.py" line="865"/>
         <source>Shorten empty lines</source>
         <translation>缩减空行</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="870"/>
+        <location filename="../QScintilla/Editor.py" line="872"/>
         <source>Use Monospaced Font</source>
         <translation>使用单空格字体</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="875"/>
+        <location filename="../QScintilla/Editor.py" line="877"/>
         <source>Autosave enabled</source>
         <translation>允许自动保存</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="879"/>
+        <location filename="../QScintilla/Editor.py" line="881"/>
         <source>Typing aids enabled</source>
         <translation>允许输入辅助</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="918"/>
+        <location filename="../QScintilla/Editor.py" line="920"/>
         <source>Close</source>
         <translation>关闭</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="924"/>
+        <location filename="../QScintilla/Editor.py" line="926"/>
         <source>Save</source>
         <translation>保存</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="927"/>
+        <location filename="../QScintilla/Editor.py" line="929"/>
         <source>Save As...</source>
         <translation>另存为…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="940"/>
+        <location filename="../QScintilla/Editor.py" line="942"/>
         <source>Print Preview</source>
         <translation>打印预览</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="943"/>
+        <location filename="../QScintilla/Editor.py" line="945"/>
         <source>Print</source>
         <translation>打印</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="972"/>
-        <source>Complete from Document</source>
-        <translation type="unfinished">从文档</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="974"/>
-        <source>Complete from APIs</source>
-        <translation type="unfinished">从 APIs</translation>
+        <source>Complete from Document</source>
+        <translation type="unfinished">从文档</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="976"/>
+        <source>Complete from APIs</source>
+        <translation type="unfinished">从 APIs</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="978"/>
         <source>Complete from Document and APIs</source>
         <translation type="unfinished">从文档和 APIs</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="894"/>
+        <location filename="../QScintilla/Editor.py" line="896"/>
         <source>Calltip</source>
         <translation>调用提示</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="990"/>
+        <location filename="../QScintilla/Editor.py" line="992"/>
         <source>Check</source>
         <translation>检查</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1010"/>
-        <source>Show</source>
-        <translation>显示</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1012"/>
+        <source>Show</source>
+        <translation>显示</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1014"/>
         <source>Code metrics...</source>
         <translation>代码度量…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1013"/>
-        <source>Code coverage...</source>
-        <translation>代码覆盖率…</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1015"/>
+        <source>Code coverage...</source>
+        <translation>代码覆盖率…</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1017"/>
         <source>Show code coverage annotations</source>
         <translation>显示代码覆盖率注解</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1018"/>
+        <location filename="../QScintilla/Editor.py" line="1020"/>
         <source>Hide code coverage annotations</source>
         <translation>隐藏代码覆盖率注解</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1021"/>
+        <location filename="../QScintilla/Editor.py" line="1023"/>
         <source>Profile data...</source>
         <translation>剖析数据…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1034"/>
-        <source>Diagrams</source>
-        <translation>图表</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1036"/>
-        <source>Class Diagram...</source>
-        <translation>类图…</translation>
+        <source>Diagrams</source>
+        <translation>图表</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1038"/>
-        <source>Package Diagram...</source>
-        <translation>程序包图…</translation>
+        <source>Class Diagram...</source>
+        <translation>类图…</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1040"/>
-        <source>Imports Diagram...</source>
-        <translation>引用图…</translation>
+        <source>Package Diagram...</source>
+        <translation>程序包图…</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1042"/>
+        <source>Imports Diagram...</source>
+        <translation>引用图…</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1044"/>
         <source>Application Diagram...</source>
         <translation>应用程序图…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1060"/>
+        <location filename="../QScintilla/Editor.py" line="1062"/>
         <source>Languages</source>
         <translation>语言</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1193"/>
+        <location filename="../QScintilla/Editor.py" line="1195"/>
         <source>No Language</source>
         <translation>无语言</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1089"/>
+        <location filename="../QScintilla/Editor.py" line="1091"/>
         <source>Guessed</source>
         <translation>猜测</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1429"/>
+        <location filename="../QScintilla/Editor.py" line="1431"/>
         <source>Alternatives</source>
         <translation>备选</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1109"/>
+        <location filename="../QScintilla/Editor.py" line="1111"/>
         <source>Encodings</source>
         <translation>编码</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1150"/>
+        <location filename="../QScintilla/Editor.py" line="1152"/>
         <source>End-of-Line Type</source>
         <translation>行尾类型</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1154"/>
+        <location filename="../QScintilla/Editor.py" line="1156"/>
         <source>Unix</source>
         <translation>Unix</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1161"/>
+        <location filename="../QScintilla/Editor.py" line="1163"/>
         <source>Windows</source>
         <translation>Windows</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1168"/>
+        <location filename="../QScintilla/Editor.py" line="1170"/>
         <source>Macintosh</source>
         <translation>Macintosh</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1218"/>
+        <location filename="../QScintilla/Editor.py" line="1220"/>
         <source>Export as</source>
         <translation>导出为</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1240"/>
-        <source>Toggle bookmark</source>
-        <translation>切换书签</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1242"/>
-        <source>Next bookmark</source>
-        <translation>下一个书签</translation>
+        <source>Toggle bookmark</source>
+        <translation>切换书签</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1244"/>
-        <source>Previous bookmark</source>
-        <translation>上一个书签</translation>
+        <source>Next bookmark</source>
+        <translation>下一个书签</translation>
     </message>
     <message>
         <location filename="../QScintilla/Editor.py" line="1246"/>
+        <source>Previous bookmark</source>
+        <translation>上一个书签</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1248"/>
         <source>Clear all bookmarks</source>
         <translation>清除所有书签</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1255"/>
-        <source>Toggle breakpoint</source>
-        <translation>切换断点</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1257"/>
+        <source>Toggle breakpoint</source>
+        <translation>切换断点</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1259"/>
         <source>Toggle temporary breakpoint</source>
         <translation>切换临时断点</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1260"/>
+        <location filename="../QScintilla/Editor.py" line="1262"/>
         <source>Edit breakpoint...</source>
         <translation>编辑断点…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5656"/>
+        <location filename="../QScintilla/Editor.py" line="5696"/>
         <source>Enable breakpoint</source>
         <translation>允许断点</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1265"/>
-        <source>Next breakpoint</source>
-        <translation>下一个断点</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="1267"/>
+        <source>Next breakpoint</source>
+        <translation>下一个断点</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="1269"/>
         <source>Previous breakpoint</source>
         <translation>上一个断点</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1272"/>
+        <location filename="../QScintilla/Editor.py" line="1274"/>
         <source>Clear all breakpoints</source>
         <translation>清除所有断点</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1320"/>
+        <location filename="../QScintilla/Editor.py" line="1322"/>
         <source>Goto syntax error</source>
         <translation>转到语法错误处</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1324"/>
+        <location filename="../QScintilla/Editor.py" line="1326"/>
         <source>Show syntax error message</source>
         <translation>显示语法错误消息</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1329"/>
+        <location filename="../QScintilla/Editor.py" line="1331"/>
         <source>Clear syntax error</source>
         <translation>清除语法错误</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1351"/>
+        <location filename="../QScintilla/Editor.py" line="1353"/>
         <source>Next uncovered line</source>
         <translation>下一个未覆盖行</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1355"/>
+        <location filename="../QScintilla/Editor.py" line="1357"/>
         <source>Previous uncovered line</source>
         <translation>上一个未覆盖行</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1360"/>
+        <location filename="../QScintilla/Editor.py" line="1362"/>
         <source>Next task</source>
         <translation>下一个任务</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1364"/>
+        <location filename="../QScintilla/Editor.py" line="1366"/>
         <source>Previous task</source>
         <translation>上一个任务</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1414"/>
+        <location filename="../QScintilla/Editor.py" line="1416"/>
         <source>Export source</source>
         <translation>导出源代码</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1414"/>
+        <location filename="../QScintilla/Editor.py" line="1416"/>
         <source>No export format given. Aborting...</source>
         <translation>没有给定导出格式。终止…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1445"/>
+        <location filename="../QScintilla/Editor.py" line="1447"/>
         <source>Pygments Lexer</source>
         <translation>Pygments 词法分析器</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1445"/>
+        <location filename="../QScintilla/Editor.py" line="1447"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>选择要应用的 Pygments 词法分析器。</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1989"/>
+        <location filename="../QScintilla/Editor.py" line="1991"/>
         <source>Modification of Read Only file</source>
         <translation>只读文件的改变</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1989"/>
+        <location filename="../QScintilla/Editor.py" line="1991"/>
         <source>You are attempting to change a read only file. Please save to a different file first.</source>
         <translation>试图改变只读文件。请先保存到另一个文件中。</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2711"/>
+        <location filename="../QScintilla/Editor.py" line="2715"/>
         <source>Printing...</source>
         <translation>打印中…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2728"/>
+        <location filename="../QScintilla/Editor.py" line="2735"/>
         <source>Printing completed</source>
         <translation>打印已完成</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2730"/>
+        <location filename="../QScintilla/Editor.py" line="2737"/>
         <source>Error while printing</source>
         <translation>打印时出错</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="2733"/>
+        <location filename="../QScintilla/Editor.py" line="2740"/>
         <source>Printing aborted</source>
         <translation>打印失败</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3088"/>
+        <location filename="../QScintilla/Editor.py" line="3095"/>
         <source>File Modified</source>
         <translation>文件已改变</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3333"/>
+        <location filename="../QScintilla/Editor.py" line="3340"/>
         <source>Save File</source>
         <translation>保存文件</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4811"/>
+        <location filename="../QScintilla/Editor.py" line="4838"/>
         <source>Autocompletion</source>
         <translation>自动完成</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4811"/>
+        <location filename="../QScintilla/Editor.py" line="4838"/>
         <source>Autocompletion is not available because there is no autocompletion source set.</source>
         <translation>自动完成无效,没有设定自动完成源。</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5659"/>
+        <location filename="../QScintilla/Editor.py" line="5699"/>
         <source>Disable breakpoint</source>
         <translation>去除断点</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6034"/>
+        <location filename="../QScintilla/Editor.py" line="6074"/>
         <source>Code Coverage</source>
         <translation>代码覆盖率</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6034"/>
+        <location filename="../QScintilla/Editor.py" line="6074"/>
         <source>Please select a coverage file</source>
         <translation>请选择一个覆盖率文件</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6097"/>
+        <location filename="../QScintilla/Editor.py" line="6137"/>
         <source>Show Code Coverage Annotations</source>
         <translation>显示代码覆盖率注解</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6090"/>
+        <location filename="../QScintilla/Editor.py" line="6130"/>
         <source>All lines have been covered.</source>
         <translation>所有行均被已覆盖。</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6097"/>
+        <location filename="../QScintilla/Editor.py" line="6137"/>
         <source>There is no coverage file available.</source>
         <translation>没有有效的覆盖率文件。</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6214"/>
+        <location filename="../QScintilla/Editor.py" line="6254"/>
         <source>Profile Data</source>
         <translation>剖析数据</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6214"/>
+        <location filename="../QScintilla/Editor.py" line="6254"/>
         <source>Please select a profile file</source>
         <translation>请选择一个剖析文件</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6376"/>
+        <location filename="../QScintilla/Editor.py" line="6416"/>
         <source>Syntax Error</source>
         <translation>语法错误</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6376"/>
+        <location filename="../QScintilla/Editor.py" line="6416"/>
         <source>No syntax error message available.</source>
         <translation>语法错误消息无效。</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Macro Name</source>
         <translation>宏名称</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6765"/>
+        <location filename="../QScintilla/Editor.py" line="6805"/>
         <source>Select a macro name:</source>
         <translation>选择一个宏名称:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6793"/>
+        <location filename="../QScintilla/Editor.py" line="6833"/>
         <source>Load macro file</source>
         <translation>输入宏文件</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6835"/>
+        <location filename="../QScintilla/Editor.py" line="6875"/>
         <source>Macro files (*.macro)</source>
         <translation>宏文件 (*.macro)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6815"/>
+        <location filename="../QScintilla/Editor.py" line="6855"/>
         <source>Error loading macro</source>
         <translation>载入宏文件出错</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6835"/>
+        <location filename="../QScintilla/Editor.py" line="6875"/>
         <source>Save macro file</source>
         <translation>保存宏文件</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6852"/>
+        <location filename="../QScintilla/Editor.py" line="6892"/>
         <source>Save macro</source>
         <translation>保存宏</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6867"/>
+        <location filename="../QScintilla/Editor.py" line="6907"/>
         <source>Error saving macro</source>
         <translation>保存宏出错</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6880"/>
+        <location filename="../QScintilla/Editor.py" line="6920"/>
         <source>Start Macro Recording</source>
         <translation>开始宏录制</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6880"/>
+        <location filename="../QScintilla/Editor.py" line="6920"/>
         <source>Macro recording is already active. Start new?</source>
         <translation>宏录制已激活。开始录制新宏?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6906"/>
+        <location filename="../QScintilla/Editor.py" line="6946"/>
         <source>Macro Recording</source>
         <translation>宏录制</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6906"/>
+        <location filename="../QScintilla/Editor.py" line="6946"/>
         <source>Enter name of the macro:</source>
         <translation>输入宏名称:</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7076"/>
+        <location filename="../QScintilla/Editor.py" line="7116"/>
         <source>File changed</source>
         <translation>文件已改变</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7408"/>
+        <location filename="../QScintilla/Editor.py" line="7451"/>
         <source>Drop Error</source>
         <translation>降落误差</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7429"/>
+        <location filename="../QScintilla/Editor.py" line="7472"/>
         <source>Resources</source>
         <translation>资源</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7431"/>
+        <location filename="../QScintilla/Editor.py" line="7474"/>
         <source>Add file...</source>
         <translation>添加文件…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7433"/>
+        <location filename="../QScintilla/Editor.py" line="7476"/>
         <source>Add files...</source>
         <translation>添加文件…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7435"/>
+        <location filename="../QScintilla/Editor.py" line="7478"/>
         <source>Add aliased file...</source>
         <translation>添加别名文件…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7438"/>
+        <location filename="../QScintilla/Editor.py" line="7481"/>
         <source>Add localized resource...</source>
         <translation>添加本地资源…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7442"/>
+        <location filename="../QScintilla/Editor.py" line="7485"/>
         <source>Add resource frame</source>
         <translation>添加资源结构</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7461"/>
-        <source>Add file resource</source>
-        <translation>添加文件资源</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="7477"/>
-        <source>Add file resources</source>
-        <translation>添加多个文件资源</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Editor.py" line="7504"/>
+        <source>Add file resource</source>
+        <translation>添加文件资源</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7520"/>
+        <source>Add file resources</source>
+        <translation>添加多个文件资源</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Editor.py" line="7547"/>
         <source>Add aliased file resource</source>
         <translation>添加别名文件资源</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7570"/>
+        <location filename="../QScintilla/Editor.py" line="7613"/>
         <source>Package Diagram</source>
         <translation>程序包图</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7570"/>
+        <location filename="../QScintilla/Editor.py" line="7613"/>
         <source>Include class attributes?</source>
         <translation>包含类属性?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7592"/>
+        <location filename="../QScintilla/Editor.py" line="7635"/>
         <source>Imports Diagram</source>
         <translation>引用图</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7592"/>
+        <location filename="../QScintilla/Editor.py" line="7635"/>
         <source>Include imports from external modules?</source>
         <translation>从外部模块包含引用?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7606"/>
+        <location filename="../QScintilla/Editor.py" line="7649"/>
         <source>Application Diagram</source>
         <translation>应用程序图</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7606"/>
+        <location filename="../QScintilla/Editor.py" line="7649"/>
         <source>Include module names?</source>
         <translation>包含模块名?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7938"/>
+        <location filename="../QScintilla/Editor.py" line="7981"/>
         <source>Add to dictionary</source>
         <translation>添加到文件夹</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7940"/>
+        <location filename="../QScintilla/Editor.py" line="7983"/>
         <source>Ignore All</source>
         <translation>全部忽略</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="857"/>
+        <location filename="../QScintilla/Editor.py" line="859"/>
         <source>Remove from dictionary</source>
         <translation>从词典里移除</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="389"/>
+        <location filename="../QScintilla/Editor.py" line="391"/>
         <source>&lt;p&gt;The size of the file &lt;b&gt;{0}&lt;/b&gt; is &lt;b&gt;{1} KB&lt;/b&gt;. Do you really want to load it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 的大小为 &lt;b&gt;{1} KB&lt;/b&gt;。确认要读取它?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1406"/>
+        <location filename="../QScintilla/Editor.py" line="1408"/>
         <source>&lt;p&gt;No exporter available for the export format &lt;b&gt;{0}&lt;/b&gt;. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1425"/>
+        <location filename="../QScintilla/Editor.py" line="1427"/>
         <source>Alternatives ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3088"/>
+        <location filename="../QScintilla/Editor.py" line="3095"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 有未保存的更改。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3146"/>
+        <location filename="../QScintilla/Editor.py" line="3153"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be opened.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 无法打开。&lt;/p&gt;&lt;p&gt;原因:{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3270"/>
+        <location filename="../QScintilla/Editor.py" line="3277"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 无法保存。&lt;br /&gt;原因:{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6806"/>
+        <location filename="../QScintilla/Editor.py" line="6846"/>
         <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="6815"/>
+        <location filename="../QScintilla/Editor.py" line="6855"/>
         <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="6867"/>
+        <location filename="../QScintilla/Editor.py" line="6907"/>
         <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="7267"/>
+        <location filename="../QScintilla/Editor.py" line="7310"/>
         <source>{0} (ro)</source>
         <translation>{0}(只读)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7408"/>
+        <location filename="../QScintilla/Editor.py" line="7451"/>
         <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="7504"/>
+        <location filename="../QScintilla/Editor.py" line="7547"/>
         <source>Alias for file &lt;b&gt;{0}&lt;/b&gt;:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1334"/>
+        <location filename="../QScintilla/Editor.py" line="1336"/>
         <source>Next warning</source>
         <translation>下一个警告</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1338"/>
+        <location filename="../QScintilla/Editor.py" line="1340"/>
         <source>Previous warning</source>
         <translation>上一个警告</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1342"/>
+        <location filename="../QScintilla/Editor.py" line="1344"/>
         <source>Show warning message</source>
         <translation>显示警告信息</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1346"/>
+        <location filename="../QScintilla/Editor.py" line="1348"/>
         <source>Clear warnings</source>
         <translation>清空警告</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="3333"/>
+        <location filename="../QScintilla/Editor.py" line="3340"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6852"/>
+        <location filename="../QScintilla/Editor.py" line="6892"/>
         <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="6653"/>
+        <location filename="../QScintilla/Editor.py" line="6693"/>
         <source>Warning: {0}</source>
         <translation>警告:{0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6660"/>
+        <location filename="../QScintilla/Editor.py" line="6700"/>
         <source>Error: {0}</source>
         <translation>错误:{0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7072"/>
+        <location filename="../QScintilla/Editor.py" line="7112"/>
         <source>&lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; You will lose your changes upon reopening it.</source>
         <translation>&lt;br&gt;&lt;b&gt;警告:&lt;/b&gt;您在重新打开时将丢失所有更改。</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="936"/>
+        <location filename="../QScintilla/Editor.py" line="938"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1046"/>
+        <location filename="../QScintilla/Editor.py" line="1048"/>
         <source>Load Diagram...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1369"/>
+        <location filename="../QScintilla/Editor.py" line="1371"/>
         <source>Next change</source>
         <translation>下一个更改</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1373"/>
+        <location filename="../QScintilla/Editor.py" line="1375"/>
         <source>Previous change</source>
         <translation>上一个更改</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8356"/>
+        <location filename="../QScintilla/Editor.py" line="8399"/>
         <source>Sort Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8356"/>
+        <location filename="../QScintilla/Editor.py" line="8399"/>
         <source>The selection contains illegal data for a numerical sort.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6588"/>
+        <location filename="../QScintilla/Editor.py" line="6628"/>
         <source>Warning</source>
         <translation>警告</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6588"/>
+        <location filename="../QScintilla/Editor.py" line="6628"/>
         <source>No warning messages available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="6650"/>
+        <location filename="../QScintilla/Editor.py" line="6690"/>
         <source>Style: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="910"/>
+        <location filename="../QScintilla/Editor.py" line="912"/>
         <source>New Document View</source>
         <translation>新建文档视图</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="913"/>
+        <location filename="../QScintilla/Editor.py" line="915"/>
         <source>New Document View (with new split)</source>
         <translation>新建文档视图(在新拆分页中)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1000"/>
+        <location filename="../QScintilla/Editor.py" line="1002"/>
         <source>Tools</source>
         <translation>工具</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1131"/>
+        <location filename="../QScintilla/Editor.py" line="1133"/>
         <source>Re-Open With Encoding</source>
         <translation>使用指定编码重新打开</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="886"/>
+        <location filename="../QScintilla/Editor.py" line="888"/>
         <source>Automatic Completion enabled</source>
         <translation>允许自动补全</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="966"/>
+        <location filename="../QScintilla/Editor.py" line="968"/>
         <source>Complete</source>
         <translation>补全</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4943"/>
+        <location filename="../QScintilla/Editor.py" line="4980"/>
         <source>Auto-Completion Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="4943"/>
+        <location filename="../QScintilla/Editor.py" line="4980"/>
         <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="5222"/>
+        <location filename="../QScintilla/Editor.py" line="5262"/>
         <source>Call-Tips Provider</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="5222"/>
+        <location filename="../QScintilla/Editor.py" line="5262"/>
         <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="8445"/>
+        <location filename="../QScintilla/Editor.py" line="8488"/>
         <source>Register Mouse Click Handler</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8445"/>
+        <location filename="../QScintilla/Editor.py" line="8488"/>
         <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>
     <message>
-        <location filename="../QScintilla/Editor.py" line="930"/>
+        <location filename="../QScintilla/Editor.py" line="932"/>
         <source>Save Copy...</source>
         <translation type="unfinished">保存副本…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="969"/>
+        <location filename="../QScintilla/Editor.py" line="971"/>
         <source>Clear Completions Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="896"/>
+        <location filename="../QScintilla/Editor.py" line="898"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1377"/>
+        <location filename="../QScintilla/Editor.py" line="1379"/>
         <source>Clear changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="815"/>
+        <location filename="../QScintilla/Editor.py" line="817"/>
         <source>Execute Selection In Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8566"/>
+        <location filename="../QScintilla/Editor.py" line="8609"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8566"/>
+        <location filename="../QScintilla/Editor.py" line="8609"/>
         <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/Editor.py" line="1281"/>
+        <location filename="../QScintilla/Editor.py" line="1283"/>
         <source>Toggle all folds</source>
         <translation type="unfinished">开关所有折叠</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1286"/>
+        <location filename="../QScintilla/Editor.py" line="1288"/>
         <source>Toggle all folds (including children)</source>
         <translation type="unfinished">开关所有折叠(包含子项)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1291"/>
+        <location filename="../QScintilla/Editor.py" line="1293"/>
         <source>Toggle current fold</source>
         <translation type="unfinished">开关当前折叠</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1297"/>
+        <location filename="../QScintilla/Editor.py" line="1299"/>
         <source>Expand (including children)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1302"/>
+        <location filename="../QScintilla/Editor.py" line="1304"/>
         <source>Collapse (including children)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1308"/>
+        <location filename="../QScintilla/Editor.py" line="1310"/>
         <source>Clear all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="1189"/>
+        <location filename="../QScintilla/Editor.py" line="1191"/>
         <source>Spell Check Languages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="7066"/>
+        <location filename="../QScintilla/Editor.py" line="7106"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has been changed while it was opened in eric. Reread it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="8760"/>
+        <location filename="../QScintilla/Editor.py" line="8803"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
@@ -12944,82 +12944,82 @@
 <context>
     <name>EditorButtonsWidget</name>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="174"/>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="176"/>
         <source>Bold</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="176"/>
-        <source>Italic</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="178"/>
+        <source>Italic</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="180"/>
         <source>Strike Through</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="181"/>
-        <source>Header 1</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="183"/>
-        <source>Header 2</source>
+        <source>Header 1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="185"/>
-        <source>Header 3</source>
+        <source>Header 2</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="187"/>
+        <source>Header 3</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="189"/>
         <source>Header</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="192"/>
-        <source>Inline Code</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="194"/>
-        <source>Code Block</source>
+        <source>Inline Code</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="196"/>
+        <source>Code Block</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="198"/>
         <source>Quote</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="199"/>
-        <source>Add Hyperlink</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="201"/>
-        <source>Add Horizontal Line</source>
+        <source>Add Hyperlink</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="203"/>
+        <source>Add Horizontal Line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="205"/>
         <source>Add Image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="206"/>
-        <source>Add Bulleted List</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/EditorButtonsWidget.py" line="208"/>
+        <source>Add Bulleted List</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="210"/>
         <source>Add Numbered List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorButtonsWidget.py" line="274"/>
+        <location filename="../QScintilla/EditorButtonsWidget.py" line="276"/>
         <source>Level {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -13975,12 +13975,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="243"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="244"/>
         <source>Tab and Indent Override</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="243"/>
+        <location filename="../Preferences/ConfigurationPages/EditorGeneralPage.py" line="244"/>
         <source>Shall the selected entries really be removed?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -14181,7 +14181,7 @@
         <translation>选择行尾填充。</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="426"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="427"/>
         <source>Fill to end of line</source>
         <translation>填充到行尾</translation>
     </message>
@@ -14276,27 +14276,27 @@
         <translation>导出所有风格</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="424"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="425"/>
         <source>Enabled</source>
         <translation>已开启</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="425"/>
-        <source>Disabled</source>
-        <translation>已禁用</translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="426"/>
+        <source>Disabled</source>
+        <translation>已禁用</translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="427"/>
         <source>Select fill to end of line for all styles</source>
         <translation>为所有风格选择行尾填充</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="591"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="592"/>
         <source>Export Highlighting Styles</source>
         <translation>导出高亮风格</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="642"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="643"/>
         <source>Import Highlighting Styles</source>
         <translation>导入高亮风格</translation>
     </message>
@@ -14356,27 +14356,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="783"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="784"/>
         <source>Delete Sub-Style</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="783"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="784"/>
         <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="823"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="824"/>
         <source>{0} - Copy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="851"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="852"/>
         <source>Reset Sub-Styles to Default</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="851"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="852"/>
         <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>
@@ -14426,27 +14426,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="548"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="549"/>
         <source>Highlighting Styles File (*.ehj);;XML Highlighting Styles File (*.e6h)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="567"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="568"/>
         <source>&lt;p&gt;The highlighting styles file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="591"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="592"/>
         <source>&lt;p&gt;The highlighting styles 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="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="610"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="611"/>
         <source>Highlighting Styles File (*.ehj);;XML Highlighting Styles File (*.e6h *.e4h)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="642"/>
+        <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="643"/>
         <source>&lt;p&gt;The highlighting styles 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>
@@ -14662,47 +14662,47 @@
 <context>
     <name>EditorOutlineView</name>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="268"/>
+        <location filename="../QScintilla/EditorOutline.py" line="269"/>
         <source>Goto</source>
         <translation type="unfinished">跳转</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="310"/>
+        <location filename="../QScintilla/EditorOutline.py" line="311"/>
         <source>Refresh</source>
         <translation type="unfinished">刷新</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="314"/>
+        <location filename="../QScintilla/EditorOutline.py" line="315"/>
         <source>Copy Path to Clipboard</source>
         <translation type="unfinished">将路径复制到剪贴板</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="319"/>
+        <location filename="../QScintilla/EditorOutline.py" line="320"/>
         <source>Expand All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="323"/>
+        <location filename="../QScintilla/EditorOutline.py" line="324"/>
         <source>Collapse All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="328"/>
+        <location filename="../QScintilla/EditorOutline.py" line="329"/>
         <source>Increment Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="332"/>
+        <location filename="../QScintilla/EditorOutline.py" line="333"/>
         <source>Decrement Width</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="390"/>
+        <location filename="../QScintilla/EditorOutline.py" line="391"/>
         <source>Line {0}</source>
         <translation type="unfinished">行 {0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/EditorOutline.py" line="336"/>
+        <location filename="../QScintilla/EditorOutline.py" line="337"/>
         <source>Set Default Width</source>
         <translation type="unfinished"></translation>
     </message>
@@ -16250,32 +16250,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="59"/>
         <source>Word Boundary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="60"/>
-        <source>Character Boundary</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="62"/>
+        <source>Character Boundary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="65"/>
         <source>No Indicator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="64"/>
-        <source>Indicator by Text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="66"/>
-        <source>Indicator by Margin</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="68"/>
+        <source>Indicator by Text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="71"/>
+        <source>Indicator by Margin</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="74"/>
         <source>Indicator in Line Number Margin</source>
         <translation type="unfinished"></translation>
     </message>
@@ -16516,22 +16516,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="72"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="78"/>
         <source>Fixed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="74"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="80"/>
         <source>Aligned</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="76"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="82"/>
         <source>Aligned plus One</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="79"/>
+        <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="85"/>
         <source>Aligned plus Two</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17215,27 +17215,27 @@
         <translation>发送</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="133"/>
+        <location filename="../UI/EmailDialog.py" line="134"/>
         <source>Close dialog</source>
         <translation>关闭对话框</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="133"/>
+        <location filename="../UI/EmailDialog.py" line="134"/>
         <source>Do you really want to close the dialog?</source>
         <translation>确定要关闭对话框?</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="321"/>
+        <location filename="../UI/EmailDialog.py" line="322"/>
         <source>Mail Server Password</source>
         <translation>邮件服务器密码</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="321"/>
+        <location filename="../UI/EmailDialog.py" line="322"/>
         <source>Enter your mail server password</source>
         <translation>输入你的邮件服务器密码</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="423"/>
+        <location filename="../UI/EmailDialog.py" line="424"/>
         <source>Attach file</source>
         <translation>附加文件</translation>
     </message>
@@ -17245,12 +17245,12 @@
         <translation>发送功能请求</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="341"/>
+        <location filename="../UI/EmailDialog.py" line="342"/>
         <source>&lt;p&gt;Authentication failed.&lt;br&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;验证失败。&lt;br&gt;原因:{0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="410"/>
+        <location filename="../UI/EmailDialog.py" line="411"/>
         <source>&lt;p&gt;Message could not be sent.&lt;br&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;信息无法发送。&lt;br&gt;原因:{0}&lt;/p&gt;</translation>
     </message>
@@ -17260,22 +17260,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="157"/>
+        <location filename="../UI/EmailDialog.py" line="158"/>
         <source>Gmail API Help</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="366"/>
+        <location filename="../UI/EmailDialog.py" line="367"/>
         <source>Send Message</source>
         <translation type="unfinished">发送消息</translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="151"/>
+        <location filename="../UI/EmailDialog.py" line="152"/>
         <source>&lt;p&gt;The Google Mail Client API is not installed. Use &lt;code&gt;{0}&lt;/code&gt; to install it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/EmailDialog.py" line="410"/>
+        <location filename="../UI/EmailDialog.py" line="411"/>
         <source>Send Message via Gmail</source>
         <translation type="unfinished"></translation>
     </message>
@@ -17829,22 +17829,22 @@
 &lt;p&gt;显示 Eric API 生成器命令的错误。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="89"/>
         <source>Process Generation Error</source>
         <translation>进程生成错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="82"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="84"/>
         <source>{0} - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="89"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="128"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py" line="137"/>
         <source>
 {0} finished.
 </source>
@@ -18184,7 +18184,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="62"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocConfigDialog.py" line="63"/>
         <source>&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot;&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;&lt;html&gt;&lt;head&gt;&lt;title&gt;&lt;/title&gt;&lt;/head&gt;&lt;body style=&quot;background-color:{BodyBgColor};color:{BodyColor}&quot;&gt;&lt;h1 style=&quot;background-color:{Level1HeaderBgColor};color:{Level1HeaderColor}&quot;&gt;Level 1 Header&lt;/h1&gt;&lt;h3 style=&quot;background-color:{Level2HeaderBgColor};color:{Level2HeaderColor}&quot;&gt;Level 2 Header&lt;/h3&gt;&lt;h2 style=&quot;background-color:{CFBgColor};color:{CFColor}&quot;&gt;Class and Function Header&lt;/h2&gt;Standard body text with &lt;a style=&quot;color:{LinkColor}&quot;&gt;some links&lt;/a&gt; embedded.&lt;/body&gt;&lt;/html&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -18280,22 +18280,22 @@
 &lt;p&gt;显示 Ericdoc 生成器命令的错误。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="89"/>
         <source>Process Generation Error</source>
         <translation>进程生成错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="82"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="84"/>
         <source>{0} - {1}</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="87"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="89"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="129"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="138"/>
         <source>
 {0} finished.
 </source>
@@ -18304,7 +18304,7 @@
 </translation>
     </message>
     <message>
-        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="120"/>
+        <location filename="../Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py" line="126"/>
         <source>
 {0} crashed.
 </source>
@@ -18394,17 +18394,17 @@
         <translation>忽略但保留</translation>
     </message>
     <message>
-        <location filename="../UI/ErrorLogDialog.py" line="44"/>
+        <location filename="../UI/ErrorLogDialog.py" line="45"/>
         <source>Delete</source>
         <translation>删除</translation>
     </message>
     <message>
-        <location filename="../UI/ErrorLogDialog.py" line="45"/>
-        <source>Close</source>
-        <translation>关闭</translation>
-    </message>
-    <message>
         <location filename="../UI/ErrorLogDialog.py" line="46"/>
+        <source>Close</source>
+        <translation>关闭</translation>
+    </message>
+    <message>
+        <location filename="../UI/ErrorLogDialog.py" line="47"/>
         <source>Error Log</source>
         <translation>错误日志</translation>
     </message>
@@ -18931,22 +18931,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="110"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="111"/>
         <source>Allow</source>
         <translation>允许</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="111"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="112"/>
         <source>Deny</source>
         <translation>拒绝</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="133"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="134"/>
         <source>{0} wants to use an unknown feature.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="108"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionBar.py" line="109"/>
         <source>Remember</source>
         <translation>记住</translation>
     </message>
@@ -18994,12 +18994,12 @@
         <translation>通知</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="161"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="165"/>
         <source>Host</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="162"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="166"/>
         <source>Permission</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19009,17 +19009,17 @@
         <translation type="obsolete">移除</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="68"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="69"/>
         <source>Geolocation</source>
         <translation>地理位置</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="186"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="191"/>
         <source>Allow</source>
         <translation>允许</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="187"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="193"/>
         <source>Deny</source>
         <translation>拒绝</translation>
     </message>
@@ -19034,32 +19034,32 @@
         <translation type="unfinished">移除全部(&amp;A)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="83"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="85"/>
         <source>Microphone</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="98"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="101"/>
         <source>Camera</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="113"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="117"/>
         <source>Microphone &amp;&amp; Camera</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="129"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="133"/>
         <source>Mouse Lock</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="147"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="151"/>
         <source>Desktop Video</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="163"/>
+        <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="167"/>
         <source>Desktop Audio &amp;&amp; Video</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19115,17 +19115,17 @@
         <translation type="unfinished">添加</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="86"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="87"/>
         <source>Add RSS Feed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="81"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="82"/>
         <source>The feed was added successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="86"/>
+        <location filename="../WebBrowser/Feeds/FeedsDialog.py" line="87"/>
         <source>The feed was already added before.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19183,67 +19183,67 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="182"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="183"/>
         <source>Duplicate Feed URL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="182"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="183"/>
         <source>A feed with the URL {0} exists already. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="204"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="205"/>
         <source>Delete Feed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="204"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="205"/>
         <source>&lt;p&gt;Do you really want to delete the feed &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="316"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="317"/>
         <source>Error fetching feed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="346"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="347"/>
         <source>&amp;Open</source>
         <translation type="unfinished">打开(&amp;O)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="348"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="349"/>
         <source>Open in New &amp;Tab</source>
         <translation type="unfinished">在新选项卡中打开(&amp;T)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="359"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="360"/>
         <source>&amp;Copy URL to Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="366"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="367"/>
         <source>&amp;Show error data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="483"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="490"/>
         <source>Error loading feed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="350"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="351"/>
         <source>Open in New &amp;Background Tab</source>
         <translation type="unfinished">在新背景标签中打开(&amp;B)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="353"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="354"/>
         <source>Open in New &amp;Window</source>
         <translation type="unfinished">在新窗口中打开(&amp;W)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="355"/>
+        <location filename="../WebBrowser/Feeds/FeedsManager.py" line="356"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation type="unfinished">在新私有窗口中打开(&amp;V)</translation>
     </message>
@@ -19899,7 +19899,7 @@
         <translation>查找</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="740"/>
+        <location filename="../UI/FindFileDialog.py" line="744"/>
         <source>Replace in Files</source>
         <translation>在文件中替换</translation>
     </message>
@@ -19914,37 +19914,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="767"/>
+        <location filename="../UI/FindFileDialog.py" line="771"/>
         <source>Open</source>
         <translation type="unfinished">打开</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="768"/>
+        <location filename="../UI/FindFileDialog.py" line="772"/>
         <source>Copy Path to Clipboard</source>
         <translation>将路径复制到剪贴板</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="450"/>
+        <location filename="../UI/FindFileDialog.py" line="453"/>
         <source>Invalid search expression</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="450"/>
+        <location filename="../UI/FindFileDialog.py" line="453"/>
         <source>&lt;p&gt;The search expression is not valid.&lt;/p&gt;&lt;p&gt;Error: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="699"/>
+        <location filename="../UI/FindFileDialog.py" line="703"/>
         <source>&lt;p&gt;Could not read the file &lt;b&gt;{0}&lt;/b&gt;. Skipping it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="740"/>
+        <location filename="../UI/FindFileDialog.py" line="744"/>
         <source>&lt;p&gt;Could not save the file &lt;b&gt;{0}&lt;/b&gt;. Skipping it.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="714"/>
+        <location filename="../UI/FindFileDialog.py" line="718"/>
         <source>&lt;p&gt;The current and the original hash of the file &lt;b&gt;{0}&lt;/b&gt; are different. Skipping it.&lt;/p&gt;&lt;p&gt;Hash 1: {1}&lt;/p&gt;&lt;p&gt;Hash 2: {2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -19954,20 +19954,20 @@
         <translation type="unfinished">%v/%m 文件</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileDialog.py" line="573"/>
+        <location filename="../UI/FindFileDialog.py" line="576"/>
         <source>{0} / {1}</source>
         <comment>occurrences / files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../UI/FindFileDialog.py" line="574"/>
+        <location filename="../UI/FindFileDialog.py" line="577"/>
         <source>%n occurrence(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../UI/FindFileDialog.py" line="574"/>
+        <location filename="../UI/FindFileDialog.py" line="577"/>
         <source>%n file(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -20087,7 +20087,7 @@
         <translation>点击停止搜索</translation>
     </message>
     <message>
-        <location filename="../UI/FindFileNameDialog.py" line="58"/>
+        <location filename="../UI/FindFileNameDialog.py" line="59"/>
         <source>Opens the selected file</source>
         <translation>打开已选文件</translation>
     </message>
@@ -21135,7 +21135,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitArchiveDataDialog.py" line="83"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitArchiveDataDialog.py" line="85"/>
         <source>Select Archive File</source>
         <translation type="unfinished"></translation>
     </message>
@@ -21213,22 +21213,22 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="52"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="54"/>
         <source>&amp;Refresh</source>
         <translation>刷新(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="54"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="56"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="173"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">进程生成错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBisectLogBrowserDialog.py" line="173"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
@@ -21349,12 +21349,12 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">进程生成错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBlameDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
@@ -21564,7 +21564,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitBranchPushDialog.py" line="34"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitBranchPushDialog.py" line="35"/>
         <source>&lt;all branches&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -21878,7 +21878,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitCopyDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitCopyDialog.py" line="90"/>
         <source>Select target</source>
         <translation type="unfinished">选择目标</translation>
     </message>
@@ -21946,12 +21946,12 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="115"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">进程生成错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="113"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py" line="115"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
@@ -22014,37 +22014,37 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="82"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="88"/>
         <source>Additional Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="110"/>
         <source>Process canceled.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="112"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="125"/>
         <source>Process finished successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="127"/>
         <source>Process crashed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="129"/>
         <source>Process finished with exit code {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="182"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">进程生成错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDialog.py" line="182"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
@@ -22087,82 +22087,82 @@
         <translation type="unfinished">点击刷新显示</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="90"/>
         <source>Working Tree to Staging Area</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="89"/>
-        <source>Staging Area to HEAD Commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="90"/>
-        <source>Working Tree to HEAD Commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="91"/>
-        <source>Working to Staging (top) and Staging to HEAD (bottom)</source>
+        <source>Staging Area to HEAD Commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="92"/>
+        <source>Working Tree to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="93"/>
+        <source>Working to Staging (top) and Staging to HEAD (bottom)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="95"/>
         <source>Stash Contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="96"/>
         <source>Stash Contents of {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="166"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="168"/>
         <source>Difference ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="174"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">进程生成错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="174"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="198"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="200"/>
         <source>There is no difference.</source>
         <translation type="unfinished">没有差异。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="219"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="225"/>
         <source>&lt;Start&gt;</source>
         <translation type="unfinished">&lt;开始&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="220"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="226"/>
         <source>&lt;End&gt;</source>
         <translation type="unfinished">&lt;结束&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="355"/>
         <source>Save Diff</source>
         <translation type="unfinished">保存差异</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="314"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="322"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished">补丁文件 (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="331"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="339"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;补丁文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitDiffDialog.py" line="355"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;补丁文件 &lt;b&gt;{0}&lt;/b&gt; 无法保存。&lt;br /&gt;原因:{1}&lt;/p&gt;</translation>
     </message>
@@ -22321,12 +22321,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="110"/>
         <source>Commit ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="111"/>
         <source>Author</source>
         <translation type="unfinished">作者</translation>
     </message>
@@ -22336,7 +22336,7 @@
         <translation type="unfinished">数据</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="112"/>
         <source>Committer</source>
         <translation type="unfinished"></translation>
     </message>
@@ -22346,7 +22346,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="110"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="113"/>
         <source>Subject</source>
         <translation type="unfinished"></translation>
     </message>
@@ -22421,7 +22421,7 @@
         <translation type="unfinished">复制自</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2095"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2113"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
@@ -22481,328 +22481,328 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="97"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished">刷新(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="96"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="99"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="107"/>
         <source>Find</source>
         <translation type="unfinished">查找</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="108"/>
         <source>Filter</source>
         <translation type="unfinished">过滤器</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="111"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="114"/>
         <source>File</source>
         <translation type="unfinished">文件</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="131"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit ID&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2} &amp;lt;{3}&amp;gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{4}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Committer&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5} &amp;lt;{6}&amp;gt;&lt;/td&gt;&lt;/tr&gt;{7}&lt;tr&gt;&lt;td&gt;&lt;b&gt;Subject&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{8}&lt;/td&gt;&lt;/tr&gt;{9}&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="140"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="143"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Children&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="146"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Children&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="149"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branches&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="152"/>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="155"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Message&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="203"/>
-        <source>Added</source>
-        <translation type="unfinished">已添加</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="204"/>
-        <source>Deleted</source>
-        <translation type="unfinished">已删除</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="205"/>
-        <source>Modified</source>
-        <translation type="unfinished">已修改</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="206"/>
-        <source>Copied</source>
-        <translation type="unfinished"></translation>
+        <source>Added</source>
+        <translation type="unfinished">已添加</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="207"/>
-        <source>Renamed</source>
-        <translation type="unfinished"></translation>
+        <source>Deleted</source>
+        <translation type="unfinished">已删除</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="208"/>
-        <source>Type changed</source>
-        <translation type="unfinished"></translation>
+        <source>Modified</source>
+        <translation type="unfinished">已修改</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="209"/>
-        <source>Unmerged</source>
+        <source>Copied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="210"/>
+        <source>Renamed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="211"/>
+        <source>Type changed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="212"/>
+        <source>Unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="213"/>
         <source>Unknown</source>
         <translation type="unfinished">未知</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="246"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="249"/>
         <source>Show Commit ID Column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="248"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="251"/>
         <source>Press to show the commit ID column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="256"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="259"/>
         <source>Show Author Columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="258"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="261"/>
         <source>Press to show the author columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="266"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="269"/>
         <source>Show Committer Columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="268"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="271"/>
         <source>Press to show the committer columns</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="276"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="279"/>
         <source>Show Branches Column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="278"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="281"/>
         <source>Press to show the branches column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="286"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="289"/>
         <source>Show Tags Column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="291"/>
         <source>Press to show the Tags column</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="315"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="318"/>
         <source>Copy Commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="317"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="320"/>
         <source>Cherry-pick the selected commits to the current branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="322"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="325"/>
         <source>Tag</source>
         <translation type="unfinished">标签</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="324"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="327"/>
         <source>Tag the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1789"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1807"/>
         <source>Branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="328"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="331"/>
         <source>Create a new branch at the selected commit.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="330"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="333"/>
         <source>Branch &amp;&amp; Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="332"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="335"/>
         <source>Create a new branch at the selected commit and switch the work tree to it.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1859"/>
         <source>Switch</source>
         <translation type="unfinished">转换</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="338"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="341"/>
         <source>Switch the working directory to the selected commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1867"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1885"/>
         <source>Show Short Log</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="344"/>
-        <source>Show a dialog with a log output for release notes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="347"/>
+        <source>Show a dialog with a log output for release notes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="350"/>
         <source>Describe</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="349"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="352"/>
         <source>Show the most recent tag reachable from a commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="634"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="639"/>
         <source>The git process did not finish within 30s.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="637"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="642"/>
         <source>Could not start the git executable.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="640"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="645"/>
         <source>Git Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="756"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="761"/>
         <source>{0} ({1}%)</source>
         <comment>action, confidence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="819"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="827"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">进程生成错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="819"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="827"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1262"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1280"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1274"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1292"/>
         <source>&lt;a href=&quot;sbsdiff:{0}_{1}&quot;&gt;Side-by-Side Compare&lt;/a&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1703"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1721"/>
         <source>Copy Changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1841"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1859"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1867"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1885"/>
         <source>Select a branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1820"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1838"/>
         <source>Select a default branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1820"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="1838"/>
         <source>Branch &amp; Switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2049"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2067"/>
         <source>Find Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2049"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2067"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2109"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2127"/>
         <source>Differences to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2124"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2142"/>
         <source>Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2150"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2168"/>
         <source>There is no difference.</source>
         <translation type="unfinished">没有差异。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2312"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2330"/>
         <source>Save Diff</source>
         <translation type="unfinished">保存差异</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2279"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2297"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished">补丁文件 (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2296"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2314"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;补丁文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2312"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py" line="2330"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;补丁文件 &lt;b&gt;{0}&lt;/b&gt; 无法保存。&lt;br /&gt;原因:{1}&lt;/p&gt;</translation>
     </message>
@@ -22983,12 +22983,12 @@
 &lt;p&gt;输入新项目的文件夹。它将在仓库中被检索,且被放置在该文件夹中。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="87"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="88"/>
         <source>Select Repository-Directory</source>
         <translation type="unfinished">选择储存库文件夹</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="102"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py" line="103"/>
         <source>Select Project Directory</source>
         <translation type="unfinished">选择项目文件夹</translation>
     </message>
@@ -23146,7 +23146,7 @@
 <context>
     <name>GitPatchFilesDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="82"/>
         <source>Patch Files</source>
         <translation>补丁文件</translation>
     </message>
@@ -23201,7 +23201,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchFilesDialog.py" line="82"/>
         <source>Patch Files (*.diff *.patch);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -23239,12 +23239,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">进程生成错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="116"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitPatchStatisticsDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
@@ -25269,22 +25269,22 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="54"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="56"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished">刷新(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="56"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="58"/>
         <source>Press to refresh the list of commits</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="198"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">进程生成错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitReflogBrowserDialog.py" line="198"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
@@ -25476,12 +25476,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="144"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="148"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">进程生成错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="144"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py" line="148"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
@@ -25780,71 +25780,71 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="60"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="63"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished">刷新(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="62"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="65"/>
         <source>Press to refresh the list of stashes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="77"/>
-        <source>Show</source>
-        <translation type="unfinished">显示</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="80"/>
+        <source>Show</source>
+        <translation type="unfinished">显示</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="83"/>
         <source>Restore &amp;&amp; Keep</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="82"/>
-        <source>Restore &amp;&amp; Delete</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="85"/>
-        <source>Create Branch</source>
+        <source>Restore &amp;&amp; Delete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="88"/>
+        <source>Create Branch</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="91"/>
         <source>Delete</source>
         <translation type="unfinished">删除</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="93"/>
         <source>Delete All</source>
         <translation type="unfinished">全部删除</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="176"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="183"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">进程生成错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="176"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="183"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="363"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="377"/>
         <source>%n file(s) changed</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="365"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="379"/>
         <source>%n line(s) inserted</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="367"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py" line="381"/>
         <source>%n line(s) deleted</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -25912,7 +25912,7 @@
 <context>
     <name>GitStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="379"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="386"/>
         <source>Git Status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -25938,7 +25938,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="647"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="665"/>
         <source>Commit</source>
         <translation type="unfinished">提交</translation>
     </message>
@@ -26023,312 +26023,312 @@
         <translation type="unfinished">点击刷新状态显示</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="102"/>
         <source>Stage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="104"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="106"/>
         <source>Revert Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="110"/>
         <source>Stage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="112"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="114"/>
         <source>Revert Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="120"/>
         <source>Unstage Selected Lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="122"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="124"/>
         <source>Unstage Hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="163"/>
-        <source>added</source>
-        <translation type="unfinished">已添加</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="164"/>
-        <source>copied</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="165"/>
-        <source>deleted</source>
-        <translation type="unfinished">已删除</translation>
+        <source>added</source>
+        <translation type="unfinished">已添加</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="166"/>
-        <source>modified</source>
-        <translation type="unfinished">已修改</translation>
+        <source>copied</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="167"/>
-        <source>renamed</source>
-        <translation type="unfinished"></translation>
+        <source>deleted</source>
+        <translation type="unfinished">已删除</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="168"/>
+        <source>modified</source>
+        <translation type="unfinished">已修改</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="169"/>
+        <source>renamed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="171"/>
         <source>not tracked</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="168"/>
-        <source>unmerged</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="162"/>
-        <source>unmodified</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="170"/>
+        <source>unmerged</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="164"/>
+        <source>unmodified</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="172"/>
         <source>ignored</source>
         <translation type="unfinished">已忽略</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="188"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="190"/>
         <source>Commit the selected changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="189"/>
-        <source>Amend</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="191"/>
-        <source>Amend the latest commit with the selected changes</source>
+        <source>Amend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="193"/>
-        <source>Select all for commit</source>
+        <source>Amend the latest commit with the selected changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="195"/>
+        <source>Select all for commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="197"/>
         <source>Unselect all from commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="688"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="706"/>
         <source>Add</source>
         <translation type="unfinished">添加</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="201"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="203"/>
         <source>Add the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="202"/>
-        <source>Stage changes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="204"/>
-        <source>Stages all changes of the selected files</source>
+        <source>Stage changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="206"/>
-        <source>Unstage changes</source>
+        <source>Stages all changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="208"/>
+        <source>Unstage changes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="210"/>
         <source>Unstages all changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="824"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="842"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="215"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="217"/>
         <source>Shows the differences of the selected entry in a separate dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="218"/>
-        <source>Differences Side-By-Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="220"/>
+        <source>Differences Side-By-Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="222"/>
         <source>Shows the differences of the selected entry side-by-side in a separate dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789"/>
         <source>Revert</source>
         <translation type="unfinished">还原</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="228"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="230"/>
         <source>Reverts the changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="233"/>
-        <source>Forget missing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="235"/>
-        <source>Forgets about the selected missing files</source>
+        <source>Forget missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="237"/>
-        <source>Restore missing</source>
+        <source>Forgets about the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="239"/>
+        <source>Restore missing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="241"/>
         <source>Restores the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="244"/>
-        <source>Edit file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="246"/>
+        <source>Edit file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="248"/>
         <source>Edit the selected conflicting file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="251"/>
-        <source>Adjust column sizes</source>
-        <translation type="unfinished">调整列宽</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="253"/>
+        <source>Adjust column sizes</source>
+        <translation type="unfinished">调整列宽</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="255"/>
         <source>Adjusts the width of all columns to their contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="414"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">进程生成错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="414"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="581"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="599"/>
         <source>all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="647"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="665"/>
         <source>There are no entries selected to be committed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="688"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="706"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation type="unfinished">没有未版本化的条目可用或被选择。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="710"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="728"/>
         <source>Stage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="710"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="728"/>
         <source>There are no stageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="732"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="750"/>
         <source>Unstage</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="732"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="750"/>
         <source>There are no unstageable entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="754"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="772"/>
         <source>Forget Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="795"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="813"/>
         <source>There are no missing entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="771"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="789"/>
         <source>There are no uncommitted, unstaged changes available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="795"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="813"/>
         <source>Restore Missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="824"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="842"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation type="unfinished">没有未提交的更改可用或被选择。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="876"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="894"/>
         <source>Working Tree to Staging Area</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="855"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="873"/>
         <source>Staging Area to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="877"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="895"/>
         <source>Working Tree to HEAD Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="879"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="897"/>
         <source>Side-by-Side Difference</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="879"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="897"/>
         <source>Select the compare method.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1188"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1212"/>
         <source>Revert selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1190"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1214"/>
         <source>Revert hunk</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1191"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitStatusDialog.py" line="1215"/>
         <source>Are you sure you want to revert the selected changes?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26425,12 +26425,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="103"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="105"/>
         <source>Select Submodule Repository Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="129"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitSubmoduleAddDialog.py" line="131"/>
         <source>Select Submodule Directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -26815,12 +26815,12 @@
 &lt;p&gt;显示一列项目标签或分支。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="95"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="97"/>
         <source>Commit</source>
         <translation type="unfinished">提交</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="95"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="97"/>
         <source>Name</source>
         <translation type="unfinished">名称</translation>
     </message>
@@ -26870,22 +26870,22 @@
         <translation type="unfinished">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="92"/>
         <source>Annotation Message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="96"/>
         <source>Git Branches List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="133"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">进程生成错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsGit/GitTagBranchListDialog.py" line="133"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
@@ -27905,7 +27905,7 @@
 <context>
     <name>HelpDocsInstaller</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpDocsInstaller.py" line="239"/>
+        <location filename="../WebBrowser/QtHelp/HelpDocsInstaller.py" line="241"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be registered. &lt;br/&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -28124,22 +28124,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="205"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="211"/>
         <source>Open Link</source>
         <translation type="unfinished">打开链接</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="206"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="212"/>
         <source>Open Link in New Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="207"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="213"/>
         <source>Open Link in Background Tab</source>
         <translation type="unfinished">在后台选项卡中打开链接</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="209"/>
+        <location filename="../WebBrowser/QtHelp/HelpIndexWidget.py" line="215"/>
         <source>Open Link in New Window</source>
         <translation type="unfinished">在新窗口中打开链接</translation>
     </message>
@@ -28218,22 +28218,22 @@
 <context>
     <name>HelpSearchWidget</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="145"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="150"/>
         <source>Open Link</source>
         <translation>打开链接</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="146"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="151"/>
         <source>Open Link in New Tab</source>
         <translation>在新选项卡中打开链接</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="147"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="152"/>
         <source>Open Link in Background Tab</source>
         <translation>在后台选项卡中打开链接</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="149"/>
+        <location filename="../WebBrowser/QtHelp/HelpSearchWidget.py" line="154"/>
         <source>Open Link in New Window</source>
         <translation>在新窗口中打开链接</translation>
     </message>
@@ -28415,22 +28415,22 @@
 <context>
     <name>HelpTocWidget</name>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="158"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="164"/>
         <source>Open Link</source>
         <translation>打开链接</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="159"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="165"/>
         <source>Open Link in New Tab</source>
         <translation>在新选项卡中打开文件</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="160"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="166"/>
         <source>Open Link in Background Tab</source>
         <translation>在后台选项卡中打开链接</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="162"/>
+        <location filename="../WebBrowser/QtHelp/HelpTocWidget.py" line="168"/>
         <source>Open Link in New Window</source>
         <translation>在新窗口中打开链接</translation>
     </message>
@@ -31229,58 +31229,58 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="782"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="783"/>
         <source>&lt;p&gt;This part of the status bar displays some selection information.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="790"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="792"/>
         <source>&lt;p&gt;This part of the status bar displays the size of the binary data.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="798"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="801"/>
         <source>&lt;p&gt;This part of the status bar displays the edit mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="806"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="810"/>
         <source>&lt;p&gt;This part of the status bar displays the read only mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="851"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="856"/>
         <source>Selection: -</source>
         <comment>no selection available</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="862"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="867"/>
         <source>ro</source>
         <translation type="unfinished">ro</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="862"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="867"/>
         <source>rw</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="880"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="885"/>
         <source>Overwrite</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="880"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="885"/>
         <source>Insert</source>
         <translation>插入</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="942"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="947"/>
         <source>Open binary file in new window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1061"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1066"/>
         <source>All Files (*)</source>
         <translation>所有文件 (*)</translation>
     </message>
@@ -31290,75 +31290,75 @@
         <translation type="obsolete">eric6 十六进制编辑器</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="963"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="968"/>
         <source>The loaded file has unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="981"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="986"/>
         <source>The file &apos;{0}&apos; does not exist.</source>
         <translation type="unfinished">文件“{0}”不存在。</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="988"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="993"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1014"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1019"/>
         <source>Open binary file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1071"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1076"/>
         <source>Save binary file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1156"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1161"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1181"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1186"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation type="unfinished">无法写入文件 {0}:
 {1}。</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1187"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1192"/>
         <source>File saved</source>
         <translation>文件已保存</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1156"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1161"/>
         <source>Save to readable file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1140"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1145"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation>文本文件 (*.txt);;所有文件 (*)</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1140"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1145"/>
         <source>Text Files (*.txt)</source>
         <translation>文本文件 (*.txt)</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1223"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1228"/>
         <source>Untitled</source>
         <translation>未命名</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1227"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1232"/>
         <source>{0}[*] - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1227"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1232"/>
         <source>Hex Editor</source>
         <translation>十六进制编辑器</translation>
     </message>
@@ -31368,18 +31368,18 @@
         <translation type="obsolete">关于 eric6 十六进制编辑器</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="826"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="831"/>
         <source>Address: {0}</source>
         <translation>地址:{0}</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="845"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="850"/>
         <source>Selection: {0} - {1} ({2} Bytes)</source>
         <comment>0: start, 1: end, 2: selection length</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="899"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="904"/>
         <source>Size: {0}</source>
         <translation>大小:{0}</translation>
     </message>
@@ -31389,22 +31389,22 @@
         <translation>打开最近的文件(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1431"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1436"/>
         <source>&amp;Clear</source>
         <translation>清除(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1181"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1186"/>
         <source>eric Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1284"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1289"/>
         <source>About eric Hex Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../HexEdit/HexEditMainWindow.py" line="1284"/>
+        <location filename="../HexEdit/HexEditMainWindow.py" line="1289"/>
         <source>The eric Hex Editor is a simple editor component to edit binary files.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32543,7 +32543,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBackoutDialog.py" line="174"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBackoutDialog.py" line="176"/>
         <source>Backed out changeset &lt;{0}&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32571,7 +32571,7 @@
 <context>
     <name>HgBookmarkDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="46"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="47"/>
         <source>Define Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32676,7 +32676,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="43"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarkDialog.py" line="44"/>
         <source>Move Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32768,12 +32768,12 @@
         <translation type="obsolete">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="46"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="48"/>
         <source>Mercurial Incoming Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="48"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="50"/>
         <source>Mercurial Outgoing Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32788,7 +32788,7 @@
         <translation type="obsolete">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksInOutDialog.py" line="121"/>
         <source>no bookmarks found</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32878,7 +32878,7 @@
         <translation type="obsolete">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="125"/>
         <source>no bookmarks defined</source>
         <translation type="unfinished"></translation>
     </message>
@@ -32893,67 +32893,67 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="247"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="258"/>
         <source>Switch to</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="251"/>
-        <source>Delete</source>
-        <translation type="unfinished">删除</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="254"/>
-        <source>Rename</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="258"/>
-        <source>Pull</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="262"/>
+        <source>Delete</source>
+        <translation type="unfinished">删除</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="265"/>
+        <source>Rename</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="269"/>
+        <source>Pull</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="273"/>
         <source>Push</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="299"/>
         <source>Switch</source>
         <translation type="unfinished">转换</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="288"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="299"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="318"/>
         <source>Delete Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="318"/>
         <source>&lt;p&gt;Shall the bookmark &lt;b&gt;{0}&lt;/b&gt; really be deleted?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="323"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="334"/>
         <source>Rename Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="323"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="334"/>
         <source>&lt;p&gt;Enter the new name for bookmark &lt;b&gt;{0}&lt;/b&gt;:&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="267"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="278"/>
         <source>Push Current</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="272"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgBookmarksListDialog.py" line="283"/>
         <source>Push All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -33373,7 +33373,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="173"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="183"/>
         <source>Resolved</source>
         <translation type="unfinished"></translation>
     </message>
@@ -33383,7 +33383,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="171"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="181"/>
         <source>Unresolved</source>
         <translation type="unfinished"></translation>
     </message>
@@ -33443,12 +33443,12 @@
         <translation type="obsolete">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="51"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="54"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished">刷新(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="53"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="56"/>
         <source>Press to refresh the list of conflicts</source>
         <translation type="unfinished"></translation>
     </message>
@@ -33463,7 +33463,7 @@
         <translation type="obsolete">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="175"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="185"/>
         <source>Unknown Status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -33625,52 +33625,52 @@
         <translation type="unfinished">错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="101"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">进程生成错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="99"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="101"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation type="unfinished">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="120"/>
         <source>There is no difference.</source>
         <translation type="unfinished">没有差异。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="245"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="254"/>
         <source>Save Diff</source>
         <translation type="unfinished">保存差异</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="213"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="222"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished">补丁文件 (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="245"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="254"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;补丁文件 &lt;b&gt;{0}&lt;/b&gt; 无法保存。&lt;br /&gt;原因:{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="230"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="239"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;补丁文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="91"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="93"/>
         <source>Patch Contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="137"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="143"/>
         <source>&lt;Start&gt;</source>
         <translation type="unfinished">&lt;开始&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="138"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgDiffDialog.py" line="144"/>
         <source>&lt;End&gt;</source>
         <translation type="unfinished">&lt;结束&gt;</translation>
     </message>
@@ -33951,7 +33951,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="218"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="228"/>
         <source>Revision</source>
         <translation type="unfinished">修订</translation>
     </message>
@@ -34026,7 +34026,7 @@
         <translation type="obsolete">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="95"/>
         <source>no signatures found</source>
         <translation type="unfinished"></translation>
     </message>
@@ -34504,17 +34504,17 @@
         <translation type="unfinished">选择要过滤的区域</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="131"/>
         <source>Revision</source>
         <translation type="unfinished">修订</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="129"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="132"/>
         <source>Author</source>
         <translation type="unfinished">作者</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="130"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="133"/>
         <source>Message</source>
         <translation type="unfinished">消息</translation>
     </message>
@@ -34614,17 +34614,17 @@
         <translation type="obsolete">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="208"/>
         <source>Added</source>
         <translation type="unfinished">已添加</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="206"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="209"/>
         <source>Deleted</source>
         <translation type="unfinished">已删除</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="207"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="210"/>
         <source>Modified</source>
         <translation type="unfinished">已修改</translation>
     </message>
@@ -34649,7 +34649,7 @@
         <translation type="obsolete">无法启动 hg 可执行程序。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="842"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="847"/>
         <source>Mercurial Error</source>
         <translation type="unfinished"></translation>
     </message>
@@ -34669,7 +34669,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="190"/>
         <source>All</source>
         <translation type="unfinished">全部</translation>
     </message>
@@ -34684,48 +34684,48 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="222"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="225"/>
         <source>Bookmarks</source>
         <translation type="unfinished">书签</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="117"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="120"/>
         <source>Press to refresh the list of changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="118"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished">刷新(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="132"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="135"/>
         <source>Phase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="274"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="277"/>
         <source>Change the phase of the selected revisions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="276"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="279"/>
         <source>&lt;b&gt;Change Phase&lt;/b&gt;
 &lt;p&gt;This changes the phase of the selected revisions. The selected revisions have to have the same current phase.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="272"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="275"/>
         <source>Change Phase</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1997"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2016"/>
         <source>Copy Changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2302"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2321"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -34735,42 +34735,42 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="266"/>
         <source>Copy the selected changesets to the current branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="281"/>
-        <source>Tag</source>
-        <translation type="unfinished">标签</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="284"/>
+        <source>Tag</source>
+        <translation type="unfinished">标签</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="287"/>
         <source>Tag the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2068"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2087"/>
         <source>Switch</source>
         <translation type="unfinished">转换</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="294"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="297"/>
         <source>Switch the working directory to the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="317"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="320"/>
         <source>Pull Large Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="319"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="322"/>
         <source>Pull large files for selected revisions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1135"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1146"/>
         <source>{0} (large file)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -34795,137 +34795,137 @@
         <translation type="unfinished">点击查找下一次出现</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="128"/>
         <source>Find</source>
         <translation type="unfinished">查找</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="126"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="129"/>
         <source>Filter</source>
         <translation type="unfinished">过滤器</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="169"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="172"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="175"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="178"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2443"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2462"/>
         <source>Find Commit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2443"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2462"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="131"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="134"/>
         <source>File</source>
         <translation type="unfinished">文件</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="211"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="214"/>
         <source>Draft</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="212"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="215"/>
         <source>Public</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="213"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="216"/>
         <source>Secret</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2165"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2184"/>
         <source>Pull Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="315"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="318"/>
         <source>Pull changes from a remote repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="324"/>
-        <source>Push Selected Changes</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="327"/>
-        <source>Push changes of the selected changeset and its ancestors to a remote repository</source>
+        <source>Push Selected Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="330"/>
-        <source>Push All Changes</source>
+        <source>Push changes of the selected changeset and its ancestors to a remote repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="333"/>
+        <source>Push All Changes</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="336"/>
         <source>Push all changes to a remote repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2211"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2230"/>
         <source>Strip Changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="376"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="379"/>
         <source>Strip changesets from a repository</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="299"/>
-        <source>Define Bookmark...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="302"/>
+        <source>Define Bookmark...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="305"/>
         <source>Bookmark the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="304"/>
-        <source>Move Bookmark...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="307"/>
+        <source>Move Bookmark...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="310"/>
         <source>Move bookmark to the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2091"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2110"/>
         <source>Define Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2091"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2110"/>
         <source>Enter bookmark name for changeset &quot;{0}&quot;:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2134"/>
         <source>Move Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2115"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2134"/>
         <source>Select the bookmark to be moved  to changeset &quot;{0}&quot;:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2054"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2073"/>
         <source>Select bookmark to switch to (leave empty to use revision):</source>
         <translation type="unfinished"></translation>
     </message>
@@ -34940,143 +34940,143 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="175"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Latest Tag&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="156"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Revision&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Author&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branch&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{3}&lt;/td&gt;&lt;/tr&gt;{4}&lt;tr&gt;&lt;td&gt;&lt;b&gt;Message&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{5}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="163"/>
-        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="166"/>
+        <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parents&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="169"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Children&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="266"/>
-        <source>Merge with Changeset</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="269"/>
+        <source>Merge with Changeset</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="272"/>
         <source>Merge the working directory with the selected changeset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="338"/>
-        <source>Create Changegroup</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="341"/>
+        <source>Create Changegroup</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="344"/>
         <source>Create a changegroup file containing the selected changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="343"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="346"/>
         <source>&lt;b&gt;Create Changegroup&lt;/b&gt;
 &lt;p&gt;This creates a changegroup file containing the selected revisions. If no revisions are selected, all changesets will be bundled. If one revision is selected, it will be interpreted as the base revision. Otherwise the lowest revision will be used as the base revision and all other revision will be bundled. If the dialog is showing outgoing changesets, all selected changesets will be bundled.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2302"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2321"/>
         <source>Apply Changegroup</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="355"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="358"/>
         <source>Apply the currently viewed changegroup file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="360"/>
-        <source>Sign Revisions</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="363"/>
+        <source>Sign Revisions</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="366"/>
         <source>Add a signature for the selected revisions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="365"/>
-        <source>Verify Signatures</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="368"/>
+        <source>Verify Signatures</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="371"/>
         <source>Verify all signatures there may be for the selected revision</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="381"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="384"/>
         <source>Select All Entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="383"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="386"/>
         <source>Deselect All Entries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1376"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1392"/>
         <source>Side-by-Side Diff to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1387"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1403"/>
         <source>&lt;a href=&quot;sbsdiff:{0}_{1}&quot;&gt;Side-by-Side Compare&lt;/a&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1523"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="1539"/>
         <source>Pull Selected Changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2487"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2506"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2497"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2516"/>
         <source>Differences to Parent {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2513"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2532"/>
         <source>Diff to Parent {0}{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2538"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2557"/>
         <source>There is no difference.</source>
         <translation type="unfinished">没有差异。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2680"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2699"/>
         <source>Save Diff</source>
         <translation type="unfinished">保存差异</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2648"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2667"/>
         <source>Patch Files (*.diff)</source>
         <translation type="unfinished">补丁文件 (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2665"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2684"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;补丁文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2680"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2699"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;补丁文件 &lt;b&gt;{0}&lt;/b&gt; 无法保存。&lt;br /&gt;原因:{1}&lt;/p&gt;</translation>
     </message>
@@ -35086,7 +35086,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2486"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="2505"/>
         <source>Generating differences ...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -35096,12 +35096,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="286"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="289"/>
         <source>Close Heads</source>
         <translation type="unfinished">关闭头文件</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="289"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="292"/>
         <source>Close the selected heads</source>
         <translation type="unfinished"></translation>
     </message>
@@ -37139,22 +37139,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="206"/>
         <source>Remove Guards</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="206"/>
         <source>Do you really want to remove the selected guards?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="253"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="258"/>
         <source>Apply Guard Definitions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="253"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesDefineGuardsDialog.py" line="258"/>
         <source>&lt;p&gt;The defined guards could not be applied.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -37215,7 +37215,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesGuardsSelectionDialog.py" line="44"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesGuardsSelectionDialog.py" line="46"/>
         <source>Active Guards</source>
         <translation type="unfinished"></translation>
     </message>
@@ -37238,7 +37238,7 @@
         <translation type="obsolete">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py" line="108"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesHeaderDialog.py" line="118"/>
         <source>Error: </source>
         <translation type="unfinished"></translation>
     </message>
@@ -37346,32 +37346,32 @@
         <translation type="obsolete">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="138"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="145"/>
         <source>no patches found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="43"/>
-        <source>applied</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="45"/>
-        <source>guarded</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="46"/>
+        <source>applied</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="48"/>
+        <source>guarded</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="49"/>
         <source>missing</source>
         <translation type="unfinished">遗漏</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="193"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="205"/>
         <source>unknown</source>
         <translation type="unfinished">未知</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="44"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesListDialog.py" line="47"/>
         <source>not applied</source>
         <translation type="unfinished"></translation>
     </message>
@@ -37525,12 +37525,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="67"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="68"/>
         <source>Refresh</source>
         <translation type="unfinished">刷新</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="69"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesQueueManagementDialog.py" line="70"/>
         <source>Press to refresh the queues list</source>
         <translation type="unfinished"></translation>
     </message>
@@ -38279,27 +38279,27 @@
         <translation type="obsolete">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="49"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="52"/>
         <source>&amp;Refresh</source>
         <translation type="unfinished">刷新(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="51"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="54"/>
         <source>Press to refresh the list of shelves</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="60"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="63"/>
         <source>Restore selected shelve</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="62"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="65"/>
         <source>Delete selected shelves</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="64"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="67"/>
         <source>Delete all shelves</source>
         <translation type="unfinished"></translation>
     </message>
@@ -38314,21 +38314,21 @@
         <translation type="obsolete">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="266"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="280"/>
         <source>%n file(s) changed</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="268"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="282"/>
         <source>%n line(s) inserted</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="270"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelveBrowserDialog.py" line="284"/>
         <source>%n line(s) deleted</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -38409,7 +38409,7 @@
 <context>
     <name>HgStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="310"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="314"/>
         <source>Mercurial Status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -38475,47 +38475,47 @@
         <translation type="unfinished">点击刷新状态显示</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="124"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="126"/>
         <source>Commit the selected changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="190"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="192"/>
         <source>Adjust column sizes</source>
         <translation type="unfinished">调整列宽</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="96"/>
         <source>added</source>
         <translation type="unfinished">已添加</translation>
     </message>
     <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="99"/>
+        <source>modified</source>
+        <translation type="unfinished">已修改</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="100"/>
+        <source>removed</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="101"/>
+        <source>not tracked</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="97"/>
-        <source>modified</source>
-        <translation type="unfinished">已修改</translation>
+        <source>normal</source>
+        <translation type="unfinished">标准</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="98"/>
-        <source>removed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="99"/>
-        <source>not tracked</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="95"/>
-        <source>normal</source>
-        <translation type="unfinished">标准</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="96"/>
         <source>ignored</source>
         <translation type="unfinished">已忽略</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="102"/>
         <source>missing</source>
         <translation type="unfinished">遗漏</translation>
     </message>
@@ -38530,37 +38530,37 @@
         <translation type="obsolete">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="494"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="506"/>
         <source>Commit</source>
         <translation type="unfinished">提交</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="660"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="672"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation type="unfinished">没有未提交的更改可用或被选择。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="558"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="570"/>
         <source>Add</source>
         <translation type="unfinished">添加</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="558"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="570"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation type="unfinished">没有未版本化的条目可用或被选择。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="622"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="634"/>
         <source>Revert</source>
         <translation type="unfinished">还原</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="581"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="593"/>
         <source>Remove</source>
         <translation type="unfinished">移除</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="622"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="634"/>
         <source>There are no missing entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -38575,102 +38575,102 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="172"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="174"/>
         <source>Restore missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="416"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="428"/>
         <source>all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="640"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="652"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="494"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="506"/>
         <source>There are no entries selected to be committed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="125"/>
-        <source>Select all for commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="307"/>
-        <source>Mercurial Queue Repository Status</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="667"/>
-        <source>Side-by-Side Diff</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="667"/>
-        <source>Only one file with uncommitted changes must be selected.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="135"/>
-        <source>Add as Large Files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="140"/>
-        <source>Add as Normal Files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="168"/>
-        <source>Forget missing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="127"/>
-        <source>Unselect all from commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="134"/>
-        <source>Add the selected files</source>
+        <source>Select all for commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="311"/>
+        <source>Mercurial Queue Repository Status</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="679"/>
+        <source>Side-by-Side Diff</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="679"/>
+        <source>Only one file with uncommitted changes must be selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="137"/>
-        <source>Add the selected files as a large files using the &apos;Large Files&apos; extension</source>
+        <source>Add as Large Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="142"/>
+        <source>Add as Normal Files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="170"/>
+        <source>Forget missing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="129"/>
+        <source>Unselect all from commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="136"/>
+        <source>Add the selected files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="139"/>
+        <source>Add the selected files as a large files using the &apos;Large Files&apos; extension</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="144"/>
         <source>Add the selected files as a normal files using the &apos;Large Files&apos; extension</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="150"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="152"/>
         <source>Shows the differences of the selected entry in a separate dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="153"/>
-        <source>Differences Side-By-Side</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="155"/>
+        <source>Differences Side-By-Side</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="157"/>
         <source>Shows the differences of the selected entry side-by-side in a separate dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="163"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="165"/>
         <source>Reverts the changes of the selected files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="172"/>
         <source>Forgets about the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
@@ -38680,37 +38680,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="174"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="176"/>
         <source>Restores the selected missing files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="192"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="194"/>
         <source>Adjusts the width of all columns to their contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="179"/>
-        <source>Commit Merge</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="181"/>
-        <source>Commit all the merged changes.</source>
+        <source>Commit Merge</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="183"/>
-        <source>Abort Merge</source>
+        <source>Commit all the merged changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="185"/>
+        <source>Abort Merge</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="187"/>
         <source>Abort an uncommitted merge and lose all changes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="761"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="779"/>
         <source>Merge</source>
         <translation type="unfinished">合并</translation>
     </message>
@@ -38875,247 +38875,247 @@
         <translation type="obsolete">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="234"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="236"/>
         <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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="238"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="240"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Tags&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="242"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="244"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Message&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="248"/>
-        <source>empty repository</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="250"/>
+        <source>empty repository</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="252"/>
         <source>no revision checked out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="251"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="253"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Remarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="255"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="257"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Branch&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="265"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Bookmarks&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="270"/>
-        <source>{0} modified</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="272"/>
-        <source>{0} added</source>
+        <source>{0} modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="274"/>
-        <source>{0} removed</source>
+        <source>{0} added</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="276"/>
-        <source>{0} renamed</source>
+        <source>{0} removed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="278"/>
-        <source>{0} copied</source>
+        <source>{0} renamed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="280"/>
-        <source>{0} deleted</source>
+        <source>{0} copied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="282"/>
-        <source>{0} unknown</source>
+        <source>{0} deleted</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="284"/>
-        <source>{0} ignored</source>
+        <source>{0} unknown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="286"/>
+        <source>{0} ignored</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="288"/>
         <source>{0} unresolved</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="289"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="291"/>
         <source>{0} subrepos</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="292"/>
-        <source>Merge needed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="294"/>
-        <source>New Branch</source>
+        <source>Merge needed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="296"/>
-        <source>Head is closed</source>
+        <source>New Branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="298"/>
-        <source>No commit required</source>
+        <source>Head is closed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="300"/>
+        <source>No commit required</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="302"/>
         <source>New Branch Head</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="301"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="303"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Commit Status&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="306"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="308"/>
         <source>current</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="321"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="323"/>
         <source>unknown status</source>
         <translation type="unfinished">未知状态</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="322"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="324"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Update Status&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="327"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="329"/>
         <source>synched</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="331"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="333"/>
         <source>1 or more incoming changesets</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="335"/>
         <source>%n outgoing changeset(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="342"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="344"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Remote Status&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="347"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="349"/>
         <source>empty queue</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="351"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="353"/>
         <source>{0} applied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="354"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="356"/>
         <source>{0} unapplied</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="357"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="359"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Queues Status&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="371"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="373"/>
         <source>&lt;p&gt;No status information available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="230"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="232"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Parent #{0}&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="308"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="310"/>
         <source>%n new changeset(s)&lt;br/&gt;Update required</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="312"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="314"/>
         <source>%n new changeset(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="314"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="316"/>
         <source>%n branch head(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="316"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="318"/>
         <source>{0}&lt;br/&gt;{1}&lt;br/&gt;Merge required</source>
         <comment>0 is changesets, 1 is branch heads</comment>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="336"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="338"/>
         <source>%n incoming bookmark(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="339"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="341"/>
         <source>%n outgoing bookmark(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="362"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="364"/>
         <source>No files to upload</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="364"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="366"/>
         <source>%n file(s) to upload</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgSummaryDialog.py" line="368"/>
         <source>&lt;tr&gt;&lt;td&gt;&lt;b&gt;Large Files&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -39196,12 +39196,12 @@
         <translation type="obsolete">Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="90"/>
         <source>Mercurial Branches List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="89"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="91"/>
         <source>Status</source>
         <translation>状态</translation>
     </message>
@@ -39216,62 +39216,62 @@
         <translation type="obsolete">进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="200"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="211"/>
         <source>active</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="205"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="216"/>
         <source>yes</source>
         <translation type="unfinished">是</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="42"/>
-        <source>&amp;Refresh</source>
-        <translation type="unfinished">刷新(&amp;R)</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="44"/>
+        <source>&amp;Refresh</source>
+        <translation type="unfinished">刷新(&amp;R)</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="46"/>
         <source>Press to refresh the list</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="278"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="292"/>
         <source>Switch to</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="347"/>
         <source>Close Branch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="321"/>
         <source>Switch</source>
         <translation type="unfinished">转换</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="307"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="321"/>
         <source>The project should be reread. Do this now?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="326"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="340"/>
         <source>The branch &quot;default&quot; cannot be closed. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="333"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="347"/>
         <source>&lt;p&gt;Shall the branch &lt;b&gt;{0}&lt;/b&gt; really be closed?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="380"/>
         <source>Close Branches</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="366"/>
+        <location filename="../Plugins/VcsPlugins/vcsMercurial/HgTagBranchListDialog.py" line="380"/>
         <source>Do you really want to close all listed branches?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -40040,7 +40040,7 @@
         <translation>点击移除选中的条目</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="122"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="123"/>
         <source>&amp;Remove</source>
         <translation>移除(&amp;R)</translation>
     </message>
@@ -40055,32 +40055,32 @@
         <translation>移除全部(&amp;A)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="105"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="106"/>
         <source>&amp;Open</source>
         <translation>打开(&amp;O)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="108"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="109"/>
         <source>Open in New &amp;Tab</source>
         <translation>在新选项卡中打开(&amp;T)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="121"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="122"/>
         <source>&amp;Copy</source>
         <translation>复制(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="111"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="112"/>
         <source>Open in New &amp;Background Tab</source>
         <translation type="unfinished">在新背景标签中打开(&amp;B)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="114"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="115"/>
         <source>Open in New &amp;Window</source>
         <translation>在新窗口中打开(&amp;W)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryDialog.py" line="117"/>
+        <location filename="../WebBrowser/History/HistoryDialog.py" line="118"/>
         <source>Open in New Pri&amp;vate Window</source>
         <translation type="unfinished">在新私有窗口中打开(&amp;V)</translation>
     </message>
@@ -40146,12 +40146,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryMenu.py" line="447"/>
+        <location filename="../WebBrowser/History/HistoryMenu.py" line="448"/>
         <source>Restore All Closed Tabs</source>
         <translation type="unfinished">恢复所有已关闭的选项卡</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/History/HistoryMenu.py" line="450"/>
+        <location filename="../WebBrowser/History/HistoryMenu.py" line="451"/>
         <source>Clear List</source>
         <translation type="unfinished">清空列表</translation>
     </message>
@@ -40177,12 +40177,12 @@
 <context>
     <name>HistoryTreeModel</name>
     <message>
-        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="64"/>
+        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="65"/>
         <source>Earlier Today</source>
         <translation>今天早些时候</translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="67"/>
+        <location filename="../WebBrowser/History/HistoryTreeModel.py" line="68"/>
         <source>%n item(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -40299,12 +40299,12 @@
         <translation type="obsolete">收到了无效的响应</translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="251"/>
+        <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="251"/>
+        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="252"/>
         <source>IBM Watson: No translation available.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -40319,12 +40319,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/UiExtensionPlugins/Translator/TranslatorEngines/IbmWatsonEngine.py" line="243"/>
+        <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="231"/>
+        <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>
@@ -40333,102 +40333,102 @@
 <context>
     <name>IconEditorGrid</name>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="208"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="211"/>
         <source>Set Pixel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="209"/>
-        <source>Erase Pixel</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="210"/>
-        <source>Draw Line</source>
-        <translation type="unfinished">显示边界线</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="211"/>
-        <source>Draw Rectangle</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="212"/>
-        <source>Draw Filled Rectangle</source>
+        <source>Erase Pixel</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="213"/>
-        <source>Draw Circle</source>
-        <translation type="unfinished"></translation>
+        <source>Draw Line</source>
+        <translation type="unfinished">显示边界线</translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="214"/>
-        <source>Draw Filled Circle</source>
+        <source>Draw Rectangle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="215"/>
-        <source>Draw Ellipse</source>
+        <source>Draw Filled Rectangle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="216"/>
-        <source>Draw Filled Ellipse</source>
+        <source>Draw Circle</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorGrid.py" line="217"/>
+        <source>Draw Filled Circle</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="218"/>
+        <source>Draw Ellipse</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="219"/>
+        <source>Draw Filled Ellipse</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorGrid.py" line="220"/>
         <source>Fill Region</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="846"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="853"/>
         <source>Cut Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="905"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="912"/>
         <source>Paste</source>
         <translation>粘贴</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="905"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="912"/>
         <source>&lt;p&gt;The clipboard image is larger than the current image.&lt;br/&gt;Paste as new image?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="918"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="925"/>
         <source>Paste Clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="936"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="943"/>
         <source>Pasting Image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="936"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="943"/>
         <source>Invalid image data in clipboard.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="947"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="954"/>
         <source>Paste Clipboard as New Image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="976"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="983"/>
         <source>Clear Image</source>
         <translation>清除图像</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="996"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="1003"/>
         <source>Resize Image</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorGrid.py" line="1023"/>
+        <location filename="../IconEditor/IconEditorGrid.py" line="1030"/>
         <source>Convert to Grayscale</source>
         <translation type="unfinished"></translation>
     </message>
@@ -40436,57 +40436,57 @@
 <context>
     <name>IconEditorPalette</name>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="48"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="49"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This is a 1:1 preview of the current icon.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="58"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="60"/>
         <source>&lt;b&gt;Current Color&lt;/b&gt;&lt;p&gt;This is the currently selected color used for drawing.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="66"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="69"/>
         <source>&lt;b&gt;Current Color Value&lt;/b&gt;&lt;p&gt;This is the currently selected color value used for drawing.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="73"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="76"/>
         <source>Select Color</source>
         <translation>选择颜色</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="74"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="77"/>
         <source>&lt;b&gt;Select Color&lt;/b&gt;&lt;p&gt;Select the current drawing color via a color selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="84"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="87"/>
         <source>&lt;b&gt;Select alpha channel value&lt;/b&gt;&lt;p&gt;Select the value for the alpha channel of the current color.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="92"/>
-        <source>Compositing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorPalette.py" line="95"/>
+        <source>Compositing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorPalette.py" line="98"/>
         <source>Replace</source>
         <translation>替换</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="97"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="100"/>
         <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Replace the existing pixel with a new color.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="103"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="106"/>
         <source>Blend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorPalette.py" line="105"/>
+        <location filename="../IconEditor/IconEditorPalette.py" line="108"/>
         <source>&lt;b&gt;Blend&lt;/b&gt;&lt;p&gt;Blend the new color over the existing pixel.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -40494,1036 +40494,1036 @@
 <context>
     <name>IconEditorWindow</name>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="125"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="126"/>
         <source>Windows Bitmap File (*.bmp)</source>
         <translation>Windows 位图文件 (*.bmp)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="128"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="129"/>
         <source>Graphic Interchange Format File (*.gif)</source>
         <translation type="unfinished">图像交换格式 (*.gif)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="130"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="131"/>
         <source>Windows Icon File (*.ico)</source>
         <translation>Windows 图标文件 (*.ico)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="132"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="133"/>
         <source>JPEG File (*.jpg)</source>
         <translation>JPEG 文件 (*.jpg)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="135"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="136"/>
         <source>Portable Bitmap File (*.pbm)</source>
         <translation type="unfinished">可移植位图文件 (*.pbm)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="137"/>
-        <source>Portable Graymap File (*.pgm)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="138"/>
-        <source>Portable Network Graphics File (*.png)</source>
+        <source>Portable Graymap File (*.pgm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="139"/>
+        <source>Portable Network Graphics File (*.png)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="140"/>
         <source>Portable Pixmap File (*.ppm)</source>
         <translation type="unfinished">可移植位图文件 (*.ppm)</translation>
     </message>
     <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="142"/>
+        <source>Scalable Vector Graphics File (*.svg)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="146"/>
+        <source>TIFF File (*.tif)</source>
+        <translation>TIFF 文件 (*.tif)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="150"/>
+        <source>X11 Bitmap File (*.xbm)</source>
+        <translation>X11 位图文件 (*.xbm)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="151"/>
+        <source>X11 Pixmap File (*.xpm)</source>
+        <translation type="unfinished">X11 位图文件 (*.xpm)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="162"/>
+        <source>All Files (*)</source>
+        <translation>所有文件 (*)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
+        <source>New</source>
+        <translation>新建</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
+        <source>&amp;New</source>
+        <translation>新建(&amp;N)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="194"/>
+        <source>Ctrl+N</source>
+        <comment>File|New</comment>
+        <translation>Ctrl+N</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="200"/>
+        <source>Create a new icon</source>
+        <translation>创建新图标</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="201"/>
+        <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;This creates a new icon.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="208"/>
+        <source>New Window</source>
+        <translation>新建窗口</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="208"/>
+        <source>New &amp;Window</source>
+        <translation>新建窗口(&amp;W)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="213"/>
+        <source>Open a new icon editor window</source>
+        <translation>打开一个新的图标编辑器窗口</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="215"/>
+        <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new icon editor window.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;新建窗口&lt;/b&gt;&lt;p&gt;打开一个新的图标编辑器窗口。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
+        <source>Open</source>
+        <translation>打开</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
+        <source>&amp;Open...</source>
+        <translation>打开(&amp;O)…</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="222"/>
+        <source>Ctrl+O</source>
+        <comment>File|Open</comment>
+        <translation>Ctrl+O</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="228"/>
+        <source>Open an icon file for editing</source>
+        <translation>打开一个图标文件以编辑</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="229"/>
+        <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new icon file for editing. It pops up a file selection dialog.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;打开文件&lt;/b&gt;&lt;p&gt;打开一个图标文件以进行编辑。将会弹出一个文件选择对话框。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
+        <source>Save</source>
+        <translation>保存</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
+        <source>&amp;Save</source>
+        <translation>保存(&amp;S)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="237"/>
+        <source>Ctrl+S</source>
+        <comment>File|Save</comment>
+        <translation>Ctrl+S</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="243"/>
+        <source>Save the current icon</source>
+        <translation>保存当前图标</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="244"/>
+        <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of the icon editor window.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;保存文件&lt;/b&gt;&lt;p&gt;保存当前图标编辑器窗口的内容。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
+        <source>Save As</source>
+        <translation>另存为</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
+        <source>Save &amp;As...</source>
+        <translation>另存为(&amp;A)…</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="251"/>
+        <source>Shift+Ctrl+S</source>
+        <comment>File|Save As</comment>
+        <translation>Shift+Ctrl+S</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="257"/>
+        <source>Save the current icon to a new file</source>
+        <translation>将当前图标文件保存到一个新文件中</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="259"/>
+        <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current icon to a new file.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;另存为…&lt;/b&gt;&lt;p&gt;将当前图标保存到一个新文件中。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
+        <source>Close</source>
+        <translation>关闭</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
+        <source>&amp;Close</source>
+        <translation>关闭(&amp;C)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="266"/>
+        <source>Ctrl+W</source>
+        <comment>File|Close</comment>
+        <translation>Ctrl+W</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="272"/>
+        <source>Close the current icon editor window</source>
+        <translation>关闭当前图标编辑器窗口</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="274"/>
+        <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current icon editor window.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;关闭&lt;/b&gt;&lt;p&gt;关闭当前图标编辑器窗口。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="281"/>
+        <source>Close All</source>
+        <translation>全部关闭</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="281"/>
+        <source>Close &amp;All</source>
+        <translation>全部关闭(&amp;A)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="285"/>
+        <source>Close all icon editor windows</source>
+        <translation>关闭所有图标编辑器窗口</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="287"/>
+        <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all icon editor windows except the first one.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;全部关闭&lt;/b&gt;&lt;p&gt;除了第一个窗口,关闭所有其它图标编辑器窗口。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
+        <source>Quit</source>
+        <translation>退出</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
+        <source>&amp;Quit</source>
+        <translation>退出(&amp;Q)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="307"/>
+        <source>Ctrl+Q</source>
+        <comment>File|Quit</comment>
+        <translation>Ctrl+Q</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="313"/>
+        <source>Quit the icon editor</source>
+        <translation>退出图标编辑器</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="314"/>
+        <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the icon editor.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;退出&lt;/b&gt;&lt;p&gt;退出图标编辑器。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <source>Undo</source>
+        <translation>撤消</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <source>&amp;Undo</source>
+        <translation>撤消(&amp;U)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <source>Ctrl+Z</source>
+        <comment>Edit|Undo</comment>
+        <translation>Ctrl+Z</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="326"/>
+        <source>Alt+Backspace</source>
+        <comment>Edit|Undo</comment>
+        <translation>Alt+Backspace</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="333"/>
+        <source>Undo the last change</source>
+        <translation>撤消最后一次更改</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="334"/>
+        <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;撤消&lt;/b&gt;&lt;p&gt;撤消最后一次更改。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
+        <source>Redo</source>
+        <translation>重做</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
+        <source>&amp;Redo</source>
+        <translation>重做(&amp;R)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="341"/>
+        <source>Ctrl+Shift+Z</source>
+        <comment>Edit|Redo</comment>
+        <translation>Ctrl+Shift+Z</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="347"/>
+        <source>Redo the last change</source>
+        <translation>重做最后一次更改</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="348"/>
+        <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;重做&lt;/b&gt;&lt;p&gt;重做最后一次更改。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <source>Cut</source>
+        <translation>剪切</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <source>Cu&amp;t</source>
+        <translation>剪切(&amp;T)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <source>Ctrl+X</source>
+        <comment>Edit|Cut</comment>
+        <translation>Ctrl+X</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="355"/>
+        <source>Shift+Del</source>
+        <comment>Edit|Cut</comment>
+        <translation>Shift+Del</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="362"/>
+        <source>Cut the selection</source>
+        <translation>剪切所选内容</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="363"/>
+        <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected image area 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="../IconEditor/IconEditorWindow.py" line="370"/>
+        <source>Copy</source>
+        <translation>复制</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <source>&amp;Copy</source>
+        <translation>复制(&amp;C)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <source>Ctrl+C</source>
+        <comment>Edit|Copy</comment>
+        <translation>Ctrl+C</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="370"/>
+        <source>Ctrl+Ins</source>
+        <comment>Edit|Copy</comment>
+        <translation>Ctrl+Ins</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="377"/>
+        <source>Copy the selection</source>
+        <translation>复制所选内容</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="378"/>
+        <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected image area 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="../IconEditor/IconEditorWindow.py" line="385"/>
+        <source>Paste</source>
+        <translation>粘贴</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
+        <source>&amp;Paste</source>
+        <translation>粘贴(&amp;P)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
+        <source>Ctrl+V</source>
+        <comment>Edit|Paste</comment>
+        <translation>Ctrl+V</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="385"/>
+        <source>Shift+Ins</source>
+        <comment>Edit|Paste</comment>
+        <translation>Shift+Ins</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="392"/>
+        <source>Paste the clipboard image</source>
+        <translation>粘贴剪切板图像</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="393"/>
+        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;粘贴&lt;/b&gt;&lt;p&gt;粘贴剪切板图像。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
+        <source>Paste as New</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="400"/>
+        <source>Paste as &amp;New</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="404"/>
+        <source>Paste the clipboard image replacing the current one</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="406"/>
+        <source>&lt;b&gt;Paste as New&lt;/b&gt;&lt;p&gt;Paste the clipboard image replacing the current one.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
+        <source>Clear</source>
+        <translation>清除</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
+        <source>Cl&amp;ear</source>
+        <translation>清除(&amp;E)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="413"/>
+        <source>Alt+Shift+C</source>
+        <comment>Edit|Clear</comment>
+        <translation>Alt+Shift+C</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="420"/>
+        <source>Clear the icon image</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="421"/>
+        <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Clear the icon image and set it to be completely transparent.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
+        <source>Select All</source>
+        <translation>全选</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
+        <source>&amp;Select All</source>
+        <translation>全选(&amp;S)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="429"/>
+        <source>Ctrl+A</source>
+        <comment>Edit|Select All</comment>
+        <translation>Ctrl+A</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="435"/>
+        <source>Select the complete icon image</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="437"/>
+        <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Selects the complete icon image.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="444"/>
+        <source>Change Size</source>
+        <translation>改变大小</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="444"/>
+        <source>Change Si&amp;ze...</source>
+        <translation>改变大小(&amp;Z)…</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="450"/>
+        <source>Change the icon size</source>
+        <translation>改变图标大小</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="451"/>
+        <source>&lt;b&gt;Change Size...&lt;/b&gt;&lt;p&gt;Changes the icon size.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;改变大小…&lt;/b&gt;&lt;p&gt;改变图标大小。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="458"/>
+        <source>Grayscale</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="458"/>
+        <source>&amp;Grayscale</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="464"/>
+        <source>Change the icon to grayscale</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="466"/>
+        <source>&lt;b&gt;Grayscale&lt;/b&gt;&lt;p&gt;Changes the icon to grayscale.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
+        <source>Zoom in</source>
+        <translation type="unfinished">放大</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
+        <source>Zoom &amp;in</source>
+        <translation>放大(&amp;I)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="495"/>
+        <source>Ctrl++</source>
+        <comment>View|Zoom in</comment>
+        <translation>Ctrl++</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="501"/>
+        <source>Zoom in on the icon</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="502"/>
+        <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the icon. This makes the grid bigger.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
+        <source>Zoom out</source>
+        <translation>缩小</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
+        <source>Zoom &amp;out</source>
+        <translation>缩小(&amp;O)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="509"/>
+        <source>Ctrl+-</source>
+        <comment>View|Zoom out</comment>
+        <translation>Ctrl+-</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="515"/>
+        <source>Zoom out on the icon</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="516"/>
+        <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the icon. This makes the grid smaller.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
+        <source>Zoom reset</source>
+        <translation>重置缩放</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
+        <source>Zoom &amp;reset</source>
+        <translation>重置缩放(&amp;R)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="523"/>
+        <source>Ctrl+0</source>
+        <comment>View|Zoom reset</comment>
+        <translation>Ctrl+0</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="539"/>
+        <source>Show Grid</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="539"/>
+        <source>Show &amp;Grid</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="545"/>
+        <source>Toggle the display of the grid</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="547"/>
+        <source>&lt;b&gt;Show Grid&lt;/b&gt;&lt;p&gt;Toggle the display of the grid.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
+        <source>Freehand</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="566"/>
+        <source>&amp;Freehand</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="572"/>
+        <source>&lt;b&gt;Free hand&lt;/b&gt;&lt;p&gt;Draws non linear lines.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="581"/>
+        <source>Color Picker</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="581"/>
+        <source>&amp;Color Picker</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="587"/>
+        <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
+        <source>Rectangle</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="598"/>
+        <source>&amp;Rectangle</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="604"/>
+        <source>&lt;b&gt;Rectangle&lt;/b&gt;&lt;p&gt;Draw a rectangle.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="613"/>
+        <source>Filled Rectangle</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="613"/>
+        <source>F&amp;illed Rectangle</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="619"/>
+        <source>&lt;b&gt;Filled Rectangle&lt;/b&gt;&lt;p&gt;Draw a filled rectangle.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="629"/>
+        <source>Circle</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="635"/>
+        <source>&lt;b&gt;Circle&lt;/b&gt;&lt;p&gt;Draw a circle.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="644"/>
+        <source>Filled Circle</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="644"/>
+        <source>Fille&amp;d Circle</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="650"/>
+        <source>&lt;b&gt;Filled Circle&lt;/b&gt;&lt;p&gt;Draw a filled circle.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
+        <source>Ellipse</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="660"/>
+        <source>&amp;Ellipse</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="666"/>
+        <source>&lt;b&gt;Ellipse&lt;/b&gt;&lt;p&gt;Draw an ellipse.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="675"/>
+        <source>Filled Ellipse</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="675"/>
+        <source>Fille&amp;d Elli&amp;pse</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="681"/>
+        <source>&lt;b&gt;Filled Ellipse&lt;/b&gt;&lt;p&gt;Draw a filled ellipse.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="691"/>
+        <source>Flood Fill</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="691"/>
+        <source>Fl&amp;ood Fill</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="697"/>
+        <source>&lt;b&gt;Flood Fill&lt;/b&gt;&lt;p&gt;Fill adjoining pixels with the same color with the current color.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
+        <source>Line</source>
+        <translation type="unfinished">行</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="707"/>
+        <source>&amp;Line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="713"/>
+        <source>&lt;b&gt;Line&lt;/b&gt;&lt;p&gt;Draw a line.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
+        <source>Eraser (Transparent)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="722"/>
+        <source>Eraser (&amp;Transparent)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="728"/>
+        <source>&lt;b&gt;Eraser (Transparent)&lt;/b&gt;&lt;p&gt;Erase pixels by setting them to transparent.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="737"/>
+        <source>Rectangular Selection</source>
+        <translation type="unfinished">长方形选区</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="754"/>
+        <source>Rect&amp;angular Selection</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="743"/>
+        <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="754"/>
+        <source>Circular Selection</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="760"/>
+        <source>&lt;b&gt;Circular Selection&lt;/b&gt;&lt;p&gt;Select a circular section of the icon using the mouse.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
+        <source>About</source>
+        <translation>关于</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="777"/>
+        <source>&amp;About</source>
+        <translation>关于(&amp;A)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="781"/>
+        <source>Display information about this software</source>
+        <translation>显示软件信息</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="783"/>
+        <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="../IconEditor/IconEditorWindow.py" line="789"/>
+        <source>About Qt</source>
+        <translation>关于 Qt</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="789"/>
+        <source>About &amp;Qt</source>
+        <translation>关于 &amp;Qt</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="793"/>
+        <source>Display information about the Qt toolkit</source>
+        <translation>显示 Qt 工具包信息</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="795"/>
+        <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="../IconEditor/IconEditorWindow.py" line="802"/>
+        <source>What&apos;s This?</source>
+        <translation>这是什么?</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
+        <source>&amp;What&apos;s This?</source>
+        <translation>这是什么(&amp;W)?</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="802"/>
+        <source>Shift+F1</source>
+        <comment>Help|What&apos;s This?&apos;</comment>
+        <translation>Shift+F1</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="808"/>
+        <source>Context sensitive help</source>
+        <translation type="unfinished">背景帮助</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="809"/>
+        <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
+        <translation type="unfinished">&lt;b&gt;显示背景帮助&lt;/b&gt;&lt;p&gt;在“这是什么?”模式中,鼠标光标显示为带问号的箭头,通过点击界面元素你可以获得“在做什么”和“怎样使用”的简短描述。使用标题栏中的上下文帮助按钮可以获得此功能。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="826"/>
+        <source>&amp;File</source>
+        <translation>文件(&amp;F)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="843"/>
+        <source>&amp;Edit</source>
+        <translation>编辑(&amp;E)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="859"/>
+        <source>&amp;View</source>
+        <translation>视图(&amp;V)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="867"/>
+        <source>&amp;Tools</source>
+        <translation>工具(&amp;T)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="886"/>
+        <source>&amp;Help</source>
+        <translation>帮助(&amp;H)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="896"/>
+        <source>File</source>
+        <translation>文件</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="910"/>
+        <source>Edit</source>
+        <translation>编辑</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="923"/>
+        <source>View</source>
+        <translation>视图</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="928"/>
+        <source>Tools</source>
+        <translation>工具</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="946"/>
+        <source>Help</source>
+        <translation>帮助</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="960"/>
+        <source>&lt;p&gt;This part of the status bar displays the icon size.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="967"/>
+        <source>&lt;p&gt;This part of the status bar displays the cursor position.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1069"/>
+        <source>Open icon file</source>
+        <translation>打开图标文件</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1119"/>
+        <source>Save icon file</source>
+        <translation>保存图标文件</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1208"/>
+        <source>Icon saved</source>
+        <translation>图标已保存</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1223"/>
+        <source>Untitled</source>
+        <translation>未命名</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1227"/>
+        <source>Icon Editor</source>
+        <translation>图标编辑器</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="135"/>
+        <source>Multiple-Image Network Graphics File (*.mng)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="529"/>
+        <source>Reset the zoom of the icon</source>
+        <translation>重置图标缩放大小</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="531"/>
+        <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the icon. This sets the zoom factor to 100%.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="137"/>
+        <source>Paintbrush Bitmap File (*.pcx)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="141"/>
-        <source>Scalable Vector Graphics File (*.svg)</source>
+        <source>Silicon Graphics Image File (*.sgi)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="145"/>
-        <source>TIFF File (*.tif)</source>
-        <translation>TIFF 文件 (*.tif)</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="149"/>
-        <source>X11 Bitmap File (*.xbm)</source>
-        <translation>X11 位图文件 (*.xbm)</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="150"/>
-        <source>X11 Pixmap File (*.xpm)</source>
-        <translation type="unfinished">X11 位图文件 (*.xpm)</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="161"/>
-        <source>All Files (*)</source>
-        <translation>所有文件 (*)</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
-        <source>New</source>
-        <translation>新建</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
-        <source>&amp;New</source>
-        <translation>新建(&amp;N)</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="193"/>
-        <source>Ctrl+N</source>
-        <comment>File|New</comment>
-        <translation>Ctrl+N</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="199"/>
-        <source>Create a new icon</source>
-        <translation>创建新图标</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="200"/>
-        <source>&lt;b&gt;New&lt;/b&gt;&lt;p&gt;This creates a new icon.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="207"/>
-        <source>New Window</source>
-        <translation>新建窗口</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="207"/>
-        <source>New &amp;Window</source>
-        <translation>新建窗口(&amp;W)</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="212"/>
-        <source>Open a new icon editor window</source>
-        <translation>打开一个新的图标编辑器窗口</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="214"/>
-        <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new icon editor window.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;新建窗口&lt;/b&gt;&lt;p&gt;打开一个新的图标编辑器窗口。&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
-        <source>Open</source>
-        <translation>打开</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
-        <source>&amp;Open...</source>
-        <translation>打开(&amp;O)…</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="221"/>
-        <source>Ctrl+O</source>
-        <comment>File|Open</comment>
-        <translation>Ctrl+O</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="227"/>
-        <source>Open an icon file for editing</source>
-        <translation>打开一个图标文件以编辑</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="228"/>
-        <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new icon file for editing. It pops up a file selection dialog.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;打开文件&lt;/b&gt;&lt;p&gt;打开一个图标文件以进行编辑。将会弹出一个文件选择对话框。&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
-        <source>Save</source>
-        <translation>保存</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
-        <source>&amp;Save</source>
-        <translation>保存(&amp;S)</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="236"/>
-        <source>Ctrl+S</source>
-        <comment>File|Save</comment>
-        <translation>Ctrl+S</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="242"/>
-        <source>Save the current icon</source>
-        <translation>保存当前图标</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="243"/>
-        <source>&lt;b&gt;Save File&lt;/b&gt;&lt;p&gt;Save the contents of the icon editor window.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;保存文件&lt;/b&gt;&lt;p&gt;保存当前图标编辑器窗口的内容。&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
-        <source>Save As</source>
-        <translation>另存为</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
-        <source>Save &amp;As...</source>
-        <translation>另存为(&amp;A)…</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="250"/>
-        <source>Shift+Ctrl+S</source>
-        <comment>File|Save As</comment>
-        <translation>Shift+Ctrl+S</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="256"/>
-        <source>Save the current icon to a new file</source>
-        <translation>将当前图标文件保存到一个新文件中</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="258"/>
-        <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current icon to a new file.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;另存为…&lt;/b&gt;&lt;p&gt;将当前图标保存到一个新文件中。&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
-        <source>Close</source>
-        <translation>关闭</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
-        <source>&amp;Close</source>
-        <translation>关闭(&amp;C)</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="265"/>
-        <source>Ctrl+W</source>
-        <comment>File|Close</comment>
-        <translation>Ctrl+W</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="271"/>
-        <source>Close the current icon editor window</source>
-        <translation>关闭当前图标编辑器窗口</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="273"/>
-        <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current icon editor window.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;关闭&lt;/b&gt;&lt;p&gt;关闭当前图标编辑器窗口。&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="280"/>
-        <source>Close All</source>
-        <translation>全部关闭</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="280"/>
-        <source>Close &amp;All</source>
-        <translation>全部关闭(&amp;A)</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="284"/>
-        <source>Close all icon editor windows</source>
-        <translation>关闭所有图标编辑器窗口</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="286"/>
-        <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all icon editor windows except the first one.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;全部关闭&lt;/b&gt;&lt;p&gt;除了第一个窗口,关闭所有其它图标编辑器窗口。&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
-        <source>Quit</source>
-        <translation>退出</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
-        <source>&amp;Quit</source>
-        <translation>退出(&amp;Q)</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="306"/>
-        <source>Ctrl+Q</source>
-        <comment>File|Quit</comment>
-        <translation>Ctrl+Q</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="312"/>
-        <source>Quit the icon editor</source>
-        <translation>退出图标编辑器</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="313"/>
-        <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the icon editor.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;退出&lt;/b&gt;&lt;p&gt;退出图标编辑器。&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
-        <source>Undo</source>
-        <translation>撤消</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
-        <source>&amp;Undo</source>
-        <translation>撤消(&amp;U)</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
-        <source>Ctrl+Z</source>
-        <comment>Edit|Undo</comment>
-        <translation>Ctrl+Z</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="325"/>
-        <source>Alt+Backspace</source>
-        <comment>Edit|Undo</comment>
-        <translation>Alt+Backspace</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="332"/>
-        <source>Undo the last change</source>
-        <translation>撤消最后一次更改</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="333"/>
-        <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last change done.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;撤消&lt;/b&gt;&lt;p&gt;撤消最后一次更改。&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
-        <source>Redo</source>
-        <translation>重做</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
-        <source>&amp;Redo</source>
-        <translation>重做(&amp;R)</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="340"/>
-        <source>Ctrl+Shift+Z</source>
-        <comment>Edit|Redo</comment>
-        <translation>Ctrl+Shift+Z</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="346"/>
-        <source>Redo the last change</source>
-        <translation>重做最后一次更改</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="347"/>
-        <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last change done.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;重做&lt;/b&gt;&lt;p&gt;重做最后一次更改。&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
-        <source>Cut</source>
-        <translation>剪切</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
-        <source>Cu&amp;t</source>
-        <translation>剪切(&amp;T)</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
-        <source>Ctrl+X</source>
-        <comment>Edit|Cut</comment>
-        <translation>Ctrl+X</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="354"/>
-        <source>Shift+Del</source>
-        <comment>Edit|Cut</comment>
-        <translation>Shift+Del</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="361"/>
-        <source>Cut the selection</source>
-        <translation>剪切所选内容</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="362"/>
-        <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected image area 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="../IconEditor/IconEditorWindow.py" line="369"/>
-        <source>Copy</source>
-        <translation>复制</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
-        <source>&amp;Copy</source>
-        <translation>复制(&amp;C)</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
-        <source>Ctrl+C</source>
-        <comment>Edit|Copy</comment>
-        <translation>Ctrl+C</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="369"/>
-        <source>Ctrl+Ins</source>
-        <comment>Edit|Copy</comment>
-        <translation>Ctrl+Ins</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="376"/>
-        <source>Copy the selection</source>
-        <translation>复制所选内容</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="377"/>
-        <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected image area 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="../IconEditor/IconEditorWindow.py" line="384"/>
-        <source>Paste</source>
-        <translation>粘贴</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
-        <source>&amp;Paste</source>
-        <translation>粘贴(&amp;P)</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
-        <source>Ctrl+V</source>
-        <comment>Edit|Paste</comment>
-        <translation>Ctrl+V</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="384"/>
-        <source>Shift+Ins</source>
-        <comment>Edit|Paste</comment>
-        <translation>Shift+Ins</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="391"/>
-        <source>Paste the clipboard image</source>
-        <translation>粘贴剪切板图像</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="392"/>
-        <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste the clipboard image.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;粘贴&lt;/b&gt;&lt;p&gt;粘贴剪切板图像。&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="399"/>
-        <source>Paste as New</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="399"/>
-        <source>Paste as &amp;New</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="403"/>
-        <source>Paste the clipboard image replacing the current one</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="405"/>
-        <source>&lt;b&gt;Paste as New&lt;/b&gt;&lt;p&gt;Paste the clipboard image replacing the current one.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
-        <source>Clear</source>
-        <translation>清除</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
-        <source>Cl&amp;ear</source>
-        <translation>清除(&amp;E)</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="412"/>
-        <source>Alt+Shift+C</source>
-        <comment>Edit|Clear</comment>
-        <translation>Alt+Shift+C</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="419"/>
-        <source>Clear the icon image</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="420"/>
-        <source>&lt;b&gt;Clear&lt;/b&gt;&lt;p&gt;Clear the icon image and set it to be completely transparent.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
-        <source>Select All</source>
-        <translation>全选</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
-        <source>&amp;Select All</source>
-        <translation>全选(&amp;S)</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="428"/>
-        <source>Ctrl+A</source>
-        <comment>Edit|Select All</comment>
-        <translation>Ctrl+A</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="434"/>
-        <source>Select the complete icon image</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="436"/>
-        <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Selects the complete icon image.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
-        <source>Change Size</source>
-        <translation>改变大小</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="443"/>
-        <source>Change Si&amp;ze...</source>
-        <translation>改变大小(&amp;Z)…</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="449"/>
-        <source>Change the icon size</source>
-        <translation>改变图标大小</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="450"/>
-        <source>&lt;b&gt;Change Size...&lt;/b&gt;&lt;p&gt;Changes the icon size.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;改变大小…&lt;/b&gt;&lt;p&gt;改变图标大小。&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="457"/>
-        <source>Grayscale</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="457"/>
-        <source>&amp;Grayscale</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="463"/>
-        <source>Change the icon to grayscale</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="465"/>
-        <source>&lt;b&gt;Grayscale&lt;/b&gt;&lt;p&gt;Changes the icon to grayscale.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
-        <source>Zoom in</source>
-        <translation type="unfinished">放大</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
-        <source>Zoom &amp;in</source>
-        <translation>放大(&amp;I)</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="494"/>
-        <source>Ctrl++</source>
-        <comment>View|Zoom in</comment>
-        <translation>Ctrl++</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="500"/>
-        <source>Zoom in on the icon</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="501"/>
-        <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the icon. This makes the grid bigger.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
-        <source>Zoom out</source>
-        <translation>缩小</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
-        <source>Zoom &amp;out</source>
-        <translation>缩小(&amp;O)</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="508"/>
-        <source>Ctrl+-</source>
-        <comment>View|Zoom out</comment>
-        <translation>Ctrl+-</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="514"/>
-        <source>Zoom out on the icon</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="515"/>
-        <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the icon. This makes the grid smaller.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
-        <source>Zoom reset</source>
-        <translation>重置缩放</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
-        <source>Zoom &amp;reset</source>
-        <translation>重置缩放(&amp;R)</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="522"/>
-        <source>Ctrl+0</source>
-        <comment>View|Zoom reset</comment>
-        <translation>Ctrl+0</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="538"/>
-        <source>Show Grid</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="538"/>
-        <source>Show &amp;Grid</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="544"/>
-        <source>Toggle the display of the grid</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="546"/>
-        <source>&lt;b&gt;Show Grid&lt;/b&gt;&lt;p&gt;Toggle the display of the grid.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="565"/>
-        <source>Freehand</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="565"/>
-        <source>&amp;Freehand</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="571"/>
-        <source>&lt;b&gt;Free hand&lt;/b&gt;&lt;p&gt;Draws non linear lines.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="580"/>
-        <source>Color Picker</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="580"/>
-        <source>&amp;Color Picker</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="586"/>
-        <source>&lt;b&gt;Color Picker&lt;/b&gt;&lt;p&gt;The color of the pixel clicked on will become the current draw color.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="597"/>
-        <source>Rectangle</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="597"/>
-        <source>&amp;Rectangle</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="603"/>
-        <source>&lt;b&gt;Rectangle&lt;/b&gt;&lt;p&gt;Draw a rectangle.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="612"/>
-        <source>Filled Rectangle</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="612"/>
-        <source>F&amp;illed Rectangle</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="618"/>
-        <source>&lt;b&gt;Filled Rectangle&lt;/b&gt;&lt;p&gt;Draw a filled rectangle.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="628"/>
-        <source>Circle</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="634"/>
-        <source>&lt;b&gt;Circle&lt;/b&gt;&lt;p&gt;Draw a circle.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="643"/>
-        <source>Filled Circle</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="643"/>
-        <source>Fille&amp;d Circle</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="649"/>
-        <source>&lt;b&gt;Filled Circle&lt;/b&gt;&lt;p&gt;Draw a filled circle.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="659"/>
-        <source>Ellipse</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="659"/>
-        <source>&amp;Ellipse</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="665"/>
-        <source>&lt;b&gt;Ellipse&lt;/b&gt;&lt;p&gt;Draw an ellipse.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="674"/>
-        <source>Filled Ellipse</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="674"/>
-        <source>Fille&amp;d Elli&amp;pse</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="680"/>
-        <source>&lt;b&gt;Filled Ellipse&lt;/b&gt;&lt;p&gt;Draw a filled ellipse.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="690"/>
-        <source>Flood Fill</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="690"/>
-        <source>Fl&amp;ood Fill</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="696"/>
-        <source>&lt;b&gt;Flood Fill&lt;/b&gt;&lt;p&gt;Fill adjoining pixels with the same color with the current color.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="706"/>
-        <source>Line</source>
-        <translation type="unfinished">行</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="706"/>
-        <source>&amp;Line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="712"/>
-        <source>&lt;b&gt;Line&lt;/b&gt;&lt;p&gt;Draw a line.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="721"/>
-        <source>Eraser (Transparent)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="721"/>
-        <source>Eraser (&amp;Transparent)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="727"/>
-        <source>&lt;b&gt;Eraser (Transparent)&lt;/b&gt;&lt;p&gt;Erase pixels by setting them to transparent.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="736"/>
-        <source>Rectangular Selection</source>
-        <translation type="unfinished">长方形选区</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="753"/>
-        <source>Rect&amp;angular Selection</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="742"/>
-        <source>&lt;b&gt;Rectangular Selection&lt;/b&gt;&lt;p&gt;Select a rectangular section of the icon using the mouse.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="753"/>
-        <source>Circular Selection</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="759"/>
-        <source>&lt;b&gt;Circular Selection&lt;/b&gt;&lt;p&gt;Select a circular section of the icon using the mouse.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="776"/>
-        <source>About</source>
-        <translation>关于</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="776"/>
-        <source>&amp;About</source>
-        <translation>关于(&amp;A)</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="780"/>
-        <source>Display information about this software</source>
-        <translation>显示软件信息</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="782"/>
-        <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="../IconEditor/IconEditorWindow.py" line="788"/>
-        <source>About Qt</source>
-        <translation>关于 Qt</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="788"/>
-        <source>About &amp;Qt</source>
-        <translation>关于 &amp;Qt</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="792"/>
-        <source>Display information about the Qt toolkit</source>
-        <translation>显示 Qt 工具包信息</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="794"/>
-        <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="../IconEditor/IconEditorWindow.py" line="801"/>
-        <source>What&apos;s This?</source>
-        <translation>这是什么?</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="801"/>
-        <source>&amp;What&apos;s This?</source>
-        <translation>这是什么(&amp;W)?</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="801"/>
-        <source>Shift+F1</source>
-        <comment>Help|What&apos;s This?&apos;</comment>
-        <translation>Shift+F1</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="807"/>
-        <source>Context sensitive help</source>
-        <translation type="unfinished">背景帮助</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="808"/>
-        <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
-        <translation type="unfinished">&lt;b&gt;显示背景帮助&lt;/b&gt;&lt;p&gt;在“这是什么?”模式中,鼠标光标显示为带问号的箭头,通过点击界面元素你可以获得“在做什么”和“怎样使用”的简短描述。使用标题栏中的上下文帮助按钮可以获得此功能。&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="825"/>
-        <source>&amp;File</source>
-        <translation>文件(&amp;F)</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="842"/>
-        <source>&amp;Edit</source>
-        <translation>编辑(&amp;E)</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="858"/>
-        <source>&amp;View</source>
-        <translation>视图(&amp;V)</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="866"/>
-        <source>&amp;Tools</source>
-        <translation>工具(&amp;T)</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="885"/>
-        <source>&amp;Help</source>
-        <translation>帮助(&amp;H)</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="895"/>
-        <source>File</source>
-        <translation>文件</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="909"/>
-        <source>Edit</source>
-        <translation>编辑</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="922"/>
-        <source>View</source>
-        <translation>视图</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="927"/>
-        <source>Tools</source>
-        <translation>工具</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="945"/>
-        <source>Help</source>
-        <translation>帮助</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="959"/>
-        <source>&lt;p&gt;This part of the status bar displays the icon size.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="966"/>
-        <source>&lt;p&gt;This part of the status bar displays the cursor position.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1062"/>
-        <source>Open icon file</source>
-        <translation>打开图标文件</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1112"/>
-        <source>Save icon file</source>
-        <translation>保存图标文件</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1201"/>
-        <source>Icon saved</source>
-        <translation>图标已保存</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1216"/>
-        <source>Untitled</source>
-        <translation>未命名</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
-        <source>Icon Editor</source>
-        <translation>图标编辑器</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="134"/>
-        <source>Multiple-Image Network Graphics File (*.mng)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="528"/>
-        <source>Reset the zoom of the icon</source>
-        <translation>重置图标缩放大小</translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="530"/>
-        <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the icon. This sets the zoom factor to 100%.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="136"/>
-        <source>Paintbrush Bitmap File (*.pcx)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="140"/>
-        <source>Silicon Graphics Image File (*.sgi)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="144"/>
         <source>Targa Graphic File (*.tga)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1148"/>
-        <source>The file &apos;{0}&apos; does not exist.</source>
-        <translation>文件“{0}”不存在。</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="1155"/>
+        <source>The file &apos;{0}&apos; does not exist.</source>
+        <translation>文件“{0}”不存在。</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1162"/>
         <source>Cannot read file &apos;{0}:
 {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1189"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1196"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation type="unfinished">无法写入文件 {0}:
 {1}。</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1220"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1227"/>
         <source>{0}[*] - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1112"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1119"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1241"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1248"/>
         <source>The icon image has unsaved changes.</source>
         <translation>图标图像有未保存的更改。</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="133"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="134"/>
         <source>JPEG File (*.jpeg)</source>
         <translation>JPEG 文件 (*.jpg)</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="142"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="143"/>
         <source>Compressed Scalable Vector Graphics File (*.svgz)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="146"/>
-        <source>TIFF File (*.tiff)</source>
-        <translation>TIFF 文件 (*.tif)</translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="147"/>
+        <source>TIFF File (*.tiff)</source>
+        <translation>TIFF 文件 (*.tif)</translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="148"/>
         <source>WAP Bitmap File (*.wbmp)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -41538,57 +41538,57 @@
         <translation type="obsolete">关于 eric6 图标编辑器</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="293"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="294"/>
         <source>Close Others</source>
         <translation type="unfinished">关闭其它</translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="297"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="298"/>
         <source>Close all other icon editor windows</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="299"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="300"/>
         <source>&lt;b&gt;Close Others&lt;/b&gt;&lt;p&gt;Closes all other icon editor windows.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="148"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="149"/>
         <source>WebP Image File (*.webp)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="126"/>
-        <source>Windows Cursor File (*.cur)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../IconEditor/IconEditorWindow.py" line="127"/>
+        <source>Windows Cursor File (*.cur)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../IconEditor/IconEditorWindow.py" line="128"/>
         <source>DirectDraw-Surface File (*.dds)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="129"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="130"/>
         <source>Apple Icon File (*.icns)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="131"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="132"/>
         <source>JPEG2000 File (*.jp2)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1241"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1248"/>
         <source>eric Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1331"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1338"/>
         <source>About eric Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../IconEditor/IconEditorWindow.py" line="1331"/>
+        <location filename="../IconEditor/IconEditorWindow.py" line="1338"/>
         <source>The eric Icon Editor is a simple editor component to perform icon drawing tasks.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -41858,22 +41858,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="175"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="176"/>
         <source>Include Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="175"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="176"/>
         <source>Select Include Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="388"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="391"/>
         <source>Undefine Name</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/IdlCompilerOptionsDialog.py" line="388"/>
+        <location filename="../Project/IdlCompilerOptionsDialog.py" line="391"/>
         <source>Enter a variable name to be undefined:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -42384,52 +42384,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="70"/>
+        <location filename="../UI/InstallInfoDialog.py" line="71"/>
         <source>Yes</source>
         <translation type="unfinished">是</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="70"/>
+        <location filename="../UI/InstallInfoDialog.py" line="71"/>
         <source>No</source>
         <translation type="unfinished">否</translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="74"/>
+        <location filename="../UI/InstallInfoDialog.py" line="75"/>
         <source>&apos;eric-ide&apos; was installed from PyPI using the pip command.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="80"/>
+        <location filename="../UI/InstallInfoDialog.py" line="81"/>
         <source>The information shown in this dialog was guessed at the first start of eric.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="98"/>
+        <location filename="../UI/InstallInfoDialog.py" line="99"/>
         <source>Load Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="98"/>
+        <location filename="../UI/InstallInfoDialog.py" line="99"/>
         <source>&lt;p&gt;The file containing the install information could not be read.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="150"/>
+        <location filename="../UI/InstallInfoDialog.py" line="151"/>
         <source>Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="150"/>
+        <location filename="../UI/InstallInfoDialog.py" line="151"/>
         <source>The install information was edited. Unsaved changes will be lost. Save first?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="187"/>
+        <location filename="../UI/InstallInfoDialog.py" line="188"/>
         <source>Save Install Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="187"/>
+        <location filename="../UI/InstallInfoDialog.py" line="188"/>
         <source>&lt;p&gt;The file containing the install information could not be written.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -42439,17 +42439,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="60"/>
+        <location filename="../UI/InstallInfoDialog.py" line="61"/>
         <source>Installed as Administrator:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="62"/>
+        <location filename="../UI/InstallInfoDialog.py" line="63"/>
         <source>Installed with sudo:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="92"/>
+        <location filename="../UI/InstallInfoDialog.py" line="93"/>
         <source>unknown</source>
         <translation type="unfinished">未知</translation>
     </message>
@@ -42459,7 +42459,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="86"/>
+        <location filename="../UI/InstallInfoDialog.py" line="87"/>
         <source>The installation information was provided by the user.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -42469,22 +42469,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="254"/>
+        <location filename="../UI/InstallInfoDialog.py" line="255"/>
         <source>Upgrade Instructions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="200"/>
+        <location filename="../UI/InstallInfoDialog.py" line="201"/>
         <source>Delete Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="200"/>
+        <location filename="../UI/InstallInfoDialog.py" line="201"/>
         <source>Do you really want to delete the installation information? It will be recreated at the next start.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/InstallInfoDialog.py" line="227"/>
+        <location filename="../UI/InstallInfoDialog.py" line="228"/>
         <source>Perform the following step(s) with Administrator privileges.
 </source>
         <translation type="unfinished"></translation>
@@ -43720,62 +43720,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="189"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="191"/>
         <source>Edit Identity</source>
         <translation>编辑身份</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="172"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="174"/>
         <source>The identity must contain at least one nick name.</source>
         <translation>身份必须至少包含一个昵称。</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="189"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="191"/>
         <source>The identity must have a real name.</source>
         <translation>身份必须包含一个真实名称。</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="237"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="239"/>
         <source>Add Identity</source>
         <translation>添加身份</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="287"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="289"/>
         <source>Identity Name:</source>
         <translation>身份名称:</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="297"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="299"/>
         <source>An identity named &lt;b&gt;{0}&lt;/b&gt; already exists. You must provide a different name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="312"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="314"/>
         <source>The identity has to have a name.</source>
         <translation>身份必须有一个名称。</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="312"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="314"/>
         <source>Copy Identity</source>
         <translation>复制身份</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="297"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="299"/>
         <source>Rename Identity</source>
         <translation>重命名身份</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="336"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="338"/>
         <source>This identity is in use. If you remove it, the network settings using it will fall back to the default identity. Should it be deleted anyway?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="341"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="343"/>
         <source>Do you really want to delete all information for this identity?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="344"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="346"/>
         <source>Delete Identity</source>
         <translation>删除身份</translation>
     </message>
@@ -43785,12 +43785,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="477"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="480"/>
         <source>Press to show the password</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="471"/>
+        <location filename="../Network/IRC/IrcIdentitiesEditDialog.py" line="474"/>
         <source>Press to hide the password</source>
         <translation type="unfinished"></translation>
     </message>
@@ -43896,22 +43896,22 @@
         <translation>显示服务器名称</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="254"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="258"/>
         <source>Yes</source>
         <translation>是</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="256"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="260"/>
         <source>No</source>
         <translation>否</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="185"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="189"/>
         <source>Delete Channel</source>
         <translation>删除频道</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="185"/>
+        <location filename="../Network/IRC/IrcNetworkEditDialog.py" line="189"/>
         <source>Do you really want to delete channel &lt;b&gt;{0}&lt;/b&gt;?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -44027,7 +44027,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="346"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="348"/>
         <source>Press to connect to the selected network</source>
         <translation type="unfinished"></translation>
     </message>
@@ -44057,57 +44057,57 @@
         <translation>点击加入频道</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="434"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="436"/>
         <source>Save Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="417"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="419"/>
         <source>HTML Files (*.{0});;Text Files (*.txt);;All Files (*)</source>
         <translation>HTML 文件 (*.{0});;文本文件 (*.txt);;所有文件 (*)</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="434"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="436"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="452"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="454"/>
         <source>Error saving Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="452"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="454"/>
         <source>&lt;p&gt;The messages contents could not be written to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="465"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="467"/>
         <source>Copy</source>
         <translation>复制</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="469"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="471"/>
         <source>Cut all</source>
         <translation type="unfinished">剪切全部</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="472"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="474"/>
         <source>Copy all</source>
         <translation>复制全部</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="476"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="478"/>
         <source>Clear</source>
         <translation>清除</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="480"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="482"/>
         <source>Save</source>
         <translation>保存</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcNetworkWidget.py" line="341"/>
+        <location filename="../Network/IRC/IrcNetworkWidget.py" line="343"/>
         <source>Press to disconnect from the network</source>
         <translation>点击从网络断开</translation>
     </message>
@@ -44622,253 +44622,253 @@
         <translation>点击离开当前频道</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="244"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="245"/>
         <source>Disconnect from Server</source>
         <translation>与服务器断开</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="244"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="245"/>
         <source>&lt;p&gt;Do you really want to disconnect from &lt;b&gt;{0}&lt;/b&gt;?&lt;/p&gt;&lt;p&gt;All channels will be closed.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="186"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="187"/>
         <source>SSL Connection</source>
         <translation>SSL 连接</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="186"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="187"/>
         <source>An encrypted connection to the IRC network was requested but SSL is not available. Please change the server configuration.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="564"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="565"/>
         <source>Info</source>
         <translation>信息</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="219"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="220"/>
         <source>Looking for server {0} (port {1}) using an SSL encrypted connection...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="230"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="231"/>
         <source>Looking for server {0} (port {1})...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="253"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="254"/>
         <source>Disconnecting from server {0}...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="519"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="520"/>
         <source>Server found,connecting...</source>
         <translation>服务器已找到,正在连接…</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="528"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="529"/>
         <source>Connected,logging in...</source>
         <translation>已连接,正在登录…</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="564"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="565"/>
         <source>Server disconnected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="611"/>
         <source>Message Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="610"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="611"/>
         <source>Unknown message received from server:&lt;br/&gt;{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="676"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="677"/>
         <source>Notice</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="694"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="695"/>
         <source>Mode</source>
         <translation type="unfinished">模式</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="701"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="702"/>
         <source>You have left channel {0}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="712"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="713"/>
         <source>You are now known as {0}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="717"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="718"/>
         <source>User {0} is now known as {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="727"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="728"/>
         <source>Server Error</source>
         <translation>服务器错误</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="763"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="764"/>
         <source>Error</source>
         <translation>错误</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="778"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="779"/>
         <source>Welcome</source>
         <translation>欢迎</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="780"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="781"/>
         <source>Support</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="782"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="783"/>
         <source>User</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="784"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="785"/>
         <source>MOTD</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="786"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="787"/>
         <source>Away</source>
         <translation>离开</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="788"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="789"/>
         <source>Info ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="792"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="793"/>
         <source>Message of the day</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="794"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="795"/>
         <source>End of message of the day</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="797"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="798"/>
         <source>Server {0} (Version {1}), User-Modes: {2}, Channel-Modes: {3}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="803"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="804"/>
         <source>Current users on {0}: {1}, max. {2}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="808"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="809"/>
         <source>Current users on the network: {0}, max. {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="812"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="813"/>
         <source>You are no longer marked as being away.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="814"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="815"/>
         <source>You have been marked as being away.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="934"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
         <source>SSL Error</source>
         <translation>SSL 错误</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="876"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="877"/>
         <source>Connection to server {0} (port {1}) lost while waiting for user response to an SSL error.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="907"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
         <source>Socket Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="884"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="885"/>
         <source>The host was not found. Please check the host name and port settings.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="890"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="891"/>
         <source>The connection was refused by the peer. Please check the host name and port settings.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="901"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="902"/>
         <source>The following network error occurred:&lt;br/&gt;{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1030"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1031"/>
         <source>{0} ({1})</source>
         <comment>channel name, users count</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1071"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1072"/>
         <source>Critical</source>
         <translation type="unfinished">危险</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1052"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1053"/>
         <source>No nickname acceptable to the server configured for &lt;b&gt;{0}&lt;/b&gt;. Disconnecting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1071"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1072"/>
         <source>The given nickname is already in use.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1015"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1016"/>
         <source>CTCP</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="992"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="993"/>
         <source>Received Version request from {0}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="998"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="999"/>
         <source>Received CTCP-PING request from {0}, sending answer.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1006"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1007"/>
         <source>Received CTCP-CLIENTINFO request from {0}, sending answer.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="1015"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="1016"/>
         <source>Received unknown CTCP-{0} request from {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="687"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="688"/>
         <source>You have set your personal modes to &lt;b&gt;[{0}]&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="691"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="692"/>
         <source>{0} has changed your personal modes to &lt;b&gt;[{1}]&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -44883,47 +44883,47 @@
         <translation type="unfinished">网络</translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="896"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="897"/>
         <source>The SSL handshake failed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="907"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="908"/>
         <source>A network error occurred.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="920"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="921"/>
         <source>Could not connect to {0} (port {1}) using an SSL encrypted connection. Either the server does not support SSL (did you use the correct port?) or you rejected the certificate.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="934"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="935"/>
         <source>The SSL certificate for the server {0} (port {1}) failed the authenticity check. SSL errors were accepted by you.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="258"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="259"/>
         <source>Disconnecting from network {0}...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="263"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="264"/>
         <source>Disconnecting from server.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="643"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="644"/>
         <source>Received CTCP-PING response from {0} with latency of {1} ms.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="649"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="650"/>
         <source>Received unknown CTCP-{0} response from {1}.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Network/IRC/IrcWidget.py" line="723"/>
+        <location filename="../Network/IRC/IrcWidget.py" line="724"/>
         <source>Received PONG from {0}</source>
         <translation>收到了来自 {0} 的 PONG</translation>
     </message>
@@ -47097,57 +47097,57 @@
 <context>
     <name>Listspace</name>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="257"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="258"/>
         <source>Close</source>
         <translation>关闭</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="264"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="265"/>
         <source>Close All</source>
         <translation>全部关闭</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="267"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="268"/>
         <source>Save</source>
         <translation>保存</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="270"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="271"/>
         <source>Save As...</source>
         <translation>另存为…</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="273"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="274"/>
         <source>Save All</source>
         <translation>全部保存</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="281"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="282"/>
         <source>Print</source>
         <translation>打印</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="440"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="441"/>
         <source>Untitled {0}</source>
         <translation type="unfinished">无标题 {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="581"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="582"/>
         <source>{0} (ro)</source>
         <translation>{0}(只读)</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="277"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="278"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="285"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="286"/>
         <source>Copy Path to Clipboard</source>
         <translation type="unfinished">将路径复制到剪贴板</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="260"/>
+        <location filename="../Plugins/ViewManagerPlugins/Listspace/Listspace.py" line="261"/>
         <source>Close Others</source>
         <translation type="unfinished">关闭其它</translation>
     </message>
@@ -47379,12 +47379,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="57"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="58"/>
         <source>Uninstall Selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="60"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="62"/>
         <source>Cancel</source>
         <translation type="unfinished">取消</translation>
     </message>
@@ -47404,57 +47404,57 @@
         <translation type="obsolete">计算机已离线。</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="177"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="180"/>
         <source>Error downloading dictionaries list</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="177"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="180"/>
         <source>&lt;p&gt;Could not download the dictionaries list from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="200"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="203"/>
         <source>Dictionaries URL Changed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="200"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="203"/>
         <source>The URL of the spell check dictionaries has changed. Select the &quot;Refresh&quot; button to get the new dictionaries list.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="212"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="215"/>
         <source>Error installing dictionaries</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="212"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="215"/>
         <source>&lt;p&gt;None of the dictionary locations is writable by you. Please download required dictionaries manually and install them as administrator.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="263"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="266"/>
         <source>{0} ({1})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="372"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="376"/>
         <source>Error downloading dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="357"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="361"/>
         <source>&lt;p&gt;Could not download the requested dictionary file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="357"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="361"/>
         <source>Error downloading dictionary file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="372"/>
+        <location filename="../WebBrowser/SpellCheck/ManageDictionariesDialog.py" line="376"/>
         <source>&lt;p&gt;The downloaded dictionary archive is invalid. Skipping it.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -47525,22 +47525,22 @@
         <translation>(尚未定义)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="50"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="51"/>
         <source>Wrong password entered.</source>
         <translation>输入密码有误。</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="54"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="55"/>
         <source>New password must not be empty.</source>
         <translation>新密码不能为空。</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="61"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="62"/>
         <source>Repeated password is wrong.</source>
         <translation>重复输入的密码不一致。</translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="66"/>
+        <location filename="../Preferences/ConfigurationPages/MasterPasswordEntryDialog.py" line="67"/>
         <source>Old and new password must not be the same.</source>
         <translation>旧密码和新密码不能相同。</translation>
     </message>
@@ -48024,7 +48024,7 @@
 <context>
     <name>MicroPythonCommandsInterface</name>
     <message>
-        <location filename="../MicroPython/MicroPythonCommandsInterface.py" line="284"/>
+        <location filename="../MicroPython/MicroPythonCommandsInterface.py" line="285"/>
         <source>Detected an error without indications.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48356,22 +48356,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="72"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="73"/>
         <source>max. X:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="81"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="83"/>
         <source>Enter the maximum number of data points to be plotted.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="330"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="332"/>
         <source>Save Chart Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="330"/>
+        <location filename="../MicroPython/MicroPythonGraphWidget.py" line="332"/>
         <source>&lt;p&gt;The chart data could not be saved into file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48454,7 +48454,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="69"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="77"/>
         <source>All Files (*)</source>
         <translation type="unfinished">所有文件 (*)</translation>
     </message>
@@ -48529,37 +48529,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="48"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="49"/>
         <source>Dark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="50"/>
-        <source>Blue Cerulean</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="52"/>
+        <source>Blue Cerulean</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="55"/>
         <source>Brown Sand</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="54"/>
-        <source>Blue NCS</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="56"/>
-        <source>High Contrast</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="58"/>
+        <source>Blue NCS</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="61"/>
+        <source>High Contrast</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="64"/>
         <source>Blue Icy</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="60"/>
+        <location filename="../Preferences/ConfigurationPages/MicroPythonPage.py" line="67"/>
         <source>Qt</source>
         <translation type="unfinished">Qt</translation>
     </message>
@@ -48700,54 +48700,54 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="562"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="566"/>
         <source>Press to connect the selected device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="276"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="278"/>
         <source>&lt;h3&gt;The QtSerialPort package is not available.&lt;br/&gt;MicroPython support is deactivated.&lt;/h3&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../MicroPython/MicroPythonWidget.py" line="318"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="320"/>
         <source>%n supported device(s) detected.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="340"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="342"/>
         <source>No supported devices detected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="532"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="536"/>
         <source>Clear</source>
         <translation type="unfinished">清除</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="534"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="538"/>
         <source>Copy</source>
         <translation type="unfinished">复制</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="535"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="539"/>
         <source>Paste</source>
         <translation type="unfinished">粘贴</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="557"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="561"/>
         <source>Press to disconnect the current device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="578"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="582"/>
         <source>No device attached</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="578"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="582"/>
         <source>Please ensure the device is plugged into your computer and selected.
 
 It must have a version of MicroPython (or CircuitPython) flashed onto it before anything will work.
@@ -48756,212 +48756,212 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="605"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="609"/>
         <source>Start REPL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="605"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="609"/>
         <source>&lt;p&gt;The REPL cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1054"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1068"/>
         <source>Serial Device Connect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1054"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1068"/>
         <source>&lt;p&gt;Cannot connect to device at serial port &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1099"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1113"/>
         <source>Run Script</source>
         <translation type="unfinished">运行脚本</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1082"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1096"/>
         <source>There is no editor open. Abort...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1090"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1104"/>
         <source>The current editor does not contain a script. Abort...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1099"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1113"/>
         <source>&lt;p&gt;Cannot run script.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1123"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1137"/>
         <source>Open Python File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1123"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1137"/>
         <source>Python3 Files (*.py);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1168"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1182"/>
         <source>Start Chart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1168"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1182"/>
         <source>&lt;p&gt;The Chart cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1197"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1211"/>
         <source>Unsaved Chart Data</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1197"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1211"/>
         <source>The chart contains unsaved data.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1248"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1262"/>
         <source>Start File Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1248"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1262"/>
         <source>&lt;p&gt;The File Manager cannot be started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1322"/>
-        <source>Show Version</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1325"/>
-        <source>Show Implementation</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1452"/>
-        <source>Synchronize Time</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1333"/>
-        <source>Show Device Time</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../MicroPython/MicroPythonWidget.py" line="1336"/>
+        <source>Show Version</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1339"/>
+        <source>Show Implementation</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1466"/>
+        <source>Synchronize Time</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1347"/>
+        <source>Show Device Time</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1350"/>
         <source>Show Local Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1673"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1687"/>
         <source>Compile Python File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1693"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1707"/>
         <source>Compile Current Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1388"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1402"/>
         <source>&lt;h3&gt;Device Version Information&lt;/h3&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1397"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1411"/>
         <source>No version information available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1399"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1413"/>
         <source>Device Version Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1422"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1436"/>
         <source>unknown</source>
         <translation type="unfinished">未知</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1426"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1440"/>
         <source>Device Implementation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1426"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1440"/>
         <source>&lt;h3&gt;Device Implementation Information&lt;/h3&gt;&lt;p&gt;This device contains &lt;b&gt;{0} {1}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1452"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1466"/>
         <source>&lt;p&gt;The time of the connected device was synchronized with the local time.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1475"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1489"/>
         <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1483"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1497"/>
         <source>&lt;h3&gt;Device Date and Time&lt;/h3&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1500"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1514"/>
         <source>Device Date and Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1513"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1527"/>
         <source>Local Date and Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1513"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1527"/>
         <source>&lt;h3&gt;Local Date and Time&lt;/h3&gt;&lt;table&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{0}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td&gt;{1}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1581"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1595"/>
         <source>Error handling device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1581"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1595"/>
         <source>&lt;p&gt;There was an error communicating with the connected device.&lt;/p&gt;&lt;p&gt;Method: {0}&lt;/p&gt;&lt;p&gt;Message: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1621"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1635"/>
         <source>The MicroPython cross compiler &lt;b&gt;mpy-cross&lt;/b&gt; cannot be found. Ensure it is in the search path or configure it on the MicroPython configuration page.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1643"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1657"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1653"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1667"/>
         <source>The Python file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1663"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1677"/>
         <source>&apos;mpy-cross&apos; Output</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1686"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1700"/>
         <source>The current editor does not contain a Python file. Aborting...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -48976,114 +48976,114 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1181"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1195"/>
         <source>&#xc2;&#xb5;Py Chart</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1264"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1278"/>
         <source>&#xc2;&#xb5;Py Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1365"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1379"/>
         <source>Show Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1378"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1392"/>
         <source>Configure</source>
         <translation type="unfinished">配置</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1339"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1353"/>
         <source>Show Time</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1358"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1372"/>
         <source>Download Firmware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1556"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1570"/>
         <source>Date and Time</source>
         <translation type="unfinished">日期和时间</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1539"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1553"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Date&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{0}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Time&lt;/b&gt;&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{3}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1556"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1570"/>
         <source>&lt;table&gt;&lt;tr&gt;&lt;th&gt;Local Date and Time&lt;/th&gt;&lt;th&gt;Device Date and Time&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td align=&apos;center&apos;&gt;{0} {1}&lt;/td&gt;&lt;td align=&apos;center&apos;&gt;{2}&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="410"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="412"/>
         <source>Unknown MicroPython Device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1375"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1389"/>
         <source>Ignored Serial Devices</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1304"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1318"/>
         <source>Downloads</source>
         <translation type="unfinished">下载</translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="323"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="325"/>
         <source>{0} - {1} ({2})</source>
         <comment>board name, description, port name</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="382"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="384"/>
         <source>&lt;p&gt;Detected these unknown serial devices&lt;/p&gt;&lt;ul&gt;&lt;li&gt;{0}&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Please report them together with the board name and a short description to &lt;a href=&quot;mailto:{1}&quot;&gt; the eric bug reporting address&lt;/a&gt; if it is a MicroPython board.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="382"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="384"/>
         <source>{0} (0x{1:04x}/0x{2:04x})</source>
         <comment>description, VId, PId</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="410"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="412"/>
         <source>Would you like to add them to the list of manually configured devices?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1373"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1387"/>
         <source>Manage Unknown Devices</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1778"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1792"/>
         <source>Add Unknown Devices</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1778"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1792"/>
         <source>Select the devices to be added:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="1370"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="1384"/>
         <source>Flash UF2 Device</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../MicroPython/MicroPythonWidget.py" line="350"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="352"/>
         <source>Manual Selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../MicroPython/MicroPythonWidget.py" line="344"/>
+        <location filename="../MicroPython/MicroPythonWidget.py" line="346"/>
         <source>
 %n unknown device(s) for manual selection.</source>
         <translation type="unfinished">
@@ -49283,599 +49283,599 @@
 <context>
     <name>MiniEditor</name>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>New</source>
         <translation>新建</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>&amp;New</source>
         <translation>新建(&amp;N)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="545"/>
+        <location filename="../QScintilla/MiniEditor.py" line="546"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="551"/>
-        <source>Open an empty editor window</source>
-        <translation>打开一个空白编辑器窗口</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="552"/>
+        <source>Open an empty editor window</source>
+        <translation>打开一个空白编辑器窗口</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="553"/>
         <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="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>Open</source>
         <translation>打开</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>&amp;Open...</source>
         <translation>打开(&amp;O)…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="559"/>
+        <location filename="../QScintilla/MiniEditor.py" line="560"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="565"/>
-        <source>Open a file</source>
-        <translation>打开一个文件</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="566"/>
+        <source>Open a file</source>
+        <translation>打开一个文件</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="567"/>
         <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;打开一个文件&lt;/b&gt;&lt;p&gt;将询问要打开的文件名称。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>Save</source>
         <translation>保存</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>&amp;Save</source>
         <translation>保存(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="573"/>
+        <location filename="../QScintilla/MiniEditor.py" line="574"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation>Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="579"/>
-        <source>Save the current file</source>
-        <translation>保存当前文件</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="580"/>
+        <source>Save the current file</source>
+        <translation>保存当前文件</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="581"/>
         <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="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Save as</source>
         <translation>另存为</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Save &amp;as...</source>
         <translation>另存为(&amp;A)…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="587"/>
+        <location filename="../QScintilla/MiniEditor.py" line="588"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="593"/>
+        <location filename="../QScintilla/MiniEditor.py" line="594"/>
         <source>Save the current file to a new one</source>
         <translation>将当前文件保存到一个新文件中</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="595"/>
+        <location filename="../QScintilla/MiniEditor.py" line="596"/>
         <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="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>Close</source>
         <translation>关闭</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>&amp;Close</source>
         <translation>关闭(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="618"/>
+        <location filename="../QScintilla/MiniEditor.py" line="619"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="624"/>
-        <source>Close the editor window</source>
-        <translation>关闭编辑器窗口</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="625"/>
+        <source>Close the editor window</source>
+        <translation>关闭编辑器窗口</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="626"/>
         <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="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>Print</source>
         <translation>打印</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>&amp;Print</source>
         <translation>打印(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="632"/>
+        <location filename="../QScintilla/MiniEditor.py" line="633"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation>Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="638"/>
-        <source>Print the current file</source>
-        <translation>打印当前文件</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="639"/>
+        <source>Print the current file</source>
+        <translation>打印当前文件</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="640"/>
         <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;打印文件&lt;/b&gt;&lt;p&gt;打印当前文件的内容。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="646"/>
+        <location filename="../QScintilla/MiniEditor.py" line="647"/>
         <source>Print Preview</source>
         <translation>打印预览</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="651"/>
+        <location filename="../QScintilla/MiniEditor.py" line="652"/>
         <source>Print preview of the current file</source>
         <translation>当前文件的打印预览</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="653"/>
+        <location filename="../QScintilla/MiniEditor.py" line="654"/>
         <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;打印预览&lt;/b&gt;&lt;p&gt;当前文件的打印预览。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Undo</source>
         <translation>撤消</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>&amp;Undo</source>
         <translation>撤消(&amp;U)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="664"/>
+        <location filename="../QScintilla/MiniEditor.py" line="665"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="671"/>
-        <source>Undo the last change</source>
-        <translation>撤消最后一次更改</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="672"/>
+        <source>Undo the last change</source>
+        <translation>撤消最后一次更改</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="673"/>
         <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="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>Redo</source>
         <translation>重做</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>&amp;Redo</source>
         <translation>重做(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="679"/>
+        <location filename="../QScintilla/MiniEditor.py" line="680"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="685"/>
+        <location filename="../QScintilla/MiniEditor.py" line="686"/>
         <source>Redo the last change</source>
         <translation>重做最后一次更改</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="686"/>
+        <location filename="../QScintilla/MiniEditor.py" line="687"/>
         <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="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Cut</source>
         <translation>剪切</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Cu&amp;t</source>
         <translation>剪切(&amp;t)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="693"/>
+        <location filename="../QScintilla/MiniEditor.py" line="694"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="700"/>
-        <source>Cut the selection</source>
-        <translation>剪切所选内容</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="701"/>
+        <source>Cut the selection</source>
+        <translation>剪切所选内容</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="702"/>
         <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="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Copy</source>
         <translation>复制</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>&amp;Copy</source>
         <translation>复制(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="709"/>
+        <location filename="../QScintilla/MiniEditor.py" line="710"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="716"/>
-        <source>Copy the selection</source>
-        <translation>复制所选内容</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="717"/>
+        <source>Copy the selection</source>
+        <translation>复制所选内容</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="718"/>
         <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="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Paste</source>
         <translation>粘贴</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>&amp;Paste</source>
         <translation>粘贴(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="725"/>
+        <location filename="../QScintilla/MiniEditor.py" line="726"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="732"/>
+        <location filename="../QScintilla/MiniEditor.py" line="733"/>
         <source>Paste the last cut/copied text</source>
         <translation>粘贴最近剪切或复制的文本</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="734"/>
+        <location filename="../QScintilla/MiniEditor.py" line="735"/>
         <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="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Clear</source>
         <translation>清除</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Cl&amp;ear</source>
         <translation>清除(&amp;E)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="742"/>
+        <location filename="../QScintilla/MiniEditor.py" line="743"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="749"/>
-        <source>Clear all text</source>
-        <translation>清除所有文本</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="750"/>
+        <source>Clear all text</source>
+        <translation>清除所有文本</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="751"/>
         <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="../QScintilla/MiniEditor.py" line="2353"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2354"/>
         <source>About</source>
         <translation>关于</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2353"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2354"/>
         <source>&amp;About</source>
         <translation>关于(&amp;A)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2357"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2358"/>
         <source>Display information about this software</source>
         <translation>显示软件信息</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2359"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2360"/>
         <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="2365"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2366"/>
         <source>About Qt</source>
         <translation>关于 Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2365"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2366"/>
         <source>About &amp;Qt</source>
         <translation>关于 &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2369"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2370"/>
         <source>Display information about the Qt toolkit</source>
         <translation>显示 Qt 工具包信息</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2371"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2372"/>
         <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="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>What&apos;s This?</source>
         <translation>这是什么?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>&amp;What&apos;s This?</source>
         <translation>这是什么(&amp;W)?</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2378"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2379"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2384"/>
-        <source>Context sensitive help</source>
-        <translation>背景帮助</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/MiniEditor.py" line="2385"/>
+        <source>Context sensitive help</source>
+        <translation>背景帮助</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/MiniEditor.py" line="2386"/>
         <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="2401"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2402"/>
         <source>&amp;File</source>
         <translation>文件(&amp;F)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2413"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2414"/>
         <source>&amp;Edit</source>
         <translation>编辑(&amp;E)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2439"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2440"/>
         <source>&amp;Help</source>
         <translation>帮助(&amp;H)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2451"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2452"/>
         <source>File</source>
         <translation>文件</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2464"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2465"/>
         <source>Edit</source>
         <translation>编辑</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2474"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2475"/>
         <source>Find</source>
         <translation>查找</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2488"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2489"/>
         <source>Help</source>
         <translation>帮助</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2509"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2510"/>
         <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="2516"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2517"/>
         <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="2523"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2524"/>
         <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="2540"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2541"/>
         <source>Ready</source>
         <translation>就绪</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2622"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2623"/>
         <source>File loaded</source>
         <translation>文件已载入</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2708"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2709"/>
         <source>File saved</source>
         <translation>文件已保存</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3055"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3066"/>
         <source>Untitled</source>
         <translation>未命名</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2737"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2738"/>
         <source>Mini Editor</source>
         <translation>迷你编辑器</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3018"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3026"/>
         <source>Printing...</source>
         <translation>打印中…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3036"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3047"/>
         <source>Printing completed</source>
         <translation>打印已完成</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3038"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3049"/>
         <source>Error while printing</source>
         <translation>打印时出错</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3041"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3052"/>
         <source>Printing aborted</source>
         <translation>打印失败</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3096"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3107"/>
         <source>Select all</source>
         <translation>全选</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3097"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3108"/>
         <source>Deselect all</source>
         <translation>全部取消选择</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3111"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3122"/>
         <source>Languages</source>
         <translation>语言</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3114"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3125"/>
         <source>No Language</source>
         <translation>无语言</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3138"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3149"/>
         <source>Guessed</source>
         <translation>猜测</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3160"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3171"/>
         <source>Alternatives</source>
         <translation>备选</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3184"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3195"/>
         <source>Pygments Lexer</source>
         <translation>Pygments 词法分析器</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3184"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3195"/>
         <source>Select the Pygments lexer to apply.</source>
         <translation>选择要应用的 Pygments 词法分析器。</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2594"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2595"/>
         <source>Open File</source>
         <translation>打开文件</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="467"/>
+        <location filename="../QScintilla/MiniEditor.py" line="468"/>
         <source>Line: {0:5}</source>
         <translation>行:{0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="471"/>
+        <location filename="../QScintilla/MiniEditor.py" line="472"/>
         <source>Pos: {0:5}</source>
         <translation>列:{0:5}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2594"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2595"/>
         <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="2701"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2702"/>
         <source>Save File</source>
         <translation>保存文件</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2701"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2702"/>
         <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="2737"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2738"/>
         <source>{0}[*] - {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3156"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3167"/>
         <source>Alternatives ({0})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2567"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2568"/>
         <source>The document has unsaved changes.</source>
         <translation>文档有未保存的更改。</translation>
     </message>
@@ -49895,77 +49895,77 @@
         <translation type="obsolete">eric6 迷你编辑器</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save Copy</source>
         <translation>保存副本</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="603"/>
+        <location filename="../QScintilla/MiniEditor.py" line="604"/>
         <source>Save &amp;Copy...</source>
         <translation>保存副本(&amp;C)…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="608"/>
+        <location filename="../QScintilla/MiniEditor.py" line="609"/>
         <source>Save a copy of the current file</source>
         <translation>保存当前文件的一个副本</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="610"/>
+        <location filename="../QScintilla/MiniEditor.py" line="611"/>
         <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>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3698"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3709"/>
         <source>EditorConfig Properties</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="3698"/>
+        <location filename="../QScintilla/MiniEditor.py" line="3709"/>
         <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="2720"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2721"/>
         <source>[*] - {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="486"/>
+        <location filename="../QScintilla/MiniEditor.py" line="487"/>
         <source>Language: {0}</source>
         <translation type="unfinished">语言:{0}</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2431"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2432"/>
         <source>&amp;View</source>
         <translation type="unfinished">视图(&amp;V)</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2481"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2482"/>
         <source>View</source>
         <translation type="unfinished">视图</translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2501"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2502"/>
         <source>&lt;p&gt;This part of the status bar displays the editor language.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2534"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2535"/>
         <source>&lt;p&gt;This part of the status bar allows zooming the editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="397"/>
+        <location filename="../QScintilla/MiniEditor.py" line="398"/>
         <source>About eric Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="397"/>
+        <location filename="../QScintilla/MiniEditor.py" line="398"/>
         <source>The eric 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 type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/MiniEditor.py" line="2567"/>
+        <location filename="../QScintilla/MiniEditor.py" line="2568"/>
         <source>eric Mini Editor</source>
         <translation type="unfinished"></translation>
     </message>
@@ -50460,12 +50460,12 @@
 <context>
     <name>MouseUtilities</name>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="29"/>
+        <location filename="../Utilities/MouseUtilities.py" line="31"/>
         <source>Shift</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="31"/>
+        <location filename="../Utilities/MouseUtilities.py" line="33"/>
         <source>Alt</source>
         <translation type="unfinished"></translation>
     </message>
@@ -50475,37 +50475,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="33"/>
+        <location filename="../Utilities/MouseUtilities.py" line="35"/>
         <source>Ctrl</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="35"/>
+        <location filename="../Utilities/MouseUtilities.py" line="37"/>
         <source>Meta</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Utilities/MouseUtilities.py" line="43"/>
-        <source>Left Button</source>
-        <translation>左键</translation>
-    </message>
-    <message>
-        <location filename="../Utilities/MouseUtilities.py" line="45"/>
-        <source>Right Button</source>
-        <translation>右键</translation>
-    </message>
-    <message>
         <location filename="../Utilities/MouseUtilities.py" line="47"/>
-        <source>Middle Button</source>
-        <translation>中键</translation>
+        <source>Left Button</source>
+        <translation>左键</translation>
     </message>
     <message>
         <location filename="../Utilities/MouseUtilities.py" line="49"/>
-        <source>Extra Button 1</source>
-        <translation type="unfinished"></translation>
+        <source>Right Button</source>
+        <translation>右键</translation>
     </message>
     <message>
         <location filename="../Utilities/MouseUtilities.py" line="51"/>
+        <source>Middle Button</source>
+        <translation>中键</translation>
+    </message>
+    <message>
+        <location filename="../Utilities/MouseUtilities.py" line="53"/>
+        <source>Extra Button 1</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Utilities/MouseUtilities.py" line="55"/>
         <source>Extra Button 2</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51031,32 +51031,32 @@
 <context>
     <name>NavigationBar</name>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="55"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="56"/>
         <source>Move one screen backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="65"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="67"/>
         <source>Move one screen forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="83"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="86"/>
         <source>Move to the initial screen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="95"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="99"/>
         <source>Exit Fullscreen</source>
         <translation>退出全屏</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="273"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="281"/>
         <source>Clear History</source>
         <translation type="unfinished">清除历史记录</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="108"/>
+        <location filename="../WebBrowser/Navigation/NavigationBar.py" line="113"/>
         <source>Main Menu</source>
         <translation>主菜单</translation>
     </message>
@@ -51102,12 +51102,12 @@
         <translation type="unfinished">&lt;b&gt;输入“{0}”的用户名和密码&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/NetworkManager.py" line="336"/>
+        <location filename="../WebBrowser/Network/NetworkManager.py" line="338"/>
         <source>Authentication required</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/NetworkManager.py" line="337"/>
+        <location filename="../WebBrowser/Network/NetworkManager.py" line="339"/>
         <source>Authentication is required to access:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -51778,27 +51778,27 @@
         <translation>交换字节序</translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="184"/>
+        <location filename="../UI/NumbersWidget.py" line="194"/>
         <source>Auto</source>
         <translation>自动</translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="185"/>
+        <location filename="../UI/NumbersWidget.py" line="195"/>
         <source>Dec</source>
         <translation>十</translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="186"/>
+        <location filename="../UI/NumbersWidget.py" line="196"/>
         <source>Hex</source>
         <translation>十六</translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="187"/>
+        <location filename="../UI/NumbersWidget.py" line="197"/>
         <source>Oct</source>
         <translation>八</translation>
     </message>
     <message>
-        <location filename="../UI/NumbersWidget.py" line="188"/>
+        <location filename="../UI/NumbersWidget.py" line="198"/>
         <source>Bin</source>
         <translation>二</translation>
     </message>
@@ -52045,7 +52045,7 @@
 <context>
     <name>OpenSearchEngineModel</name>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="141"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="148"/>
         <source>&lt;strong&gt;Provides contextual suggestions&lt;/strong&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52060,12 +52060,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="149"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="156"/>
         <source>Comma-separated list of keywords that may be entered in the location bar followed by search terms to search with this engine</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="136"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchEngineModel.py" line="143"/>
         <source>&lt;strong&gt;Description:&lt;/strong&gt; {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52073,7 +52073,7 @@
 <context>
     <name>OpenSearchManager</name>
     <message>
-        <location filename="../WebBrowser/OpenSearch/OpenSearchManager.py" line="462"/>
+        <location filename="../WebBrowser/OpenSearch/OpenSearchManager.py" line="463"/>
         <source>&lt;p&gt;Do you want to add the following engine to your list of search engines?&lt;br/&gt;&lt;br/&gt;Name: {0}&lt;br/&gt;Searches on: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52694,12 +52694,12 @@
         <translation type="unfinished">错误</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="146"/>
+        <location filename="../PipInterface/PipDialog.py" line="156"/>
         <source>Process Generation Error</source>
         <translation type="unfinished">进程生成错误</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipDialog.py" line="146"/>
+        <location filename="../PipInterface/PipDialog.py" line="156"/>
         <source>The process {0} could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -52775,7 +52775,7 @@
 <context>
     <name>PipFreezeDialog</name>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="225"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="227"/>
         <source>Generate Requirements</source>
         <translation type="unfinished">生成必要文件</translation>
     </message>
@@ -52860,27 +52860,27 @@
         <translation type="unfinished">刷新(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="225"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="227"/>
         <source>Text Files (*.txt);;All Files (*)</source>
         <translation type="unfinished">文本文件 (*.txt);;所有文件 (*)</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="114"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="116"/>
         <source>The requirements were changed. Do you want to overwrite these changes?</source>
         <translation type="unfinished">必要文件已改变。覆盖此更变?</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="156"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="158"/>
         <source>No output generated by &apos;pip freeze&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="193"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="195"/>
         <source>The file &lt;b&gt;{0}&lt;/b&gt; already exists. Do you want to overwrite it?</source>
         <translation type="unfinished">文件 &lt;b&gt;{0}&lt;/b&gt; 已存在。覆盖?</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipFreezeDialog.py" line="205"/>
+        <location filename="../PipInterface/PipFreezeDialog.py" line="207"/>
         <source>&lt;p&gt;The requirements could not be written to &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;必要文件无法写入&lt;b&gt;{0}&lt;/b&gt;。&lt;/p&gt;&lt;p&gt;原因: {1}&lt;/P&gt;</translation>
     </message>
@@ -53101,32 +53101,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="190"/>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="193"/>
         <source>any</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="229"/>
-        <source>B</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PipInterface/PipPackageDetailsDialog.py" line="232"/>
-        <source>KB</source>
+        <source>B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackageDetailsDialog.py" line="235"/>
-        <source>MB</source>
-        <translation type="unfinished">兆字节</translation>
+        <source>KB</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackageDetailsDialog.py" line="238"/>
+        <source>MB</source>
+        <translation type="unfinished">兆字节</translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="241"/>
         <source>GB</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="239"/>
+        <location filename="../PipInterface/PipPackageDetailsDialog.py" line="242"/>
         <source>{0:.1f} {1}</source>
         <comment>value, unit</comment>
         <translation type="unfinished"></translation>
@@ -53268,7 +53268,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="189"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="192"/>
         <source>Name:</source>
         <translation type="unfinished">名称:</translation>
     </message>
@@ -53283,7 +53283,7 @@
         <translation type="unfinished">输入搜索词</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="193"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="196"/>
         <source>Summary:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53313,84 +53313,84 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="190"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="193"/>
         <source>Version:</source>
         <translation type="unfinished">版本:</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="191"/>
-        <source>Location:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="192"/>
-        <source>Requires:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="194"/>
-        <source>Homepage:</source>
+        <source>Location:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="195"/>
-        <source>Author:</source>
-        <translation type="unfinished">作者:</translation>
-    </message>
-    <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="196"/>
-        <source>Author Email:</source>
+        <source>Requires:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="197"/>
-        <source>License:</source>
+        <source>Homepage:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="198"/>
-        <source>Metadata Version:</source>
-        <translation type="unfinished"></translation>
+        <source>Author:</source>
+        <translation type="unfinished">作者:</translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="199"/>
-        <source>Installer:</source>
+        <source>Author Email:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="200"/>
-        <source>Classifiers:</source>
+        <source>License:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="201"/>
-        <source>Entry Points:</source>
+        <source>Metadata Version:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PipInterface/PipPackagesWidget.py" line="202"/>
+        <source>Installer:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="203"/>
+        <source>Classifiers:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="204"/>
+        <source>Entry Points:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="205"/>
         <source>Files:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="351"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="360"/>
         <source>Getting installed packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="366"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="375"/>
         <source>Getting outdated packages...</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../PipInterface/PipPackagesWidget.py" line="776"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="791"/>
         <source>%n package(s) found.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
         <source>Search PyPI</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53400,92 +53400,92 @@
         <translation type="obsolete">错误:{0}</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="944"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="959"/>
         <source>&lt;p&gt;No package details info for &lt;b&gt;{0}&lt;/b&gt; available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="960"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="975"/>
         <source>Install Pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="963"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="978"/>
         <source>Install Pip to User-Site</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="966"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="981"/>
         <source>Repair Pip</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1083"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1098"/>
         <source>Install Packages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="973"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="988"/>
         <source>Install Local Package</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="977"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="992"/>
         <source>Install Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="980"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="995"/>
         <source>Uninstall Requirements</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="983"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="998"/>
         <source>Generate Requirements...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1001"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1016"/>
         <source>Edit User Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1004"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1019"/>
         <source>Edit Environment Configuration...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1009"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1024"/>
         <source>Configure...</source>
         <translation type="unfinished">配置…</translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1194"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1209"/>
         <source>Edit Configuration</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="1194"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1209"/>
         <source>No valid configuration path determined. Aborting</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="987"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1002"/>
         <source>Show Cache Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="990"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1005"/>
         <source>Show Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="993"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1008"/>
         <source>Remove Cached Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="996"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="1011"/>
         <source>Purge Cache...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53495,17 +53495,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="759"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="774"/>
         <source>&lt;p&gt;Received an error while searching for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="778"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="793"/>
         <source>Showing first 20 packages found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PipInterface/PipPackagesWidget.py" line="785"/>
+        <location filename="../PipInterface/PipPackagesWidget.py" line="800"/>
         <source>&lt;p&gt;There were no results for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53768,17 +53768,17 @@
         <translation>不激活</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInfoDialog.py" line="101"/>
+        <location filename="../PluginManager/PluginInfoDialog.py" line="105"/>
         <source>Yes</source>
         <translation>是</translation>
     </message>
     <message>
+        <location filename="../PluginManager/PluginInfoDialog.py" line="78"/>
+        <source>No</source>
+        <translation>否</translation>
+    </message>
+    <message>
         <location filename="../PluginManager/PluginInfoDialog.py" line="77"/>
-        <source>No</source>
-        <translation>否</translation>
-    </message>
-    <message>
-        <location filename="../PluginManager/PluginInfoDialog.py" line="76"/>
         <source>On-Demand</source>
         <translation type="unfinished"></translation>
     </message>
@@ -53854,42 +53854,42 @@
         <translation>下一步 &gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="75"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="77"/>
         <source>User plugins directory</source>
         <translation>用户插件文件夹</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="81"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="83"/>
         <source>Global plugins directory</source>
         <translation>全局插件文件夹</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="162"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="164"/>
         <source>Select plugin ZIP-archives</source>
         <translation>选择插件 ZIP 档案</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="162"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="164"/>
         <source>Plugin archive (*.zip)</source>
         <translation>插件存档 (*.zip)</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="236"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="238"/>
         <source>  ok</source>
         <translation>  确定</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="243"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="245"/>
         <source>The plugins were installed successfully.</source>
         <translation>插件安装成功。</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="246"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="248"/>
         <source>Some plugins could not be installed.</source>
         <translation>某些插件无法安装。</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="505"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="507"/>
         <source>Unspecific exception installing plugin.</source>
         <translation>安装插件未指定异常。</translation>
     </message>
@@ -53899,7 +53899,7 @@
         <translation>安装</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="145"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="147"/>
         <source>Plugin ZIP-Archives:
 {0}
 
@@ -53908,47 +53908,47 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="231"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="233"/>
         <source>Installing {0} ...</source>
         <translation>正在安装 {0} …</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="274"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="276"/>
         <source>&lt;p&gt;The archive file &lt;b&gt;{0}&lt;/b&gt; does not exist. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="315"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="317"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; is not a valid plugin ZIP-archive. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="294"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="296"/>
         <source>&lt;p&gt;The destination directory &lt;b&gt;{0}&lt;/b&gt; is not writeable. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="364"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="366"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; does not contain a &apos;packageName&apos; attribute. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="374"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="376"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; does not conform with the PyQt v2 API. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="389"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="391"/>
         <source>&lt;p&gt;The plugin package &lt;b&gt;{0}&lt;/b&gt; exists. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="402"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="404"/>
         <source>&lt;p&gt;The plugin module &lt;b&gt;{0}&lt;/b&gt; exists. Aborting...&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginInstallDialog.py" line="496"/>
+        <location filename="../PluginManager/PluginInstallDialog.py" line="498"/>
         <source>Error installing plugin. Reason: {0}</source>
         <translation>安装插件出错。原因:{0}</translation>
     </message>
@@ -53996,22 +53996,22 @@
         <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="../PluginManager/PluginManager.py" line="1292"/>
+        <location filename="../PluginManager/PluginManager.py" line="1293"/>
         <source>Error downloading file</source>
         <translation>下载文件出错</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1292"/>
+        <location filename="../PluginManager/PluginManager.py" line="1293"/>
         <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;无法从 {0} 下载指定文件。&lt;/p&gt;&lt;p&gt;错误:{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1329"/>
+        <location filename="../PluginManager/PluginManager.py" line="1330"/>
         <source>New plugin versions available</source>
         <translation>新插件版本可用</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginManager.py" line="1329"/>
+        <location filename="../PluginManager/PluginManager.py" line="1330"/>
         <source>&lt;p&gt;There are new plug-ins or plug-in updates available. Use the plug-in repository dialog to get them.&lt;/p&gt;</source>
         <translation>&lt;p&gt;有新的插件或插件更新可用。请使用插件仓库对话框来获取它们。&lt;/p&gt;</translation>
     </message>
@@ -54295,54 +54295,54 @@
         <translation>关闭与安装</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="359"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="362"/>
         <source>Download Plugin Files</source>
         <translation>下载插件文件</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="359"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="362"/>
         <source>The requested plugins were downloaded.</source>
         <translation>所需插件已下载。</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="415"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="418"/>
         <source>Read plugins repository file</source>
         <translation>读取插件仓库文件</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="423"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="426"/>
         <source>No plugin repository file available.
 Select Update.</source>
         <translation>无有效的插件仓库文件。
 选择更新。</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="484"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="491"/>
         <source>Error downloading file</source>
         <translation>下载文件出错</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="568"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="575"/>
         <source>Stable</source>
         <translation>稳定</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="574"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="581"/>
         <source>Unstable</source>
         <translation>不稳定</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="586"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="593"/>
         <source>Unknown</source>
         <translation>未知</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="415"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="418"/>
         <source>&lt;p&gt;The plugins repository file &lt;b&gt;{0}&lt;/b&gt; could not be read. Select Update&lt;/p&gt;</source>
         <translation>&lt;p&gt;插件仓库文件 &lt;b&gt;{0}&lt;/b&gt; 无法读取。选择更新&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="484"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="491"/>
         <source>&lt;p&gt;Could not download the requested file from {0}.&lt;/p&gt;&lt;p&gt;Error: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;无法从 {0} 下载指定文件。&lt;/p&gt;&lt;p&gt;错误:{1}&lt;/p&gt;</translation>
     </message>
@@ -54352,62 +54352,62 @@
         <translation>下载并安装</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="407"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="410"/>
         <source>Plugins Repository URL Changed</source>
         <translation>插件仓库 URL 已改变</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="407"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="410"/>
         <source>The URL of the Plugins Repository has changed. Select the &quot;Update&quot; button to get the new repository file.</source>
         <translation>插件仓库的 URL 已经改变。选择“更新”按钮来获取新的仓库文件。</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="117"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="120"/>
         <source>Hide</source>
         <translation>隐藏</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="119"/>
-        <source>Hide Selected</source>
-        <translation>隐藏选中项</translation>
-    </message>
-    <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="122"/>
-        <source>Show All</source>
-        <translation>显示全部</translation>
+        <source>Hide Selected</source>
+        <translation>隐藏选中项</translation>
     </message>
     <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="125"/>
+        <source>Show All</source>
+        <translation>显示全部</translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="128"/>
         <source>Cleanup Downloads</source>
         <translation>清理下载</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="600"/>
-        <source>up-to-date</source>
-        <translation>最新</translation>
-    </message>
-    <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="603"/>
-        <source>new download available</source>
-        <translation>新的下载可用</translation>
-    </message>
-    <message>
         <location filename="../PluginManager/PluginRepositoryDialog.py" line="607"/>
+        <source>up-to-date</source>
+        <translation>最新</translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="610"/>
+        <source>new download available</source>
+        <translation>新的下载可用</translation>
+    </message>
+    <message>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="614"/>
         <source>update installable</source>
         <translation>更新可安装</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="611"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="618"/>
         <source>updated download available</source>
         <translation>更新下载可用</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="979"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="986"/>
         <source>Cleanup of Plugin Downloads</source>
         <translation>清理插件安装</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="979"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="986"/>
         <source>&lt;p&gt;The plugin download &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;插件下载 &lt;b&gt;{0}&lt;/b&gt; 无法删除。&lt;/p&gt;&lt;p&gt;原因:{1}&lt;/p&gt;</translation>
     </message>
@@ -54427,27 +54427,27 @@
         <translation type="obsolete">计算机已离线。</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="430"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="433"/>
         <source>New: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="432"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="435"/>
         <source>Local Updates: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="434"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="437"/>
         <source>Remote Updates: &lt;b&gt;{0}&lt;/b&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="580"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="587"/>
         <source>Obsolete</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="615"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="622"/>
         <source>error determining status</source>
         <translation type="unfinished"></translation>
     </message>
@@ -54455,17 +54455,17 @@
 <context>
     <name>PluginRepositoryWindow</name>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>Process Generation Error</source>
         <translation>进程生成错误</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>OK</source>
         <translation>确定</translation>
     </message>
     <message>
-        <location filename="../PluginManager/PluginRepositoryDialog.py" line="863"/>
+        <location filename="../PluginManager/PluginRepositoryDialog.py" line="870"/>
         <source>&lt;p&gt;Could not start the process.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;无法启动进程。&lt;br&gt;请确保它作为 &lt;b&gt;{0}&lt;/b&gt; 可用。&lt;/p&gt;</translation>
     </message>
@@ -54817,17 +54817,17 @@
 <context>
     <name>Preferences</name>
     <message>
-        <location filename="../Preferences/__init__.py" line="1640"/>
+        <location filename="../Preferences/__init__.py" line="1649"/>
         <source>Export Preferences</source>
         <translation>导出首选项</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1668"/>
+        <location filename="../Preferences/__init__.py" line="1677"/>
         <source>Import Preferences</source>
         <translation>导入首选项</translation>
     </message>
     <message>
-        <location filename="../Preferences/__init__.py" line="1668"/>
+        <location filename="../Preferences/__init__.py" line="1677"/>
         <source>Properties File (*.ini);;All Files (*)</source>
         <translation>属性文件 (*.ini);;所有文件 (*)</translation>
     </message>
@@ -54848,7 +54848,7 @@
 <context>
     <name>PreviewModel</name>
     <message>
-        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="432"/>
+        <location filename="../Preferences/ConfigurationPages/DebuggerGeneralPage.py" line="434"/>
         <source>Variable Name</source>
         <translation type="unfinished"></translation>
     </message>
@@ -54856,27 +54856,27 @@
 <context>
     <name>PreviewProcessingThread</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="463"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="466"/>
         <source>&lt;p&gt;No preview available for this type of file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="632"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="635"/>
         <source>&lt;p&gt;ReStructuredText preview requires the &lt;b&gt;python-docutils&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager, &apos;pip install docutils&apos; or see &lt;a href=&quot;http://pypi.python.org/pypi/docutils&quot;&gt;this page.&lt;/a&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="572"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="575"/>
         <source>&lt;p&gt;ReStructuredText preview requires the &lt;b&gt;sphinx&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager,&apos;pip install Sphinx&apos; or see &lt;a href=&quot;http://pypi.python.org/pypi/Sphinx&quot;&gt;this page.&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Alternatively you may disable Sphinx usage on the Editor, Filehandling configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="675"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="678"/>
         <source>&lt;p&gt;Markdown preview requires the &lt;b&gt;Markdown&lt;/b&gt; package.&lt;br/&gt;Install it with your package manager, &apos;pip install Markdown&apos; or see &lt;a href=&quot;http://pythonhosted.org/Markdown/install.html&quot;&gt;installation instructions.&lt;/a&gt;&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="647"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="650"/>
         <source>&lt;p&gt;Docutils returned an error:&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -54884,42 +54884,42 @@
 <context>
     <name>PreviewerHTML</name>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="75"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="78"/>
         <source>Select to enable JavaScript for HTML previews</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="74"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="77"/>
         <source>Enable JavaScript</source>
         <translation>允许 JavaScript</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="81"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="84"/>
         <source>Select to enable support for Server Side Includes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="79"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="82"/>
         <source>Enable Server Side Includes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="194"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="197"/>
         <source>&lt;p&gt;No preview available for this type of file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="253"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="256"/>
         <source>Preview - {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="255"/>
+        <location filename="../UI/Previewers/PreviewerHTML.py" line="258"/>
         <source>Preview</source>
         <translation>预览</translation>
     </message>
     <message>
-        <location filename="../UI/Previewers/PreviewerHTML.py" line="57"/>
+        <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 type="unfinished"></translation>
     </message>
@@ -54970,17 +54970,17 @@
         <translation>PDF 文件 (*.pdf);;所有文件 (*)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="76"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="80"/>
         <source>Portrait</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="78"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="82"/>
         <source>Landscape</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="79"/>
+        <location filename="../WebBrowser/Tools/PrintToPdfDialog.py" line="83"/>
         <source>{0}, {1}</source>
         <comment>page size, page orientation</comment>
         <translation type="unfinished"></translation>
@@ -55185,17 +55185,17 @@
         <translation>(未配置)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="436"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="437"/>
         <source>(not executable)</source>
         <translation>(不可执行)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="479"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="481"/>
         <source>(not found)</source>
         <translation>(未找到)</translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="433"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="434"/>
         <source>(unknown)</source>
         <translation>(未知)</translation>
     </message>
@@ -55285,7 +55285,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ProgramsDialog.py" line="398"/>
+        <location filename="../Preferences/ProgramsDialog.py" line="399"/>
         <source>(module not found)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -56734,32 +56734,32 @@
 <context>
     <name>ProjectBaseBrowser</name>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="128"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="132"/>
         <source>Open</source>
         <translation>打开</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="496"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="503"/>
         <source>local</source>
         <translation>本地</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="537"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="544"/>
         <source>Select entries</source>
         <translation>选择条目</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="537"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="544"/>
         <source>There were no matching entries found.</source>
         <translation>未找到匹配的条目。</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="294"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="300"/>
         <source>Delete directories</source>
         <translation>删除目录</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBaseBrowser.py" line="294"/>
+        <location filename="../Project/ProjectBaseBrowser.py" line="300"/>
         <source>Do you really want to delete these directories from the project?</source>
         <translation>确定要从项目中删除这些目录吗?</translation>
     </message>
@@ -56820,7 +56820,7 @@
         <translation>版本控制系统状态</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectBrowserModel.py" line="797"/>
+        <location filename="../Project/ProjectBrowserModel.py" line="803"/>
         <source>local</source>
         <translation>本地</translation>
     </message>
@@ -57019,7 +57019,7 @@
 <context>
     <name>ProjectFormsBrowser</name>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1009"/>
         <source>Forms</source>
         <translation>窗体</translation>
     </message>
@@ -57189,42 +57189,42 @@
         <translation>确定要从项目中删除这些窗体?</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="784"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="788"/>
         <source>Form Compilation</source>
         <translation>窗体编译</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="768"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="772"/>
         <source>The compilation of the form file was successful.</source>
         <translation>窗体文件编译成功。</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="784"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="788"/>
         <source>The compilation of the form file failed.</source>
         <translation>窗体文件编译失败。</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="870"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="874"/>
         <source>Process Generation Error</source>
         <translation>进程生成错误</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="962"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="966"/>
         <source>Compiling forms...</source>
         <translation>正在编译窗体…</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>Abort</source>
         <translation>终止</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>Determining changed forms...</source>
         <translation>正在确定更改的窗体…</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1031"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1035"/>
         <source>Compiling changed forms...</source>
         <translation>正在编译更改的窗体…</translation>
     </message>
@@ -57239,12 +57239,12 @@
         <translation>&lt;p&gt;新窗体文件 &lt;b&gt;{0}&lt;/b&gt; 无法创建。&lt;br&gt;原因:{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="775"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="779"/>
         <source>&lt;p&gt;The compilation of the form file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;窗体文件编译失败。&lt;/p&gt;&lt;p&gt;原因:{0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="870"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="874"/>
         <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
         <translation type="unfinished">无法启动 {0}。请保证它处在搜索路径中。</translation>
     </message>
@@ -57299,7 +57299,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectFormsBrowser.py" line="1001"/>
+        <location filename="../Project/ProjectFormsBrowser.py" line="1005"/>
         <source>%v/%m Forms</source>
         <translation type="unfinished"></translation>
     </message>
@@ -57954,7 +57954,7 @@
 <context>
     <name>ProjectResourcesBrowser</name>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="861"/>
         <source>Resources</source>
         <translation>资源</translation>
     </message>
@@ -58054,42 +58054,42 @@
         <translation>确定要从项目中删除这些资源?</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="624"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="628"/>
         <source>Resource Compilation</source>
         <translation>资源编译</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="610"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="614"/>
         <source>The compilation of the resource file was successful.</source>
         <translation>资源文件编译成功。</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="624"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="628"/>
         <source>The compilation of the resource file failed.</source>
         <translation>资源文件编译失败。</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="713"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="717"/>
         <source>Process Generation Error</source>
         <translation>进程生成错误</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="779"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="783"/>
         <source>Compiling resources...</source>
         <translation>正在编译资源…</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>Abort</source>
         <translation>终止</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>Determining changed resources...</source>
         <translation>正在确认改变的资源…</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="889"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="893"/>
         <source>Compiling changed resources...</source>
         <translation>正在编译改变的资源…</translation>
     </message>
@@ -58104,17 +58104,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="617"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="621"/>
         <source>&lt;p&gt;The compilation of the resource file failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="713"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="717"/>
         <source>Could not start {0}.&lt;br&gt;Ensure that it is in the search path.</source>
         <translation>无法启动 {0}。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-        <location filename="../Project/ProjectResourcesBrowser.py" line="853"/>
+        <location filename="../Project/ProjectResourcesBrowser.py" line="857"/>
         <source>%v/%m Resources</source>
         <translation type="unfinished"></translation>
     </message>
@@ -59192,7 +59192,7 @@
         <translation>已执行</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="349"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="361"/>
         <source>Coverage</source>
         <translation>覆盖率</translation>
     </message>
@@ -59224,54 +59224,54 @@
         <translation>显示代码覆盖率行为的进程</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="61"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="63"/>
         <source>Annotate</source>
         <translation>注解</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="63"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="65"/>
         <source>Annotate all</source>
         <translation>注解全部</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="64"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="66"/>
         <source>Delete annotated files</source>
         <translation>删除已注解的文件</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="67"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="69"/>
         <source>Erase Coverage Info</source>
         <translation>擦除覆盖率信息</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>Annotating files...</source>
         <translation>正在注解文件…</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>Abort</source>
         <translation>终止</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="58"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="60"/>
         <source>Open</source>
         <translation>打开</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="243"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="246"/>
         <source>Parse Error</source>
         <translation>解析错误</translation>
     </message>
     <message numerus="yes">
-        <location filename="../DataViews/PyCoverageDialog.py" line="243"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="246"/>
         <source>%n file(s) could not be parsed. Coverage info for these is not available.</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message>
-        <location filename="../DataViews/PyCoverageDialog.py" line="345"/>
+        <location filename="../DataViews/PyCoverageDialog.py" line="357"/>
         <source>%v/%m Files</source>
         <translation type="unfinished">%v/%m 文件</translation>
     </message>
@@ -59279,7 +59279,7 @@
 <context>
     <name>PyProfileDialog</name>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="234"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="239"/>
         <source>Profile Results</source>
         <translation>剖析结果</translation>
     </message>
@@ -59360,57 +59360,57 @@
         <translation>显示剖析数据计算的进程</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="337"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="354"/>
         <source>Exclude Python Library</source>
         <translation>排除 Python 库</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="89"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="92"/>
         <source>Erase Profiling Info</source>
         <translation>擦除剖析信息</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="91"/>
-        <source>Erase Timing Info</source>
-        <translation>擦除时间信息</translation>
-    </message>
-    <message>
         <location filename="../DataViews/PyProfileDialog.py" line="94"/>
+        <source>Erase Timing Info</source>
+        <translation>擦除时间信息</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="97"/>
         <source>Erase All Infos</source>
         <translation>擦除所有信息</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="215"/>
-        <source>function calls</source>
-        <translation>函数调用</translation>
-    </message>
-    <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="218"/>
-        <source>primitive calls</source>
-        <translation>基本调用</translation>
-    </message>
-    <message>
         <location filename="../DataViews/PyProfileDialog.py" line="220"/>
+        <source>function calls</source>
+        <translation>函数调用</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="223"/>
+        <source>primitive calls</source>
+        <translation>基本调用</translation>
+    </message>
+    <message>
+        <location filename="../DataViews/PyProfileDialog.py" line="225"/>
         <source>CPU seconds</source>
         <translation>CPU 秒</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="246"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="251"/>
         <source>Loading Profiling Data</source>
         <translation>载入剖析数据</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="333"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="350"/>
         <source>Include Python Library</source>
         <translation>包含 Python 库</translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="234"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="239"/>
         <source>&lt;p&gt;There is no profiling data available for &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../DataViews/PyProfileDialog.py" line="246"/>
+        <location filename="../DataViews/PyProfileDialog.py" line="251"/>
         <source>&lt;p&gt;The profiling data could not be read from file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -60030,107 +60030,107 @@
         <translation>显示正则表达式下一个匹配的项</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="102"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="103"/>
         <source>Copy</source>
         <translation>复制</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="104"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="105"/>
         <source>Copy the regular expression to the clipboard</source>
         <translation>将正则表达式复制到剪贴板</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="188"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="190"/>
         <source>Named reference</source>
         <translation>命名的引用</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="182"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="184"/>
         <source>No named groups have been defined yet.</source>
         <translation>已命名的组还没有被定义。</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="188"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="190"/>
         <source>Select group name:</source>
         <translation>选择组名:</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="372"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="374"/>
         <source>Save regular expression</source>
         <translation>保存正则表达式</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="360"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="362"/>
         <source>RegExp Files (*.rx);;All Files (*)</source>
         <translation>正则表达式文件 (*.rx);;所有文件 (*)</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="360"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="362"/>
         <source>Load regular expression</source>
         <translation>载入正则表达式</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="414"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="416"/>
         <source>The regular expression is valid.</source>
         <translation>正则表达式有效。</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="578"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="581"/>
         <source>Error</source>
         <translation>错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="571"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="574"/>
         <source>Invalid regular expression: missing group name</source>
         <translation>无效的正则表达式:组名丢失</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="433"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="435"/>
         <source>A regular expression must be given.</source>
         <translation>必须给定一个正则表达式。</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="478"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="480"/>
         <source>Regexp</source>
         <translation>正则表达式</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="488"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="490"/>
         <source>Offset</source>
         <translation>偏移</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="496"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="498"/>
         <source>Captures</source>
         <translation>捕获</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="503"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="505"/>
         <source>Text</source>
         <translation>文本</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="506"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="508"/>
         <source>Characters</source>
         <translation>字符</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="511"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="513"/>
         <source>Match</source>
         <translation>匹配</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="546"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="549"/>
         <source>No more matches</source>
         <translation>没有更多的匹配</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="550"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="553"/>
         <source>No matches</source>
         <translation>没有匹配</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="578"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="581"/>
         <source>A regular expression and a text must be given.</source>
         <translation>必须给定一个正则表达式和一个文本。</translation>
     </message>
@@ -60140,27 +60140,27 @@
         <translation type="obsolete">Unicode</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="372"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="374"/>
         <source>&lt;p&gt;The regular expression could not be saved.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="564"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="567"/>
         <source>Invalid regular expression: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="526"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="528"/>
         <source>Capture #{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="334"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="336"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="414"/>
+        <location filename="../Plugins/WizardPlugins/PyRegExpWizard/PyRegExpWizardDialog.py" line="416"/>
         <source>Validation</source>
         <translation type="unfinished"></translation>
     </message>
@@ -60741,37 +60741,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="247"/>
+        <location filename="../UI/PythonAstViewer.py" line="249"/>
         <source>Module</source>
         <translation type="unfinished">模块</translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="279"/>
+        <location filename="../UI/PythonAstViewer.py" line="281"/>
         <source>{0}: {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="300"/>
+        <location filename="../UI/PythonAstViewer.py" line="302"/>
         <source>{0},{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="307"/>
+        <location filename="../UI/PythonAstViewer.py" line="309"/>
         <source>{0}  -  {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="211"/>
+        <location filename="../UI/PythonAstViewer.py" line="213"/>
         <source>No editor has been opened.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="222"/>
+        <location filename="../UI/PythonAstViewer.py" line="224"/>
         <source>The current editor does not contain any source code.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonAstViewer.py" line="228"/>
+        <location filename="../UI/PythonAstViewer.py" line="230"/>
         <source>The current editor does not contain Python source code.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -60824,7 +60824,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="695"/>
+        <location filename="../UI/PythonDisViewer.py" line="698"/>
         <source>Code Object &apos;{0}&apos;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -60879,72 +60879,72 @@
         <translation type="unfinished">隐藏</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="810"/>
+        <location filename="../UI/PythonDisViewer.py" line="813"/>
         <source>Name</source>
         <translation type="unfinished">名称</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="812"/>
+        <location filename="../UI/PythonDisViewer.py" line="815"/>
         <source>Filename</source>
         <translation type="unfinished">文件名</translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="814"/>
+        <location filename="../UI/PythonDisViewer.py" line="817"/>
         <source>First Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="816"/>
+        <location filename="../UI/PythonDisViewer.py" line="819"/>
         <source>Argument Count</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/PythonDisViewer.py" line="818"/>
+        <location filename="../UI/PythonDisViewer.py" line="821"/>
         <source>Positional-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../UI/PythonDisViewer.py" line="827"/>
+        <source>Number of Locals</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="829"/>
+        <source>Stack Size</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="831"/>
+        <source>Flags</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="834"/>
+        <source>Constants</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="837"/>
+        <source>Names</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="840"/>
+        <source>Variable Names</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="843"/>
+        <source>Free Variables</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/PythonDisViewer.py" line="846"/>
+        <source>Cell Variables</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/PythonDisViewer.py" line="824"/>
-        <source>Number of Locals</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="826"/>
-        <source>Stack Size</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="828"/>
-        <source>Flags</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="831"/>
-        <source>Constants</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="834"/>
-        <source>Names</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="837"/>
-        <source>Variable Names</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="840"/>
-        <source>Free Variables</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="843"/>
-        <source>Cell Variables</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/PythonDisViewer.py" line="821"/>
         <source>Keyword-only Arguments</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63537,197 +63537,197 @@
 <context>
     <name>QRegularExpressionWizardWidget</name>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="96"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="97"/>
         <source>Save</source>
         <translation>保存</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="98"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="99"/>
         <source>Save the regular expression to a file</source>
         <translation type="unfinished">将正则表达式保存到一个文件中</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="100"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="101"/>
         <source>Load</source>
         <translation type="unfinished">载入</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="102"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="103"/>
         <source>Load a regular expression from a file</source>
         <translation type="unfinished">从一个文件中载入正则表达式</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="105"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="106"/>
         <source>Validate</source>
         <translation type="unfinished">验证</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="107"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="108"/>
         <source>Validate the regular expression</source>
         <translation type="unfinished">验证正则表达式</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="109"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="110"/>
         <source>Execute</source>
         <translation>执行</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="111"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="112"/>
         <source>Execute the regular expression</source>
         <translation type="unfinished">执行正则表达式</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="113"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="114"/>
         <source>Next match</source>
         <translation type="unfinished">匹配下一个</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="115"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="116"/>
         <source>Show the next match of the regular expression</source>
         <translation type="unfinished">显示正则表达式下一个匹配的项</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="128"/>
-        <source>Copy</source>
-        <translation type="unfinished">复制</translation>
-    </message>
-    <message>
         <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="130"/>
+        <source>Copy</source>
+        <translation type="unfinished">复制</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="132"/>
         <source>Copy the regular expression to the clipboard</source>
         <translation type="unfinished">将正则表达式复制到剪贴板</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="292"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="295"/>
         <source>Named reference</source>
         <translation type="unfinished">命名的引用</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="286"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="289"/>
         <source>No named groups have been defined yet.</source>
         <translation type="unfinished">已命名的组还没有被定义。</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="292"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="295"/>
         <source>Select group name:</source>
         <translation type="unfinished">选择组名:</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="454"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="457"/>
         <source>Save regular expression</source>
         <translation type="unfinished">保存正则表达式</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="416"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="419"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="454"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="457"/>
         <source>&lt;p&gt;The regular expression could not be saved.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="442"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="445"/>
         <source>Load regular expression</source>
         <translation type="unfinished">载入正则表达式</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="507"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="510"/>
         <source>Validation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="507"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="510"/>
         <source>The regular expression is valid.</source>
         <translation type="unfinished">正则表达式有效。</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="708"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="712"/>
         <source>Error</source>
         <translation type="unfinished">错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="582"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="585"/>
         <source>Invalid regular expression: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="538"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="541"/>
         <source>A regular expression must be given.</source>
         <translation type="unfinished">必须给定一个正则表达式。</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="602"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="605"/>
         <source>Regexp</source>
         <translation type="unfinished">正则表达式</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="613"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="616"/>
         <source>Offset</source>
         <translation type="unfinished">偏移</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="621"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="624"/>
         <source>Captures</source>
         <translation type="unfinished">捕获</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="629"/>
-        <source>Text</source>
-        <translation type="unfinished">文本</translation>
-    </message>
-    <message>
         <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="632"/>
+        <source>Text</source>
+        <translation type="unfinished">文本</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="635"/>
         <source>Characters</source>
         <translation type="unfinished">字符</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="637"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="640"/>
         <source>Match</source>
         <translation type="unfinished">匹配</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="652"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="655"/>
         <source>Capture #{0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="676"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="680"/>
         <source>No more matches</source>
         <translation type="unfinished">没有更多的匹配</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="681"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="685"/>
         <source>No matches</source>
         <translation type="unfinished">没有匹配</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="708"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="712"/>
         <source>A regular expression and a text must be given.</source>
         <translation type="unfinished">必须给定一个正则表达式和一个文本。</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="442"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="445"/>
         <source>RegExp Files (*.rx);;All Files (*)</source>
         <translation>正则表达式文件 (*.rx);;所有文件 (*)</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="702"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="706"/>
         <source>Communication Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="169"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="172"/>
         <source>&lt;p&gt;The PyQt5 backend reported an error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation>&lt;p&gt;PyQt5 后端报告了一个错误。&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="696"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="700"/>
         <source>Invalid response received from PyQt5 backend.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="702"/>
+        <location filename="../Plugins/WizardPlugins/QRegularExpressionWizard/QRegularExpressionWizardDialog.py" line="706"/>
         <source>Communication with PyQt5 backend failed.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63763,7 +63763,7 @@
         <translation type="unfinished">删除</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="174"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="176"/>
         <source>Add Documentation</source>
         <translation>添加文档</translation>
     </message>
@@ -63773,7 +63773,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="211"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="213"/>
         <source>Remove Documentation</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63788,7 +63788,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="196"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="198"/>
         <source>Do you really want to remove the selected documentation sets from the database?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63798,12 +63798,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="174"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="176"/>
         <source>The namespace &lt;b&gt;{0}&lt;/b&gt; is already registered.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="211"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="213"/>
         <source>Some documents currently opened reference the documentation you are attempting to remove. Removing the documentation will close those documents. Remove anyway?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63863,7 +63863,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="406"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="410"/>
         <source>Remove Filters</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63873,7 +63873,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="434"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="438"/>
         <source>Remove Attributes</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63918,22 +63918,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="385"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="389"/>
         <source>Add Filter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="385"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="389"/>
         <source>Filter name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="406"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="410"/>
         <source>Do you really want to remove the selected filters from the database?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="434"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationDialog.py" line="438"/>
         <source>Do you really want to remove the selected attributes from the database?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -63951,27 +63951,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="139"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="142"/>
         <source>Delete Documentation Sets</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="86"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="89"/>
         <source>Shall the selected documentation sets really be deleted?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="102"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="105"/>
         <source>&lt;p&gt;The documentation set &lt;b&gt;{0}&lt;/b&gt; could not be deleted.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="121"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="124"/>
         <source>Shall the selected documentation set categories really be deleted?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="139"/>
+        <location filename="../WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.py" line="142"/>
         <source>Shall all documentation sets really be deleted?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65462,87 +65462,87 @@
 <context>
     <name>SafeBrowsingAPI</name>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="391"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="400"/>
         <source>&lt;h3&gt;Malware Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to install harmful programs on your computer in order to steal or destroy your data.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="398"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="407"/>
         <source>&lt;h3&gt;Phishing Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to trick you into doing something dangerous online, such as revealing passwords or personal information, usually through a fake website.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="406"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="415"/>
         <source>&lt;h3&gt;Unwanted Software Warning&lt;/h3&gt;&lt;p&gt;The software you are about to download may negatively affect your browsing or computing experience.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="412"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="421"/>
         <source>&lt;h3&gt;Potentially Harmful Application&lt;/h3&gt;&lt;p&gt;The web site you are about to visit may try to trick you into installing applications, that may negatively affect your browsing experience.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="426"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="435"/>
         <source>&lt;h3&gt;Unknown Threat Warning&lt;/h3&gt;&lt;p&gt;The web site you are about to visit was found in the Safe Browsing Database but was not classified yet.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="446"/>
-        <source>Malware</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="449"/>
-        <source>Phishing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="452"/>
-        <source>Unwanted Software</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="455"/>
-        <source>Harmful Application</source>
+        <source>Malware</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="458"/>
-        <source>Malicious Binary</source>
+        <source>Phishing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="461"/>
+        <source>Unwanted Software</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="464"/>
+        <source>Harmful Application</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="467"/>
+        <source>Malicious Binary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="470"/>
         <source>Unknown Threat</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="532"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="541"/>
         <source>any defined platform</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="535"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="544"/>
         <source>all defined platforms</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="538"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="547"/>
         <source>unknown platform</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="492"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="501"/>
         <source>executable program</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="495"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="504"/>
         <source>unknown type</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="419"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingAPIClient.py" line="428"/>
         <source>&lt;h3&gt;Malicious Binary Warning&lt;/h3&gt;&lt;p&gt;The software you are about to download may be harmful to your computer.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65550,7 +65550,7 @@
 <context>
     <name>SafeBrowsingDialog</name>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="171"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="173"/>
         <source>Safe Browsing Management</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65640,52 +65640,52 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="312"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="314"/>
         <source>Check URL</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="171"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="173"/>
         <source>The dialog contains unsaved changes.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="213"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="215"/>
         <source>Update Safe Browsing Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="196"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="198"/>
         <source>Updating the Safe Browsing cache might be a lengthy operation. Please be patient!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="207"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="209"/>
         <source>&lt;p&gt;Updating the Safe Browsing cache failed.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="213"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="215"/>
         <source>&lt;p&gt;Updating the Safe Browsing cache failed.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="224"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="226"/>
         <source>Clear Safe Browsing Cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="224"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="226"/>
         <source>Do you really want to clear the Safe Browsing cache? Re-populating it might take some time.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="304"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="306"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing Database.&lt;/p&gt;{1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="312"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="314"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was not found in the Safe Browsing Database and may be considered safe.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65715,17 +65715,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="339"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="341"/>
         <source>The next automatic threat list update will be done now.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="342"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="344"/>
         <source>&lt;p&gt;The next automatic threat list update will be done at &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="346"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="348"/>
         <source>Update Time</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65745,7 +65745,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="296"/>
+        <location filename="../WebBrowser/SafeBrowsing/SafeBrowsingDialog.py" line="298"/>
         <source>&lt;p&gt;The Google Safe Browsing Server reported an error.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65814,17 +65814,17 @@
 <context>
     <name>SearchReplaceWidget</name>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="982"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="984"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation>“{0}”未找到。</translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="1128"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="1130"/>
         <source>Replaced {0} occurrences.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="1133"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="1135"/>
         <source>Nothing replaced because &apos;{0}&apos; was not found.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -65834,7 +65834,7 @@
         <translation>查找下一个</translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="173"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="174"/>
         <source>Find Prev</source>
         <translation>查找上一个</translation>
     </message>
@@ -65858,17 +65858,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="181"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="183"/>
         <source>Replace and Search</source>
         <translation>替换和搜索</translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="191"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="193"/>
         <source>Replace Occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/SearchReplaceWidget.py" line="201"/>
+        <location filename="../QScintilla/SearchReplaceWidget.py" line="203"/>
         <source>Replace All</source>
         <translation>替换全部</translation>
     </message>
@@ -65960,7 +65960,7 @@
         <translation>全部文字</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SearchWidget.py" line="98"/>
+        <location filename="../WebBrowser/SearchWidget.py" line="100"/>
         <source>Expression was not found.</source>
         <translation>表达式未找到。</translation>
     </message>
@@ -65970,7 +65970,7 @@
         <translation type="obsolete">高亮全部</translation>
     </message>
     <message>
-        <location filename="../UI/SearchWidget.py" line="208"/>
+        <location filename="../UI/SearchWidget.py" line="210"/>
         <source>&apos;{0}&apos; was not found.</source>
         <translation>”{0}“未找到。</translation>
     </message>
@@ -66462,7 +66462,7 @@
 <context>
     <name>SendRefererWhitelistDialog</name>
     <message>
-        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="50"/>
+        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="51"/>
         <source>Send Referer Whitelist</source>
         <translation type="unfinished"></translation>
     </message>
@@ -66502,7 +66502,7 @@
         <translation>移除全部(&amp;E)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="50"/>
+        <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="51"/>
         <source>Enter host name to add to the whitelist:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -66633,7 +66633,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Session/SessionManager.py" line="710"/>
+        <location filename="../WebBrowser/Session/SessionManager.py" line="712"/>
         <source>{0} (last session)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67147,57 +67147,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="153"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="155"/>
         <source>Reading Trove Classifiers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="153"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="155"/>
         <source>&lt;p&gt;The Trove Classifiers 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="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="544"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="549"/>
         <source>Package Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="576"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="581"/>
         <source>Packages Root Directory</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="615"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="620"/>
         <source>Add Package</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="615"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="620"/>
         <source>&lt;p&gt;The directory &lt;b&gt;{0}&lt;/b&gt; is not a Python package.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="671"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="676"/>
         <source>Add Scripts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="671"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="676"/>
         <source>Python Files (*.py);;All Files(*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="710"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="715"/>
         <source>Add Python Modules</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="710"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="715"/>
         <source>Python Files (*.py)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="789"/>
+        <location filename="../Plugins/WizardPlugins/SetupWizard/SetupWizardDialog.py" line="796"/>
         <source>Source Directory</source>
         <translation type="unfinished"></translation>
     </message>
@@ -67225,109 +67225,109 @@
         <translation>命令行</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="248"/>
+        <location filename="../QScintilla/Shell.py" line="249"/>
         <source>Passive &gt;&gt;&gt; </source>
         <translation>被动 &gt;&gt;&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="291"/>
+        <location filename="../QScintilla/Shell.py" line="292"/>
         <source>Start</source>
         <translation>开始</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="296"/>
-        <source>History</source>
-        <translation>历史</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="297"/>
-        <source>Select entry</source>
-        <translation>选择条目</translation>
+        <source>History</source>
+        <translation>历史</translation>
     </message>
     <message>
         <location filename="../QScintilla/Shell.py" line="298"/>
+        <source>Select entry</source>
+        <translation>选择条目</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="299"/>
         <source>Show</source>
         <translation>显示</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="311"/>
+        <location filename="../QScintilla/Shell.py" line="312"/>
         <source>Clear</source>
         <translation>清除</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="304"/>
-        <source>Copy</source>
-        <translation>复制</translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="305"/>
+        <source>Copy</source>
+        <translation>复制</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="306"/>
         <source>Paste</source>
         <translation>粘贴</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="319"/>
+        <location filename="../QScintilla/Shell.py" line="320"/>
         <source>Configure...</source>
         <translation>配置…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="773"/>
+        <location filename="../QScintilla/Shell.py" line="781"/>
         <source>Select History</source>
         <translation>选择历史</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="773"/>
+        <location filename="../QScintilla/Shell.py" line="781"/>
         <source>Select the history entry to execute (most recent shown last).</source>
         <translation>选择历史条目以执行(最常用的显示在最后)。</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="839"/>
+        <location filename="../QScintilla/Shell.py" line="847"/>
         <source>Passive Debug Mode</source>
         <translation>被动调试模式</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="840"/>
+        <location filename="../QScintilla/Shell.py" line="848"/>
         <source>
 Not connected</source>
         <translation>
 没有连接</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="843"/>
+        <location filename="../QScintilla/Shell.py" line="851"/>
         <source>No.</source>
         <translation>No.</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2178"/>
+        <location filename="../QScintilla/Shell.py" line="2199"/>
         <source>Drop Error</source>
         <translation>降落误差</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="303"/>
+        <location filename="../QScintilla/Shell.py" line="304"/>
         <source>Cut</source>
         <translation>剪切</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="1033"/>
-        <source>StdOut: {0}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../QScintilla/Shell.py" line="1041"/>
+        <source>StdOut: {0}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="1049"/>
         <source>StdErr: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2178"/>
+        <location filename="../QScintilla/Shell.py" line="2199"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; 不是一个文件。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="309"/>
+        <location filename="../QScintilla/Shell.py" line="310"/>
         <source>Find</source>
         <translation type="unfinished">查找</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="891"/>
+        <location filename="../QScintilla/Shell.py" line="899"/>
         <source>Exception &quot;{0}&quot;
 {1}
 File: {2}, Line: {3}
@@ -67335,81 +67335,81 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="926"/>
+        <location filename="../QScintilla/Shell.py" line="934"/>
         <source>Unspecified syntax error.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="901"/>
+        <location filename="../QScintilla/Shell.py" line="909"/>
         <source>Exception &quot;{0}&quot;
 {1}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="928"/>
+        <location filename="../QScintilla/Shell.py" line="936"/>
         <source>Syntax error &quot;{1}&quot; in file {0} at line {2}, character {3}.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="951"/>
+        <location filename="../QScintilla/Shell.py" line="959"/>
         <source>Signal &quot;{0}&quot; generated in file {1} at line {2}.
 Function: {3}({4})</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Shell.py" line="2035"/>
+        <location filename="../QScintilla/Shell.py" line="2056"/>
         <source>Project</source>
         <translation type="unfinished">项目</translation>
     </message>
     <message>
+        <location filename="../QScintilla/Shell.py" line="313"/>
+        <source>Restart</source>
+        <translation type="unfinished">重启</translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="314"/>
+        <source>Restart and Clear</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="318"/>
+        <source>Active Name</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="1867"/>
+        <source>Available Virtual Environments:
+{0}
+</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="1917"/>
+        <source>Current Virtual Environment: &apos;{0}&apos;
+</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="853"/>
+        <source>{0} on {1}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="1075"/>
+        <source>&lt;{0}&gt; {1}</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../QScintilla/Shell.py" line="159"/>
-        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;restart&apos; kills the shell and starts a new one. &apos;clear&apos; clears the display of the shell window. &apos;start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;envs&apos; or &apos;environments&apos; commands. The active virtual environment can be questioned by the &apos;which&apos; command. &apos;quit&apos; or &apos;exit&apos; is used to exit the application. These commands (except environments&apos;, &apos;envs&apos; and &apos;which&apos;) are available through the window menus as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="186"/>
-        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.&lt;/p&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;restart&apos; kills the shell and starts a new one. &apos;clear&apos; clears the display of the shell window. &apos;start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;envs&apos; or &apos;environments&apos; commands. The active virtual environment can be questioned by the &apos;which&apos; command. These commands (except environments&apos; and &apos;envs&apos;) are available through the context menu as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;&lt;p&gt;In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="312"/>
-        <source>Restart</source>
-        <translation type="unfinished">重启</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="313"/>
-        <source>Restart and Clear</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="317"/>
-        <source>Active Name</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="1850"/>
-        <source>Available Virtual Environments:
-{0}
-</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="1896"/>
-        <source>Current Virtual Environment: &apos;{0}&apos;
-</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="845"/>
-        <source>{0} on {1}</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Shell.py" line="1067"/>
-        <source>&lt;{0}&gt; {1}</source>
+        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;%restart&apos; kills the shell and starts a new one. &apos;%clear&apos; clears the display of the shell window. &apos;%start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. &apos;%start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;%envs&apos; or &apos;%environments&apos; commands. The active virtual environment can be questioned by the &apos;%which&apos; command. &apos;%quit&apos; or &apos;%exit&apos; is used to exit the application. These commands (except &apos;%environments&apos;, &apos;%envs&apos; and &apos;%which&apos;) are available through the window menus as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../QScintilla/Shell.py" line="187"/>
+        <source>&lt;b&gt;The Shell Window&lt;/b&gt;&lt;p&gt;This is simply an interpreter running in a window. The interpreter is the one that is used to run the program being debugged. This means that you can execute any command while the program being debugged is running.&lt;/p&gt;&lt;p&gt;You can use the cursor keys while entering commands. There is also a history of commands that can be recalled using the up and down cursor keys while holding down the Ctrl-key. This can be switched to just the up and down cursor keys on the Shell page of the configuration dialog. Pressing these keys after some text has been entered will start an incremental search.&lt;/p&gt;&lt;p&gt;The shell has some special commands. &apos;%restart&apos; kills the shell and starts a new one. &apos;%clear&apos; clears the display of the shell window. &apos;%start&apos; is used to start a shell for a virtual environment and should be followed by a virtual environment name. &apos;%start&apos; without a virtual environment name starts the default shell. Available virtual environments may be listed with the &apos;%envs&apos; or &apos;%environments&apos; commands. The active virtual environment can be questioned by the &apos;%which&apos; command. These commands (except &apos;%environments&apos; and &apos;%envs&apos;) are available through the context menu as well.&lt;/p&gt;&lt;p&gt;Pressing the Tab key after some text has been entered will show a list of possible completions. The relevant entry may be selected from this list. If only one entry is available, this will be inserted automatically.&lt;/p&gt;&lt;p&gt;In passive debugging mode the shell is only available after the program to be debugged has connected to the IDE until it has finished. This is indicated by a different prompt and by an indication in the window caption.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
 </context>
@@ -68325,87 +68325,87 @@
         <translation>备选</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="131"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="132"/>
         <source>Project</source>
         <translation>项目</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="135"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="136"/>
         <source>General</source>
         <translation>通用配置</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="139"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="140"/>
         <source>Wizards</source>
         <translation>向导</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="145"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="146"/>
         <source>Debug</source>
         <translation>调试</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="149"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="150"/>
         <source>Edit</source>
         <translation>编辑</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="153"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="154"/>
         <source>File</source>
         <translation>文件</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="157"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="158"/>
         <source>Search</source>
         <translation>搜索</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="161"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="162"/>
         <source>View</source>
         <translation>视图</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="165"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="166"/>
         <source>Macro</source>
         <translation>宏</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="169"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="170"/>
         <source>Bookmarks</source>
         <translation>书签</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="174"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="175"/>
         <source>Spelling</source>
         <translation>拼写法</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="181"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="182"/>
         <source>Window</source>
         <translation>窗口</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="364"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="365"/>
         <source>Edit shortcuts</source>
         <translation>编辑快捷键</translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="327"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="328"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; has already been allocated to the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="347"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="348"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; hides the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="364"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="365"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is hidden by the &lt;b&gt;{1}&lt;/b&gt; action. Remove this binding?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Preferences/ShortcutsDialog.py" line="197"/>
+        <location filename="../Preferences/ShortcutsDialog.py" line="198"/>
         <source>eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
@@ -68524,22 +68524,22 @@
         <translation type="unfinished">安全</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="263"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="264"/>
         <source>Preview not available.</source>
         <translation>预览不可用。</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="290"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="291"/>
         <source>Copy Image Location to Clipboard</source>
         <translation>将图像位置复制至剪贴板</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="293"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="294"/>
         <source>Copy Image Name to Clipboard</source>
         <translation>将图像名称复制至剪贴板</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="357"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="358"/>
         <source>Save Image</source>
         <translation>保存图像</translation>
     </message>
@@ -68549,12 +68549,12 @@
         <translation type="obsolete">图像不可用。</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="346"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="347"/>
         <source>All Files (*)</source>
         <translation>所有文件 (*)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="357"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="358"/>
         <source>&lt;p&gt;Cannot write to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;无法写入文件 &lt;b&gt;{0}&lt;/b&gt;。&lt;/p&gt;</translation>
     </message>
@@ -68594,12 +68594,12 @@
         <translation type="obsolete">显示该站点使用的数据库的列表</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="276"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="277"/>
         <source>Loading...</source>
         <translation type="unfinished">正在加载…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="334"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoDialog.py" line="335"/>
         <source>&lt;p&gt;This preview is not available.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -68627,62 +68627,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="68"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="70"/>
         <source>Your connection to this site is &lt;b&gt;secure&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="73"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="75"/>
         <source>Your connection to this site is &lt;b&gt;not secure&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="88"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="90"/>
         <source>This is your &lt;b&gt;{0}.&lt;/b&gt; visit of this site.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="94"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="96"/>
         <source>You have &lt;b&gt;never&lt;/b&gt; visited this site before.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="103"/>
-        <source>first</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="105"/>
-        <source>second</source>
+        <source>first</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="107"/>
+        <source>second</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="109"/>
         <source>third</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="108"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="110"/>
         <source>This is your &lt;b&gt;{0}&lt;/b&gt; visit of this site.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="129"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="131"/>
         <source>Register as &lt;b&gt;{0}&lt;/b&gt; links handler.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="136"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="138"/>
         <source>Register</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="153"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="156"/>
         <source>More...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="62"/>
+        <location filename="../WebBrowser/SiteInfo/SiteInfoWidget.py" line="64"/>
         <source>Your connection to this site &lt;b&gt;may not be secure&lt;/b&gt;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -68820,17 +68820,17 @@
         <translation>X11 位图文件 (*.xpm)</translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="252"/>
+        <location filename="../Snapshot/SnapWidget.py" line="253"/>
         <source>Save Snapshot</source>
         <translation>保存快照</translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="231"/>
+        <location filename="../Snapshot/SnapWidget.py" line="232"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="252"/>
+        <location filename="../Snapshot/SnapWidget.py" line="253"/>
         <source>Cannot write file &apos;{0}:
 {1}.</source>
         <translation>无法写入文件 {0}:
@@ -68887,7 +68887,7 @@
         <translation>快照</translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="389"/>
+        <location filename="../Snapshot/SnapWidget.py" line="390"/>
         <source>The application contains an unsaved snapshot.</source>
         <translation>应用程序包含未保存的快照。</translation>
     </message>
@@ -68907,7 +68907,7 @@
         <translation type="obsolete">eric6 快照</translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="355"/>
+        <location filename="../Snapshot/SnapWidget.py" line="356"/>
         <source>Preview of the snapshot image ({0} x {1})</source>
         <translation>快照图像预览({0} x {1})</translation>
     </message>
@@ -68947,7 +68947,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Snapshot/SnapWidget.py" line="419"/>
+        <location filename="../Snapshot/SnapWidget.py" line="420"/>
         <source>eric Snapshot</source>
         <translation type="unfinished"></translation>
     </message>
@@ -68955,7 +68955,7 @@
 <context>
     <name>SnapshotFreehandGrabber</name>
     <message>
-        <location filename="../Snapshot/SnapshotFreehandGrabber.py" line="72"/>
+        <location filename="../Snapshot/SnapshotFreehandGrabber.py" line="76"/>
         <source>Select a region using the mouse. To take the snapshot, press the Enter key or double click. Press Esc to quit.</source>
         <translation>使用鼠标选择一个区域。要截取快照,点击 Enter 键或双击鼠标。点击 Esc 以退出。</translation>
     </message>
@@ -68963,7 +68963,7 @@
 <context>
     <name>SnapshotRegionGrabber</name>
     <message>
-        <location filename="../Snapshot/SnapshotRegionGrabber.py" line="104"/>
+        <location filename="../Snapshot/SnapshotRegionGrabber.py" line="107"/>
         <source>Select a region using the mouse. To take the snapshot, press the Enter key or double click. Press Esc to quit.</source>
         <translation>使用鼠标选择一个区域。要截取快照,点击 Enter 键或双击鼠标。点击 Esc 以退出。</translation>
     </message>
@@ -68971,7 +68971,7 @@
 <context>
     <name>SnapshotTimer</name>
     <message numerus="yes">
-        <location filename="../Snapshot/SnapshotTimer.py" line="104"/>
+        <location filename="../Snapshot/SnapshotTimer.py" line="110"/>
         <source>Snapshot will be taken in %n seconds</source>
         <translation>
             <numerusform>快照将在 %n 秒后截取</numerusform>
@@ -69092,27 +69092,27 @@
 <context>
     <name>SpeedDial</name>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="401"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="402"/>
         <source>Unable to load</source>
         <translation>无法载入</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="207"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="208"/>
         <source>Saving Speed Dial data</source>
         <translation>已保存的快速启动数据</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="207"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="208"/>
         <source>&lt;p&gt;Speed Dial data could not be saved to &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;快速启动数据无法保存至 &lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="220"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="221"/>
         <source>Reset Speed Dials</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="220"/>
+        <location filename="../WebBrowser/SpeedDial/SpeedDial.py" line="221"/>
         <source>Are you sure you want to reset the speed dials to the default pages?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -69506,22 +69506,22 @@
         <translation>就绪</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="162"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="163"/>
         <source>Unable to open database</source>
         <translation>无法打开数据库</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="304"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="307"/>
         <source>Query OK.</source>
         <translation>查询成功完成。</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="162"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="163"/>
         <source>An error occurred while opening the connection.</source>
         <translation>打开连接时出现了错误。</translation>
     </message>
     <message>
-        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="306"/>
+        <location filename="../SqlBrowser/SqlBrowserWidget.py" line="309"/>
         <source>Query OK, number of affected rows: {0}</source>
         <translation>查询成功完成,受影响的行数:{0}</translation>
     </message>
@@ -69690,62 +69690,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="52"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="53"/>
         <source>Revocation information for the certificate is not available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="55"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="56"/>
         <source>The certificate has been revoked.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="57"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="58"/>
         <source>The certificate is invalid.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="59"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="60"/>
         <source>The certificate is signed using a weak signature algorithm.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="62"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="63"/>
         <source>The host name specified in the certificate is not unique.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="65"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="66"/>
         <source>The certificate contains a weak key.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="67"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="69"/>
         <source>The certificate claimed DNS names that are in violation of name constraints.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="98"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="101"/>
         <source>No error description available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="129"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="132"/>
         <source>Remove Selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="134"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="137"/>
         <source>Remove All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="73"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="75"/>
         <source>The certificate has a validity period that is too long.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="82"/>
+        <location filename="../WebBrowser/Network/SslErrorExceptionsDialog.py" line="85"/>
         <source>Certificate Transparency was required for this connection, but the server did not provide information that complied with the policy.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -69780,12 +69780,12 @@
         <translation type="unfinished">工作文件夹(&amp;W):</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="215"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="218"/>
         <source>Select this to erase the collected coverage information</source>
         <translation>选择该选项可擦除已收集到的覆盖率信息</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="218"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="221"/>
         <source>&lt;b&gt;Erase coverage information&lt;/b&gt;
 &lt;p&gt;Select this to erase the collected coverage information before the next coverage run.&lt;/p&gt;</source>
         <translation>&lt;b&gt;擦除覆盖率信息&lt;/b&gt;
@@ -69804,7 +69804,7 @@
 &lt;p&gt;输入要调试的程序的工作文件夹。为空时默认将工作文件夹设为可执行程序的文件夹。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="151"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="154"/>
         <source>Environment Variables:</source>
         <translation type="unfinished">环境(&amp;E):</translation>
     </message>
@@ -69823,65 +69823,65 @@
 &lt;p&gt;例: var1=1 var2=&quot;hello world&quot; var3+=&quot;:/tmp&quot;&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="222"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="225"/>
         <source>Erase coverage information</source>
         <translation type="unfinished">擦除覆盖率信息(&amp;c)</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="225"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="228"/>
         <source>Alt+C</source>
         <translation>Alt+C</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="165"/>
-        <source>Uncheck to disable exception reporting</source>
-        <translation>取消选择可关闭异常报告</translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="168"/>
+        <source>Uncheck to disable exception reporting</source>
+        <translation>取消选择可关闭异常报告</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="171"/>
         <source>&lt;b&gt;Report exceptions&lt;/b&gt;
 &lt;p&gt;Uncheck this in order to disable exception reporting.&lt;/p&gt;</source>
         <translation>&lt;b&gt;报告异常&lt;/b&gt;
 &lt;p&gt;取消该选项将关闭异常报告。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="172"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="175"/>
         <source>Report exceptions</source>
         <translation type="unfinished">报告异常(&amp;E)</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="175"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="178"/>
         <source>Alt+E</source>
         <translation>Alt+E</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="185"/>
-        <source>Select to clear the display of the interpreter window</source>
-        <translation>选择清除解释器窗口的显示</translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="188"/>
-        <source>&lt;b&gt;Clear interpreter window&lt;/b&gt;&lt;p&gt;This clears the display of the interpreter window before starting the debug client.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;清除解释器窗口&lt;/b&gt;&lt;p&gt;将在开始调试客户之前清除解释器窗口的显示。&lt;/p&gt;</translation>
+        <source>Select to clear the display of the interpreter window</source>
+        <translation>选择清除解释器窗口的显示</translation>
     </message>
     <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="191"/>
+        <source>&lt;b&gt;Clear interpreter window&lt;/b&gt;&lt;p&gt;This clears the display of the interpreter window before starting the debug client.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;清除解释器窗口&lt;/b&gt;&lt;p&gt;将在开始调试客户之前清除解释器窗口的显示。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="194"/>
         <source>Clear interpreter window</source>
         <translation type="unfinished">清除解释器窗口(&amp;I)</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="201"/>
-        <source>Select to start the debugger in a console window</source>
-        <translation type="unfinished">选择在终端窗口启动调试器</translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartCoverageDialog.ui" line="204"/>
+        <source>Select to start the debugger in a console window</source>
+        <translation type="unfinished">选择在终端窗口启动调试器</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="207"/>
         <source>&lt;b&gt;Start in console&lt;/b&gt;
 &lt;p&gt;Select to start the debugger in a console window. The console command has to be configured on the Debugger-&amp;gt;General page&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="208"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="211"/>
         <source>Start in console</source>
         <translation type="unfinished">在终端开始运行</translation>
     </message>
@@ -69891,7 +69891,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartCoverageDialog.ui" line="141"/>
+        <location filename="../Debugger/StartCoverageDialog.ui" line="144"/>
         <source>Virtual Environment:</source>
         <translation type="unfinished"></translation>
     </message>
@@ -70124,42 +70124,42 @@
 <context>
     <name>StartDialog</name>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="108"/>
+        <location filename="../Debugger/StartDialog.py" line="109"/>
         <source>Clear Histories</source>
         <translation>清除历史</translation>
     </message>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="279"/>
+        <location filename="../Debugger/StartDialog.py" line="281"/>
         <source>Edit History</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="266"/>
-        <source>Command Line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="267"/>
-        <source>Working Directory</source>
-        <translation type="unfinished">工作文件夹</translation>
-    </message>
-    <message>
         <location filename="../Debugger/StartDialog.py" line="268"/>
+        <source>Command Line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="269"/>
+        <source>Working Directory</source>
+        <translation type="unfinished">工作文件夹</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/StartDialog.py" line="270"/>
         <source>Environment</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../Debugger/StartDialog.py" line="281"/>
+        <source>Select the history list to be edited:</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Debugger/StartDialog.py" line="279"/>
-        <source>Select the history list to be edited:</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/StartDialog.py" line="277"/>
         <source>No Debug Programs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/StartDialog.py" line="142"/>
+        <location filename="../Debugger/StartDialog.py" line="143"/>
         <source>Enter the list of programs or program patterns not to be debugged separated by &apos;{0}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -70910,12 +70910,12 @@
         <translation>属性已删除。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2244"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2245"/>
         <source>Subversion Lock</source>
         <translation>Subversion 锁定</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2244"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/subversion.py" line="2245"/>
         <source>Enter lock comment</source>
         <translation>输入锁定注释</translation>
     </message>
@@ -71249,32 +71249,32 @@
         <translation>SVG 浏览器</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="91"/>
+        <location filename="../Graphics/SvgDiagram.py" line="92"/>
         <source>Close</source>
         <translation>关闭</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="96"/>
+        <location filename="../Graphics/SvgDiagram.py" line="97"/>
         <source>Print</source>
         <translation>打印</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="101"/>
+        <location filename="../Graphics/SvgDiagram.py" line="102"/>
         <source>Print Preview</source>
         <translation>打印预览</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="131"/>
+        <location filename="../Graphics/SvgDiagram.py" line="132"/>
         <source>Window</source>
         <translation>窗口</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="135"/>
+        <location filename="../Graphics/SvgDiagram.py" line="136"/>
         <source>Graphics</source>
         <translation>图形</translation>
     </message>
     <message>
-        <location filename="../Graphics/SvgDiagram.py" line="362"/>
+        <location filename="../Graphics/SvgDiagram.py" line="363"/>
         <source>Diagram: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -71347,12 +71347,12 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="102"/>
         <source>Process Generation Error</source>
         <translation>进程生成错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py" line="102"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
@@ -71427,22 +71427,22 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="83"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="85"/>
         <source>Files (relative to {0}):</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="152"/>
         <source>No changelists found</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="117"/>
         <source>Process Generation Error</source>
         <translation>进程生成错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="115"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py" line="117"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
@@ -71682,29 +71682,29 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="169"/>
         <source>Process Generation Error</source>
         <translation>进程生成错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="82"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="84"/>
         <source> (binary)</source>
         <translation> (binary)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDialog.py" line="169"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="75"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="77"/>
         <source>Revision {0}.
 </source>
         <translation>版本 {0}。
 </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="86"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDialog.py" line="88"/>
         <source>{0} {1}{2}
 </source>
         <translation>{0} {1}{2}
@@ -71742,7 +71742,7 @@
 <context>
     <name>SvnDiffDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="175"/>
         <source>Subversion Diff</source>
         <translation>Subversion 差异</translation>
     </message>
@@ -71802,59 +71802,59 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="189"/>
         <source>Process Generation Error</source>
         <translation>进程生成错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="207"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="209"/>
         <source>There is no difference.</source>
         <translation>没有差异。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="399"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="409"/>
         <source>Save Diff</source>
         <translation>保存差异</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="367"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="377"/>
         <source>Patch Files (*.diff)</source>
         <translation>补丁文件 (*.diff)</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="167"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="175"/>
         <source>There is no temporary directory available.</source>
         <translation>无可用临时文件夹。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="187"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="189"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="399"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="409"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;br&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;补丁文件 &lt;b&gt;{0}&lt;/b&gt; 无法保存。&lt;br /&gt;原因:{1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="211"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="219"/>
         <source>Processing file &apos;{0}&apos;...
 </source>
         <translation>正在处理文件 {0}…
 </translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="384"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="394"/>
         <source>&lt;p&gt;The patch file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation>&lt;p&gt;补丁文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="220"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="226"/>
         <source>&lt;Start&gt;</source>
         <translation>&lt;开始&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="221"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.py" line="227"/>
         <source>&lt;End&gt;</source>
         <translation>&lt;结束&gt;</translation>
     </message>
@@ -72045,17 +72045,17 @@
         <translation>选择要过滤的区域</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="664"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="679"/>
         <source>Revision</source>
         <translation>修订</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="661"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="676"/>
         <source>Author</source>
         <translation>作者</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="164"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="167"/>
         <source>Message</source>
         <translation>消息</translation>
     </message>
@@ -72185,37 +72185,37 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="93"/>
         <source>Added</source>
         <translation>已添加</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="91"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="94"/>
         <source>Deleted</source>
         <translation>已删除</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="92"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="95"/>
         <source>Modified</source>
         <translation>已修改</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="519"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnLogBrowserDialog.py" line="535"/>
         <source>Subversion Error</source>
         <translation>Subversion 错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="309"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="317"/>
         <source>Process Generation Error</source>
         <translation>进程生成错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="309"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="317"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="93"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="96"/>
         <source>Replaced</source>
         <translation type="unfinished"></translation>
     </message>
@@ -72389,7 +72389,7 @@
         <translation>&lt;b&gt;URL&lt;/b&gt;&lt;p&gt;输入模块的 URL 。由于仓库具有标准布局,则该 URL 必须包含主干、标签或分支部分。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="128"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="129"/>
         <source>&amp;URL:</source>
         <translation>&amp;URL:</translation>
     </message>
@@ -72432,7 +72432,7 @@
         <translation>标签(&amp;T):</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="121"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="122"/>
         <source>Pat&amp;h:</source>
         <translation>路径(&amp;H):</translation>
     </message>
@@ -73324,17 +73324,17 @@
 &lt;p&gt;显示版本控制属性列表命令可能的错误消息。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="154"/>
         <source>Process Generation Error</source>
         <translation>进程生成错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnPropListDialog.py" line="145"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnPropListDialog.py" line="152"/>
         <source>None</source>
         <translation>无</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="147"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnPropListDialog.py" line="154"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
@@ -73538,22 +73538,22 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="204"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="208"/>
         <source>The installed version of PySvn should be 1.4.0 or better.</source>
         <translation>已安装的 PySvn 版本应为 1.4.0 或更高。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="281"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnRepoBrowserDialog.py" line="288"/>
         <source>Subversion Error</source>
         <translation>Subversion 错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="267"/>
         <source>Process Generation Error</source>
         <translation>进程生成错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="263"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnRepoBrowserDialog.py" line="267"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
@@ -73669,7 +73669,7 @@
 <context>
     <name>SvnStatusDialog</name>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="400"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="406"/>
         <source>Subversion Status</source>
         <translation>Subversion 状态</translation>
     </message>
@@ -73796,207 +73796,207 @@
         <translation>点击刷新状态显示</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="81"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="83"/>
         <source>Commit changes to repository...</source>
         <translation>将更改提交到储存库中…</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="88"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="90"/>
         <source>Add to repository</source>
         <translation>添加到储存库</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="96"/>
         <source>Revert changes</source>
         <translation>还原改变</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="100"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="102"/>
         <source>Add to Changelist</source>
         <translation>添加更改列表</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979"/>
         <source>Remove from Changelist</source>
         <translation>从更改列表中移除</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="873"/>
-        <source>Lock</source>
-        <translation>闭锁</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890"/>
+        <source>Lock</source>
+        <translation>闭锁</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="907"/>
         <source>Unlock</source>
         <translation>解锁</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="111"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="113"/>
         <source>Break lock</source>
         <translation>Break lock</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="114"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="116"/>
         <source>Steal lock</source>
         <translation>Steal lock</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="118"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="120"/>
         <source>Adjust column sizes</source>
         <translation>调整列宽</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="158"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="161"/>
         <source>added</source>
         <translation>已添加</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="160"/>
-        <source>deleted</source>
-        <translation>已删除</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="171"/>
-        <source>modified</source>
-        <translation>已修改</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="165"/>
-        <source>unversioned</source>
-        <translation>unversioned</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="189"/>
-        <source>locked</source>
-        <translation>已闭锁</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="190"/>
-        <source>other lock</source>
-        <translation>其它闭锁</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="191"/>
-        <source>stolen lock</source>
-        <translation>stolen 闭锁</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="192"/>
-        <source>broken lock</source>
-        <translation>broken 闭锁</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="188"/>
-        <source>not locked</source>
-        <translation>未闭锁</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="170"/>
-        <source>normal</source>
-        <translation>标准</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="163"/>
-        <source>replaced</source>
-        <translation>已替换</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="172"/>
-        <source>conflict</source>
-        <translation>冲突</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="185"/>
-        <source>external</source>
-        <translation>外部</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="161"/>
-        <source>ignored</source>
-        <translation>已忽略</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="166"/>
-        <source>missing</source>
-        <translation>遗漏</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="167"/>
-        <source>type error</source>
-        <translation>类型错误</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="196"/>
-        <source>no</source>
-        <translation>否</translation>
+        <source>deleted</source>
+        <translation>已删除</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="174"/>
+        <source>modified</source>
+        <translation>已修改</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="168"/>
+        <source>unversioned</source>
+        <translation>unversioned</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="192"/>
+        <source>locked</source>
+        <translation>已闭锁</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="193"/>
+        <source>other lock</source>
+        <translation>其它闭锁</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="194"/>
+        <source>stolen lock</source>
+        <translation>stolen 闭锁</translation>
     </message>
     <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="195"/>
+        <source>broken lock</source>
+        <translation>broken 闭锁</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="191"/>
+        <source>not locked</source>
+        <translation>未闭锁</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="173"/>
+        <source>normal</source>
+        <translation>标准</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="166"/>
+        <source>replaced</source>
+        <translation>已替换</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="175"/>
+        <source>conflict</source>
+        <translation>冲突</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="188"/>
+        <source>external</source>
+        <translation>外部</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="164"/>
+        <source>ignored</source>
+        <translation>已忽略</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="169"/>
+        <source>missing</source>
+        <translation>遗漏</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="170"/>
+        <source>type error</source>
+        <translation>类型错误</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="199"/>
+        <source>no</source>
+        <translation>否</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="198"/>
         <source>yes</source>
         <translation>是</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="413"/>
         <source>Process Generation Error</source>
         <translation>进程生成错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="742"/>
         <source>Commit</source>
         <translation>提交</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="850"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="867"/>
         <source>There are no uncommitted changes available/selected.</source>
         <translation>没有未提交的更改可用或被选择。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="765"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="782"/>
         <source>Add</source>
         <translation>添加</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="765"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="782"/>
         <source>There are no unversioned entries available/selected.</source>
         <translation>没有未版本化的条目可用或被选择。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="811"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="828"/>
         <source>Revert</source>
         <translation>还原</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="873"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="890"/>
         <source>There are no unlocked files available/selected.</source>
         <translation>没有未解锁的文件可用或被选择。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="926"/>
-        <source>There are no locked files available/selected.</source>
-        <translation>没有闭锁的文件可用或被选择。</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="908"/>
-        <source>Break Lock</source>
-        <translation>Break Lock</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="926"/>
-        <source>Steal Lock</source>
-        <translation>Steal Lock</translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="943"/>
+        <source>There are no locked files available/selected.</source>
+        <translation>没有闭锁的文件可用或被选择。</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="925"/>
+        <source>Break Lock</source>
+        <translation>Break Lock</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="943"/>
+        <source>Steal Lock</source>
+        <translation>Steal Lock</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="960"/>
         <source>There are no files available/selected not belonging to a changelist.</source>
         <translation>没有不属于更改列表的文件可用或被选择。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="962"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="979"/>
         <source>There are no files available/selected belonging to a changelist.</source>
         <translation>没有属于更改列表的文件可用或被选择。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="407"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="413"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
@@ -74061,42 +74061,42 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="90"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="92"/>
         <source>Show differences</source>
         <translation type="unfinished">显示差异</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="96"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="98"/>
         <source>Restore missing</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="637"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="654"/>
         <source>all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="829"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="846"/>
         <source>Differences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="725"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="742"/>
         <source>There are no entries selected to be committed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="811"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="828"/>
         <source>There are no missing entries available/selected.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="83"/>
-        <source>Select all for commit</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="85"/>
+        <source>Select all for commit</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="87"/>
         <source>Deselect all from commit</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74111,17 +74111,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="92"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="94"/>
         <source>Show differences side-by-side</source>
         <translation>并排显示差异</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="857"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="874"/>
         <source>Side-by-Side Diff</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="857"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="874"/>
         <source>Only one file with uncommitted changes must be selected.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -74297,52 +74297,52 @@
         <translation>Alt+P</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="94"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="96"/>
         <source>Subversion Branches List</source>
         <translation>Subversion 分支列表</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="127"/>
         <source>Subversion Error</source>
         <translation>Subversion 错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="105"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="107"/>
         <source>The URL of the project repository could not be retrieved from the working copy. The list operation will be aborted</source>
         <translation>无法从工作副本中检索项目仓库的 URL 。列表操作将被终止</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="125"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="127"/>
         <source>The URL of the project repository has an invalid format. The list operation will be aborted</source>
         <translation>项目仓库的 URL 包含无效格式。列表操作将被终止</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="155"/>
         <source>Subversion List</source>
         <translation>Subversion 列表</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="142"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="144"/>
         <source>Enter the repository URL containing the tags or branches</source>
         <translation>输入包含标签或分支的仓库 URL</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="153"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="155"/>
         <source>The repository URL is empty. Aborting...</source>
         <translation>仓库 URL 为空。终止…</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="172"/>
         <source>Process Generation Error</source>
         <translation>进程生成错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="160"/>
+        <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnTagBranchListDialog.py" line="162"/>
         <source>The installed version of PySvn should be 1.4.0 or better.</source>
         <translation>已安装的 PySvn 版本应为 1.4.0 或更高。</translation>
     </message>
     <message>
-        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="170"/>
+        <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnTagBranchListDialog.py" line="172"/>
         <source>The process {0} could not be started. Ensure, that it is in the search path.</source>
         <translation>进程 {0} 无法启动。请保证它处在搜索路径中。</translation>
     </message>
@@ -76294,7 +76294,7 @@
         <translation type="unfinished">按下以统计所有有问题的文件</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="397"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="409"/>
         <source>No issues found.</source>
         <translation type="unfinished">未发现问题。</translation>
     </message>
@@ -76319,7 +76319,7 @@
         <translation type="unfinished">开始</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="288"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="297"/>
         <source>Error: {0}</source>
         <translation type="unfinished">错误:{0}</translation>
     </message>
@@ -76329,17 +76329,17 @@
         <translation type="unfinished">%v/%m 文件</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="274"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="283"/>
         <source>Preparing files...</source>
         <translation type="unfinished">正在准备文件…</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="98"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="101"/>
         <source>Errors</source>
         <translation>错误</translation>
     </message>
     <message>
-        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="298"/>
+        <location filename="../Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py" line="307"/>
         <source>Transferring data...</source>
         <translation type="unfinished">传输数据…</translation>
     </message>
@@ -76625,72 +76625,72 @@
 <context>
     <name>TabManagerWidget</name>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="73"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="74"/>
         <source>Tab Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="127"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="128"/>
         <source>Saved Tabs</source>
         <translation type="unfinished">已保存的选项卡</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="171"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="172"/>
         <source>Local File System:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="173"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="174"/>
         <source>eric Web Browser:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="175"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="176"/>
         <source> [FTP]:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="314"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="317"/>
         <source>Window {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="315"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="318"/>
         <source>Double click to switch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="506"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="509"/>
         <source>Group by</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="507"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="510"/>
         <source>&amp;Window</source>
         <translation type="unfinished">窗口(&amp;W)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="512"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="515"/>
         <source>&amp;Domain</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="517"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="520"/>
         <source>&amp;Host</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="528"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="531"/>
         <source>&amp;Bookmark checked tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="533"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="536"/>
         <source>&amp;Close checked tabs</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="567"/>
+        <location filename="../WebBrowser/TabManager/TabManagerWidget.py" line="570"/>
         <source>Show Tab Manager</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76703,77 +76703,77 @@
         <translation type="obsolete">关闭当前编辑器</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="243"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="249"/>
         <source>Move Left</source>
         <translation>左移</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="246"/>
-        <source>Move Right</source>
-        <translation>右移</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="249"/>
-        <source>Move First</source>
-        <translation>移至最前</translation>
-    </message>
-    <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="252"/>
+        <source>Move Right</source>
+        <translation>右移</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="255"/>
+        <source>Move First</source>
+        <translation>移至最前</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="258"/>
         <source>Move Last</source>
         <translation>移至最后</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="256"/>
-        <source>Close</source>
-        <translation>关闭</translation>
-    </message>
-    <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="262"/>
-        <source>Close All</source>
-        <translation>全部关闭</translation>
-    </message>
-    <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="265"/>
-        <source>Save</source>
-        <translation>保存</translation>
+        <source>Close</source>
+        <translation>关闭</translation>
     </message>
     <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="268"/>
-        <source>Save As...</source>
-        <translation>另存为…</translation>
+        <source>Close All</source>
+        <translation>全部关闭</translation>
     </message>
     <message>
         <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="271"/>
+        <source>Save</source>
+        <translation>保存</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="274"/>
+        <source>Save As...</source>
+        <translation>另存为…</translation>
+    </message>
+    <message>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="277"/>
         <source>Save All</source>
         <translation>全部保存</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="279"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="285"/>
         <source>Print</source>
         <translation>打印</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="212"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="216"/>
         <source>Show a navigation menu</source>
         <translation type="unfinished">显示导航菜单</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="259"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="265"/>
         <source>Close Others</source>
         <translation type="unfinished">关闭其它</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="437"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="443"/>
         <source>{0} (ro)</source>
         <translation>{0}(只读)</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="283"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="289"/>
         <source>Copy Path to Clipboard</source>
         <translation type="unfinished">将路径复制到剪贴板</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="275"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="281"/>
         <source>Open &apos;rejection&apos; file</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76896,12 +76896,12 @@
 <context>
     <name>Tabview</name>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1002"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1008"/>
         <source>Untitled {0}</source>
         <translation>无标题 {0}</translation>
     </message>
     <message>
-        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1406"/>
+        <location filename="../Plugins/ViewManagerPlugins/Tabview/Tabview.py" line="1412"/>
         <source>{0} (ro)</source>
         <translation>{0}(只读)</translation>
     </message>
@@ -77453,17 +77453,17 @@
 <context>
     <name>TemplateMultipleVariablesDialog</name>
     <message>
-        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="105"/>
+        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="106"/>
         <source>Enter Template Variables</source>
         <translation>输入模板变量</translation>
     </message>
     <message>
-        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="106"/>
-        <source>&amp;OK</source>
-        <translation>确定(&amp;O)</translation>
-    </message>
-    <message>
         <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="107"/>
+        <source>&amp;OK</source>
+        <translation>确定(&amp;O)</translation>
+    </message>
+    <message>
+        <location filename="../Templates/TemplateMultipleVariablesDialog.py" line="108"/>
         <source>&amp;Cancel</source>
         <translation>取消(&amp;C)</translation>
     </message>
@@ -78471,12 +78471,12 @@
         <translation>所有文件 (*)</translation>
     </message>
     <message>
-        <location filename="../Project/TranslationPropertiesDialog.py" line="148"/>
+        <location filename="../Project/TranslationPropertiesDialog.py" line="149"/>
         <source>Exempt file from translation</source>
         <translation>从翻译中除去文件</translation>
     </message>
     <message>
-        <location filename="../Project/TranslationPropertiesDialog.py" line="161"/>
+        <location filename="../Project/TranslationPropertiesDialog.py" line="162"/>
         <source>Exempt directory from translation</source>
         <translation>从翻译中除去文件夹</translation>
     </message>
@@ -79922,97 +79922,97 @@
 <context>
     <name>UMLGraphicsView</name>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="78"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="79"/>
         <source>Delete shapes</source>
         <translation>删除形状</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="111"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="112"/>
         <source>Set size</source>
         <translation>设置尺寸</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="121"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="122"/>
         <source>Re-Layout</source>
         <translation>重新布局</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="126"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="127"/>
         <source>Align Left</source>
         <translation>左对齐</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="132"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="134"/>
         <source>Align Center Horizontal</source>
         <translation>水平居中对齐</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="138"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="141"/>
         <source>Align Right</source>
         <translation>右对齐</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="144"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="148"/>
         <source>Align Top</source>
         <translation>顶部对齐</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="150"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="155"/>
         <source>Align Center Vertical</source>
         <translation>垂直居中对齐</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="156"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="162"/>
         <source>Align Bottom</source>
         <translation>底部对齐</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="208"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="215"/>
         <source>Graphics</source>
         <translation>图形</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="357"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="364"/>
         <source>Save Diagram</source>
         <translation>保存图表</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="330"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="337"/>
         <source>Portable Network Graphics (*.png);;Scalable Vector Graphics (*.svg)</source>
         <translation>便携式网络图形 (*.png);;可缩放的向量图形 (*.svg)</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="83"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="84"/>
         <source>Increase width by {0} points</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="90"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="91"/>
         <source>Increase height by {0} points</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="97"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="98"/>
         <source>Decrease width by {0} points</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="104"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="105"/>
         <source>Decrease height by {0} points</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="357"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="364"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; could not be saved.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 无法保存。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="345"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="352"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; already exists. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 已经存在。是否覆盖?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Graphics/UMLGraphicsView.py" line="116"/>
+        <location filename="../Graphics/UMLGraphicsView.py" line="117"/>
         <source>Re-Scan</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80096,7 +80096,7 @@
 <context>
     <name>UnittestDialog</name>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="903"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="906"/>
         <source>Unittest</source>
         <translation>单元测试</translation>
     </message>
@@ -80237,42 +80237,42 @@
         <translation>空闲</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="96"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="98"/>
         <source>Start</source>
         <translation>开始</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="98"/>
-        <source>Start the selected testsuite</source>
-        <translation>开启所选测试套件</translation>
-    </message>
-    <message>
         <location filename="../PyUnit/UnittestDialog.py" line="100"/>
+        <source>Start the selected testsuite</source>
+        <translation>开启所选测试套件</translation>
+    </message>
+    <message>
+        <location filename="../PyUnit/UnittestDialog.py" line="102"/>
         <source>&lt;b&gt;Start Test&lt;/b&gt;&lt;p&gt;This button starts the selected testsuite.&lt;/p&gt;</source>
         <translation>&lt;b&gt;开始测试&lt;/b&gt;&lt;p&gt;该按钮开启所选测试套件。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="111"/>
-        <source>Stop</source>
-        <translation>中止</translation>
-    </message>
-    <message>
         <location filename="../PyUnit/UnittestDialog.py" line="113"/>
+        <source>Stop</source>
+        <translation>中止</translation>
+    </message>
+    <message>
+        <location filename="../PyUnit/UnittestDialog.py" line="115"/>
         <source>Stop the running unittest</source>
         <translation>中止正在运行的单元测试</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="114"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="116"/>
         <source>&lt;b&gt;Stop Test&lt;/b&gt;&lt;p&gt;This button stops a running unittest.&lt;/p&gt;</source>
         <translation>&lt;b&gt;中止测试&lt;/b&gt;&lt;p&gt;该按钮中止一个正在运行的单元测试。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="166"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="168"/>
         <source>^Failure: </source>
         <translation>^失败:</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="167"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="169"/>
         <source>^Error: </source>
         <translation>^错误:</translation>
     </message>
@@ -80282,32 +80282,32 @@
         <translation type="obsolete">必须输入测试套件文件。</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="699"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="702"/>
         <source>Preparing Testsuite</source>
         <translation>准备测试套件</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="985"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="988"/>
         <source>Running</source>
         <translation>正在运行</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1158"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1161"/>
         <source>Show Source</source>
         <translation>显示源代码</translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="304"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="306"/>
         <source>Python Files (*.py);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1029"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1032"/>
         <source>Failure: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1044"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1047"/>
         <source>Error: {0}</source>
         <translation type="unfinished">错误:{0}</translation>
     </message>
@@ -80342,32 +80342,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1059"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1062"/>
         <source>    Skipped: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1077"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1080"/>
         <source>    Expected Failure</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="1094"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1097"/>
         <source>    Unexpected Success</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="103"/>
-        <source>Rerun Failed</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../PyUnit/UnittestDialog.py" line="105"/>
-        <source>Reruns failed tests of the selected testsuite</source>
+        <source>Rerun Failed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PyUnit/UnittestDialog.py" line="107"/>
+        <source>Reruns failed tests of the selected testsuite</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../PyUnit/UnittestDialog.py" line="109"/>
         <source>&lt;b&gt;Rerun Failed&lt;/b&gt;&lt;p&gt;This button reruns all failed tests of the selected testsuite.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80454,17 +80454,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="703"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="706"/>
         <source>Unittest with auto-discovery</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="787"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="790"/>
         <source>You must enter a start directory for auto-discovery.</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../PyUnit/UnittestDialog.py" line="1009"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="1012"/>
         <source>Ran %n test(s) in {0:.3f}s</source>
         <translation type="unfinished">
             <numerusform></numerusform>
@@ -80476,54 +80476,54 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="89"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="91"/>
         <source>Discover</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="91"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="93"/>
         <source>Discover tests</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="382"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="384"/>
         <source>Discovering Tests</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="447"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="449"/>
         <source>&lt;p&gt;Unable to discover tests.&lt;/p&gt;&lt;p&gt;{0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message numerus="yes">
-        <location filename="../PyUnit/UnittestDialog.py" line="619"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="622"/>
         <source>Discovered %n Test(s)</source>
         <translation type="unfinished">
             <numerusform></numerusform>
         </translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="624"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="627"/>
         <source>&lt;p&gt;Unable to discover tests.&lt;/p&gt;&lt;p&gt;{0}&lt;br/&gt;{1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="690"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="693"/>
         <source>You must select auto-discovery or enter a test suite file or a dotted test name.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="712"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="715"/>
         <source>&lt;Unnamed Test&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="903"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="906"/>
         <source>&lt;p&gt;Unable to run test &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;{1}&lt;br/&gt;{2}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="93"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="95"/>
         <source>&lt;b&gt;Discover&lt;/b&gt;&lt;p&gt;This button starts a discovery of available tests.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80548,12 +80548,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="720"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="723"/>
         <source>No test case has been selected. Shall all test cases be run?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PyUnit/UnittestDialog.py" line="300"/>
+        <location filename="../PyUnit/UnittestDialog.py" line="302"/>
         <source>Python3 Files ({0});;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80666,7 +80666,7 @@
 <context>
     <name>UrlBar</name>
     <message>
-        <location filename="../WebBrowser/UrlBar/UrlBar.py" line="454"/>
+        <location filename="../WebBrowser/UrlBar/UrlBar.py" line="465"/>
         <source>Unknown</source>
         <translation type="unfinished">未知</translation>
     </message>
@@ -80855,768 +80855,768 @@
         <translation>恢复工具拦管理器…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
+        <location filename="../UI/UserInterface.py" line="1754"/>
         <source>Project-Viewer</source>
         <translation>项目浏览器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
+        <location filename="../UI/UserInterface.py" line="1771"/>
         <source>Multiproject-Viewer</source>
         <translation>多重项目浏览器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
+        <location filename="../UI/UserInterface.py" line="1789"/>
         <source>Debug-Viewer</source>
         <translation>调试浏览器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
         <source>Log-Viewer</source>
         <translation>日志浏览器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1849"/>
+        <location filename="../UI/UserInterface.py" line="1859"/>
         <source>Task-Viewer</source>
         <translation>任务浏览器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
+        <location filename="../UI/UserInterface.py" line="1878"/>
         <source>Template-Viewer</source>
         <translation>模板浏览器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
+        <location filename="../UI/UserInterface.py" line="1824"/>
         <source>File-Browser</source>
         <translation>文件浏览器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>Shell</source>
         <translation>命令行</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1911"/>
+        <location filename="../UI/UserInterface.py" line="1921"/>
         <source>Horizontal Toolbox</source>
         <translation>横向工具箱</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
+        <location filename="../UI/UserInterface.py" line="1642"/>
         <source>Quit</source>
         <translation>退出</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
+        <location filename="../UI/UserInterface.py" line="1642"/>
         <source>&amp;Quit</source>
         <translation>退出(&amp;Q)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1632"/>
+        <location filename="../UI/UserInterface.py" line="1642"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation>Ctrl+Q</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1638"/>
+        <location filename="../UI/UserInterface.py" line="1648"/>
         <source>Quit the IDE</source>
         <translation>退出程序</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1639"/>
+        <location filename="../UI/UserInterface.py" line="1649"/>
         <source>&lt;b&gt;Quit the IDE&lt;/b&gt;&lt;p&gt;This quits the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
         <translation>&lt;b&gt;退出程序&lt;/b&gt;&lt;p&gt;退出本程序。 先保存任何未保存的更改。任何被调试的 Python 程序都将停止,并将选项写入磁盘。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1710"/>
+        <location filename="../UI/UserInterface.py" line="1720"/>
         <source>Edit Profile</source>
         <translation>编辑模式</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1716"/>
+        <location filename="../UI/UserInterface.py" line="1726"/>
         <source>Activate the edit view profile</source>
         <translation>激活编辑视图模式</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1718"/>
+        <location filename="../UI/UserInterface.py" line="1728"/>
         <source>&lt;b&gt;Edit Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Edit View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;编辑模式&lt;/b&gt;&lt;p&gt;激活“编辑视图模式”。如果激活了该模式,则显示的窗口将按“视图模式配置”对话框进行配置。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1727"/>
+        <location filename="../UI/UserInterface.py" line="1737"/>
         <source>Debug Profile</source>
         <translation>调试模式</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1733"/>
+        <location filename="../UI/UserInterface.py" line="1743"/>
         <source>Activate the debug view profile</source>
         <translation>激活调试模式</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1735"/>
+        <location filename="../UI/UserInterface.py" line="1745"/>
         <source>&lt;b&gt;Debug Profile&lt;/b&gt;&lt;p&gt;Activate the &quot;Debug View Profile&quot;. Windows being shown, if this profile is active, may be configured with the &quot;View Profile Configuration&quot; dialog.&lt;/p&gt;</source>
         <translation>&lt;b&gt;调试模式&lt;/b&gt;&lt;p&gt;激活“调试视图模式”。如果激活了该模式,则显示的窗口将按“视图模式配置”对话框进行配置。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
+        <location filename="../UI/UserInterface.py" line="1754"/>
         <source>&amp;Project-Viewer</source>
         <translation>项目浏览器(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1744"/>
+        <location filename="../UI/UserInterface.py" line="1754"/>
         <source>Alt+Shift+P</source>
         <translation>Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
+        <location filename="../UI/UserInterface.py" line="1771"/>
         <source>&amp;Multiproject-Viewer</source>
         <translation>多重项目浏览器(&amp;M)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1761"/>
+        <location filename="../UI/UserInterface.py" line="1771"/>
         <source>Alt+Shift+M</source>
         <translation>Alt+Shift+M</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
+        <location filename="../UI/UserInterface.py" line="1789"/>
         <source>Alt+Shift+D</source>
         <translation>Alt+Shift+D</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>&amp;Shell</source>
         <translation>命令行(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1797"/>
+        <location filename="../UI/UserInterface.py" line="1807"/>
         <source>Alt+Shift+S</source>
         <translation>Alt+Shift+S</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
+        <location filename="../UI/UserInterface.py" line="1824"/>
         <source>Alt+Shift+F</source>
         <translation>Alt+Shift+F</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
+        <location filename="../UI/UserInterface.py" line="1841"/>
         <source>Alt+Shift+G</source>
         <translation>Alt+Shift+G</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1849"/>
+        <location filename="../UI/UserInterface.py" line="1859"/>
         <source>Alt+Shift+T</source>
         <translation>Alt+Shift+T</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
+        <location filename="../UI/UserInterface.py" line="1878"/>
         <source>Alt+Shift+A</source>
         <translation>Alt+Shift+A</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1911"/>
+        <location filename="../UI/UserInterface.py" line="1921"/>
         <source>&amp;Horizontal Toolbox</source>
         <translation>横向工具箱(&amp;H)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1915"/>
+        <location filename="../UI/UserInterface.py" line="1925"/>
         <source>Toggle the Horizontal Toolbox window</source>
         <translation>切换横向工具箱窗口</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1917"/>
+        <location filename="../UI/UserInterface.py" line="1927"/>
         <source>&lt;b&gt;Toggle the Horizontal Toolbox window&lt;/b&gt;&lt;p&gt;If the Horizontal Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation>&lt;b&gt;切换横向工具箱窗口&lt;/b&gt;&lt;p&gt;在横向工具箱窗口的显示和隐藏状态间切换。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>What&apos;s This?</source>
         <translation>这是什么?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>&amp;What&apos;s This?</source>
         <translation>这是什么(&amp;W)?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2116"/>
+        <location filename="../UI/UserInterface.py" line="2126"/>
         <source>Shift+F1</source>
         <translation>Shift+F1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2122"/>
+        <location filename="../UI/UserInterface.py" line="2132"/>
         <source>Context sensitive help</source>
         <translation>背景帮助</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2123"/>
+        <location filename="../UI/UserInterface.py" line="2133"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation>&lt;b&gt;显示背景帮助&lt;/b&gt;&lt;p&gt;在“这是什么?”模式中,鼠标光标显示为带问号的箭头,通过点击界面元素你可以获得“在做什么”和“怎样使用”的简短描述。使用标题栏中的上下文帮助按钮可以获得此功能。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>Helpviewer</source>
         <translation>帮助浏览器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>&amp;Helpviewer...</source>
         <translation>帮助浏览器(&amp;H)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2134"/>
+        <location filename="../UI/UserInterface.py" line="2144"/>
         <source>F1</source>
         <translation>F1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2140"/>
+        <location filename="../UI/UserInterface.py" line="2150"/>
         <source>Open the helpviewer window</source>
         <translation>打开帮助浏览器窗口</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2160"/>
+        <location filename="../UI/UserInterface.py" line="2170"/>
         <source>Show Versions</source>
         <translation>显示版本</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2160"/>
+        <location filename="../UI/UserInterface.py" line="2170"/>
         <source>Show &amp;Versions</source>
         <translation>显示版本(&amp;V)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2164"/>
+        <location filename="../UI/UserInterface.py" line="2174"/>
         <source>Display version information</source>
         <translation>显示版本信息</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2166"/>
-        <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;显示版本&lt;/b&gt;&lt;p&gt;显示版本信息。&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2176"/>
+        <source>&lt;b&gt;Show Versions&lt;/b&gt;&lt;p&gt;Display version information.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;显示版本&lt;/b&gt;&lt;p&gt;显示版本信息。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2186"/>
         <source>Check for Updates</source>
         <translation>检查更新</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2173"/>
+        <location filename="../UI/UserInterface.py" line="2183"/>
         <source>Check for &amp;Updates...</source>
         <translation>检查更新(&amp;U)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2184"/>
+        <location filename="../UI/UserInterface.py" line="2194"/>
         <source>Show downloadable versions</source>
         <translation>显示可下载的版本</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2184"/>
+        <location filename="../UI/UserInterface.py" line="2194"/>
         <source>Show &amp;downloadable versions...</source>
         <translation>显示可下载的版本(&amp;D)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2188"/>
+        <location filename="../UI/UserInterface.py" line="2198"/>
         <source>Show the versions available for download</source>
         <translation>显示可以下载的版本</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3818"/>
+        <location filename="../UI/UserInterface.py" line="3828"/>
         <source>Report Bug</source>
         <translation>报告错误</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2225"/>
+        <location filename="../UI/UserInterface.py" line="2235"/>
         <source>Report &amp;Bug...</source>
         <translation>报告错误(&amp;B)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2229"/>
+        <location filename="../UI/UserInterface.py" line="2239"/>
         <source>Report a bug</source>
         <translation>报告一个错误</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2230"/>
+        <location filename="../UI/UserInterface.py" line="2240"/>
         <source>&lt;b&gt;Report Bug...&lt;/b&gt;&lt;p&gt;Opens a dialog to report a bug.&lt;/p&gt;</source>
         <translation>&lt;b&gt;报告错误…&lt;/b&gt;&lt;p&gt;打开一个对话框并报告一个错误。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
+        <location filename="../UI/UserInterface.py" line="2247"/>
         <source>Request Feature</source>
         <translation>请求功能</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2237"/>
+        <location filename="../UI/UserInterface.py" line="2247"/>
         <source>Request &amp;Feature...</source>
         <translation>请求功能(&amp;F)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2241"/>
+        <location filename="../UI/UserInterface.py" line="2251"/>
         <source>Send a feature request</source>
         <translation>发送一个功能请求</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2243"/>
+        <location filename="../UI/UserInterface.py" line="2253"/>
         <source>&lt;b&gt;Request Feature...&lt;/b&gt;&lt;p&gt;Opens a dialog to send a feature request.&lt;/p&gt;</source>
         <translation>&lt;b&gt;请求功能…&lt;/b&gt;&lt;p&gt;打开一个对话框并发送一个功能请求。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3361"/>
+        <location filename="../UI/UserInterface.py" line="3371"/>
         <source>Unittest</source>
         <translation>单元测试</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2252"/>
+        <location filename="../UI/UserInterface.py" line="2262"/>
         <source>&amp;Unittest...</source>
         <translation>单元测试(&amp;U)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2257"/>
+        <location filename="../UI/UserInterface.py" line="2267"/>
         <source>Start unittest dialog</source>
         <translation>打开单元测试对话框</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2258"/>
+        <location filename="../UI/UserInterface.py" line="2268"/>
         <source>&lt;b&gt;Unittest&lt;/b&gt;&lt;p&gt;Perform unit tests. The dialog gives you the ability to select and run a unittest suite.&lt;/p&gt;</source>
         <translation>&lt;b&gt;单元测试&lt;/b&gt;&lt;p&gt;执行单元测试。通过对话框可以选择和运行一个单元测试组件。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2266"/>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>Unittest Restart</source>
         <translation>单元测试重启</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2266"/>
+        <location filename="../UI/UserInterface.py" line="2276"/>
         <source>&amp;Restart Unittest...</source>
         <translation>重启单元测试(&amp;R)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2271"/>
+        <location filename="../UI/UserInterface.py" line="2281"/>
         <source>Restart last unittest</source>
         <translation>重启最后的单元测试</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2272"/>
+        <location filename="../UI/UserInterface.py" line="2282"/>
         <source>&lt;b&gt;Restart Unittest&lt;/b&gt;&lt;p&gt;Restart the unittest performed last.&lt;/p&gt;</source>
         <translation>&lt;b&gt;重启单元测试&lt;/b&gt;&lt;p&gt;重新启动最后执行的单元测试。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2296"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Unittest Script</source>
         <translation>脚本单元测试</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2296"/>
+        <location filename="../UI/UserInterface.py" line="2306"/>
         <source>Unittest &amp;Script...</source>
         <translation>脚本单元测试(&amp;S)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2301"/>
-        <source>Run unittest with current script</source>
-        <translation>对当前脚本运行单元测试</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2303"/>
-        <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;脚本单元测试&lt;/b&gt;&lt;p&gt;对当前脚本运动单元测试。&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2311"/>
-        <source>Unittest Project</source>
-        <translation>项目单元测试</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2311"/>
+        <source>Run unittest with current script</source>
+        <translation>对当前脚本运行单元测试</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2313"/>
+        <source>&lt;b&gt;Unittest Script&lt;/b&gt;&lt;p&gt;Run unittest with current script.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;脚本单元测试&lt;/b&gt;&lt;p&gt;对当前脚本运动单元测试。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2321"/>
+        <source>Unittest Project</source>
+        <translation>项目单元测试</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2321"/>
         <source>Unittest &amp;Project...</source>
         <translation>项目单元测试(&amp;P)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2316"/>
+        <location filename="../UI/UserInterface.py" line="2326"/>
         <source>Run unittest with current project</source>
         <translation>对当前项目运行单元测试</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2318"/>
+        <location filename="../UI/UserInterface.py" line="2328"/>
         <source>&lt;b&gt;Unittest Project&lt;/b&gt;&lt;p&gt;Run unittest with current project.&lt;/p&gt;</source>
         <translation>&lt;b&gt;项目单元测试&lt;/b&gt;&lt;p&gt;对当前项目运行单元测试。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2379"/>
+        <location filename="../UI/UserInterface.py" line="2389"/>
         <source>UI Previewer</source>
         <translation>用户界面预览器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2379"/>
+        <location filename="../UI/UserInterface.py" line="2389"/>
         <source>&amp;UI Previewer...</source>
         <translation>用户界面预览器(&amp;U)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2384"/>
+        <location filename="../UI/UserInterface.py" line="2394"/>
         <source>Start the UI Previewer</source>
         <translation>开启用户界面预览器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2385"/>
+        <location filename="../UI/UserInterface.py" line="2395"/>
         <source>&lt;b&gt;UI Previewer&lt;/b&gt;&lt;p&gt;Start the UI Previewer.&lt;/p&gt;</source>
         <translation>&lt;b&gt;助词界面预览器&lt;/b&gt;&lt;p&gt;开启用户界面预览器。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2392"/>
+        <location filename="../UI/UserInterface.py" line="2402"/>
         <source>Translations Previewer</source>
         <translation>翻译预览器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2392"/>
+        <location filename="../UI/UserInterface.py" line="2402"/>
         <source>&amp;Translations Previewer...</source>
         <translation>翻译预览器(&amp;T)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2397"/>
+        <location filename="../UI/UserInterface.py" line="2407"/>
         <source>Start the Translations Previewer</source>
         <translation>开启翻译预览器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2399"/>
+        <location filename="../UI/UserInterface.py" line="2409"/>
         <source>&lt;b&gt;Translations Previewer&lt;/b&gt;&lt;p&gt;Start the Translations Previewer.&lt;/p&gt;</source>
         <translation>&lt;b&gt;翻译预览器&lt;/b&gt;&lt;p&gt;开启翻译预览器。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2406"/>
+        <location filename="../UI/UserInterface.py" line="2416"/>
         <source>Compare Files</source>
         <translation>比较文件</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2406"/>
+        <location filename="../UI/UserInterface.py" line="2416"/>
         <source>&amp;Compare Files...</source>
         <translation>比较文件(&amp;C)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2424"/>
+        <location filename="../UI/UserInterface.py" line="2434"/>
         <source>Compare two files</source>
         <translation>比较两个文件</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2412"/>
+        <location filename="../UI/UserInterface.py" line="2422"/>
         <source>&lt;b&gt;Compare Files&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files.&lt;/p&gt;</source>
         <translation>&lt;b&gt;比较文件&lt;/b&gt;&lt;p&gt;打开对话框比较两个文件。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2419"/>
+        <location filename="../UI/UserInterface.py" line="2429"/>
         <source>Compare Files side by side</source>
         <translation>并排比较文件</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2425"/>
+        <location filename="../UI/UserInterface.py" line="2435"/>
         <source>&lt;b&gt;Compare Files side by side&lt;/b&gt;&lt;p&gt;Open a dialog to compare two files and show the result side by side.&lt;/p&gt;</source>
         <translation>&lt;b&gt;并排比较文件&lt;/b&gt;&lt;p&gt;打开对话框比较两个文件,并排显示结果。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2451"/>
+        <location filename="../UI/UserInterface.py" line="2461"/>
         <source>Mini Editor</source>
         <translation>小型编辑器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2446"/>
+        <location filename="../UI/UserInterface.py" line="2456"/>
         <source>Mini &amp;Editor...</source>
         <translation>小型编辑器(&amp;E)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2452"/>
+        <location filename="../UI/UserInterface.py" line="2462"/>
         <source>&lt;b&gt;Mini Editor&lt;/b&gt;&lt;p&gt;Open a dialog with a simplified editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;小型编辑器&lt;/b&gt;&lt;p&gt;打开一个具有简化功能编辑器的对话框。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2517"/>
+        <location filename="../UI/UserInterface.py" line="2527"/>
         <source>Preferences</source>
         <translation>首选项</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2517"/>
+        <location filename="../UI/UserInterface.py" line="2527"/>
         <source>&amp;Preferences...</source>
         <translation>首选项(&amp;P)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2522"/>
+        <location filename="../UI/UserInterface.py" line="2532"/>
         <source>Set the prefered configuration</source>
         <translation>设定偏好配置</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2524"/>
+        <location filename="../UI/UserInterface.py" line="2534"/>
         <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
         <translation>&lt;b&gt;首选项&lt;/b&gt;&lt;p&gt;将应用程序的配置项设定为你喜欢的值。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2533"/>
+        <location filename="../UI/UserInterface.py" line="2543"/>
         <source>Export Preferences</source>
         <translation>导出首选项</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2533"/>
+        <location filename="../UI/UserInterface.py" line="2543"/>
         <source>E&amp;xport Preferences...</source>
         <translation>导出首选项(&amp;X)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2538"/>
+        <location filename="../UI/UserInterface.py" line="2548"/>
         <source>Export the current configuration</source>
         <translation>导出当前配置</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2540"/>
+        <location filename="../UI/UserInterface.py" line="2550"/>
         <source>&lt;b&gt;Export Preferences&lt;/b&gt;&lt;p&gt;Export the current configuration to a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;导出首选项&lt;/b&gt;&lt;p&gt;将当前配置导出到一个文件中。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2547"/>
+        <location filename="../UI/UserInterface.py" line="2557"/>
         <source>Import Preferences</source>
         <translation>导入首选项</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2547"/>
+        <location filename="../UI/UserInterface.py" line="2557"/>
         <source>I&amp;mport Preferences...</source>
         <translation>导入首选项(&amp;M)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2552"/>
+        <location filename="../UI/UserInterface.py" line="2562"/>
         <source>Import a previously exported configuration</source>
         <translation>导入以前导出的配置</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2554"/>
+        <location filename="../UI/UserInterface.py" line="2564"/>
         <source>&lt;b&gt;Import Preferences&lt;/b&gt;&lt;p&gt;Import a previously exported configuration.&lt;/p&gt;</source>
         <translation>&lt;b&gt;导入首选项&lt;/b&gt;&lt;p&gt;导入以前导出的配置。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2561"/>
+        <location filename="../UI/UserInterface.py" line="2571"/>
         <source>Reload APIs</source>
         <translation>重新载入 API</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2561"/>
+        <location filename="../UI/UserInterface.py" line="2571"/>
         <source>Reload &amp;APIs</source>
         <translation>重新载入 &amp;API</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2565"/>
+        <location filename="../UI/UserInterface.py" line="2575"/>
         <source>Reload the API information</source>
         <translation>重新载入 API 信息</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2567"/>
+        <location filename="../UI/UserInterface.py" line="2577"/>
         <source>&lt;b&gt;Reload APIs&lt;/b&gt;&lt;p&gt;Reload the API information.&lt;/p&gt;</source>
         <translation>&lt;b&gt;重新载入 API&lt;/b&gt;&lt;p&gt;重新载入 API 信息。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2579"/>
+        <location filename="../UI/UserInterface.py" line="2589"/>
         <source>Show external tools</source>
         <translation>显示外部工具</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2574"/>
+        <location filename="../UI/UserInterface.py" line="2584"/>
         <source>Show external &amp;tools</source>
         <translation>显示外部工具(&amp;T)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2590"/>
+        <location filename="../UI/UserInterface.py" line="2600"/>
         <source>View Profiles</source>
         <translation>视图模式</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2590"/>
+        <location filename="../UI/UserInterface.py" line="2600"/>
         <source>&amp;View Profiles...</source>
         <translation>视图模式(&amp;V)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2595"/>
+        <location filename="../UI/UserInterface.py" line="2605"/>
         <source>Configure view profiles</source>
         <translation>配置视图模式</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2597"/>
-        <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;视图模式&lt;/b&gt;&lt;p&gt;配置视图模式。通过该对话框可以为预先确定的视图设置多个窗口的可见性。&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2607"/>
+        <source>&lt;b&gt;View Profiles&lt;/b&gt;&lt;p&gt;Configure the view profiles. With this dialog you may set the visibility of the various windows for the predetermined view profiles.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;视图模式&lt;/b&gt;&lt;p&gt;配置视图模式。通过该对话框可以为预先确定的视图设置多个窗口的可见性。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2617"/>
         <source>Toolbars</source>
         <translation>工具栏</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2607"/>
+        <location filename="../UI/UserInterface.py" line="2617"/>
         <source>Tool&amp;bars...</source>
         <translation>工具栏(&amp;B)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2612"/>
-        <source>Configure toolbars</source>
-        <translation>配置工具栏</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2613"/>
-        <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;工具栏&lt;/b&gt;&lt;p&gt;配置工具栏通过该对话框可以改变显示于多个工具栏的动作,还可以自定义工具栏。&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2622"/>
-        <source>Keyboard Shortcuts</source>
-        <translation>键盘快捷键</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2622"/>
+        <source>Configure toolbars</source>
+        <translation>配置工具栏</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2623"/>
+        <source>&lt;b&gt;Toolbars&lt;/b&gt;&lt;p&gt;Configure the toolbars. With this dialog you may change the actions shown on the various toolbars and define your own toolbars.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;工具栏&lt;/b&gt;&lt;p&gt;配置工具栏通过该对话框可以改变显示于多个工具栏的动作,还可以自定义工具栏。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2632"/>
+        <source>Keyboard Shortcuts</source>
+        <translation>键盘快捷键</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2632"/>
         <source>Keyboard &amp;Shortcuts...</source>
         <translation>键盘快捷键(&amp;S)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2627"/>
-        <source>Set the keyboard shortcuts</source>
-        <translation>设置键盘快捷键</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2629"/>
-        <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;键盘快捷键&lt;/b&gt;&lt;p&gt;将程序的键盘快捷键设置成你喜欢的按键。&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="6313"/>
-        <source>Export Keyboard Shortcuts</source>
-        <translation>导出键盘快捷键</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2637"/>
+        <source>Set the keyboard shortcuts</source>
+        <translation>设置键盘快捷键</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2639"/>
+        <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;键盘快捷键&lt;/b&gt;&lt;p&gt;将程序的键盘快捷键设置成你喜欢的按键。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="6333"/>
+        <source>Export Keyboard Shortcuts</source>
+        <translation>导出键盘快捷键</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2647"/>
         <source>&amp;Export Keyboard Shortcuts...</source>
         <translation>导出键盘快捷键(&amp;E)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2642"/>
+        <location filename="../UI/UserInterface.py" line="2652"/>
         <source>Export the keyboard shortcuts</source>
         <translation>导出键盘快捷键</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2644"/>
+        <location filename="../UI/UserInterface.py" line="2654"/>
         <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation>&lt;b&gt;导出键盘快捷键&lt;/b&gt;&lt;p&gt;导出程序的键盘快捷键。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6329"/>
+        <location filename="../UI/UserInterface.py" line="6349"/>
         <source>Import Keyboard Shortcuts</source>
         <translation>导入键盘快捷键</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2651"/>
+        <location filename="../UI/UserInterface.py" line="2661"/>
         <source>&amp;Import Keyboard Shortcuts...</source>
         <translation>导入键盘快捷键(&amp;I)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2656"/>
+        <location filename="../UI/UserInterface.py" line="2666"/>
         <source>Import the keyboard shortcuts</source>
         <translation>导入键盘快捷键</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2658"/>
+        <location filename="../UI/UserInterface.py" line="2668"/>
         <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation>&lt;b&gt;导入键盘快捷键&lt;/b&gt;&lt;p&gt;导入程序的键盘快捷键。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2716"/>
+        <location filename="../UI/UserInterface.py" line="2726"/>
         <source>Activate current editor</source>
         <translation>激活当前编辑器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2716"/>
-        <source>Alt+Shift+E</source>
-        <translation>Alt+Shift+E</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2726"/>
+        <source>Alt+Shift+E</source>
+        <translation>Alt+Shift+E</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2736"/>
         <source>Show next</source>
         <translation>显示下一个</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2726"/>
+        <location filename="../UI/UserInterface.py" line="2736"/>
         <source>Ctrl+Alt+Tab</source>
         <translation>Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2735"/>
+        <location filename="../UI/UserInterface.py" line="2745"/>
         <source>Show previous</source>
         <translation>显示上一个</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2735"/>
+        <location filename="../UI/UserInterface.py" line="2745"/>
         <source>Shift+Ctrl+Alt+Tab</source>
         <translation>Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2744"/>
+        <location filename="../UI/UserInterface.py" line="2754"/>
         <source>Switch between tabs</source>
         <translation>在选项卡间切换</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2744"/>
+        <location filename="../UI/UserInterface.py" line="2754"/>
         <source>Ctrl+1</source>
         <translation>Ctrl+1</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2753"/>
+        <location filename="../UI/UserInterface.py" line="2763"/>
         <source>Plugin Infos</source>
         <translation>插件信息</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2753"/>
+        <location filename="../UI/UserInterface.py" line="2763"/>
         <source>&amp;Plugin Infos...</source>
         <translation>插件信息(&amp;P)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2757"/>
+        <location filename="../UI/UserInterface.py" line="2767"/>
         <source>Show Plugin Infos</source>
         <translation>显示插件信息</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2758"/>
+        <location filename="../UI/UserInterface.py" line="2768"/>
         <source>&lt;b&gt;Plugin Infos...&lt;/b&gt;&lt;p&gt;This opens a dialog, that show some information about loaded plugins.&lt;/p&gt;</source>
         <translation>&lt;b&gt;插件信息…&lt;/b&gt;&lt;p&gt;打开一个对话框,显示与已载入插件有关的一些信息。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2771"/>
+        <location filename="../UI/UserInterface.py" line="2781"/>
         <source>Install Plugins</source>
         <translation>安装插件</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2766"/>
+        <location filename="../UI/UserInterface.py" line="2776"/>
         <source>&amp;Install Plugins...</source>
         <translation>安装插件(&amp;I)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2772"/>
+        <location filename="../UI/UserInterface.py" line="2782"/>
         <source>&lt;b&gt;Install Plugins...&lt;/b&gt;&lt;p&gt;This opens a dialog to install or update plugins.&lt;/p&gt;</source>
         <translation>&lt;b&gt;安装插件…&lt;/b&gt;&lt;p&gt;打开一个对话框安装或更新插件。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2784"/>
+        <location filename="../UI/UserInterface.py" line="2794"/>
         <source>Uninstall Plugin</source>
         <translation>卸载插件</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2779"/>
+        <location filename="../UI/UserInterface.py" line="2789"/>
         <source>&amp;Uninstall Plugin...</source>
         <translation>卸载插件(&amp;U)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2785"/>
+        <location filename="../UI/UserInterface.py" line="2795"/>
         <source>&lt;b&gt;Uninstall Plugin...&lt;/b&gt;&lt;p&gt;This opens a dialog to uninstall a plugin.&lt;/p&gt;</source>
         <translation>&lt;b&gt;卸载插件…&lt;/b&gt;&lt;p&gt;打开一个对话框卸载插件。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2792"/>
+        <location filename="../UI/UserInterface.py" line="2802"/>
         <source>Plugin Repository</source>
         <translation>插件储存库</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2792"/>
+        <location filename="../UI/UserInterface.py" line="2802"/>
         <source>Plugin &amp;Repository...</source>
         <translation>插件储存库(&amp;R)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2797"/>
+        <location filename="../UI/UserInterface.py" line="2807"/>
         <source>Show Plugins available for download</source>
         <translation>显示可以下载的插件</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2799"/>
+        <location filename="../UI/UserInterface.py" line="2809"/>
         <source>&lt;b&gt;Plugin Repository...&lt;/b&gt;&lt;p&gt;This opens a dialog, that shows a list of plugins available on the Internet.&lt;/p&gt;</source>
         <translation>&lt;b&gt;插件储存库…&lt;/b&gt;&lt;p&gt;打开一个对话框,显示互联网上可用的插件列表。&lt;/p&gt;</translation>
     </message>
@@ -81646,7 +81646,7 @@
         <translation type="obsolete">打开 PyQt4 文档</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2949"/>
+        <location filename="../UI/UserInterface.py" line="2959"/>
         <source>Eric API Documentation</source>
         <translation>Eric API 文档</translation>
     </message>
@@ -81656,112 +81656,112 @@
         <translation type="obsolete">&amp;Eric API 文档</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2953"/>
+        <location filename="../UI/UserInterface.py" line="2963"/>
         <source>Open Eric API Documentation</source>
         <translation>打开 Eric API 文档</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3154"/>
+        <location filename="../UI/UserInterface.py" line="3164"/>
         <source>&amp;Unittest</source>
         <translation>单元测试(&amp;U)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3098"/>
-        <source>E&amp;xtras</source>
-        <translation>附加程序(&amp;X)</translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="3108"/>
+        <source>E&amp;xtras</source>
+        <translation>附加程序(&amp;X)</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3118"/>
         <source>Wi&amp;zards</source>
         <translation>向导(&amp;Z)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3171"/>
+        <location filename="../UI/UserInterface.py" line="3181"/>
         <source>Select Tool Group</source>
         <translation>选择工具组</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3182"/>
+        <location filename="../UI/UserInterface.py" line="3192"/>
         <source>Se&amp;ttings</source>
         <translation>设置(&amp;T)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3212"/>
+        <location filename="../UI/UserInterface.py" line="3222"/>
         <source>&amp;Window</source>
         <translation>窗口(&amp;W)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3273"/>
+        <location filename="../UI/UserInterface.py" line="3283"/>
         <source>&amp;Toolbars</source>
         <translation>工具栏(&amp;T)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3135"/>
+        <location filename="../UI/UserInterface.py" line="3145"/>
         <source>P&amp;lugins</source>
         <translation>插件(&amp;L)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3144"/>
+        <location filename="../UI/UserInterface.py" line="3154"/>
         <source>Configure...</source>
         <translation>配置…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3287"/>
+        <location filename="../UI/UserInterface.py" line="3297"/>
         <source>&amp;Help</source>
         <translation>帮助(&amp;H)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3360"/>
+        <location filename="../UI/UserInterface.py" line="3370"/>
         <source>Tools</source>
         <translation>工具</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3362"/>
+        <location filename="../UI/UserInterface.py" line="3372"/>
         <source>Settings</source>
         <translation>设置</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5220"/>
+        <location filename="../UI/UserInterface.py" line="5237"/>
         <source>Help</source>
         <translation>帮助</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3364"/>
+        <location filename="../UI/UserInterface.py" line="3374"/>
         <source>Profiles</source>
         <translation>模式</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3365"/>
+        <location filename="../UI/UserInterface.py" line="3375"/>
         <source>Plugins</source>
         <translation>插件</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3530"/>
+        <location filename="../UI/UserInterface.py" line="3540"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors language.&lt;/p&gt;</source>
         <translation>&lt;p&gt;状态栏的这一部分显示当前编辑器语言。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3537"/>
+        <location filename="../UI/UserInterface.py" line="3547"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors encoding.&lt;/p&gt;</source>
         <translation>&lt;p&gt;状态栏的这一部分显示当前编辑器编码。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3544"/>
+        <location filename="../UI/UserInterface.py" line="3554"/>
         <source>&lt;p&gt;This part of the status bar displays the current editors eol setting.&lt;/p&gt;</source>
         <translation>&lt;p&gt;状态栏的这一部分显示当前编辑器行尾设置。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3551"/>
+        <location filename="../UI/UserInterface.py" line="3561"/>
         <source>&lt;p&gt;This part of the status bar displays an indication of the current editors files writability.&lt;/p&gt;</source>
         <translation>&lt;p&gt;状态栏的这一部分显示当前编辑器文件是否可写。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3558"/>
+        <location filename="../UI/UserInterface.py" line="3568"/>
         <source>&lt;p&gt;This part of the status bar displays the line number of the current editor.&lt;/p&gt;</source>
         <translation>&lt;p&gt;状态栏的这一部分显示当前编辑的行号。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3565"/>
+        <location filename="../UI/UserInterface.py" line="3575"/>
         <source>&lt;p&gt;This part of the status bar displays the cursor position of the current editor.&lt;/p&gt;</source>
         <translation>&lt;p&gt;状态栏的这一部分显示当前编辑器的光标位置。&lt;/p&gt;</translation>
     </message>
@@ -81771,52 +81771,52 @@
         <translation type="obsolete">&lt;h3&gt;版本号&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7279"/>
+        <location filename="../UI/UserInterface.py" line="7300"/>
         <source>&lt;/table&gt;</source>
         <translation>&lt;/table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3818"/>
+        <location filename="../UI/UserInterface.py" line="3828"/>
         <source>Email address or mail server address is empty. Please configure your Email settings in the Preferences Dialog.</source>
         <translation>电子邮件地址或邮件服务器地址为空。请在首选项对话框中配置你的电子邮件设置。</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4138"/>
+        <location filename="../UI/UserInterface.py" line="4148"/>
         <source>Restart application</source>
         <translation>重启程序</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4138"/>
+        <location filename="../UI/UserInterface.py" line="4148"/>
         <source>The application needs to be restarted. Do it now?</source>
         <translation>程序需要重启。现在重启?</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4219"/>
+        <location filename="../UI/UserInterface.py" line="4229"/>
         <source>Configure Tool Groups ...</source>
         <translation>配置工具组…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4223"/>
+        <location filename="../UI/UserInterface.py" line="4233"/>
         <source>Configure current Tool Group ...</source>
         <translation>配置当前工具组…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4174"/>
+        <location filename="../UI/UserInterface.py" line="4184"/>
         <source>&amp;Builtin Tools</source>
         <translation>内建工具(&amp;B)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4191"/>
+        <location filename="../UI/UserInterface.py" line="4201"/>
         <source>&amp;Plugin Tools</source>
         <translation>插件工具(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4340"/>
+        <location filename="../UI/UserInterface.py" line="4350"/>
         <source>&amp;Show all</source>
         <translation>全部显示(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4342"/>
+        <location filename="../UI/UserInterface.py" line="4352"/>
         <source>&amp;Hide all</source>
         <translation>全部隐藏(&amp;H)</translation>
     </message>
@@ -81826,47 +81826,47 @@
         <translation type="obsolete">当前项目未定义主脚本。终止</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5348"/>
+        <location filename="../UI/UserInterface.py" line="5365"/>
         <source>Problem</source>
         <translation>问题</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5543"/>
+        <location filename="../UI/UserInterface.py" line="5560"/>
         <source>Process Generation Error</source>
         <translation>进程生成错误</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6086"/>
+        <location filename="../UI/UserInterface.py" line="6103"/>
         <source>Open Browser</source>
         <translation>打开浏览器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6086"/>
+        <location filename="../UI/UserInterface.py" line="6103"/>
         <source>Could not start a web browser</source>
         <translation>无法启动网络浏览器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5220"/>
+        <location filename="../UI/UserInterface.py" line="5237"/>
         <source>Currently no custom viewer is selected. Please use the preferences dialog to specify one.</source>
         <translation>目前没有选择自定义浏览器。请使用首选项对话框指定一个。</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5254"/>
+        <location filename="../UI/UserInterface.py" line="5271"/>
         <source>&lt;p&gt;Could not start the help viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;hh&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;无法开启帮助浏览器。&lt;br&gt;确保其有效如 &lt;b&gt;hh&lt;/b&gt;。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5488"/>
+        <location filename="../UI/UserInterface.py" line="5505"/>
         <source>External Tools</source>
         <translation>外部工具</translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="5900"/>
+        <source>Documentation Missing</source>
+        <translation>文档缺失</translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="5883"/>
-        <source>Documentation Missing</source>
-        <translation>文档缺失</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="5866"/>
         <source>Documentation</source>
         <translation>文档</translation>
     </message>
@@ -81886,122 +81886,122 @@
         <translation type="obsolete">读取任务</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1669"/>
+        <location filename="../UI/UserInterface.py" line="1679"/>
         <source>Save session</source>
         <translation>保存会话</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6611"/>
+        <location filename="../UI/UserInterface.py" line="6631"/>
         <source>Read session</source>
         <translation>读取会话</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6897"/>
+        <location filename="../UI/UserInterface.py" line="6917"/>
         <source>Drop Error</source>
         <translation>降落误差</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7240"/>
+        <location filename="../UI/UserInterface.py" line="7261"/>
         <source>Error during updates check</source>
         <translation>检查更新时出错</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7062"/>
+        <location filename="../UI/UserInterface.py" line="7082"/>
         <source>&amp;Cancel</source>
         <translation>取消(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7221"/>
+        <location filename="../UI/UserInterface.py" line="7242"/>
         <source>Update available</source>
         <translation>可用更新</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7240"/>
+        <location filename="../UI/UserInterface.py" line="7261"/>
         <source>Could not perform updates check.</source>
         <translation>无法完成更新检查。</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7264"/>
+        <location filename="../UI/UserInterface.py" line="7285"/>
         <source>&lt;h3&gt;Available versions&lt;/h3&gt;&lt;table&gt;</source>
         <translation>&lt;h3&gt;可用版本&lt;/h3&gt;&lt;table&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7316"/>
+        <location filename="../UI/UserInterface.py" line="7337"/>
         <source>First time usage</source>
         <translation>第一次使用</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1925"/>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <source>Left Sidebar</source>
         <translation>左侧边栏</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1925"/>
+        <location filename="../UI/UserInterface.py" line="1935"/>
         <source>&amp;Left Sidebar</source>
         <translation>左侧边栏(&amp;L)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1929"/>
+        <location filename="../UI/UserInterface.py" line="1939"/>
         <source>Toggle the left sidebar window</source>
         <translation>切换左侧边栏窗口</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1930"/>
+        <location filename="../UI/UserInterface.py" line="1940"/>
         <source>&lt;b&gt;Toggle the left sidebar window&lt;/b&gt;&lt;p&gt;If the left sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation>&lt;b&gt;切换左侧边栏窗口&lt;/b&gt;&lt;p&gt;如果左侧边栏窗口已隐藏则显示它。如果它可见则隐藏它。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1952"/>
+        <location filename="../UI/UserInterface.py" line="1962"/>
         <source>Bottom Sidebar</source>
         <translation>底栏</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1952"/>
+        <location filename="../UI/UserInterface.py" line="1962"/>
         <source>&amp;Bottom Sidebar</source>
         <translation>底栏(&amp;B)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1956"/>
+        <location filename="../UI/UserInterface.py" line="1966"/>
         <source>Toggle the bottom sidebar window</source>
         <translation>切换底栏窗口</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1958"/>
+        <location filename="../UI/UserInterface.py" line="1968"/>
         <source>&lt;b&gt;Toggle the bottom sidebar window&lt;/b&gt;&lt;p&gt;If the bottom sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation>&lt;b&gt;切换底栏窗口&lt;/b&gt;&lt;p&gt;如果底栏窗口已隐藏则显示它。如果它可见则隐藏它。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1779"/>
+        <location filename="../UI/UserInterface.py" line="1789"/>
         <source>&amp;Debug-Viewer</source>
         <translation>调试浏览器(&amp;D)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2433"/>
+        <location filename="../UI/UserInterface.py" line="2443"/>
         <source>SQL Browser</source>
         <translation>SQL 浏览器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2433"/>
+        <location filename="../UI/UserInterface.py" line="2443"/>
         <source>SQL &amp;Browser...</source>
         <translation>SQL 浏览器(&amp;B)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2438"/>
+        <location filename="../UI/UserInterface.py" line="2448"/>
         <source>Browse a SQL database</source>
         <translation>浏览 SQL 数据库</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2439"/>
+        <location filename="../UI/UserInterface.py" line="2449"/>
         <source>&lt;b&gt;SQL Browser&lt;/b&gt;&lt;p&gt;Browse a SQL database.&lt;/p&gt;</source>
         <translation>&lt;b&gt;SQL 浏览器&lt;/b&gt;&lt;p&gt;浏览 SQL 数据库。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2488"/>
+        <location filename="../UI/UserInterface.py" line="2498"/>
         <source>Icon Editor</source>
         <translation>图标编辑器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2488"/>
+        <location filename="../UI/UserInterface.py" line="2498"/>
         <source>&amp;Icon Editor...</source>
         <translation>图标编辑器(&amp;I)…</translation>
     </message>
@@ -82026,96 +82026,96 @@
         <translation type="obsolete">打开 PySide 文档</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1598"/>
+        <location filename="../UI/UserInterface.py" line="1608"/>
         <source>{0} - Passive Mode</source>
         <translation>{0} - 被动模式</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1605"/>
+        <location filename="../UI/UserInterface.py" line="1615"/>
         <source>{0} - {1} - Passive Mode</source>
         <translation>{0} - {1} - 被动模式</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1609"/>
+        <location filename="../UI/UserInterface.py" line="1619"/>
         <source>{0} - {1} - {2} - Passive Mode</source>
         <translation>{0} - {1} - {2} - 被动模式</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3636"/>
+        <location filename="../UI/UserInterface.py" line="3646"/>
         <source>External Tools/{0}</source>
         <translation>外部工具/{0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5348"/>
+        <location filename="../UI/UserInterface.py" line="5365"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; does not exist or is zero length.&lt;/p&gt;</source>
         <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 不存在或者长度为零。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5073"/>
+        <location filename="../UI/UserInterface.py" line="5090"/>
         <source>&lt;p&gt;Could not start Qt-Designer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;无法启动 Qt 设计师。&lt;br&gt;请确保它作为 &lt;b&gt;{0}&lt;/b&gt; 可用。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5143"/>
+        <location filename="../UI/UserInterface.py" line="5160"/>
         <source>&lt;p&gt;Could not start Qt-Linguist.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;无法启动 Qt 语言家。&lt;br&gt;请确保它作为 &lt;b&gt;{0}&lt;/b&gt; 可用。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5187"/>
+        <location filename="../UI/UserInterface.py" line="5204"/>
         <source>&lt;p&gt;Could not start Qt-Assistant.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;无法启动 Qt 助手。&lt;br&gt;请确保它作为 &lt;b&gt;{0}&lt;/b&gt; 可用。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5234"/>
+        <location filename="../UI/UserInterface.py" line="5251"/>
         <source>&lt;p&gt;Could not start custom viewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;无法启动自定义的查看器。&lt;br&gt;请确保它作为 &lt;b&gt;{0}&lt;/b&gt; 可用。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5304"/>
+        <location filename="../UI/UserInterface.py" line="5321"/>
         <source>&lt;p&gt;Could not start UI Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;无法启动 UI 预览器。&lt;br&gt;请确保它作为 &lt;b&gt;{0}&lt;/b&gt; 可用。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5361"/>
+        <location filename="../UI/UserInterface.py" line="5378"/>
         <source>&lt;p&gt;Could not start Translation Previewer.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;无法启动翻译预览器。&lt;br&gt;请确保它作为 &lt;b&gt;{0}&lt;/b&gt; 可用。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5384"/>
+        <location filename="../UI/UserInterface.py" line="5401"/>
         <source>&lt;p&gt;Could not start SQL Browser.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;无法启动 SQL 浏览器。&lt;br&gt;请确保它作为 &lt;b&gt;{0}&lt;/b&gt; 可用。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5479"/>
+        <location filename="../UI/UserInterface.py" line="5496"/>
         <source>No tool entry found for external tool &apos;{0}&apos; in tool group &apos;{1}&apos;.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5488"/>
+        <location filename="../UI/UserInterface.py" line="5505"/>
         <source>No toolgroup entry &apos;{0}&apos; found.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5527"/>
+        <location filename="../UI/UserInterface.py" line="5544"/>
         <source>Starting process &apos;{0} {1}&apos;.
 </source>
         <translation>正在启动进程“{0} {1}”。
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5543"/>
+        <location filename="../UI/UserInterface.py" line="5560"/>
         <source>&lt;p&gt;Could not start the tool entry &lt;b&gt;{0}&lt;/b&gt;.&lt;br&gt;Ensure that it is available as &lt;b&gt;{1}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5621"/>
+        <location filename="../UI/UserInterface.py" line="5638"/>
         <source>Process &apos;{0}&apos; has exited.
 </source>
         <translation>进程“{0}”已退出。
 </translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5883"/>
+        <location filename="../UI/UserInterface.py" line="5900"/>
         <source>&lt;p&gt;The documentation starting point &quot;&lt;b&gt;{0}&lt;/b&gt;&quot; could not be found.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -82125,57 +82125,57 @@
         <translation type="obsolete">&lt;p&gt;任务文件 &lt;b&gt;{0}&lt;/b&gt; 无法写入。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6518"/>
+        <location filename="../UI/UserInterface.py" line="6538"/>
         <source>&lt;p&gt;The tasks file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;任务文件 &lt;b&gt;{0}&lt;/b&gt; 无法读取。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6556"/>
+        <location filename="../UI/UserInterface.py" line="6576"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;</source>
         <translation>&lt;p&gt;会话文件 &lt;b&gt;{0}&lt;/b&gt; 无法写入。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6611"/>
+        <location filename="../UI/UserInterface.py" line="6631"/>
         <source>&lt;p&gt;The session file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;</source>
         <translation>&lt;p&gt;会话文件 &lt;b&gt;{0}&lt;/b&gt; 无法读取。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6897"/>
+        <location filename="../UI/UserInterface.py" line="6917"/>
         <source>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; is not a file.&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt; 不是一个文件。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7071"/>
+        <location filename="../UI/UserInterface.py" line="7091"/>
         <source>Trying host {0}</source>
         <translation>正在尝试主机 {0}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1118"/>
+        <location filename="../UI/UserInterface.py" line="1123"/>
         <source>Cooperation</source>
         <translation>协作</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Alt+Shift+O</source>
         <translation>Alt+Shift+O</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1174"/>
+        <location filename="../UI/UserInterface.py" line="1179"/>
         <source>Symbols</source>
         <translation>符号</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2004"/>
+        <location filename="../UI/UserInterface.py" line="2014"/>
         <source>Alt+Shift+Y</source>
         <translation>Alt+Shift+Y</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1183"/>
+        <location filename="../UI/UserInterface.py" line="1188"/>
         <source>Numbers</source>
         <translation>数字</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
+        <location filename="../UI/UserInterface.py" line="2033"/>
         <source>Alt+Shift+B</source>
         <translation>Alt+Shift+B</translation>
     </message>
@@ -82185,7 +82185,7 @@
         <translation type="obsolete">键盘快捷键文件 (*.e4k)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2927"/>
+        <location filename="../UI/UserInterface.py" line="2937"/>
         <source>Python 3 Documentation</source>
         <translation>Python 3 文档</translation>
     </message>
@@ -82195,7 +82195,7 @@
         <translation type="obsolete">Python &amp;3 文档</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2931"/>
+        <location filename="../UI/UserInterface.py" line="2941"/>
         <source>Open Python 3 Documentation</source>
         <translation>打开 Python 3 文档</translation>
     </message>
@@ -82215,17 +82215,17 @@
         <translation type="obsolete">打开 Python 2 文档</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7129"/>
+        <location filename="../UI/UserInterface.py" line="7150"/>
         <source>Error getting versions information</source>
         <translation>获取版本信息出错</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7122"/>
+        <location filename="../UI/UserInterface.py" line="7143"/>
         <source>The versions information could not be downloaded. Please go online and try again.</source>
         <translation>无法获取版本信息。请连线并再试一次。</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7129"/>
+        <location filename="../UI/UserInterface.py" line="7150"/>
         <source>The versions information could not be downloaded for the last 7 days. Please go online and try again.</source>
         <translation>过去7天均无法获取版本信息。请连线并再试一次。</translation>
     </message>
@@ -82250,308 +82250,308 @@
         <translation>启动调试器…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
+        <location filename="../UI/UserInterface.py" line="1701"/>
         <source>New Window</source>
         <translation>新建窗口</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
+        <location filename="../UI/UserInterface.py" line="1701"/>
         <source>New &amp;Window</source>
         <translation>新建窗口(&amp;W)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1691"/>
+        <location filename="../UI/UserInterface.py" line="1701"/>
         <source>Ctrl+Shift+N</source>
         <comment>File|New Window</comment>
         <translation>Ctrl+Shift+N</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2280"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <source>Unittest Rerun Failed</source>
         <translation>单元测试再次运行失败</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2280"/>
+        <location filename="../UI/UserInterface.py" line="2290"/>
         <source>Rerun Failed Tests...</source>
         <translation>重新运行失败的测试…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2285"/>
+        <location filename="../UI/UserInterface.py" line="2295"/>
         <source>Rerun failed tests of the last run</source>
         <translation>重新运行上一次运行中失败的测试</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2287"/>
+        <location filename="../UI/UserInterface.py" line="2297"/>
         <source>&lt;b&gt;Rerun Failed Tests&lt;/b&gt;&lt;p&gt;Rerun all tests that failed during the last unittest run.&lt;/p&gt;</source>
         <translation>&lt;b&gt;重新运行失败的测试&lt;/b&gt;&lt;p&gt;重新运行上一次单元测试中失败的所有测试。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2419"/>
+        <location filename="../UI/UserInterface.py" line="2429"/>
         <source>Compare &amp;Files side by side...</source>
         <translation>并排比较文件(&amp;F)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2502"/>
+        <location filename="../UI/UserInterface.py" line="2512"/>
         <source>Snapshot</source>
         <translation>快照</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2502"/>
+        <location filename="../UI/UserInterface.py" line="2512"/>
         <source>&amp;Snapshot...</source>
         <translation>快照(&amp;S)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2507"/>
+        <location filename="../UI/UserInterface.py" line="2517"/>
         <source>Take snapshots of a screen region</source>
         <translation>截取屏幕区域的快照</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2509"/>
+        <location filename="../UI/UserInterface.py" line="2519"/>
         <source>&lt;b&gt;Snapshot&lt;/b&gt;&lt;p&gt;This opens a dialog to take snapshots of a screen region.&lt;/p&gt;</source>
         <translation>&lt;b&gt;快照&lt;/b&gt;&lt;p&gt;打开一个对话框来截取屏幕一个区域的快照。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5456"/>
+        <location filename="../UI/UserInterface.py" line="5473"/>
         <source>&lt;p&gt;Could not start Snapshot tool.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation>&lt;p&gt;无法启动快照工具。&lt;br&gt;请确保它作为 &lt;b&gt;{0}&lt;/b&gt; 可用。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7335"/>
+        <location filename="../UI/UserInterface.py" line="7356"/>
         <source>Select Workspace Directory</source>
         <translation>选择工作区目录</translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="1896"/>
+        <source>Left Toolbox</source>
+        <translation>左工具箱</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1908"/>
+        <source>Right Toolbox</source>
+        <translation>右工具箱</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1760"/>
+        <source>Switch the input focus to the Project-Viewer window.</source>
+        <translation>将输入焦点切换至项目查看器窗口。</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1762"/>
+        <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1777"/>
+        <source>Switch the input focus to the Multiproject-Viewer window.</source>
+        <translation>将输入焦点切换至多项目查看器窗口。</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1779"/>
+        <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1795"/>
+        <source>Switch the input focus to the Debug-Viewer window.</source>
+        <translation>将输入焦点切换至调试查看器窗口。</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1797"/>
+        <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1813"/>
+        <source>Switch the input focus to the Shell window.</source>
+        <translation>将输入焦点切换至 Shell 窗口。</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1815"/>
+        <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1824"/>
+        <source>&amp;File-Browser</source>
+        <translation>文件浏览器(&amp;F)</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1830"/>
+        <source>Switch the input focus to the File-Browser window.</source>
+        <translation>将输入焦点切换至文件浏览器窗口。</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1832"/>
+        <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;激活文件浏览器&lt;/b&gt;&lt;p&gt;将输入焦点切换至文件浏览器窗口。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1841"/>
+        <source>Lo&amp;g-Viewer</source>
+        <translation>日志浏览器(&amp;G)</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1847"/>
+        <source>Switch the input focus to the Log-Viewer window.</source>
+        <translation>将输入焦点切换至日志查看器窗口。</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1849"/>
+        <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;激活日志查看器&lt;/b&gt;&lt;p&gt;将输入焦点切换至日志查看器。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1859"/>
+        <source>&amp;Task-Viewer</source>
+        <translation>任务浏览器(&amp;T)</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1865"/>
+        <source>Switch the input focus to the Task-Viewer window.</source>
+        <translation>将输入焦点切换至任务浏览器窗口。</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1878"/>
+        <source>Templ&amp;ate-Viewer</source>
+        <translation>模板浏览器(&amp;A)</translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1884"/>
+        <source>Switch the input focus to the Template-Viewer window.</source>
+        <translation>将输入焦点切换至模板浏览器窗口。</translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="1886"/>
-        <source>Left Toolbox</source>
-        <translation>左工具箱</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1898"/>
-        <source>Right Toolbox</source>
-        <translation>右工具箱</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1750"/>
-        <source>Switch the input focus to the Project-Viewer window.</source>
-        <translation>将输入焦点切换至项目查看器窗口。</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1752"/>
-        <source>&lt;b&gt;Activate Project-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Project-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1767"/>
-        <source>Switch the input focus to the Multiproject-Viewer window.</source>
-        <translation>将输入焦点切换至多项目查看器窗口。</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1769"/>
-        <source>&lt;b&gt;Activate Multiproject-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Multiproject-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1785"/>
-        <source>Switch the input focus to the Debug-Viewer window.</source>
-        <translation>将输入焦点切换至调试查看器窗口。</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1787"/>
-        <source>&lt;b&gt;Activate Debug-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Debug-Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1803"/>
-        <source>Switch the input focus to the Shell window.</source>
-        <translation>将输入焦点切换至 Shell 窗口。</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1805"/>
-        <source>&lt;b&gt;Activate Shell&lt;/b&gt;&lt;p&gt;This switches the input focus to the Shell window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1814"/>
-        <source>&amp;File-Browser</source>
-        <translation>文件浏览器(&amp;F)</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1820"/>
-        <source>Switch the input focus to the File-Browser window.</source>
-        <translation>将输入焦点切换至文件浏览器窗口。</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1822"/>
-        <source>&lt;b&gt;Activate File-Browser&lt;/b&gt;&lt;p&gt;This switches the input focus to the File-Browser window.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;激活文件浏览器&lt;/b&gt;&lt;p&gt;将输入焦点切换至文件浏览器窗口。&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1831"/>
-        <source>Lo&amp;g-Viewer</source>
-        <translation>日志浏览器(&amp;G)</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1837"/>
-        <source>Switch the input focus to the Log-Viewer window.</source>
-        <translation>将输入焦点切换至日志查看器窗口。</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1839"/>
-        <source>&lt;b&gt;Activate Log-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Log-Viewer window.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;激活日志查看器&lt;/b&gt;&lt;p&gt;将输入焦点切换至日志查看器。&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1849"/>
-        <source>&amp;Task-Viewer</source>
-        <translation>任务浏览器(&amp;T)</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1855"/>
-        <source>Switch the input focus to the Task-Viewer window.</source>
-        <translation>将输入焦点切换至任务浏览器窗口。</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1868"/>
-        <source>Templ&amp;ate-Viewer</source>
-        <translation>模板浏览器(&amp;A)</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1874"/>
-        <source>Switch the input focus to the Template-Viewer window.</source>
-        <translation>将输入焦点切换至模板浏览器窗口。</translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1876"/>
         <source>&lt;b&gt;Activate Template-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Template-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1886"/>
+        <location filename="../UI/UserInterface.py" line="1896"/>
         <source>&amp;Left Toolbox</source>
         <translation>左工具箱(&amp;L)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1889"/>
+        <location filename="../UI/UserInterface.py" line="1899"/>
         <source>Toggle the Left Toolbox window</source>
         <translation>切换左工具箱窗口</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1890"/>
+        <location filename="../UI/UserInterface.py" line="1900"/>
         <source>&lt;b&gt;Toggle the Left Toolbox window&lt;/b&gt;&lt;p&gt;If the Left Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation>&lt;b&gt;切换左工具箱窗口&lt;/b&gt;&lt;p&gt;如果左工具箱窗口已隐藏则显示它。如果它可见则隐藏它。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1898"/>
+        <location filename="../UI/UserInterface.py" line="1908"/>
         <source>&amp;Right Toolbox</source>
         <translation>右工具箱(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1902"/>
+        <location filename="../UI/UserInterface.py" line="1912"/>
         <source>Toggle the Right Toolbox window</source>
         <translation>切换右工具箱窗口</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1903"/>
+        <location filename="../UI/UserInterface.py" line="1913"/>
         <source>&lt;b&gt;Toggle the Right Toolbox window&lt;/b&gt;&lt;p&gt;If the Right Toolbox window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation>&lt;b&gt;切换右工具箱窗口&lt;/b&gt;&lt;p&gt;如果右工具箱窗口已隐藏则显示它。如果它可见则隐藏它。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1948"/>
         <source>Right Sidebar</source>
         <translation>右侧边栏</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1938"/>
+        <location filename="../UI/UserInterface.py" line="1948"/>
         <source>&amp;Right Sidebar</source>
         <translation>右侧边栏(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1942"/>
+        <location filename="../UI/UserInterface.py" line="1952"/>
         <source>Toggle the right sidebar window</source>
         <translation>切换右侧边栏窗口</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1944"/>
+        <location filename="../UI/UserInterface.py" line="1954"/>
         <source>&lt;b&gt;Toggle the right sidebar window&lt;/b&gt;&lt;p&gt;If the right sidebar window is hidden then display it. If it is displayed then close it.&lt;/p&gt;</source>
         <translation>&lt;b&gt;切换右侧边栏窗口&lt;/b&gt;&lt;p&gt;如果右侧边栏窗口已隐藏则显示它。如果它可见则隐藏它。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Cooperation-Viewer</source>
         <translation>协作浏览器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1967"/>
+        <location filename="../UI/UserInterface.py" line="1977"/>
         <source>Co&amp;operation-Viewer</source>
         <translation>协作浏览器(&amp;O)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1973"/>
+        <location filename="../UI/UserInterface.py" line="1983"/>
         <source>Switch the input focus to the Cooperation-Viewer window.</source>
         <translation>将输入焦点切换至协作浏览器窗口。</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1975"/>
+        <location filename="../UI/UserInterface.py" line="1985"/>
         <source>&lt;b&gt;Activate Cooperation-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Cooperation-Viewer window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;激活协作浏览器&lt;/b&gt;&lt;p&gt;将输入焦点切换至协作浏览器窗口。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2004"/>
+        <location filename="../UI/UserInterface.py" line="2014"/>
         <source>Symbols-Viewer</source>
         <translation>符号查看器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2004"/>
+        <location filename="../UI/UserInterface.py" line="2014"/>
         <source>S&amp;ymbols-Viewer</source>
         <translation>符号查看器(&amp;Y)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2010"/>
+        <location filename="../UI/UserInterface.py" line="2020"/>
         <source>Switch the input focus to the Symbols-Viewer window.</source>
         <translation>将输入焦点切换至符号查看器窗口。</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2012"/>
+        <location filename="../UI/UserInterface.py" line="2022"/>
         <source>&lt;b&gt;Activate Symbols-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Symbols-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
+        <location filename="../UI/UserInterface.py" line="2033"/>
         <source>Numbers-Viewer</source>
         <translation>数字查看器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2023"/>
+        <location filename="../UI/UserInterface.py" line="2033"/>
         <source>Num&amp;bers-Viewer</source>
         <translation>数字查看器(&amp;B)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2029"/>
+        <location filename="../UI/UserInterface.py" line="2039"/>
         <source>Switch the input focus to the Numbers-Viewer window.</source>
         <translation>将输入焦点切换至数字查看器窗口。</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2031"/>
+        <location filename="../UI/UserInterface.py" line="2041"/>
         <source>&lt;b&gt;Activate Numbers-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Numbers-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3221"/>
+        <location filename="../UI/UserInterface.py" line="3231"/>
         <source>&amp;Windows</source>
         <translation>窗口(&amp;W)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1857"/>
+        <location filename="../UI/UserInterface.py" line="1867"/>
         <source>&lt;b&gt;Activate Task-Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Task-Viewer window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
+        <location filename="../UI/UserInterface.py" line="1996"/>
         <source>IRC</source>
         <translation>IRC</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
+        <location filename="../UI/UserInterface.py" line="1996"/>
         <source>&amp;IRC</source>
         <translation>&amp;IRC</translation>
     </message>
@@ -82561,57 +82561,57 @@
         <translation type="obsolete">Meta+Shift+I</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1992"/>
+        <location filename="../UI/UserInterface.py" line="2002"/>
         <source>Switch the input focus to the IRC window.</source>
         <translation>将输入焦点切换至 IRC 窗口。</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1994"/>
+        <location filename="../UI/UserInterface.py" line="2004"/>
         <source>&lt;b&gt;Activate IRC&lt;/b&gt;&lt;p&gt;This switches the input focus to the IRC window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;激活 IRC&lt;/b&gt;&lt;p&gt;将输入焦点切换至 IRC 窗口。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2338"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Qt-Designer</source>
         <translation>Qt 设计师</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2338"/>
+        <location filename="../UI/UserInterface.py" line="2348"/>
         <source>Qt-&amp;Designer...</source>
         <translation>Qt 设计师(&amp;D)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2343"/>
+        <location filename="../UI/UserInterface.py" line="2353"/>
         <source>Start Qt-Designer</source>
         <translation>启动 Qt 设计师</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2344"/>
+        <location filename="../UI/UserInterface.py" line="2354"/>
         <source>&lt;b&gt;Qt-Designer&lt;/b&gt;&lt;p&gt;Start Qt-Designer.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Qt 设计师&lt;/b&gt;&lt;p&gt;启动 Qt 设计师。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2364"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Qt-Linguist</source>
         <translation>Qt 语言家</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2364"/>
+        <location filename="../UI/UserInterface.py" line="2374"/>
         <source>Qt-&amp;Linguist...</source>
         <translation>Qt 语言家(&amp;L)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2369"/>
+        <location filename="../UI/UserInterface.py" line="2379"/>
         <source>Start Qt-Linguist</source>
         <translation>启动 Qt 语言家</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2370"/>
+        <location filename="../UI/UserInterface.py" line="2380"/>
         <source>&lt;b&gt;Qt-Linguist&lt;/b&gt;&lt;p&gt;Start Qt-Linguist.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Qt 语言家&lt;/b&gt;&lt;p&gt;启动 Qt 语言家。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2858"/>
+        <location filename="../UI/UserInterface.py" line="2868"/>
         <source>Qt5 Documentation</source>
         <translation>Qt5 文档</translation>
     </message>
@@ -82621,7 +82621,7 @@
         <translation type="obsolete">Qt&amp;5 文档</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2862"/>
+        <location filename="../UI/UserInterface.py" line="2872"/>
         <source>Open Qt5 Documentation</source>
         <translation>打开 Qt5 文档</translation>
     </message>
@@ -82631,42 +82631,42 @@
         <translation type="obsolete">&lt;p&gt;状态栏的这一部分允许对当前编辑器、shell 或终端进行缩放。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2666"/>
+        <location filename="../UI/UserInterface.py" line="2676"/>
         <source>Manage SSL Certificates</source>
         <translation>管理 SSL 证书</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2666"/>
+        <location filename="../UI/UserInterface.py" line="2676"/>
         <source>Manage SSL Certificates...</source>
         <translation>管理 SSL 证书…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2671"/>
+        <location filename="../UI/UserInterface.py" line="2681"/>
         <source>Manage the saved SSL certificates</source>
         <translation>管理保存的 SSL 证书</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2673"/>
+        <location filename="../UI/UserInterface.py" line="2683"/>
         <source>&lt;b&gt;Manage SSL Certificates...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved SSL certificates.&lt;/p&gt;</source>
         <translation>&lt;b&gt;管理 SSL 证书…&lt;/b&gt;&lt;p&gt;打开一个对话框来管理保存的 SSL 证书。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2682"/>
+        <location filename="../UI/UserInterface.py" line="2692"/>
         <source>Edit Message Filters</source>
         <translation>编辑消息过滤器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2682"/>
+        <location filename="../UI/UserInterface.py" line="2692"/>
         <source>Edit Message Filters...</source>
         <translation>编辑消息过滤器…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2687"/>
+        <location filename="../UI/UserInterface.py" line="2697"/>
         <source>Edit the message filters used to suppress unwanted messages</source>
         <translation>编辑消息过滤器使得不期望的消息不显示</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2689"/>
+        <location filename="../UI/UserInterface.py" line="2699"/>
         <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
         <translation>&lt;b&gt;编辑消息过滤器&lt;/b&gt;&lt;p&gt;打开对话框来编辑消息过滤器,使得不期望的错误信息不再在错误窗口中显示。&lt;/p&gt;</translation>
     </message>
@@ -82676,7 +82676,7 @@
         <translation type="obsolete">PyQt&amp;4 文档</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2888"/>
+        <location filename="../UI/UserInterface.py" line="2898"/>
         <source>PyQt5 Documentation</source>
         <translation>PyQt5 文档</translation>
     </message>
@@ -82686,7 +82686,7 @@
         <translation type="obsolete">PyQt&amp;5 文档</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2892"/>
+        <location filename="../UI/UserInterface.py" line="2902"/>
         <source>Open PyQt5 Documentation</source>
         <translation>打开 PyQt5 文档</translation>
     </message>
@@ -82696,37 +82696,37 @@
         <translation type="obsolete">&lt;p&gt;未配置 PyQt5 文档起始位置。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2832"/>
+        <location filename="../UI/UserInterface.py" line="2842"/>
         <source>&lt;b&gt;Virtualenv Configurator&lt;/b&gt;&lt;p&gt;This opens a dialog for entering all the parameters needed to create a Python virtual environment using virtualenv or pyvenv.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Qt5 文档&lt;/b&gt;&lt;p&gt;显示 Qt5 文档。依赖于您的设置,这可能会在 eric 的内置帮助查看器内显示,或是启动一个网页浏览器,或是启动 Qt 助手。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2933"/>
+        <location filename="../UI/UserInterface.py" line="2943"/>
         <source>&lt;b&gt;Python 3 Documentation&lt;/b&gt;&lt;p&gt;Display the Python 3 documentation. If no documentation directory is configured, the location of the Python 3 documentation is assumed to be the doc directory underneath the location of the Python 3 executable on Windows and &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt; on Unix. Set PYTHON3DOCDIR in your environment to override this.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Python 3 文档&lt;/b&gt;&lt;p&gt;显示 Python 3 文档。如果尚未配置文档目录,则在 Windows 系统上,文档位置将默认为 Python 3 可执行文件所在目录下的 doc 目录;在类 Unix 系统上,则默认为 &lt;i&gt;/usr/share/doc/packages/python/html&lt;/i&gt;。请在环境中设置 PYTHON3DOCDIR 以覆盖默认行为。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7062"/>
+        <location filename="../UI/UserInterface.py" line="7082"/>
         <source>%v/%m</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2203"/>
+        <location filename="../UI/UserInterface.py" line="2213"/>
         <source>Show Error Log</source>
         <translation>显示错误日志</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2199"/>
+        <location filename="../UI/UserInterface.py" line="2209"/>
         <source>Show Error &amp;Log...</source>
         <translation>显示错误日志(&amp;L)…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2204"/>
+        <location filename="../UI/UserInterface.py" line="2214"/>
         <source>&lt;b&gt;Show Error Log...&lt;/b&gt;&lt;p&gt;Opens a dialog showing the most recent error log.&lt;/p&gt;</source>
         <translation>&lt;b&gt;显示错误日志…&lt;/b&gt;&lt;p&gt;打开一个对话框显示最近的错误日志。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7066"/>
+        <location filename="../UI/UserInterface.py" line="7086"/>
         <source>Version Check</source>
         <translation>版本检查</translation>
     </message>
@@ -82821,12 +82821,12 @@
         <translation>生成插件工具栏…</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4194"/>
+        <location filename="../UI/UserInterface.py" line="4204"/>
         <source>&amp;User Tools</source>
         <translation>用户工具(&amp;U)</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="4266"/>
+        <location filename="../UI/UserInterface.py" line="4276"/>
         <source>No User Tools Configured</source>
         <translation>没有配置的用户工具</translation>
     </message>
@@ -82836,12 +82836,12 @@
         <translation type="obsolete">因为当前处在 &lt;b&gt;离线&lt;/b&gt; 状态,无法获取版本信息。请连线并再试一次。</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2459"/>
+        <location filename="../UI/UserInterface.py" line="2469"/>
         <source>Hex Editor</source>
         <translation>十六进制编辑器</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2459"/>
+        <location filename="../UI/UserInterface.py" line="2469"/>
         <source>&amp;Hex Editor...</source>
         <translation>十六进制编辑器(&amp;H)…</translation>
     </message>
@@ -82856,47 +82856,47 @@
         <translation type="obsolete">&lt;b&gt;十六进制编辑器&lt;/b&gt;&lt;p&gt;启动 eric6 十六进制编辑器来查看、修改二进制文件。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2705"/>
+        <location filename="../UI/UserInterface.py" line="2715"/>
         <source>Clear private data</source>
         <translation type="unfinished">清空隐私数据</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2707"/>
+        <location filename="../UI/UserInterface.py" line="2717"/>
         <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like the various list of recently opened files, projects or multi projects.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1665"/>
+        <location filename="../UI/UserInterface.py" line="1675"/>
         <source>Save session...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1670"/>
+        <location filename="../UI/UserInterface.py" line="1680"/>
         <source>&lt;b&gt;Save session...&lt;/b&gt;&lt;p&gt;This saves the current session to disk. A dialog is opened to select the file name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6650"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <source>Load session</source>
         <translation type="unfinished">载入会话</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1678"/>
+        <location filename="../UI/UserInterface.py" line="1688"/>
         <source>Load session...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1683"/>
+        <location filename="../UI/UserInterface.py" line="1693"/>
         <source>&lt;b&gt;Load session...&lt;/b&gt;&lt;p&gt;This loads a session saved to disk previously. A dialog is opened to select the file name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6703"/>
+        <location filename="../UI/UserInterface.py" line="6723"/>
         <source>Crash Session found!</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6703"/>
+        <location filename="../UI/UserInterface.py" line="6723"/>
         <source>A session file of a crashed session was found. Shall this session be restored?</source>
         <translation type="unfinished"></translation>
     </message>
@@ -82911,443 +82911,443 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7209"/>
+        <location filename="../UI/UserInterface.py" line="7230"/>
         <source>Update Check</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7209"/>
+        <location filename="../UI/UserInterface.py" line="7230"/>
         <source>You installed eric directly from the source code. There is no possibility to check for the availability of an update.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2042"/>
+        <location filename="../UI/UserInterface.py" line="2052"/>
         <source>Code Documentation Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2863"/>
+        <location filename="../UI/UserInterface.py" line="2873"/>
         <source>&lt;b&gt;Qt5 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt5 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2894"/>
+        <location filename="../UI/UserInterface.py" line="2904"/>
         <source>&lt;b&gt;PyQt5 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt5 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2970"/>
+        <location filename="../UI/UserInterface.py" line="2980"/>
         <source>PySide2 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2974"/>
+        <location filename="../UI/UserInterface.py" line="2984"/>
         <source>Open PySide2 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2976"/>
+        <location filename="../UI/UserInterface.py" line="2986"/>
         <source>&lt;b&gt;PySide2 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide2 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5866"/>
+        <location filename="../UI/UserInterface.py" line="5883"/>
         <source>&lt;p&gt;The PySide{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2813"/>
+        <location filename="../UI/UserInterface.py" line="2823"/>
         <source>Virtualenv Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2807"/>
+        <location filename="../UI/UserInterface.py" line="2817"/>
         <source>&amp;Virtualenv Manager...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2815"/>
+        <location filename="../UI/UserInterface.py" line="2825"/>
         <source>&lt;b&gt;Virtualenv Manager&lt;/b&gt;&lt;p&gt;This opens a dialog to manage the defined Python virtual environments.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2830"/>
+        <location filename="../UI/UserInterface.py" line="2840"/>
         <source>Virtualenv Configurator</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2824"/>
+        <location filename="../UI/UserInterface.py" line="2834"/>
         <source>Virtualenv &amp;Configurator...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3228"/>
+        <location filename="../UI/UserInterface.py" line="3238"/>
         <source>Left Side</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3240"/>
+        <location filename="../UI/UserInterface.py" line="3250"/>
         <source>Bottom Side</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3247"/>
+        <location filename="../UI/UserInterface.py" line="3257"/>
         <source>Right Side</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3267"/>
+        <location filename="../UI/UserInterface.py" line="3277"/>
         <source>Plug-ins</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
+        <location filename="../UI/UserInterface.py" line="1659"/>
         <source>Restart</source>
         <translation type="unfinished">重启</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1649"/>
+        <location filename="../UI/UserInterface.py" line="1659"/>
         <source>Ctrl+Shift+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1655"/>
+        <location filename="../UI/UserInterface.py" line="1665"/>
         <source>Restart the IDE</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1656"/>
+        <location filename="../UI/UserInterface.py" line="1666"/>
         <source>&lt;b&gt;Restart the IDE&lt;/b&gt;&lt;p&gt;This restarts the IDE. Any unsaved changes may be saved first. Any Python program being debugged will be stopped and the preferences will be written to disc.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6043"/>
+        <location filename="../UI/UserInterface.py" line="6060"/>
         <source>Start Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../UI/UserInterface.py" line="2090"/>
+        <source>Conda</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2072"/>
+        <source>PyPI</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="3586"/>
+        <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2108"/>
+        <source>MicroPython</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="1996"/>
+        <source>Ctrl+Alt+Shift+I</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2052"/>
+        <source>Ctrl+Alt+Shift+D</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2058"/>
+        <source>Switch the input focus to the Code Documentation Viewer window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2061"/>
+        <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2072"/>
+        <source>Ctrl+Alt+Shift+P</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2078"/>
+        <source>Switch the input focus to the PyPI window.</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../UI/UserInterface.py" line="2080"/>
-        <source>Conda</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2062"/>
-        <source>PyPI</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="3576"/>
-        <source>&lt;p&gt;This part of the status bar allows zooming the current editor or shell.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2098"/>
-        <source>MicroPython</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="1986"/>
-        <source>Ctrl+Alt+Shift+I</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2042"/>
-        <source>Ctrl+Alt+Shift+D</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2048"/>
-        <source>Switch the input focus to the Code Documentation Viewer window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2051"/>
-        <source>&lt;b&gt;Code Documentation Viewer&lt;/b&gt;&lt;p&gt;This switches the input focus to the Code Documentation Viewer window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2062"/>
-        <source>Ctrl+Alt+Shift+P</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2068"/>
-        <source>Switch the input focus to the PyPI window.</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2070"/>
         <source>&lt;b&gt;PyPI&lt;/b&gt;&lt;p&gt;This switches the input focus to the PyPI window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2080"/>
+        <location filename="../UI/UserInterface.py" line="2090"/>
         <source>Ctrl+Alt+Shift+C</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2086"/>
+        <location filename="../UI/UserInterface.py" line="2096"/>
         <source>Switch the input focus to the Conda window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2088"/>
-        <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2098"/>
+        <source>&lt;b&gt;Conda&lt;/b&gt;&lt;p&gt;This switches the input focus to the Conda window.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2108"/>
         <source>Ctrl+Alt+Shift+M</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2104"/>
+        <location filename="../UI/UserInterface.py" line="2114"/>
         <source>Switch the input focus to the MicroPython window.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2106"/>
+        <location filename="../UI/UserInterface.py" line="2116"/>
         <source>&lt;b&gt;MicroPython&lt;/b&gt;&lt;p&gt;This switches the input focus to the MicroPython window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3225"/>
+        <location filename="../UI/UserInterface.py" line="3235"/>
         <source>Central Park</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="3745"/>
+        <location filename="../UI/UserInterface.py" line="3755"/>
         <source>&lt;h2&gt;Version Numbers&lt;/h2&gt;&lt;table&gt;</source>
         <translation type="unfinished">&lt;h3&gt;版本号&lt;/h3&gt;&lt;table&gt; {2&gt;?} {2&gt;?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5082"/>
+        <location filename="../UI/UserInterface.py" line="5099"/>
         <source>&lt;p&gt;Could not find the Qt-Designer executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5152"/>
+        <location filename="../UI/UserInterface.py" line="5169"/>
         <source>&lt;p&gt;Could not find the Qt-Linguist executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5196"/>
+        <location filename="../UI/UserInterface.py" line="5213"/>
         <source>&lt;p&gt;Could not find the Qt-Assistant executable.&lt;br&gt;Ensure that it is installed and optionally configured on the Qt configuration page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2211"/>
+        <location filename="../UI/UserInterface.py" line="2221"/>
         <source>Show Install Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2211"/>
+        <location filename="../UI/UserInterface.py" line="2221"/>
         <source>Show Install &amp;Info...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2215"/>
+        <location filename="../UI/UserInterface.py" line="2225"/>
         <source>Show Installation Information</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2217"/>
+        <location filename="../UI/UserInterface.py" line="2227"/>
         <source>&lt;b&gt;Show Install Info...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the installation process.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2873"/>
+        <location filename="../UI/UserInterface.py" line="2883"/>
         <source>Qt6 Documentation</source>
         <translation type="unfinished">Qt5 文档 {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2877"/>
+        <location filename="../UI/UserInterface.py" line="2887"/>
         <source>Open Qt6 Documentation</source>
         <translation type="unfinished">打开 Qt5 文档 {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2878"/>
+        <location filename="../UI/UserInterface.py" line="2888"/>
         <source>&lt;b&gt;Qt6 Documentation&lt;/b&gt;&lt;p&gt;Display the Qt6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2905"/>
+        <location filename="../UI/UserInterface.py" line="2915"/>
         <source>PyQt6 Documentation</source>
         <translation type="unfinished">PyQt5 文档 {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2909"/>
+        <location filename="../UI/UserInterface.py" line="2919"/>
         <source>Open PyQt6 Documentation</source>
         <translation type="unfinished">打开 PyQt5 文档 {6 ?}</translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2911"/>
+        <location filename="../UI/UserInterface.py" line="2921"/>
         <source>&lt;b&gt;PyQt6 Documentation&lt;/b&gt;&lt;p&gt;Display the PyQt6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2990"/>
+        <location filename="../UI/UserInterface.py" line="3000"/>
         <source>PySide6 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2994"/>
+        <location filename="../UI/UserInterface.py" line="3004"/>
         <source>Open PySide6 Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2996"/>
+        <location filename="../UI/UserInterface.py" line="3006"/>
         <source>&lt;b&gt;PySide6 Documentation&lt;/b&gt;&lt;p&gt;Display the PySide6 Documentation. Dependent upon your settings, this will either show the help in Eric&apos;s internal help viewer/web browser, or execute a web browser or Qt Assistant. &lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5761"/>
+        <location filename="../UI/UserInterface.py" line="5778"/>
         <source>&lt;p&gt;The PyQt{0} documentation starting point has not been configured.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1697"/>
+        <location filename="../UI/UserInterface.py" line="1707"/>
         <source>Open a new eric instance</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="1699"/>
+        <location filename="../UI/UserInterface.py" line="1709"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new instance of the eric IDE.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2142"/>
+        <location filename="../UI/UserInterface.py" line="2152"/>
         <source>&lt;b&gt;Helpviewer&lt;/b&gt;&lt;p&gt;Display the eric web browser. This window will show HTML help files and help from Qt help collections. It has the capability to navigate to links, set bookmarks, print the displayed help and some more features. You may use it to browse the internet as well&lt;/p&gt;&lt;p&gt;If called with a word selected, this word is search in the Qt help collection.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2177"/>
+        <location filename="../UI/UserInterface.py" line="2187"/>
         <source>&lt;b&gt;Check for Updates...&lt;/b&gt;&lt;p&gt;Checks the internet for updates of eric.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2190"/>
+        <location filename="../UI/UserInterface.py" line="2200"/>
         <source>&lt;b&gt;Show downloadable versions...&lt;/b&gt;&lt;p&gt;Shows the eric versions available for download from the internet.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2464"/>
-        <source>Start the eric Hex Editor</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../UI/UserInterface.py" line="2466"/>
-        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../UI/UserInterface.py" line="2474"/>
+        <source>Start the eric Hex Editor</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2476"/>
+        <source>&lt;b&gt;Hex Editor&lt;/b&gt;&lt;p&gt;Starts the eric Hex Editor for viewing or editing binary files.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../UI/UserInterface.py" line="2484"/>
         <source>eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2474"/>
+        <location filename="../UI/UserInterface.py" line="2484"/>
         <source>eric &amp;Web Browser...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2479"/>
+        <location filename="../UI/UserInterface.py" line="2489"/>
         <source>Start the eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2481"/>
+        <location filename="../UI/UserInterface.py" line="2491"/>
         <source>&lt;b&gt;eric Web Browser&lt;/b&gt;&lt;p&gt;Browse the Internet with the eric Web Browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2493"/>
+        <location filename="../UI/UserInterface.py" line="2503"/>
         <source>Start the eric Icon Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2495"/>
+        <location filename="../UI/UserInterface.py" line="2505"/>
         <source>&lt;b&gt;Icon Editor&lt;/b&gt;&lt;p&gt;Starts the eric Icon Editor for editing simple icons.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2581"/>
+        <location filename="../UI/UserInterface.py" line="2591"/>
         <source>&lt;b&gt;Show external tools&lt;/b&gt;&lt;p&gt;Opens a dialog to show the path and versions of all extenal tools used by eric.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="2955"/>
+        <location filename="../UI/UserInterface.py" line="2965"/>
         <source>&lt;b&gt;Eric API Documentation&lt;/b&gt;&lt;p&gt;Display the Eric API documentation. The location for the documentation is the Documentation/Source subdirectory of the eric installation directory.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="5979"/>
+        <location filename="../UI/UserInterface.py" line="5996"/>
         <source>The eric web browser could not be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6043"/>
+        <location filename="../UI/UserInterface.py" line="6060"/>
         <source>&lt;p&gt;The eric web browser is not started.&lt;/p&gt;&lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7221"/>
+        <location filename="../UI/UserInterface.py" line="7242"/>
         <source>The update to &lt;b&gt;{0}&lt;/b&gt; of eric is available at &lt;b&gt;{1}&lt;/b&gt;. Would you like to get it?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7199"/>
+        <location filename="../UI/UserInterface.py" line="7220"/>
         <source>You are using a snapshot release of eric. A more up-to-date stable release might be available.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7233"/>
+        <location filename="../UI/UserInterface.py" line="7254"/>
         <source>eric is up to date</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7233"/>
+        <location filename="../UI/UserInterface.py" line="7254"/>
         <source>You are using the latest version of eric</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="7316"/>
+        <location filename="../UI/UserInterface.py" line="7337"/>
         <source>eric has not been configured yet. The configuration dialog will be started.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6294"/>
+        <location filename="../UI/UserInterface.py" line="6314"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard Shortcuts File (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6313"/>
+        <location filename="../UI/UserInterface.py" line="6333"/>
         <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6329"/>
+        <location filename="../UI/UserInterface.py" line="6349"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6518"/>
+        <location filename="../UI/UserInterface.py" line="6538"/>
         <source>Read Tasks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6627"/>
+        <location filename="../UI/UserInterface.py" line="6647"/>
         <source>Save Session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6584"/>
+        <location filename="../UI/UserInterface.py" line="6604"/>
         <source>Read Session</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UI/UserInterface.py" line="6650"/>
+        <location filename="../UI/UserInterface.py" line="6670"/>
         <source>eric Session Files (*.esj);;eric XML Session Files (*.e5s)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -83428,7 +83428,7 @@
 <context>
     <name>Utilities</name>
     <message>
-        <location filename="../Utilities/__init__.py" line="1453"/>
+        <location filename="../Utilities/__init__.py" line="1454"/>
         <source>&lt;p&gt;You may use %-codes as placeholders in the string. Supported codes are:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;column of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;directory of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;filename of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;home directory of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;line of the cursor of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;path of the current project&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;selected text of the current editor&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;username of the current user&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;the percent sign&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</source>
         <translation>&lt;p&gt;可以在字符串中使用“%-代码”作为占位符。支持的代码有:&lt;table&gt;&lt;tr&gt;&lt;td&gt;%C&lt;/td&gt;&lt;td&gt;当前编辑器的光标所在列&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%D&lt;/td&gt;&lt;td&gt;当前编辑器的文件夹&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%F&lt;/td&gt;&lt;td&gt;当前编辑器的文件名&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%H&lt;/td&gt;&lt;td&gt;当前用户的根目录&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%L&lt;/td&gt;&lt;td&gt;当前编辑器的光标所在行&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%P&lt;/td&gt;&lt;td&gt;当前项目的路径&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%S&lt;/td&gt;&lt;td&gt;当前编辑器中选择的文本&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%U&lt;/td&gt;&lt;td&gt;当前用户的用户名&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;%%&lt;/td&gt;&lt;td&gt;百分比符号&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/p&gt;</translation>
     </message>
@@ -83750,7 +83750,7 @@
 <context>
     <name>VariablesViewer</name>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="958"/>
+        <location filename="../Debugger/VariablesViewer.py" line="965"/>
         <source>Global Variables</source>
         <translation>全局变量</translation>
     </message>
@@ -83770,12 +83770,12 @@
         <translation type="obsolete">类型</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="959"/>
+        <location filename="../Debugger/VariablesViewer.py" line="966"/>
         <source>&lt;b&gt;The Global Variables Viewer Window&lt;/b&gt;&lt;p&gt;This window displays the global variables of the debugged program.&lt;/p&gt;</source>
         <translation>&lt;b&gt;全局变量浏览器窗口&lt;/b&gt;&lt;p&gt;该窗口显示调试程序的全局变量。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="965"/>
+        <location filename="../Debugger/VariablesViewer.py" line="972"/>
         <source>Local Variables</source>
         <translation>局部变量</translation>
     </message>
@@ -83785,17 +83785,17 @@
         <translation type="obsolete">局部</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="966"/>
+        <location filename="../Debugger/VariablesViewer.py" line="973"/>
         <source>&lt;b&gt;The Local Variables Viewer Window&lt;/b&gt;&lt;p&gt;This window displays the local variables of the debugged program.&lt;/p&gt;</source>
         <translation>&lt;b&gt;局部变量浏览器窗口&lt;/b&gt;&lt;p&gt;该窗口显示高度程序的局部变量。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1083"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1090"/>
         <source>Show Details...</source>
         <translation>显示细节…</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1098"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1105"/>
         <source>Configure...</source>
         <translation>配置…</translation>
     </message>
@@ -83805,7 +83805,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1096"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1103"/>
         <source>Refresh</source>
         <translation type="unfinished">刷新</translation>
     </message>
@@ -83815,22 +83815,22 @@
         <translation type="obsolete">折叠所有</translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1085"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1092"/>
         <source>Expand</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1086"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1093"/>
         <source>Collapse</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1087"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1094"/>
         <source>Collapse All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../Debugger/VariablesViewer.py" line="1099"/>
+        <location filename="../Debugger/VariablesViewer.py" line="1106"/>
         <source>Variables Type Filter...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -84514,7 +84514,7 @@
         <translation>进程生成错误</translation>
     </message>
     <message>
-        <location filename="../VCS/VersionControl.py" line="761"/>
+        <location filename="../VCS/VersionControl.py" line="764"/>
         <source>Repository status checking is switched off</source>
         <translation>储存库状态检查被关闭</translation>
     </message>
@@ -84527,1523 +84527,1523 @@
 <context>
     <name>ViewManager</name>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>New</source>
         <translation>新建</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>&amp;New</source>
         <translation>新建(&amp;N)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="584"/>
+        <location filename="../ViewManager/ViewManager.py" line="585"/>
         <source>Ctrl+N</source>
         <comment>File|New</comment>
         <translation>Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="592"/>
+        <location filename="../ViewManager/ViewManager.py" line="593"/>
         <source>Open an empty editor window</source>
         <translation>打开一个空白编辑器窗口</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="595"/>
+        <location filename="../ViewManager/ViewManager.py" line="596"/>
         <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="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>Open</source>
         <translation>打开</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>&amp;Open...</source>
         <translation>打开(&amp;O)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="603"/>
+        <location filename="../ViewManager/ViewManager.py" line="604"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation>Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="611"/>
+        <location filename="../ViewManager/ViewManager.py" line="612"/>
         <source>Open a file</source>
         <translation>打开一个文件</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="613"/>
+        <location filename="../ViewManager/ViewManager.py" line="614"/>
         <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="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>Close</source>
         <translation>关闭</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>&amp;Close</source>
         <translation>关闭(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="624"/>
+        <location filename="../ViewManager/ViewManager.py" line="625"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation>Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="632"/>
+        <location filename="../ViewManager/ViewManager.py" line="633"/>
         <source>Close the current window</source>
         <translation>关闭当前窗口</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="635"/>
+        <location filename="../ViewManager/ViewManager.py" line="636"/>
         <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="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="644"/>
         <source>Close All</source>
         <translation>全部关闭</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="643"/>
+        <location filename="../ViewManager/ViewManager.py" line="644"/>
         <source>Clos&amp;e All</source>
         <translation>全部关闭(&amp;E)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="647"/>
+        <location filename="../ViewManager/ViewManager.py" line="648"/>
         <source>Close all editor windows</source>
         <translation>关闭所有编辑器窗口</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="650"/>
+        <location filename="../ViewManager/ViewManager.py" line="651"/>
         <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="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>Save</source>
         <translation>保存</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>&amp;Save</source>
         <translation>保存(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="662"/>
+        <location filename="../ViewManager/ViewManager.py" line="663"/>
         <source>Ctrl+S</source>
         <comment>File|Save</comment>
         <translation>Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="669"/>
+        <location filename="../ViewManager/ViewManager.py" line="670"/>
         <source>Save the current file</source>
         <translation>保存当前文件</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="671"/>
+        <location filename="../ViewManager/ViewManager.py" line="672"/>
         <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="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Save as</source>
         <translation>另存为</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Save &amp;as...</source>
         <translation>另存为(&amp;A)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="679"/>
+        <location filename="../ViewManager/ViewManager.py" line="680"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation>Shift+Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="686"/>
+        <location filename="../ViewManager/ViewManager.py" line="687"/>
         <source>Save the current file to a new one</source>
         <translation>将当前文件保存到一个新文件中</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="688"/>
+        <location filename="../ViewManager/ViewManager.py" line="689"/>
         <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="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="714"/>
         <source>Save all</source>
         <translation>全部保存</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="718"/>
+        <location filename="../ViewManager/ViewManager.py" line="719"/>
         <source>Save all files</source>
         <translation>保存所有文件</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="720"/>
+        <location filename="../ViewManager/ViewManager.py" line="721"/>
         <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="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>Print</source>
         <translation>打印</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>&amp;Print</source>
         <translation>打印(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="730"/>
+        <location filename="../ViewManager/ViewManager.py" line="731"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation>Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="737"/>
+        <location filename="../ViewManager/ViewManager.py" line="738"/>
         <source>Print the current file</source>
         <translation>打印当前文件</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="739"/>
+        <location filename="../ViewManager/ViewManager.py" line="740"/>
         <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="748"/>
+        <location filename="../ViewManager/ViewManager.py" line="749"/>
         <source>Print Preview</source>
         <translation>打印预览</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="753"/>
+        <location filename="../ViewManager/ViewManager.py" line="754"/>
         <source>Print preview of the current file</source>
         <translation>当前文件的打印预览</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="755"/>
+        <location filename="../ViewManager/ViewManager.py" line="756"/>
         <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="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Search File</source>
         <translation>搜索文件</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Search &amp;File...</source>
         <translation>搜索文件(&amp;F)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="765"/>
+        <location filename="../ViewManager/ViewManager.py" line="766"/>
         <source>Alt+Ctrl+F</source>
         <comment>File|Search File</comment>
         <translation>Alt+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="771"/>
+        <location filename="../ViewManager/ViewManager.py" line="772"/>
         <source>Search for a file</source>
         <translation>搜索一个文件</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="773"/>
+        <location filename="../ViewManager/ViewManager.py" line="774"/>
         <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="787"/>
+        <location filename="../ViewManager/ViewManager.py" line="788"/>
         <source>&amp;File</source>
         <translation>文件(&amp;F)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="789"/>
+        <location filename="../ViewManager/ViewManager.py" line="790"/>
         <source>Open &amp;Recent Files</source>
         <translation>打开最近的文件(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="792"/>
+        <location filename="../ViewManager/ViewManager.py" line="793"/>
         <source>Open &amp;Bookmarked Files</source>
         <translation>打开已设置书签的文件(&amp;B)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="840"/>
+        <location filename="../ViewManager/ViewManager.py" line="841"/>
         <source>File</source>
         <translation>文件</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="863"/>
+        <location filename="../ViewManager/ViewManager.py" line="864"/>
         <source>Export as</source>
         <translation>导出为</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Undo</source>
         <translation>撤消</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>&amp;Undo</source>
         <translation>撤消(&amp;U)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation>Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="887"/>
+        <location filename="../ViewManager/ViewManager.py" line="888"/>
         <source>Alt+Backspace</source>
         <comment>Edit|Undo</comment>
         <translation>Alt+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="896"/>
+        <location filename="../ViewManager/ViewManager.py" line="897"/>
         <source>Undo the last change</source>
         <translation>撤消最后一次更改</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="898"/>
+        <location filename="../ViewManager/ViewManager.py" line="899"/>
         <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="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>Redo</source>
         <translation>重做</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>&amp;Redo</source>
         <translation>重做(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="906"/>
+        <location filename="../ViewManager/ViewManager.py" line="907"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation>Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="914"/>
+        <location filename="../ViewManager/ViewManager.py" line="915"/>
         <source>Redo the last change</source>
         <translation>重做最后一次更改</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="916"/>
+        <location filename="../ViewManager/ViewManager.py" line="917"/>
         <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="933"/>
+        <location filename="../ViewManager/ViewManager.py" line="934"/>
         <source>Revert to last saved state</source>
         <translation>还原到最后保存的状态</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="924"/>
+        <location filename="../ViewManager/ViewManager.py" line="925"/>
         <source>Re&amp;vert to last saved state</source>
         <translation>还原到最后保存的状态(&amp;v)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="924"/>
+        <location filename="../ViewManager/ViewManager.py" line="925"/>
         <source>Ctrl+Y</source>
         <comment>Edit|Revert</comment>
         <translation>Ctrl+Y</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="935"/>
+        <location filename="../ViewManager/ViewManager.py" line="936"/>
         <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="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Cut</source>
         <translation>剪切</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Cu&amp;t</source>
         <translation>剪切(&amp;t)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation>Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="946"/>
+        <location filename="../ViewManager/ViewManager.py" line="947"/>
         <source>Shift+Del</source>
         <comment>Edit|Cut</comment>
         <translation>Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="955"/>
+        <location filename="../ViewManager/ViewManager.py" line="956"/>
         <source>Cut the selection</source>
         <translation>剪切所选内容</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="957"/>
+        <location filename="../ViewManager/ViewManager.py" line="958"/>
         <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="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Copy</source>
         <translation>复制</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>&amp;Copy</source>
         <translation>复制(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="966"/>
+        <location filename="../ViewManager/ViewManager.py" line="967"/>
         <source>Ctrl+Ins</source>
         <comment>Edit|Copy</comment>
         <translation>Ctrl+Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="975"/>
+        <location filename="../ViewManager/ViewManager.py" line="976"/>
         <source>Copy the selection</source>
         <translation>复制所选内容</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="977"/>
+        <location filename="../ViewManager/ViewManager.py" line="978"/>
         <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="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Paste</source>
         <translation>粘贴</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>&amp;Paste</source>
         <translation>粘贴(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation>Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="986"/>
+        <location filename="../ViewManager/ViewManager.py" line="987"/>
         <source>Shift+Ins</source>
         <comment>Edit|Paste</comment>
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="995"/>
+        <location filename="../ViewManager/ViewManager.py" line="996"/>
         <source>Paste the last cut/copied text</source>
         <translation>粘贴最近剪切或复制的文本</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="997"/>
+        <location filename="../ViewManager/ViewManager.py" line="998"/>
         <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="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>Clear</source>
         <translation>清除</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1006"/>
+        <location filename="../ViewManager/ViewManager.py" line="1007"/>
         <source>Alt+Shift+C</source>
         <comment>Edit|Clear</comment>
         <translation>Alt+Shift+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1014"/>
+        <location filename="../ViewManager/ViewManager.py" line="1015"/>
         <source>Clear all text</source>
         <translation>清除所有文本</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1016"/>
+        <location filename="../ViewManager/ViewManager.py" line="1017"/>
         <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="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>Indent</source>
         <translation>缩进</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>&amp;Indent</source>
         <translation>缩进(&amp;I)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1041"/>
+        <location filename="../ViewManager/ViewManager.py" line="1042"/>
         <source>Ctrl+I</source>
         <comment>Edit|Indent</comment>
         <translation>Ctrl+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1049"/>
+        <location filename="../ViewManager/ViewManager.py" line="1050"/>
         <source>Indent line</source>
         <translation>缩进行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1051"/>
+        <location filename="../ViewManager/ViewManager.py" line="1052"/>
         <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="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>Unindent</source>
         <translation>取消缩进</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>U&amp;nindent</source>
         <translation>取消缩进(&amp;U)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1060"/>
+        <location filename="../ViewManager/ViewManager.py" line="1061"/>
         <source>Ctrl+Shift+I</source>
         <comment>Edit|Unindent</comment>
         <translation>Ctrl+Shift+I</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1068"/>
+        <location filename="../ViewManager/ViewManager.py" line="1069"/>
         <source>Unindent line</source>
         <translation>取消缩进行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1070"/>
+        <location filename="../ViewManager/ViewManager.py" line="1071"/>
         <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="1079"/>
+        <location filename="../ViewManager/ViewManager.py" line="1080"/>
         <source>Smart indent</source>
         <translation>智能缩进</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1085"/>
+        <location filename="../ViewManager/ViewManager.py" line="1086"/>
         <source>Smart indent Line or Selection</source>
         <translation>智能缩进行或所选内容</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1087"/>
+        <location filename="../ViewManager/ViewManager.py" line="1088"/>
         <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="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>Comment</source>
         <translation>注释</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>C&amp;omment</source>
         <translation>注释(&amp;O)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1096"/>
+        <location filename="../ViewManager/ViewManager.py" line="1097"/>
         <source>Ctrl+M</source>
         <comment>Edit|Comment</comment>
         <translation>Ctrl+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1104"/>
+        <location filename="../ViewManager/ViewManager.py" line="1105"/>
         <source>Comment Line or Selection</source>
         <translation>注释行或所选内容</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1106"/>
+        <location filename="../ViewManager/ViewManager.py" line="1107"/>
         <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="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Uncomment</source>
         <translation>取消注释</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Unco&amp;mment</source>
         <translation>取消注释(&amp;M)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1115"/>
+        <location filename="../ViewManager/ViewManager.py" line="1116"/>
         <source>Alt+Ctrl+M</source>
         <comment>Edit|Uncomment</comment>
         <translation>Alt+Ctrl+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1123"/>
+        <location filename="../ViewManager/ViewManager.py" line="1124"/>
         <source>Uncomment Line or Selection</source>
         <translation>取消注释行或所选内容</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1125"/>
+        <location filename="../ViewManager/ViewManager.py" line="1126"/>
         <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="1156"/>
+        <location filename="../ViewManager/ViewManager.py" line="1157"/>
         <source>Stream Comment</source>
         <translation>流注释</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1161"/>
+        <location filename="../ViewManager/ViewManager.py" line="1162"/>
         <source>Stream Comment Line or Selection</source>
         <translation>流注释行或所选内容</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1164"/>
+        <location filename="../ViewManager/ViewManager.py" line="1165"/>
         <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="1173"/>
+        <location filename="../ViewManager/ViewManager.py" line="1174"/>
         <source>Box Comment</source>
         <translation>块注释</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1178"/>
+        <location filename="../ViewManager/ViewManager.py" line="1179"/>
         <source>Box Comment Line or Selection</source>
         <translation>块注释行或所选内容</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1180"/>
+        <location filename="../ViewManager/ViewManager.py" line="1181"/>
         <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="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Select to brace</source>
         <translation>选择括号内容</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Select to &amp;brace</source>
         <translation>选择括号内容(&amp;B)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1189"/>
+        <location filename="../ViewManager/ViewManager.py" line="1190"/>
         <source>Ctrl+E</source>
         <comment>Edit|Select to brace</comment>
         <translation>Ctrl+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1196"/>
+        <location filename="../ViewManager/ViewManager.py" line="1197"/>
         <source>Select text to the matching brace</source>
         <translation>选择成对括号中的文本</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1198"/>
+        <location filename="../ViewManager/ViewManager.py" line="1199"/>
         <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="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>Select all</source>
         <translation>全选</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>&amp;Select all</source>
         <translation>全选(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1207"/>
+        <location filename="../ViewManager/ViewManager.py" line="1208"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select all</comment>
         <translation>Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1215"/>
+        <location filename="../ViewManager/ViewManager.py" line="1216"/>
         <source>Select all text</source>
         <translation>选择所有文本</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1217"/>
+        <location filename="../ViewManager/ViewManager.py" line="1218"/>
         <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="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>Deselect all</source>
         <translation>全部取消选择</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>&amp;Deselect all</source>
         <translation>全部取消选择(&amp;D)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1225"/>
+        <location filename="../ViewManager/ViewManager.py" line="1226"/>
         <source>Alt+Ctrl+A</source>
         <comment>Edit|Deselect all</comment>
         <translation>Alt+Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1232"/>
+        <location filename="../ViewManager/ViewManager.py" line="1233"/>
         <source>Deselect all text</source>
         <translation>所有文本都不选择</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1234"/>
+        <location filename="../ViewManager/ViewManager.py" line="1235"/>
         <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="1249"/>
+        <location filename="../ViewManager/ViewManager.py" line="1250"/>
         <source>Convert Line End Characters</source>
         <translation>转换行尾符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1242"/>
+        <location filename="../ViewManager/ViewManager.py" line="1243"/>
         <source>Convert &amp;Line End Characters</source>
         <translation>转换行尾符(&amp;L)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1251"/>
+        <location filename="../ViewManager/ViewManager.py" line="1252"/>
         <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="1265"/>
+        <location filename="../ViewManager/ViewManager.py" line="1266"/>
         <source>Shorten empty lines</source>
         <translation>缩减空行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1267"/>
+        <location filename="../ViewManager/ViewManager.py" line="1268"/>
         <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="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1277"/>
         <source>&amp;Complete</source>
         <translation>补全(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2748"/>
+        <location filename="../ViewManager/ViewManager.py" line="2749"/>
         <source>Complete</source>
         <translation>补全</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1283"/>
+        <location filename="../ViewManager/ViewManager.py" line="1284"/>
         <source>Complete current word</source>
         <translation>补全当前单词</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1285"/>
+        <location filename="../ViewManager/ViewManager.py" line="1286"/>
         <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="1294"/>
+        <location filename="../ViewManager/ViewManager.py" line="1295"/>
         <source>Complete from Document</source>
         <translation>从文档补全</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1304"/>
+        <location filename="../ViewManager/ViewManager.py" line="1305"/>
         <source>Complete current word from Document</source>
         <translation>从文档补全当前单词</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1307"/>
+        <location filename="../ViewManager/ViewManager.py" line="1308"/>
         <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="1317"/>
+        <location filename="../ViewManager/ViewManager.py" line="1318"/>
         <source>Complete from APIs</source>
         <translation>从 API 补全</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1327"/>
+        <location filename="../ViewManager/ViewManager.py" line="1328"/>
         <source>Complete current word from APIs</source>
         <translation>从 API 补全当前单词</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1330"/>
+        <location filename="../ViewManager/ViewManager.py" line="1331"/>
         <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="1340"/>
+        <location filename="../ViewManager/ViewManager.py" line="1341"/>
         <source>Complete from Document and APIs</source>
         <translation>从文档和 API 补全</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1350"/>
+        <location filename="../ViewManager/ViewManager.py" line="1351"/>
         <source>Complete current word from Document and APIs</source>
         <translation>从文档和 API 补全当前单词</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1353"/>
+        <location filename="../ViewManager/ViewManager.py" line="1354"/>
         <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="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>Calltip</source>
         <translation>调用提示</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>&amp;Calltip</source>
         <translation>调用提示(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1363"/>
+        <location filename="../ViewManager/ViewManager.py" line="1364"/>
         <source>Meta+Alt+Space</source>
         <comment>Edit|Calltip</comment>
         <translation>Meta+Alt+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1370"/>
+        <location filename="../ViewManager/ViewManager.py" line="1371"/>
         <source>Show Calltips</source>
         <translation>显示调用提示</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1372"/>
+        <location filename="../ViewManager/ViewManager.py" line="1373"/>
         <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="1452"/>
+        <location filename="../ViewManager/ViewManager.py" line="1453"/>
         <source>Move left one character</source>
         <translation>左移一个字符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1452"/>
+        <location filename="../ViewManager/ViewManager.py" line="1453"/>
         <source>Left</source>
         <translation>Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1466"/>
+        <location filename="../ViewManager/ViewManager.py" line="1467"/>
         <source>Move right one character</source>
         <translation>右移一个字符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1466"/>
+        <location filename="../ViewManager/ViewManager.py" line="1467"/>
         <source>Right</source>
         <translation>Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1481"/>
         <source>Move up one line</source>
         <translation>上移一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1481"/>
         <source>Up</source>
         <translation>Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1492"/>
+        <location filename="../ViewManager/ViewManager.py" line="1493"/>
         <source>Move down one line</source>
         <translation>下移一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1492"/>
+        <location filename="../ViewManager/ViewManager.py" line="1493"/>
         <source>Down</source>
         <translation>Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1504"/>
+        <location filename="../ViewManager/ViewManager.py" line="1505"/>
         <source>Move left one word part</source>
         <translation>左移一个单词部分</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1538"/>
+        <location filename="../ViewManager/ViewManager.py" line="1539"/>
         <source>Alt+Left</source>
         <translation>Alt+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1518"/>
+        <location filename="../ViewManager/ViewManager.py" line="1519"/>
         <source>Move right one word part</source>
         <translation>右移一个单词部分</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2418"/>
+        <location filename="../ViewManager/ViewManager.py" line="2419"/>
         <source>Alt+Right</source>
         <translation>Alt+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1532"/>
+        <location filename="../ViewManager/ViewManager.py" line="1533"/>
         <source>Move left one word</source>
         <translation>左移一个词距</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1583"/>
+        <location filename="../ViewManager/ViewManager.py" line="1584"/>
         <source>Ctrl+Left</source>
         <translation>Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1547"/>
+        <location filename="../ViewManager/ViewManager.py" line="1548"/>
         <source>Move right one word</source>
         <translation>右移一个词距</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2172"/>
+        <location filename="../ViewManager/ViewManager.py" line="2173"/>
         <source>Ctrl+Right</source>
         <translation>Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2373"/>
+        <location filename="../ViewManager/ViewManager.py" line="2374"/>
         <source>Home</source>
         <translation>Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1586"/>
+        <location filename="../ViewManager/ViewManager.py" line="1587"/>
         <source>Alt+Home</source>
         <translation>Alt+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2388"/>
+        <location filename="../ViewManager/ViewManager.py" line="2389"/>
         <source>End</source>
         <translation>End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1609"/>
+        <location filename="../ViewManager/ViewManager.py" line="1610"/>
         <source>Scroll view down one line</source>
         <translation>视图向下滚动一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1699"/>
+        <location filename="../ViewManager/ViewManager.py" line="1700"/>
         <source>Ctrl+Down</source>
         <translation>Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1621"/>
+        <location filename="../ViewManager/ViewManager.py" line="1622"/>
         <source>Scroll view up one line</source>
         <translation>视图向上滚动一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1682"/>
+        <location filename="../ViewManager/ViewManager.py" line="1683"/>
         <source>Ctrl+Up</source>
         <translation>Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1632"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Move up one paragraph</source>
         <translation>上移一段</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1632"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Alt+Up</source>
         <translation>Alt+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1641"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Move down one paragraph</source>
         <translation>下移一段</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1641"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Alt+Down</source>
         <translation>Alt+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1653"/>
+        <location filename="../ViewManager/ViewManager.py" line="1654"/>
         <source>Move up one page</source>
         <translation>上移一页</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1653"/>
+        <location filename="../ViewManager/ViewManager.py" line="1654"/>
         <source>PgUp</source>
         <translation>PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1662"/>
+        <location filename="../ViewManager/ViewManager.py" line="1663"/>
         <source>Move down one page</source>
         <translation>下移一页</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1662"/>
+        <location filename="../ViewManager/ViewManager.py" line="1663"/>
         <source>PgDown</source>
         <translation>PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1685"/>
+        <location filename="../ViewManager/ViewManager.py" line="1686"/>
         <source>Ctrl+Home</source>
         <translation>Ctrl+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1702"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>Ctrl+End</source>
         <translation>Ctrl+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1708"/>
+        <location filename="../ViewManager/ViewManager.py" line="1709"/>
         <source>Indent one level</source>
         <translation>缩进一级</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1708"/>
+        <location filename="../ViewManager/ViewManager.py" line="1709"/>
         <source>Tab</source>
         <translation>Tab 键</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1717"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Unindent one level</source>
         <translation>取消缩进一级</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1717"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Shift+Tab</source>
         <translation>Shift+Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1728"/>
         <source>Extend selection left one character</source>
         <translation>选区向左扩展一个字符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1728"/>
         <source>Shift+Left</source>
         <translation>Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1742"/>
+        <location filename="../ViewManager/ViewManager.py" line="1743"/>
         <source>Extend selection right one character</source>
         <translation>选区向右扩展一个字符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1742"/>
+        <location filename="../ViewManager/ViewManager.py" line="1743"/>
         <source>Shift+Right</source>
         <translation>Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1757"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Extend selection up one line</source>
         <translation>选区向上扩展一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1757"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Shift+Up</source>
         <translation>Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1772"/>
+        <location filename="../ViewManager/ViewManager.py" line="1773"/>
         <source>Extend selection down one line</source>
         <translation>选区向下扩展一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1772"/>
+        <location filename="../ViewManager/ViewManager.py" line="1773"/>
         <source>Shift+Down</source>
         <translation>Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1787"/>
+        <location filename="../ViewManager/ViewManager.py" line="1788"/>
         <source>Extend selection left one word part</source>
         <translation>选区向左扩展一个单词部分</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1823"/>
+        <location filename="../ViewManager/ViewManager.py" line="1824"/>
         <source>Alt+Shift+Left</source>
         <translation>Alt+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1801"/>
+        <location filename="../ViewManager/ViewManager.py" line="1802"/>
         <source>Extend selection right one word part</source>
         <translation>选区向右扩展一个单词部分</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2433"/>
+        <location filename="../ViewManager/ViewManager.py" line="2434"/>
         <source>Alt+Shift+Right</source>
         <translation>Alt+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1815"/>
+        <location filename="../ViewManager/ViewManager.py" line="1816"/>
         <source>Extend selection left one word</source>
         <translation>选区向左扩展一个单词</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2527"/>
+        <location filename="../ViewManager/ViewManager.py" line="2528"/>
         <source>Ctrl+Shift+Left</source>
         <translation>Ctrl+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1832"/>
+        <location filename="../ViewManager/ViewManager.py" line="1833"/>
         <source>Extend selection right one word</source>
         <translation>选区向右扩展一个单词</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2189"/>
+        <location filename="../ViewManager/ViewManager.py" line="2190"/>
         <source>Ctrl+Shift+Right</source>
         <translation>Ctrl+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1861"/>
+        <location filename="../ViewManager/ViewManager.py" line="1862"/>
         <source>Shift+Home</source>
         <translation>Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2293"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Alt+Shift+Home</source>
         <translation>Alt+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1878"/>
+        <location filename="../ViewManager/ViewManager.py" line="1879"/>
         <source>Shift+End</source>
         <translation>Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1884"/>
+        <location filename="../ViewManager/ViewManager.py" line="1885"/>
         <source>Extend selection up one paragraph</source>
         <translation>选区向上扩展一段</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1884"/>
+        <location filename="../ViewManager/ViewManager.py" line="1885"/>
         <source>Alt+Shift+Up</source>
         <translation>Alt+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1897"/>
+        <location filename="../ViewManager/ViewManager.py" line="1898"/>
         <source>Extend selection down one paragraph</source>
         <translation>选区向下扩展一段</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1897"/>
+        <location filename="../ViewManager/ViewManager.py" line="1898"/>
         <source>Alt+Shift+Down</source>
         <translation>Alt+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1910"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Extend selection up one page</source>
         <translation>选区向上扩展一页</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1910"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Shift+PgUp</source>
         <translation>Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1922"/>
+        <location filename="../ViewManager/ViewManager.py" line="1923"/>
         <source>Extend selection down one page</source>
         <translation>选区向下扩展一页</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1922"/>
+        <location filename="../ViewManager/ViewManager.py" line="1923"/>
         <source>Shift+PgDown</source>
         <translation>Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1949"/>
+        <location filename="../ViewManager/ViewManager.py" line="1950"/>
         <source>Ctrl+Shift+Home</source>
         <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1966"/>
+        <location filename="../ViewManager/ViewManager.py" line="1967"/>
         <source>Ctrl+Shift+End</source>
         <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1972"/>
+        <location filename="../ViewManager/ViewManager.py" line="1973"/>
         <source>Delete previous character</source>
         <translation>删除前一个字符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1972"/>
+        <location filename="../ViewManager/ViewManager.py" line="1973"/>
         <source>Backspace</source>
         <translation>Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1984"/>
+        <location filename="../ViewManager/ViewManager.py" line="1985"/>
         <source>Shift+Backspace</source>
         <translation>Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2003"/>
+        <location filename="../ViewManager/ViewManager.py" line="2004"/>
         <source>Delete current character</source>
         <translation>删除当前字符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2003"/>
+        <location filename="../ViewManager/ViewManager.py" line="2004"/>
         <source>Del</source>
         <translation>Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2017"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <source>Delete word to left</source>
         <translation>向左删除一个单词</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2017"/>
+        <location filename="../ViewManager/ViewManager.py" line="2018"/>
         <source>Ctrl+Backspace</source>
         <translation>Ctrl+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2028"/>
+        <location filename="../ViewManager/ViewManager.py" line="2029"/>
         <source>Delete word to right</source>
         <translation>向右删除一个单词</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2028"/>
+        <location filename="../ViewManager/ViewManager.py" line="2029"/>
         <source>Ctrl+Del</source>
         <translation>Ctrl+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2038"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Delete line to left</source>
         <translation>向左删除一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2038"/>
+        <location filename="../ViewManager/ViewManager.py" line="2039"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation>Ctrl+Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2049"/>
+        <location filename="../ViewManager/ViewManager.py" line="2050"/>
         <source>Delete line to right</source>
         <translation>向右删除一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2058"/>
+        <location filename="../ViewManager/ViewManager.py" line="2059"/>
         <source>Ctrl+Shift+Del</source>
         <translation>Ctrl+Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Insert new line</source>
         <translation>插入新行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Return</source>
         <translation>Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2064"/>
+        <location filename="../ViewManager/ViewManager.py" line="2065"/>
         <source>Enter</source>
         <translation>Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <source>Insert new line below current line</source>
         <translation>在当前行之上插入新行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <source>Shift+Return</source>
         <translation>Shift+Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2074"/>
+        <location filename="../ViewManager/ViewManager.py" line="2075"/>
         <source>Shift+Enter</source>
         <translation>Shift+Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Delete current line</source>
         <translation>删除当前行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2087"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Ctrl+Shift+L</source>
         <translation>Ctrl+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2098"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Duplicate current line</source>
         <translation>重复当前行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2098"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Ctrl+D</source>
         <translation>Ctrl+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2109"/>
+        <location filename="../ViewManager/ViewManager.py" line="2110"/>
         <source>Swap current and previous lines</source>
         <translation>当前行与上一行交换位置</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2109"/>
+        <location filename="../ViewManager/ViewManager.py" line="2110"/>
         <source>Ctrl+T</source>
         <translation>Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2132"/>
+        <location filename="../ViewManager/ViewManager.py" line="2133"/>
         <source>Cut current line</source>
         <translation>剪切当前行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2132"/>
+        <location filename="../ViewManager/ViewManager.py" line="2133"/>
         <source>Alt+Shift+L</source>
         <translation>Alt+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2142"/>
+        <location filename="../ViewManager/ViewManager.py" line="2143"/>
         <source>Copy current line</source>
         <translation>复制当前行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2142"/>
+        <location filename="../ViewManager/ViewManager.py" line="2143"/>
         <source>Ctrl+Shift+T</source>
         <translation>Ctrl+Shift+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2153"/>
+        <location filename="../ViewManager/ViewManager.py" line="2154"/>
         <source>Toggle insert/overtype</source>
         <translation>切换插入/改写状态</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2153"/>
+        <location filename="../ViewManager/ViewManager.py" line="2154"/>
         <source>Ins</source>
         <translation>Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2717"/>
+        <location filename="../ViewManager/ViewManager.py" line="2718"/>
         <source>Convert selection to lower case</source>
         <translation>将所选内容转换成小写</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2717"/>
+        <location filename="../ViewManager/ViewManager.py" line="2718"/>
         <source>Alt+Shift+U</source>
         <translation>Alt+Shift+U</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2729"/>
+        <location filename="../ViewManager/ViewManager.py" line="2730"/>
         <source>Convert selection to upper case</source>
         <translation>将所选内容转换成大写</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2729"/>
+        <location filename="../ViewManager/ViewManager.py" line="2730"/>
         <source>Ctrl+Shift+U</source>
         <translation>Ctrl+Shift+U</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2175"/>
+        <location filename="../ViewManager/ViewManager.py" line="2176"/>
         <source>Alt+End</source>
         <translation>Alt+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2195"/>
+        <location filename="../ViewManager/ViewManager.py" line="2196"/>
         <source>Formfeed</source>
         <translation>Formfeed</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2204"/>
+        <location filename="../ViewManager/ViewManager.py" line="2205"/>
         <source>Escape</source>
         <translation>Escape</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2204"/>
+        <location filename="../ViewManager/ViewManager.py" line="2205"/>
         <source>Esc</source>
         <translation>Esc</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2213"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <source>Extend rectangular selection down one line</source>
         <translation>矩形选区向下扩展一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2213"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <source>Alt+Ctrl+Down</source>
         <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2229"/>
+        <location filename="../ViewManager/ViewManager.py" line="2230"/>
         <source>Extend rectangular selection up one line</source>
         <translation>矩形选区向上扩展一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2229"/>
+        <location filename="../ViewManager/ViewManager.py" line="2230"/>
         <source>Alt+Ctrl+Up</source>
         <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2244"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <source>Extend rectangular selection left one character</source>
         <translation>矩形选区向左扩展一个字符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2244"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <source>Alt+Ctrl+Left</source>
         <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2262"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Extend rectangular selection right one character</source>
         <translation>矩形选区向右扩展一个字符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2262"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Alt+Ctrl+Right</source>
         <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2318"/>
+        <location filename="../ViewManager/ViewManager.py" line="2319"/>
         <source>Extend rectangular selection up one page</source>
         <translation>矩形选区向上扩展一页</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2333"/>
+        <location filename="../ViewManager/ViewManager.py" line="2334"/>
         <source>Extend rectangular selection down one page</source>
         <translation>矩形选区向下扩展一页</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2351"/>
+        <location filename="../ViewManager/ViewManager.py" line="2352"/>
         <source>Duplicate current selection</source>
         <translation>重复当前选区</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2351"/>
+        <location filename="../ViewManager/ViewManager.py" line="2352"/>
         <source>Ctrl+Shift+D</source>
         <translation>Ctrl+Shift+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3262"/>
+        <location filename="../ViewManager/ViewManager.py" line="3263"/>
         <source>&amp;Search</source>
         <translation>搜索(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2758"/>
+        <location filename="../ViewManager/ViewManager.py" line="2759"/>
         <source>&amp;Edit</source>
         <translation>编辑(&amp;E)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2817"/>
+        <location filename="../ViewManager/ViewManager.py" line="2818"/>
         <source>Edit</source>
         <translation>编辑</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3296"/>
+        <location filename="../ViewManager/ViewManager.py" line="3297"/>
         <source>Search</source>
         <translation>搜索</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2849"/>
+        <location filename="../ViewManager/ViewManager.py" line="2850"/>
         <source>&amp;Search...</source>
         <translation>搜索(&amp;S)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2849"/>
+        <location filename="../ViewManager/ViewManager.py" line="2850"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation>Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2857"/>
+        <location filename="../ViewManager/ViewManager.py" line="2858"/>
         <source>Search for a text</source>
         <translation>搜索文本</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2859"/>
+        <location filename="../ViewManager/ViewManager.py" line="2860"/>
         <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="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>Search next</source>
         <translation>搜索下一个</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>Search &amp;next</source>
         <translation>搜索下一个(&amp;N)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2869"/>
+        <location filename="../ViewManager/ViewManager.py" line="2870"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation>F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2878"/>
+        <location filename="../ViewManager/ViewManager.py" line="2879"/>
         <source>Search next occurrence of text</source>
         <translation>搜索下一处文本</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2880"/>
+        <location filename="../ViewManager/ViewManager.py" line="2881"/>
         <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="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Search previous</source>
         <translation>搜索上一个</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Search &amp;previous</source>
         <translation>搜索上一个(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2890"/>
+        <location filename="../ViewManager/ViewManager.py" line="2891"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation>Shift+F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2898"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>Search previous occurrence of text</source>
         <translation>搜索上一处文本</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2900"/>
+        <location filename="../ViewManager/ViewManager.py" line="2901"/>
         <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="2910"/>
+        <location filename="../ViewManager/ViewManager.py" line="2911"/>
         <source>Clear search markers</source>
         <translation>清除搜索标记</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2910"/>
+        <location filename="../ViewManager/ViewManager.py" line="2911"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation>Ctrl+3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2918"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Clear all displayed search markers</source>
         <translation>清除所有显示的搜索标记</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2920"/>
+        <location filename="../ViewManager/ViewManager.py" line="2921"/>
         <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="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>Replace</source>
         <translation>替换</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>&amp;Replace...</source>
         <translation>替换(&amp;R)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2975"/>
+        <location filename="../ViewManager/ViewManager.py" line="2976"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation>Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2982"/>
+        <location filename="../ViewManager/ViewManager.py" line="2983"/>
         <source>Replace some text</source>
         <translation>替换某文本</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2984"/>
+        <location filename="../ViewManager/ViewManager.py" line="2985"/>
         <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>
@@ -86126,96 +86126,96 @@
         <translation type="obsolete">&lt;b&gt;扩展快速搜索&lt;/b&gt;&lt;p&gt;将快速搜索文本扩展到当前找到文字的末尾。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3070"/>
+        <location filename="../ViewManager/ViewManager.py" line="3071"/>
         <source>Goto Line</source>
         <translation>跳转行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3062"/>
+        <location filename="../ViewManager/ViewManager.py" line="3063"/>
         <source>&amp;Goto Line...</source>
         <translation>跳转行(&amp;G)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3062"/>
+        <location filename="../ViewManager/ViewManager.py" line="3063"/>
         <source>Ctrl+G</source>
         <comment>Search|Goto Line</comment>
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3072"/>
+        <location filename="../ViewManager/ViewManager.py" line="3073"/>
         <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="3089"/>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
         <source>Goto Brace</source>
         <translation>跳转括号</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3081"/>
+        <location filename="../ViewManager/ViewManager.py" line="3082"/>
         <source>Goto &amp;Brace</source>
         <translation>跳转括号(&amp;B)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3081"/>
+        <location filename="../ViewManager/ViewManager.py" line="3082"/>
         <source>Ctrl+L</source>
         <comment>Search|Goto Brace</comment>
         <translation>Ctrl+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3091"/>
+        <location filename="../ViewManager/ViewManager.py" line="3092"/>
         <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="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Search in Files</source>
         <translation>在文件中搜索</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Search in &amp;Files...</source>
         <translation>在文件中搜索(&amp;F)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3169"/>
+        <location filename="../ViewManager/ViewManager.py" line="3170"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation>Shift+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3177"/>
+        <location filename="../ViewManager/ViewManager.py" line="3178"/>
         <source>Search for a text in files</source>
         <translation>在文件中搜索文本</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3179"/>
+        <location filename="../ViewManager/ViewManager.py" line="3180"/>
         <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="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Replace in Files</source>
         <translation>在文件中替换</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Replace in F&amp;iles...</source>
         <translation>在文件中替换(&amp;I)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3190"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation>Shift+Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3196"/>
+        <location filename="../ViewManager/ViewManager.py" line="3197"/>
         <source>Search for a text in files and replace it</source>
         <translation>在文件中搜索文本并替换之</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3198"/>
+        <location filename="../ViewManager/ViewManager.py" line="3199"/>
         <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>
@@ -86230,1459 +86230,1459 @@
         <translation type="obsolete">快速搜索文本编辑</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom in</source>
         <translation>放大</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom &amp;in</source>
         <translation>放大(&amp;I)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3344"/>
-        <source>Zoom in on the text</source>
-        <translation>放大显示文本</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3346"/>
+        <source>Zoom in on the text</source>
+        <translation>放大显示文本</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3348"/>
         <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="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom out</source>
         <translation>缩小</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom &amp;out</source>
         <translation>缩小(&amp;O)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3363"/>
-        <source>Zoom out on the text</source>
-        <translation>缩小显示文本</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3365"/>
+        <source>Zoom out on the text</source>
+        <translation>缩小显示文本</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3367"/>
         <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="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>Zoom</source>
         <translation>缩放</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>&amp;Zoom</source>
         <translation>缩放(&amp;Z)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3392"/>
+        <location filename="../ViewManager/ViewManager.py" line="3394"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation>Ctrl+#</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3400"/>
-        <source>Zoom the text</source>
-        <translation>缩放文本</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3402"/>
+        <source>Zoom the text</source>
+        <translation>缩放文本</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3404"/>
         <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="3415"/>
-        <source>Toggle all folds</source>
-        <translation>开关所有折叠</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3411"/>
-        <source>&amp;Toggle all folds</source>
-        <translation type="unfinished">开关所有折叠(&amp;A)</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3417"/>
+        <source>Toggle all folds</source>
+        <translation>开关所有折叠</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3413"/>
+        <source>&amp;Toggle all folds</source>
+        <translation type="unfinished">开关所有折叠(&amp;A)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3419"/>
         <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="3431"/>
-        <source>Toggle all folds (including children)</source>
-        <translation>开关所有折叠(包含子项)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3425"/>
-        <source>Toggle all &amp;folds (including children)</source>
-        <translation>开关所有折叠(&amp;F)(包含子项)</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3433"/>
+        <source>Toggle all folds (including children)</source>
+        <translation>开关所有折叠(包含子项)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3427"/>
+        <source>Toggle all &amp;folds (including children)</source>
+        <translation>开关所有折叠(&amp;F)(包含子项)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3435"/>
         <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="3447"/>
-        <source>Toggle current fold</source>
-        <translation>开关当前折叠</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3443"/>
-        <source>Toggle &amp;current fold</source>
-        <translation>开关当前折叠(&amp;C)</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3449"/>
+        <source>Toggle current fold</source>
+        <translation>开关当前折叠</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3445"/>
+        <source>Toggle &amp;current fold</source>
+        <translation>开关当前折叠(&amp;C)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3451"/>
         <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="3479"/>
-        <source>Remove all highlights</source>
-        <translation>取消所有高亮</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3481"/>
+        <source>Remove all highlights</source>
+        <translation>取消所有高亮</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3483"/>
         <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="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3529"/>
         <source>Split view</source>
         <translation>拆分视图</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3527"/>
+        <location filename="../ViewManager/ViewManager.py" line="3529"/>
         <source>&amp;Split view</source>
         <translation>拆分视图(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3532"/>
-        <source>Add a split to the view</source>
-        <translation>对视图进行拆分</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3534"/>
+        <source>Add a split to the view</source>
+        <translation>对视图进行拆分</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3536"/>
         <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="3542"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Arrange horizontally</source>
         <translation>水平排列</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3542"/>
+        <location filename="../ViewManager/ViewManager.py" line="3544"/>
         <source>Arrange &amp;horizontally</source>
         <translation>水平排列(&amp;H)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3546"/>
-        <source>Arrange the splitted views horizontally</source>
-        <translation>将拆分的视图进行水平排列</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3548"/>
+        <source>Arrange the splitted views horizontally</source>
+        <translation>将拆分的视图进行水平排列</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3550"/>
         <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="3557"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>Remove split</source>
         <translation>移除拆分</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3557"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>&amp;Remove split</source>
         <translation>移除拆分(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3562"/>
-        <source>Remove the current split</source>
-        <translation>移除当前拆分</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3564"/>
+        <source>Remove the current split</source>
+        <translation>移除当前拆分</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3566"/>
         <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="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>Next split</source>
         <translation>下一个拆分</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>&amp;Next split</source>
         <translation>下一个拆分(&amp;N)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3572"/>
+        <location filename="../ViewManager/ViewManager.py" line="3574"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation>Ctrl+Alt+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3579"/>
-        <source>Move to the next split</source>
-        <translation>移动到下一个拆分中</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3581"/>
+        <source>Move to the next split</source>
+        <translation>移动到下一个拆分中</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3583"/>
         <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="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Previous split</source>
         <translation>上一个拆分</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>&amp;Previous split</source>
         <translation>上一个拆分(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3589"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation>Ctrl+Alt+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3595"/>
+        <location filename="../ViewManager/ViewManager.py" line="3597"/>
         <source>Move to the previous split</source>
         <translation>移动到上一个拆分中</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3597"/>
+        <location filename="../ViewManager/ViewManager.py" line="3599"/>
         <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="3681"/>
+        <location filename="../ViewManager/ViewManager.py" line="3683"/>
         <source>&amp;View</source>
         <translation>视图(&amp;V)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3718"/>
+        <location filename="../ViewManager/ViewManager.py" line="3720"/>
         <source>View</source>
         <translation>视图</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3754"/>
-        <source>Start Macro Recording</source>
-        <translation>开始宏录制</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3748"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation>开始宏录制(&amp;T)</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3756"/>
+        <source>Start Macro Recording</source>
+        <translation>开始宏录制</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3750"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation>开始宏录制(&amp;T)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3758"/>
         <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="3768"/>
-        <source>Stop Macro Recording</source>
-        <translation>中止宏录制</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3764"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation>中止宏录制(&amp;P)</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3770"/>
+        <source>Stop Macro Recording</source>
+        <translation>中止宏录制</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3766"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation>中止宏录制(&amp;P)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3772"/>
         <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="3782"/>
-        <source>Run Macro</source>
-        <translation>运行宏</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3778"/>
-        <source>&amp;Run Macro</source>
-        <translation>运行宏(&amp;R)</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3784"/>
+        <source>Run Macro</source>
+        <translation>运行宏</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3780"/>
+        <source>&amp;Run Macro</source>
+        <translation>运行宏(&amp;R)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <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="3796"/>
-        <source>Delete Macro</source>
-        <translation>删除宏</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3792"/>
-        <source>&amp;Delete Macro</source>
-        <translation>删除宏(&amp;D)</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Delete Macro</source>
+        <translation>删除宏</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3794"/>
+        <source>&amp;Delete Macro</source>
+        <translation>删除宏(&amp;D)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3800"/>
         <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="3810"/>
-        <source>Load Macro</source>
-        <translation>载入宏</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3806"/>
-        <source>&amp;Load Macro</source>
-        <translation>载入宏(&amp;L)</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3812"/>
+        <source>Load Macro</source>
+        <translation>载入宏</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3808"/>
+        <source>&amp;Load Macro</source>
+        <translation>载入宏(&amp;L)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3814"/>
         <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="3824"/>
-        <source>Save Macro</source>
-        <translation>保存宏</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3820"/>
-        <source>&amp;Save Macro</source>
-        <translation>保存宏(&amp;S)</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3826"/>
+        <source>Save Macro</source>
+        <translation>保存宏</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
+        <source>&amp;Save Macro</source>
+        <translation>保存宏(&amp;S)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3828"/>
         <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="3842"/>
+        <location filename="../ViewManager/ViewManager.py" line="3844"/>
         <source>&amp;Macros</source>
         <translation>宏(&amp;M)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3868"/>
+        <location filename="../ViewManager/ViewManager.py" line="3870"/>
         <source>Toggle Bookmark</source>
         <translation>切换书签</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3860"/>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
         <source>&amp;Toggle Bookmark</source>
         <translation>切换书签(&amp;T)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3860"/>
+        <location filename="../ViewManager/ViewManager.py" line="3862"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation>Alt+Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3870"/>
+        <location filename="../ViewManager/ViewManager.py" line="3872"/>
         <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="3887"/>
+        <location filename="../ViewManager/ViewManager.py" line="3889"/>
         <source>Next Bookmark</source>
         <translation>下一个书签</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3879"/>
+        <location filename="../ViewManager/ViewManager.py" line="3881"/>
         <source>&amp;Next Bookmark</source>
         <translation>下一个书签(&amp;N)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3879"/>
+        <location filename="../ViewManager/ViewManager.py" line="3881"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation>Ctrl+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3889"/>
+        <location filename="../ViewManager/ViewManager.py" line="3891"/>
         <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="3905"/>
-        <source>Previous Bookmark</source>
-        <translation>上一个书签</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3897"/>
-        <source>&amp;Previous Bookmark</source>
-        <translation>上一个书签(&amp;P)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3897"/>
-        <source>Ctrl+PgUp</source>
-        <comment>Bookmark|Previous</comment>
-        <translation>Ctrl+PgUp</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3907"/>
+        <source>Previous Bookmark</source>
+        <translation>上一个书签</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3899"/>
+        <source>&amp;Previous Bookmark</source>
+        <translation>上一个书签(&amp;P)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3899"/>
+        <source>Ctrl+PgUp</source>
+        <comment>Bookmark|Previous</comment>
+        <translation>Ctrl+PgUp</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3909"/>
         <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="3922"/>
-        <source>Clear Bookmarks</source>
-        <translation>清除书签</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3915"/>
-        <source>&amp;Clear Bookmarks</source>
-        <translation>清除书签(&amp;C)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3915"/>
-        <source>Alt+Ctrl+C</source>
-        <comment>Bookmark|Clear</comment>
-        <translation>Alt+Ctrl+C</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3924"/>
+        <source>Clear Bookmarks</source>
+        <translation>清除书签</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
+        <source>&amp;Clear Bookmarks</source>
+        <translation>清除书签(&amp;C)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3917"/>
+        <source>Alt+Ctrl+C</source>
+        <comment>Bookmark|Clear</comment>
+        <translation>Alt+Ctrl+C</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3926"/>
         <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="3938"/>
-        <source>Goto Syntax Error</source>
-        <translation>转到语法错误处</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3932"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation>转到语法错误处(&amp;G)</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3940"/>
+        <source>Goto Syntax Error</source>
+        <translation>转到语法错误处</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3934"/>
+        <source>&amp;Goto Syntax Error</source>
+        <translation>转到语法错误处(&amp;G)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3942"/>
         <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="3953"/>
-        <source>Clear Syntax Errors</source>
-        <translation>清除语法错误</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3948"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation>清除语法错误(&amp;S)</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3955"/>
+        <source>Clear Syntax Errors</source>
+        <translation>清除语法错误</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3950"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation>清除语法错误(&amp;S)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3957"/>
         <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="4023"/>
-        <source>Next uncovered line</source>
-        <translation>下一个未覆盖行</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4017"/>
-        <source>&amp;Next uncovered line</source>
-        <translation>下一个未覆盖行(&amp;N)</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4025"/>
+        <source>Next uncovered line</source>
+        <translation>下一个未覆盖行</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4019"/>
+        <source>&amp;Next uncovered line</source>
+        <translation>下一个未覆盖行(&amp;N)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4027"/>
         <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="4042"/>
-        <source>Previous uncovered line</source>
-        <translation>上一个未覆盖行</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4034"/>
-        <source>&amp;Previous uncovered line</source>
-        <translation>上一个未覆盖行(&amp;P)</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4044"/>
+        <source>Previous uncovered line</source>
+        <translation>上一个未覆盖行</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
+        <source>&amp;Previous uncovered line</source>
+        <translation>上一个未覆盖行(&amp;P)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4046"/>
         <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="4060"/>
-        <source>Next Task</source>
-        <translation>下一个任务</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4054"/>
-        <source>&amp;Next Task</source>
-        <translation>下一个任务(&amp;N)</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4062"/>
+        <source>Next Task</source>
+        <translation>下一个任务</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4056"/>
+        <source>&amp;Next Task</source>
+        <translation>下一个任务(&amp;N)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4064"/>
         <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="4077"/>
-        <source>Previous Task</source>
-        <translation>上一个任务</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4070"/>
-        <source>&amp;Previous Task</source>
-        <translation>上一个任务(&amp;P)</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4079"/>
+        <source>Previous Task</source>
+        <translation>上一个任务</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4072"/>
+        <source>&amp;Previous Task</source>
+        <translation>上一个任务(&amp;P)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4081"/>
         <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="4133"/>
+        <location filename="../ViewManager/ViewManager.py" line="4135"/>
         <source>&amp;Bookmarks</source>
         <translation>书签(&amp;B)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4179"/>
+        <location filename="../ViewManager/ViewManager.py" line="4181"/>
         <source>Bookmarks</source>
         <translation>书签</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4221"/>
+        <location filename="../ViewManager/ViewManager.py" line="4223"/>
         <source>Perform spell check of current editor</source>
         <translation>对当前编辑器进行拼写检查</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>Automatic spell checking</source>
         <translation>自动拼写检查</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4233"/>
         <source>&amp;Automatic spell checking</source>
         <translation>自动拼写检查(&amp;A)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4239"/>
-        <source>(De-)Activate automatic spell checking</source>
-        <translation>(不)激活自动拼写检查</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4241"/>
+        <source>(De-)Activate automatic spell checking</source>
+        <translation>(不)激活自动拼写检查</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4243"/>
         <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="4308"/>
+        <location filename="../ViewManager/ViewManager.py" line="4310"/>
         <source>Spelling</source>
         <translation>拼写法</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4333"/>
         <source>Open files</source>
         <translation>打开多个文件</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4377"/>
         <source>File Modified</source>
         <translation>文件已改变</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5219"/>
+        <location filename="../ViewManager/ViewManager.py" line="5221"/>
         <source>&amp;Clear</source>
         <translation>清除(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5213"/>
+        <location filename="../ViewManager/ViewManager.py" line="5215"/>
         <source>&amp;Add</source>
         <translation>添加(&amp;A)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5216"/>
+        <location filename="../ViewManager/ViewManager.py" line="5218"/>
         <source>&amp;Edit...</source>
         <translation>编辑(&amp;E)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4377"/>
         <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="4774"/>
+        <location filename="../ViewManager/ViewManager.py" line="4776"/>
         <source>Line: {0:5}</source>
         <translation>行:{0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4780"/>
+        <location filename="../ViewManager/ViewManager.py" line="4782"/>
         <source>Pos: {0:5}</source>
         <translation>列:{0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3970"/>
+        <location filename="../ViewManager/ViewManager.py" line="3972"/>
         <source>Next warning message</source>
         <translation>下一个警告消息</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3964"/>
+        <location filename="../ViewManager/ViewManager.py" line="3966"/>
         <source>&amp;Next warning message</source>
         <translation>下一个警告消息(&amp;N)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3989"/>
+        <location filename="../ViewManager/ViewManager.py" line="3991"/>
         <source>Previous warning message</source>
         <translation>上一个警告消息</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3981"/>
+        <location filename="../ViewManager/ViewManager.py" line="3983"/>
         <source>&amp;Previous warning message</source>
         <translation>上一个警告消息(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4007"/>
+        <location filename="../ViewManager/ViewManager.py" line="4009"/>
         <source>Clear Warning Messages</source>
         <translation>清空警告消息</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4000"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>清空警告消息(&amp;W)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1031"/>
+        <location filename="../ViewManager/ViewManager.py" line="1032"/>
         <source>Join Lines</source>
         <translation>合并行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1024"/>
+        <location filename="../ViewManager/ViewManager.py" line="1025"/>
         <source>Ctrl+J</source>
         <comment>Edit|Join Lines</comment>
         <translation>Ctrl+J</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1033"/>
+        <location filename="../ViewManager/ViewManager.py" line="1034"/>
         <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="3110"/>
+        <location filename="../ViewManager/ViewManager.py" line="3111"/>
         <source>Goto Last Edit Location</source>
         <translation>跳转至上一次编辑位置</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3099"/>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation>跳转至上一次编辑位置(&amp;E)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3099"/>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <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="3113"/>
+        <location filename="../ViewManager/ViewManager.py" line="3114"/>
         <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="3122"/>
+        <location filename="../ViewManager/ViewManager.py" line="3123"/>
         <source>Goto Previous Method or Class</source>
         <translation>跳转至上一个方法或类</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3122"/>
+        <location filename="../ViewManager/ViewManager.py" line="3123"/>
         <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="3132"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <source>Go to the previous method or class definition</source>
         <translation>跳转之上一个方法或类的定义</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3136"/>
+        <location filename="../ViewManager/ViewManager.py" line="3137"/>
         <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="3146"/>
+        <location filename="../ViewManager/ViewManager.py" line="3147"/>
         <source>Goto Next Method or Class</source>
         <translation>跳转至下一个方法或类</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3146"/>
+        <location filename="../ViewManager/ViewManager.py" line="3147"/>
         <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="3156"/>
+        <location filename="../ViewManager/ViewManager.py" line="3157"/>
         <source>Go to the next method or class definition</source>
         <translation>跳转之下一个方法或类的定义</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3158"/>
+        <location filename="../ViewManager/ViewManager.py" line="3159"/>
         <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="3605"/>
+        <location filename="../ViewManager/ViewManager.py" line="3607"/>
         <source>Preview</source>
         <translation>预览</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3610"/>
-        <source>Preview the current file in the web browser</source>
-        <translation>在网页浏览器中预览当前文件</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3612"/>
+        <source>Preview the current file in the web browser</source>
+        <translation>在网页浏览器中预览当前文件</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3614"/>
         <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="1461"/>
+        <location filename="../ViewManager/ViewManager.py" line="1462"/>
         <source>Meta+B</source>
         <translation>Meta+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1474"/>
+        <location filename="../ViewManager/ViewManager.py" line="1475"/>
         <source>Meta+F</source>
         <translation>Meta+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1486"/>
+        <location filename="../ViewManager/ViewManager.py" line="1487"/>
         <source>Meta+P</source>
         <translation>Meta+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1498"/>
+        <location filename="../ViewManager/ViewManager.py" line="1499"/>
         <source>Meta+N</source>
         <translation>Meta+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1559"/>
+        <location filename="../ViewManager/ViewManager.py" line="1560"/>
         <source>Move to first visible character in document line</source>
         <translation>移动至文档行的第一个可见字符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1575"/>
+        <location filename="../ViewManager/ViewManager.py" line="1576"/>
         <source>Move to start of display line</source>
         <translation>移动至所显示行的起始位置</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1592"/>
+        <location filename="../ViewManager/ViewManager.py" line="1593"/>
         <source>Move to end of document line</source>
         <translation>移动至文档行的末尾</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1600"/>
+        <location filename="../ViewManager/ViewManager.py" line="1601"/>
         <source>Meta+E</source>
         <translation>Meta+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1668"/>
+        <location filename="../ViewManager/ViewManager.py" line="1669"/>
         <source>Meta+V</source>
         <translation>Meta+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1674"/>
+        <location filename="../ViewManager/ViewManager.py" line="1675"/>
         <source>Move to start of document</source>
         <translation>移动至文档的起始位置</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1691"/>
+        <location filename="../ViewManager/ViewManager.py" line="1692"/>
         <source>Move to end of document</source>
         <translation>移动至文档的末尾</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1737"/>
         <source>Meta+Shift+B</source>
         <translation>Meta+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1751"/>
+        <location filename="../ViewManager/ViewManager.py" line="1752"/>
         <source>Meta+Shift+F</source>
         <translation>Meta+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1766"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Meta+Shift+P</source>
         <translation>Meta+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1781"/>
+        <location filename="../ViewManager/ViewManager.py" line="1782"/>
         <source>Meta+Shift+N</source>
         <translation>Meta+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1849"/>
+        <location filename="../ViewManager/ViewManager.py" line="1850"/>
         <source>Extend selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1867"/>
+        <location filename="../ViewManager/ViewManager.py" line="1868"/>
         <source>Extend selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1875"/>
+        <location filename="../ViewManager/ViewManager.py" line="1876"/>
         <source>Meta+Shift+E</source>
         <translation>Meta+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1932"/>
+        <location filename="../ViewManager/ViewManager.py" line="1933"/>
         <source>Meta+Shift+V</source>
         <translation>Meta+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1939"/>
         <source>Extend selection to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1946"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Ctrl+Shift+Up</source>
         <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1955"/>
+        <location filename="../ViewManager/ViewManager.py" line="1956"/>
         <source>Extend selection to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1963"/>
+        <location filename="../ViewManager/ViewManager.py" line="1964"/>
         <source>Ctrl+Shift+Down</source>
         <translation>Ctrl+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1981"/>
+        <location filename="../ViewManager/ViewManager.py" line="1982"/>
         <source>Meta+H</source>
         <translation>Meta+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1990"/>
+        <location filename="../ViewManager/ViewManager.py" line="1991"/>
         <source>Delete previous character if not at start of line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2011"/>
+        <location filename="../ViewManager/ViewManager.py" line="2012"/>
         <source>Meta+D</source>
         <translation>Meta+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2055"/>
+        <location filename="../ViewManager/ViewManager.py" line="2056"/>
         <source>Meta+K</source>
         <translation>Meta+K</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2164"/>
+        <location filename="../ViewManager/ViewManager.py" line="2165"/>
         <source>Move to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Extend selection to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2223"/>
+        <location filename="../ViewManager/ViewManager.py" line="2224"/>
         <source>Meta+Alt+Shift+N</source>
         <translation>Meta+Alt+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2238"/>
+        <location filename="../ViewManager/ViewManager.py" line="2239"/>
         <source>Meta+Alt+Shift+P</source>
         <translation>Meta+Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2256"/>
+        <location filename="../ViewManager/ViewManager.py" line="2257"/>
         <source>Meta+Alt+Shift+B</source>
         <translation>Meta+Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2274"/>
+        <location filename="../ViewManager/ViewManager.py" line="2275"/>
         <source>Meta+Alt+Shift+F</source>
         <translation>Meta+Alt+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2280"/>
+        <location filename="../ViewManager/ViewManager.py" line="2281"/>
         <source>Extend rectangular selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2299"/>
+        <location filename="../ViewManager/ViewManager.py" line="2300"/>
         <source>Extend rectangular selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2309"/>
+        <location filename="../ViewManager/ViewManager.py" line="2310"/>
         <source>Meta+Alt+Shift+E</source>
         <translation>Meta+Alt+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2312"/>
+        <location filename="../ViewManager/ViewManager.py" line="2313"/>
         <source>Alt+Shift+End</source>
         <translation>Alt+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2333"/>
+        <location filename="../ViewManager/ViewManager.py" line="2334"/>
         <source>Alt+Shift+PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2345"/>
+        <location filename="../ViewManager/ViewManager.py" line="2346"/>
         <source>Meta+Alt+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2365"/>
+        <location filename="../ViewManager/ViewManager.py" line="2366"/>
         <source>Scroll to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2380"/>
+        <location filename="../ViewManager/ViewManager.py" line="2381"/>
         <source>Scroll to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2395"/>
+        <location filename="../ViewManager/ViewManager.py" line="2396"/>
         <source>Scroll vertically to center current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2403"/>
+        <location filename="../ViewManager/ViewManager.py" line="2404"/>
         <source>Meta+L</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2410"/>
+        <location filename="../ViewManager/ViewManager.py" line="2411"/>
         <source>Move to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2425"/>
+        <location filename="../ViewManager/ViewManager.py" line="2426"/>
         <source>Extend selection to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2441"/>
+        <location filename="../ViewManager/ViewManager.py" line="2442"/>
         <source>Move to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2453"/>
+        <location filename="../ViewManager/ViewManager.py" line="2454"/>
         <source>Extend selection to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2465"/>
+        <location filename="../ViewManager/ViewManager.py" line="2466"/>
         <source>Move to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2473"/>
+        <location filename="../ViewManager/ViewManager.py" line="2474"/>
         <source>Meta+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2480"/>
+        <location filename="../ViewManager/ViewManager.py" line="2481"/>
         <source>Extend selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2491"/>
+        <location filename="../ViewManager/ViewManager.py" line="2492"/>
         <source>Meta+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2498"/>
+        <location filename="../ViewManager/ViewManager.py" line="2499"/>
         <source>Extend rectangular selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2508"/>
+        <location filename="../ViewManager/ViewManager.py" line="2509"/>
         <source>Meta+Alt+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2516"/>
+        <location filename="../ViewManager/ViewManager.py" line="2517"/>
         <source>Extend selection to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2535"/>
+        <location filename="../ViewManager/ViewManager.py" line="2536"/>
         <source>Move to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2549"/>
+        <location filename="../ViewManager/ViewManager.py" line="2550"/>
         <source>Extend selection to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2564"/>
+        <location filename="../ViewManager/ViewManager.py" line="2565"/>
         <source>Move to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2581"/>
+        <location filename="../ViewManager/ViewManager.py" line="2582"/>
         <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="2598"/>
+        <location filename="../ViewManager/ViewManager.py" line="2599"/>
         <source>Move to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2612"/>
+        <location filename="../ViewManager/ViewManager.py" line="2613"/>
         <source>Extend selection to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2627"/>
+        <location filename="../ViewManager/ViewManager.py" line="2628"/>
         <source>Stuttered move up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2639"/>
+        <location filename="../ViewManager/ViewManager.py" line="2640"/>
         <source>Stuttered extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2652"/>
+        <location filename="../ViewManager/ViewManager.py" line="2653"/>
         <source>Stuttered move down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2664"/>
+        <location filename="../ViewManager/ViewManager.py" line="2665"/>
         <source>Stuttered extend selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2677"/>
+        <location filename="../ViewManager/ViewManager.py" line="2678"/>
         <source>Delete right to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2685"/>
+        <location filename="../ViewManager/ViewManager.py" line="2686"/>
         <source>Alt+Del</source>
         <translation>Alt+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2692"/>
+        <location filename="../ViewManager/ViewManager.py" line="2693"/>
         <source>Move selected lines up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2704"/>
+        <location filename="../ViewManager/ViewManager.py" line="2705"/>
         <source>Move selected lines down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2318"/>
+        <location filename="../ViewManager/ViewManager.py" line="2319"/>
         <source>Alt+Shift+PgUp</source>
         <translation>Alt+Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1134"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Toggle Comment</source>
         <translation>切换注释</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1134"/>
+        <location filename="../ViewManager/ViewManager.py" line="1135"/>
         <source>Ctrl+Shift+M</source>
         <comment>Edit|Toggle Comment</comment>
         <translation>Ctrl+Shift+M</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1142"/>
+        <location filename="../ViewManager/ViewManager.py" line="1143"/>
         <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="1146"/>
+        <location filename="../ViewManager/ViewManager.py" line="1147"/>
         <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="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Zoom reset</source>
         <translation>重置缩放</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Zoom &amp;reset</source>
         <translation>重置缩放(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3373"/>
+        <location filename="../ViewManager/ViewManager.py" line="3375"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3381"/>
+        <location filename="../ViewManager/ViewManager.py" line="3383"/>
         <source>Reset the zoom of the text</source>
         <translation>重置文本缩放大小</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3383"/>
+        <location filename="../ViewManager/ViewManager.py" line="3385"/>
         <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="3335"/>
+        <location filename="../ViewManager/ViewManager.py" line="3337"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation>放大</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3354"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation>缩小</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="713"/>
+        <location filename="../ViewManager/ViewManager.py" line="714"/>
         <source>Save a&amp;ll</source>
         <translation>全部保存(&amp;A)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4094"/>
-        <source>Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4088"/>
-        <source>&amp;Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4096"/>
+        <source>Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4090"/>
+        <source>&amp;Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <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="4112"/>
-        <source>Previous Change</source>
-        <translation>上一个更改</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4105"/>
-        <source>&amp;Previous Change</source>
-        <translation>上一个更改(&amp;P)</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4114"/>
+        <source>Previous Change</source>
+        <translation>上一个更改</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4107"/>
+        <source>&amp;Previous Change</source>
+        <translation>上一个更改(&amp;P)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4116"/>
         <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="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Check spelling</source>
         <translation>检查拼写</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4214"/>
         <source>Check &amp;spelling...</source>
         <translation>检查拼写(&amp;S)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4223"/>
+        <location filename="../ViewManager/ViewManager.py" line="4225"/>
         <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="4272"/>
-        <source>Edit Dictionary</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4274"/>
+        <source>Edit Dictionary</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4276"/>
         <source>Project Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4277"/>
+        <location filename="../ViewManager/ViewManager.py" line="4279"/>
         <source>Project Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4282"/>
+        <location filename="../ViewManager/ViewManager.py" line="4284"/>
         <source>User Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4285"/>
+        <location filename="../ViewManager/ViewManager.py" line="4287"/>
         <source>User Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6255"/>
+        <location filename="../ViewManager/ViewManager.py" line="6257"/>
         <source>Edit Spelling Dictionary</source>
         <translation type="unfinished">编辑拼写字典</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6232"/>
+        <location filename="../ViewManager/ViewManager.py" line="6234"/>
         <source>Editing {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6214"/>
+        <location filename="../ViewManager/ViewManager.py" line="6216"/>
         <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="6243"/>
+        <location filename="../ViewManager/ViewManager.py" line="6245"/>
         <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="6255"/>
+        <location filename="../ViewManager/ViewManager.py" line="6257"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2929"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>Search current word forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2929"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation>Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2940"/>
+        <location filename="../ViewManager/ViewManager.py" line="2941"/>
         <source>Search next occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2943"/>
+        <location filename="../ViewManager/ViewManager.py" line="2944"/>
         <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="2952"/>
+        <location filename="../ViewManager/ViewManager.py" line="2953"/>
         <source>Search current word backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2952"/>
+        <location filename="../ViewManager/ViewManager.py" line="2953"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation>Ctrl+,</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2963"/>
+        <location filename="../ViewManager/ViewManager.py" line="2964"/>
         <source>Search previous occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2966"/>
+        <location filename="../ViewManager/ViewManager.py" line="2967"/>
         <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="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <source>Search in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <source>Search in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3209"/>
+        <location filename="../ViewManager/ViewManager.py" line="3210"/>
         <source>Meta+Ctrl+Alt+F</source>
         <comment>Search|Search Open Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3220"/>
+        <location filename="../ViewManager/ViewManager.py" line="3221"/>
         <source>Search for a text in open files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3222"/>
+        <location filename="../ViewManager/ViewManager.py" line="3223"/>
         <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="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <source>Replace in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <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="3242"/>
+        <location filename="../ViewManager/ViewManager.py" line="3243"/>
         <source>Search for a text in open files and replace it</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3244"/>
+        <location filename="../ViewManager/ViewManager.py" line="3245"/>
         <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="3232"/>
+        <location filename="../ViewManager/ViewManager.py" line="3233"/>
         <source>Replace in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1399"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Sort</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1399"/>
+        <location filename="../ViewManager/ViewManager.py" line="1400"/>
         <source>Ctrl+Alt+S</source>
         <comment>Edit|Sort</comment>
         <translation>Ctrl+Alt+S</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1406"/>
+        <location filename="../ViewManager/ViewManager.py" line="1407"/>
         <source>Sort the lines containing the rectangular selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1409"/>
+        <location filename="../ViewManager/ViewManager.py" line="1410"/>
         <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="4801"/>
+        <location filename="../ViewManager/ViewManager.py" line="4803"/>
         <source>Language: {0}</source>
         <translation>语言:{0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4808"/>
+        <location filename="../ViewManager/ViewManager.py" line="4810"/>
         <source>EOL Mode: {0}</source>
         <translation>行尾模式:{0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3491"/>
         <source>New Document View</source>
         <translation>新建文档视图</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3489"/>
+        <location filename="../ViewManager/ViewManager.py" line="3491"/>
         <source>New &amp;Document View</source>
         <translation>新建文档视图(&amp;D)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3494"/>
-        <source>Open a new view of the current document</source>
-        <translation>在新视图(新选项卡)中打开当前文档</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3496"/>
+        <source>Open a new view of the current document</source>
+        <translation>在新视图(新选项卡)中打开当前文档</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3498"/>
         <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="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3508"/>
         <source>New Document View (with new split)</source>
         <translation>新建文档视图(在新拆分页中)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3513"/>
+        <location filename="../ViewManager/ViewManager.py" line="3515"/>
         <source>Open a new view of the current document in a new split</source>
         <translation>在新拆分页中的新视图(新选项卡)中打开当前文档</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3516"/>
+        <location filename="../ViewManager/ViewManager.py" line="3518"/>
         <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="3972"/>
+        <location filename="../ViewManager/ViewManager.py" line="3974"/>
         <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="3991"/>
+        <location filename="../ViewManager/ViewManager.py" line="3993"/>
         <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="4009"/>
+        <location filename="../ViewManager/ViewManager.py" line="4011"/>
         <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="1276"/>
+        <location filename="../ViewManager/ViewManager.py" line="1277"/>
         <source>Ctrl+Space</source>
         <comment>Edit|Complete</comment>
         <translation>Ctrl+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1294"/>
+        <location filename="../ViewManager/ViewManager.py" line="1295"/>
         <source>Ctrl+Shift+Space</source>
         <comment>Edit|Complete from Document</comment>
         <translation>Ctrl+Shift+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1317"/>
+        <location filename="../ViewManager/ViewManager.py" line="1318"/>
         <source>Ctrl+Alt+Space</source>
         <comment>Edit|Complete from APIs</comment>
         <translation>Ctrl+Alt+Space</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1340"/>
+        <location filename="../ViewManager/ViewManager.py" line="1341"/>
         <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="697"/>
+        <location filename="../ViewManager/ViewManager.py" line="698"/>
         <source>Save Copy</source>
         <translation>保存副本</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="697"/>
+        <location filename="../ViewManager/ViewManager.py" line="698"/>
         <source>Save &amp;Copy...</source>
         <translation>保存副本(&amp;C)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="702"/>
+        <location filename="../ViewManager/ViewManager.py" line="703"/>
         <source>Save a copy of the current file</source>
         <translation>保存当前文件的一个副本</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="704"/>
+        <location filename="../ViewManager/ViewManager.py" line="705"/>
         <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>
@@ -87693,141 +87693,141 @@
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2995"/>
         <source>Replace and Search</source>
         <translation type="unfinished">替换和搜索</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2995"/>
         <source>Meta+R</source>
         <comment>Search|Replace and Search</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3004"/>
+        <location filename="../ViewManager/ViewManager.py" line="3005"/>
         <source>Replace the found text and search the next occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3007"/>
+        <location filename="../ViewManager/ViewManager.py" line="3008"/>
         <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="3018"/>
+        <location filename="../ViewManager/ViewManager.py" line="3019"/>
         <source>Replace Occurrence</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3018"/>
+        <location filename="../ViewManager/ViewManager.py" line="3019"/>
         <source>Ctrl+Meta+R</source>
         <comment>Search|Replace Occurrence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3028"/>
+        <location filename="../ViewManager/ViewManager.py" line="3029"/>
         <source>Replace the found text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3030"/>
+        <location filename="../ViewManager/ViewManager.py" line="3031"/>
         <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="3040"/>
+        <location filename="../ViewManager/ViewManager.py" line="3041"/>
         <source>Replace All</source>
         <translation type="unfinished">替换全部</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3040"/>
+        <location filename="../ViewManager/ViewManager.py" line="3041"/>
         <source>Shift+Meta+R</source>
         <comment>Search|Replace All</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3050"/>
+        <location filename="../ViewManager/ViewManager.py" line="3051"/>
         <source>Replace search text occurrences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3052"/>
+        <location filename="../ViewManager/ViewManager.py" line="3053"/>
         <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="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1382"/>
         <source>Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1381"/>
+        <location filename="../ViewManager/ViewManager.py" line="1382"/>
         <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="1389"/>
+        <location filename="../ViewManager/ViewManager.py" line="1390"/>
         <source>Show Code Info</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1391"/>
+        <location filename="../ViewManager/ViewManager.py" line="1392"/>
         <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="3462"/>
-        <source>Clear all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3458"/>
-        <source>Clear &amp;all folds</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3464"/>
+        <source>Clear all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3460"/>
+        <source>Clear &amp;all folds</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3466"/>
         <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="2120"/>
+        <location filename="../ViewManager/ViewManager.py" line="2121"/>
         <source>Reverse selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2120"/>
+        <location filename="../ViewManager/ViewManager.py" line="2121"/>
         <source>Meta+Alt+R</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3622"/>
+        <location filename="../ViewManager/ViewManager.py" line="3624"/>
         <source>Python AST Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3627"/>
-        <source>Show the AST for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3629"/>
+        <source>Show the AST for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3631"/>
         <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="3639"/>
+        <location filename="../ViewManager/ViewManager.py" line="3641"/>
         <source>Python Disassembly Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3646"/>
-        <source>Show the Disassembly for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3648"/>
+        <source>Show the Disassembly for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3650"/>
         <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>
@@ -87847,23 +87847,23 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1418"/>
+        <location filename="../ViewManager/ViewManager.py" line="1419"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1418"/>
+        <location filename="../ViewManager/ViewManager.py" line="1419"/>
         <source>Ctrl+Alt+D</source>
         <comment>Edit|Generate Docstring</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1425"/>
+        <location filename="../ViewManager/ViewManager.py" line="1426"/>
         <source>Generate a docstring for the current function/method</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1428"/>
+        <location filename="../ViewManager/ViewManager.py" line="1429"/>
         <source>&lt;b&gt;Generate Docstring&lt;/b&gt;&lt;p&gt;Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -88344,32 +88344,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="342"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="346"/>
         <source>&lt;virtualenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="360"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="364"/>
         <source>&lt;No suitable virtualenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="362"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="366"/>
         <source>virtualenv Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="396"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="400"/>
         <source>&lt;pyvenv did not finish within 5s.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="416"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="420"/>
         <source>&lt;No suitable pyvenv found.&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="418"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="422"/>
         <source>pyvenv Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -88504,7 +88504,7 @@
         <translation type="unfinished">文本文件 (*.txt);;所有文件 (*)</translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="430"/>
+        <location filename="../VirtualEnv/VirtualenvConfigurationDialog.py" line="434"/>
         <source>conda Version: {0}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -88539,85 +88539,85 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="110"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="112"/>
         <source>Executing: {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="154"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="163"/>
         <source>Failed
 
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="164"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="173"/>
         <source>
 pyvenv finished.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="166"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="175"/>
         <source>
 virtualenv finished.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="191"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="200"/>
         <source>No suitable pyvenv program could be started.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="195"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="204"/>
         <source>No suitable virtualenv program could be started.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="259"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="268"/>
         <source>
 Writing log file &apos;{0}&apos;.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="264"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="273"/>
         <source>Output:
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="269"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="278"/>
         <source>Errors:
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="272"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="281"/>
         <source>The logfile &apos;{0}&apos; could not be written.
 Reason: {1}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="302"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="311"/>
         <source>Done.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="292"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="301"/>
         <source>
 Writing script file &apos;{0}&apos;.
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="299"/>
+        <location filename="../VirtualEnv/VirtualenvExecDialog.py" line="308"/>
         <source>The script file &apos;{0}&apos; could not be written.
 Reason: {1}
 </source>
@@ -89077,82 +89077,82 @@
 <context>
     <name>WatchPointViewer</name>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="47"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="49"/>
         <source>Watchpoints</source>
         <translation>监视点</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="174"/>
-        <source>Add</source>
-        <translation>添加</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="141"/>
-        <source>Edit...</source>
-        <translation>编辑…</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="143"/>
-        <source>Enable</source>
-        <translation>允许</translation>
-    </message>
-    <message>
         <location filename="../Debugger/WatchPointViewer.py" line="178"/>
-        <source>Enable all</source>
-        <translation>允许所有</translation>
+        <source>Add</source>
+        <translation>添加</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="145"/>
+        <source>Edit...</source>
+        <translation>编辑…</translation>
     </message>
     <message>
         <location filename="../Debugger/WatchPointViewer.py" line="147"/>
-        <source>Disable</source>
-        <translation>禁止</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="183"/>
-        <source>Disable all</source>
-        <translation>禁止所有</translation>
+        <source>Enable</source>
+        <translation>允许</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="182"/>
+        <source>Enable all</source>
+        <translation>允许所有</translation>
     </message>
     <message>
         <location filename="../Debugger/WatchPointViewer.py" line="151"/>
+        <source>Disable</source>
+        <translation>禁止</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="187"/>
+        <source>Disable all</source>
+        <translation>禁止所有</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="155"/>
         <source>Delete</source>
         <translation>删除</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="188"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="192"/>
         <source>Delete all</source>
         <translation>全部删除</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="191"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="195"/>
         <source>Configure...</source>
         <translation>配置…</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="176"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="180"/>
         <source>Enable selected</source>
         <translation>允许所选择的</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="181"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="185"/>
         <source>Disable selected</source>
         <translation>禁止所选择的</translation>
     </message>
     <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="186"/>
+        <location filename="../Debugger/WatchPointViewer.py" line="190"/>
         <source>Delete selected</source>
         <translation>删除所选择的</translation>
     </message>
     <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="253"/>
+        <source>Watch expression already exists</source>
+        <translation>监视表达式已存在</translation>
+    </message>
+    <message>
+        <location filename="../Debugger/WatchPointViewer.py" line="244"/>
+        <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; already exists.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../Debugger/WatchPointViewer.py" line="249"/>
-        <source>Watch expression already exists</source>
-        <translation>监视表达式已存在</translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="240"/>
-        <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; already exists.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../Debugger/WatchPointViewer.py" line="245"/>
         <source>&lt;p&gt;A watch expression &apos;&lt;b&gt;{0}&lt;/b&gt;&apos; for the variable &lt;b&gt;{1}&lt;/b&gt; already exists.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -89632,33 +89632,33 @@
         <translation type="unfinished">全选</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="42"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="43"/>
         <source>Info</source>
         <translation type="unfinished">信息</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="43"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="45"/>
         <source>Warning</source>
         <translation type="unfinished">警告</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="44"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="47"/>
         <source>Error</source>
         <translation type="unfinished">错误</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="97"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="100"/>
         <source>[{0}] {1}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="102"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="105"/>
         <source> at line {0}
 </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="107"/>
+        <location filename="../WebBrowser/WebBrowserJavaScriptConsole.py" line="110"/>
         <source>URL: {0}
 </source>
         <translation type="unfinished"></translation>
@@ -90228,12 +90228,12 @@
         <translation type="unfinished"> 秒</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="185"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="188"/>
         <source>Suspicuous URL detected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="185"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="188"/>
         <source>&lt;p&gt;The URL &lt;b&gt;{0}&lt;/b&gt; was found in the Safe Browsing database.&lt;/p&gt;{1}</source>
         <translation type="unfinished"></translation>
     </message>
@@ -90472,12 +90472,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="702"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="706"/>
         <source>SSL Info</source>
         <translation type="unfinished">SSL 信息</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserPage.py" line="702"/>
+        <location filename="../WebBrowser/WebBrowserPage.py" line="706"/>
         <source>This site does not contain SSL information.</source>
         <translation type="unfinished">这个站点未包括 SSL 信息。</translation>
     </message>
@@ -90543,107 +90543,107 @@
         <translation type="unfinished">显示导航菜单</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="135"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="136"/>
         <source>Show a navigation menu for closed tabs</source>
         <translation type="unfinished">为已关闭选项卡显示导航菜单</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="149"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="152"/>
         <source>Open a new web browser tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="163"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="166"/>
         <source>New Tab</source>
         <translation type="unfinished">新建选项卡</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="167"/>
-        <source>Move Left</source>
-        <translation type="unfinished">左移</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="170"/>
+        <source>Move Left</source>
+        <translation type="unfinished">左移</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="173"/>
         <source>Move Right</source>
         <translation type="unfinished">右移</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="174"/>
-        <source>Duplicate Page</source>
-        <translation type="unfinished">产生相同页面</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="177"/>
-        <source>Close</source>
-        <translation type="unfinished">关闭</translation>
+        <source>Duplicate Page</source>
+        <translation type="unfinished">产生相同页面</translation>
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="180"/>
+        <source>Close</source>
+        <translation type="unfinished">关闭</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="183"/>
         <source>Close Others</source>
         <translation type="unfinished">关闭其它</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="211"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="214"/>
         <source>Close All</source>
         <translation type="unfinished">全部关闭</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="186"/>
-        <source>Print Preview</source>
-        <translation type="unfinished">打印预览</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="189"/>
-        <source>Print</source>
-        <translation type="unfinished">打印</translation>
+        <source>Print Preview</source>
+        <translation type="unfinished">打印预览</translation>
     </message>
     <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="192"/>
+        <source>Print</source>
+        <translation type="unfinished">打印</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="195"/>
         <source>Print as PDF</source>
         <translation type="unfinished">打印为 PDF</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="213"/>
-        <source>Reload All</source>
-        <translation type="unfinished">重新载入所有内容</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserTabWidget.py" line="216"/>
+        <source>Reload All</source>
+        <translation type="unfinished">重新载入所有内容</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="219"/>
         <source>Bookmark All Tabs</source>
         <translation type="unfinished">将所有选项卡加入书签</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="220"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="223"/>
         <source>Restore Closed Tab</source>
         <translation type="unfinished">恢复已关闭的选项卡</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="456"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="459"/>
         <source>...</source>
         <translation type="unfinished">…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="912"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="922"/>
         <source>Loading...</source>
         <translation type="unfinished">正在加载…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="921"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="931"/>
         <source>Finished loading</source>
         <translation type="unfinished">加载完成</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="888"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="898"/>
         <source>Failed to load</source>
         <translation type="unfinished">加载失败</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
         <source>Are you sure you want to close the window?</source>
         <translation type="unfinished">确定要关闭窗口?</translation>
     </message>
     <message numerus="yes">
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
         <source>Are you sure you want to close the window?
 You have %n tab(s) open.</source>
         <translation type="unfinished">
@@ -90652,47 +90652,47 @@
         </translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="969"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="979"/>
         <source>&amp;Quit</source>
         <translation type="unfinished">退出(&amp;Q)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="972"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="982"/>
         <source>C&amp;lose Current Tab</source>
         <translation type="unfinished">关闭当前选项卡(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1153"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1165"/>
         <source>Restore All Closed Tabs</source>
         <translation type="unfinished">恢复所有已关闭的选项卡</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1155"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="1167"/>
         <source>Clear List</source>
         <translation type="unfinished">清空列表</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="250"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="253"/>
         <source>Unmute Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="254"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="257"/>
         <source>Mute Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="753"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="763"/>
         <source>Print to PDF</source>
         <translation type="unfinished">打印到 PDF</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="703"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="713"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; exists already. Shall it be overwritten?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="753"/>
+        <location filename="../WebBrowser/WebBrowserTabWidget.py" line="763"/>
         <source>&lt;p&gt;The PDF could not be written to file &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Error:&lt;/b&gt; {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -90700,7 +90700,7 @@
 <context>
     <name>WebBrowserTools</name>
     <message>
-        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="250"/>
+        <location filename="../WebBrowser/Tools/WebBrowserTools.py" line="254"/>
         <source>&lt;unknown&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -90913,7 +90913,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1791"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1816"/>
         <source>Try reloading the page or closing some tabs to make more memory available.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -90933,22 +90933,22 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1780"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1797"/>
         <source>Render Process terminated abnormally</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1783"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1804"/>
         <source>The render process crashed while loading this page.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1786"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1811"/>
         <source>The render process was killed.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1788"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1813"/>
         <source>The render process terminated while loading this page.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -90958,37 +90958,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1914"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1939"/>
         <source>Web Archive (*.mhtml *.mht)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1915"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1940"/>
         <source>HTML File (*.html *.htm)</source>
         <translation type="unfinished">HTML 文件 (*.html *.htm)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1916"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1941"/>
         <source>HTML File with all resources (*.html *.htm)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1939"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1964"/>
         <source>Save Web Page</source>
         <translation type="unfinished">保存网页</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="1731"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="1742"/>
         <source>Empty Page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2289"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2321"/>
         <source>Quota Request</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserView.py" line="2289"/>
+        <location filename="../WebBrowser/WebBrowserView.py" line="2321"/>
         <source>&lt;p&gt; Allow the website at &lt;b&gt;{0}&lt;/b&gt; to use &lt;b&gt;{1}&lt;/b&gt; of persistent storage?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -91112,319 +91112,319 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1467"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1472"/>
         <source>Index</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1480"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1485"/>
         <source>Search</source>
         <translation type="unfinished">搜索</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1743"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1748"/>
         <source>JavaScript Console</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>New Tab</source>
         <translation type="unfinished">新建选项卡</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>&amp;New Tab</source>
         <translation type="unfinished">新建选项卡(&amp;N)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="660"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="665"/>
         <source>Ctrl+T</source>
         <comment>File|New Tab</comment>
         <translation type="unfinished">Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="666"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="671"/>
         <source>Open a new web browser tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="667"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="672"/>
         <source>&lt;b&gt;New Tab&lt;/b&gt;&lt;p&gt;This opens a new web browser tab.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>New Window</source>
         <translation type="unfinished">新建窗口</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>New &amp;Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="674"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="679"/>
         <source>Ctrl+N</source>
         <comment>File|New Window</comment>
         <translation type="unfinished">Ctrl+N</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="680"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="685"/>
         <source>Open a new web browser window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="681"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="686"/>
         <source>&lt;b&gt;New Window&lt;/b&gt;&lt;p&gt;This opens a new web browser window in the current privacy mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>New Private Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="689"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="694"/>
         <source>New &amp;Private Window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="689"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="694"/>
         <source>Ctrl+Shift+P</source>
         <comment>File|New Private Window</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="695"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="700"/>
         <source>Open a new private web browser window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="697"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="702"/>
         <source>&lt;b&gt;New Private Window&lt;/b&gt;&lt;p&gt;This opens a new private web browser window by starting a new web browser instance in private mode.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2503"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2508"/>
         <source>Open File</source>
         <translation type="unfinished">打开文件</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="705"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="710"/>
         <source>&amp;Open File</source>
         <translation type="unfinished">打开文件(&amp;O)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="705"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="710"/>
         <source>Ctrl+O</source>
         <comment>File|Open</comment>
         <translation type="unfinished">Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="711"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="716"/>
         <source>Open a file for display</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="712"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="717"/>
         <source>&lt;b&gt;Open File&lt;/b&gt;&lt;p&gt;This opens a new file for display. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Open File in New Tab</source>
         <translation type="unfinished">在新选项卡中打开文件</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Open File in New &amp;Tab</source>
         <translation type="unfinished">在新选项卡中打开文件(&amp;T)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="720"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="725"/>
         <source>Shift+Ctrl+O</source>
         <comment>File|Open in new tab</comment>
         <translation type="unfinished">Shift+Ctrl+O</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="726"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="731"/>
         <source>Open a file for display in a new tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="733"/>
         <source>&lt;b&gt;Open File in New Tab&lt;/b&gt;&lt;p&gt;This opens a new file for display in a new tab. It pops up a file selection dialog.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="754"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="759"/>
         <source>Save Page Screen</source>
         <translation type="unfinished">保存屏幕页面截图</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="754"/>
-        <source>Save Page Screen...</source>
-        <translation type="unfinished">保存屏幕页面截图…</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="759"/>
+        <source>Save Page Screen...</source>
+        <translation type="unfinished">保存屏幕页面截图…</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="764"/>
         <source>Save the visible part of the current page as a screen shot</source>
         <translation type="unfinished">将当前页面的可见部分保存为屏幕截图</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="772"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="777"/>
         <source>Import Bookmarks</source>
         <translation type="unfinished">导入书签</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="772"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="777"/>
         <source>&amp;Import Bookmarks...</source>
         <translation type="unfinished">导入书签(&amp;I)…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="776"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="781"/>
         <source>Import bookmarks from other browsers</source>
         <translation type="unfinished">从其它浏览器导入书签</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="778"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="783"/>
         <source>&lt;b&gt;Import Bookmarks&lt;/b&gt;&lt;p&gt;Import bookmarks from other browsers.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="786"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="791"/>
         <source>Export Bookmarks</source>
         <translation type="unfinished">导出书签</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="786"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="791"/>
         <source>&amp;Export Bookmarks...</source>
         <translation type="unfinished">导出书签(&amp;E)…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="790"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="795"/>
         <source>Export the bookmarks into a file</source>
         <translation type="unfinished">导出书签至文件</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="792"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="797"/>
         <source>&lt;b&gt;Export Bookmarks&lt;/b&gt;&lt;p&gt;Export the bookmarks into a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2122"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2127"/>
         <source>Print</source>
         <translation type="unfinished">打印</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="800"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="805"/>
         <source>&amp;Print</source>
         <translation type="unfinished">打印(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="800"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="805"/>
         <source>Ctrl+P</source>
         <comment>File|Print</comment>
         <translation type="unfinished">Ctrl+P</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="806"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="811"/>
         <source>Print the displayed help</source>
         <translation type="unfinished">打印显示的帮助</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="807"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="812"/>
         <source>&lt;b&gt;Print&lt;/b&gt;&lt;p&gt;Print the displayed help text.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;打印&lt;/b&gt;&lt;p&gt;打印显示的帮助文本。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="814"/>
-        <source>Print as PDF</source>
-        <translation type="unfinished">打印为 PDF</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="819"/>
+        <source>Print as PDF</source>
+        <translation type="unfinished">打印为 PDF</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="824"/>
         <source>Print the displayed help as PDF</source>
         <translation type="unfinished">将显示的帮助打印为 PDF</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="821"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="826"/>
         <source>&lt;b&gt;Print as PDF&lt;/b&gt;&lt;p&gt;Print the displayed help text as a PDF file.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;打印为 PDF&lt;/b&gt;&lt;p&gt;将显示的帮助文本打印为 PDF 文件。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="829"/>
-        <source>Print Preview</source>
-        <translation type="unfinished">打印预览</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="834"/>
+        <source>Print Preview</source>
+        <translation type="unfinished">打印预览</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="839"/>
         <source>Print preview of the displayed help</source>
         <translation type="unfinished">移动到初始帮助屏幕</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="836"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="841"/>
         <source>&lt;b&gt;Print Preview&lt;/b&gt;&lt;p&gt;Print preview of the displayed help text.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;打印预览&lt;/b&gt;&lt;p&gt;显示的帮助文件的打印预览。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>Close</source>
         <translation type="unfinished">关闭</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>&amp;Close</source>
         <translation type="unfinished">关闭(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="858"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="863"/>
         <source>Ctrl+W</source>
         <comment>File|Close</comment>
         <translation type="unfinished">Ctrl+W</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="864"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="869"/>
         <source>Close the current help window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="866"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="871"/>
         <source>&lt;b&gt;Close&lt;/b&gt;&lt;p&gt;Closes the current web browser window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="873"/>
-        <source>Close All</source>
-        <translation type="unfinished">全部关闭</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="873"/>
-        <source>Close &amp;All</source>
-        <translation type="unfinished">全部关闭(&amp;A)</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="877"/>
-        <source>Close all help windows</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="878"/>
+        <source>Close All</source>
+        <translation type="unfinished">全部关闭</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="878"/>
+        <source>Close &amp;All</source>
+        <translation type="unfinished">全部关闭(&amp;A)</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="882"/>
+        <source>Close all help windows</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="883"/>
         <source>&lt;b&gt;Close All&lt;/b&gt;&lt;p&gt;Closes all web browser windows except the first one.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="886"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="891"/>
         <source>Quit</source>
         <translation type="unfinished">退出</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2854"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2859"/>
         <source>&amp;Quit</source>
         <translation type="unfinished">退出(&amp;Q)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="886"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="891"/>
         <source>Ctrl+Q</source>
         <comment>File|Quit</comment>
         <translation type="unfinished">Ctrl+Q</translation>
@@ -91440,746 +91440,746 @@
         <translation type="obsolete">&lt;b&gt;退出&lt;/b&gt;&lt;p&gt;退出 eric6 网页浏览器。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>Backward</source>
         <translation type="unfinished">后退</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>&amp;Backward</source>
         <translation type="unfinished">后退(&amp;B)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="900"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="905"/>
         <source>Alt+Left</source>
         <comment>Go|Backward</comment>
         <translation type="unfinished">Alt+Left</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="906"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="911"/>
         <source>Move one screen backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="907"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="912"/>
         <source>&lt;b&gt;Backward&lt;/b&gt;&lt;p&gt;Moves one screen backward. If none is available, this action is disabled.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>Forward</source>
         <translation type="unfinished">前移</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>&amp;Forward</source>
         <translation type="unfinished">前移(&amp;F)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="915"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="920"/>
         <source>Alt+Right</source>
         <comment>Go|Forward</comment>
         <translation type="unfinished">Alt+Right</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="921"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="926"/>
         <source>Move one screen forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="923"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="928"/>
         <source>&lt;b&gt;Forward&lt;/b&gt;&lt;p&gt;Moves one screen forward. If none is available, this action is disabled.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>Home</source>
         <translation type="unfinished">Home</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>&amp;Home</source>
         <translation type="unfinished">首页(&amp;H)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="931"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="936"/>
         <source>Ctrl+Home</source>
         <comment>Go|Home</comment>
         <translation type="unfinished">Ctrl+Home</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="939"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="944"/>
         <source>&lt;b&gt;Home&lt;/b&gt;&lt;p&gt;Moves to the initial screen.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>Reload</source>
         <translation type="unfinished">重新载入</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>&amp;Reload</source>
         <translation type="unfinished">重新载入(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>Ctrl+R</source>
         <comment>Go|Reload</comment>
         <translation type="unfinished">Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="946"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="951"/>
         <source>F5</source>
         <comment>Go|Reload</comment>
         <translation type="unfinished">F5</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="953"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="958"/>
         <source>Reload the current screen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="955"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="960"/>
         <source>&lt;b&gt;Reload&lt;/b&gt;&lt;p&gt;Reloads the current screen.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Stop</source>
         <translation type="unfinished">中止</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>&amp;Stop</source>
         <translation type="unfinished">中止(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Ctrl+.</source>
         <comment>Go|Stop</comment>
         <translation type="unfinished">Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="962"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="967"/>
         <source>Esc</source>
         <comment>Go|Stop</comment>
         <translation type="unfinished">Esc</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="969"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="974"/>
         <source>Stop loading</source>
         <translation type="unfinished">停止加载</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="970"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="975"/>
         <source>&lt;b&gt;Stop&lt;/b&gt;&lt;p&gt;Stops loading of the current tab.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;中止&lt;/b&gt;&lt;p&gt;中止载入当前选项卡。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>Copy</source>
         <translation type="unfinished">复制</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>&amp;Copy</source>
         <translation type="unfinished">复制(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="977"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="982"/>
         <source>Ctrl+C</source>
         <comment>Edit|Copy</comment>
         <translation type="unfinished">Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="983"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="988"/>
         <source>Copy the selected text</source>
         <translation type="unfinished">复制已选文本</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="984"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="989"/>
         <source>&lt;b&gt;Copy&lt;/b&gt;&lt;p&gt;Copy the selected text to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;复制&lt;/b&gt;&lt;p&gt;将已选文件复制到剪贴板中。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Cut</source>
         <translation type="unfinished">剪切</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Cu&amp;t</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="996"/>
         <source>Ctrl+X</source>
         <comment>Edit|Cut</comment>
         <translation type="unfinished">Ctrl+X</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="997"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1002"/>
         <source>Cut the selected text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="998"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1003"/>
         <source>&lt;b&gt;Cut&lt;/b&gt;&lt;p&gt;Cut the selected text to the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>Paste</source>
         <translation type="unfinished">粘贴</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>&amp;Paste</source>
         <translation type="unfinished">粘贴(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1005"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1010"/>
         <source>Ctrl+V</source>
         <comment>Edit|Paste</comment>
         <translation type="unfinished">Ctrl+V</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1011"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1016"/>
         <source>Paste text from the clipboard</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1012"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1017"/>
         <source>&lt;b&gt;Paste&lt;/b&gt;&lt;p&gt;Paste some text from the clipboard.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>Undo</source>
         <translation type="unfinished">撤消</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>&amp;Undo</source>
         <translation type="unfinished">撤消(&amp;U)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1019"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1024"/>
         <source>Ctrl+Z</source>
         <comment>Edit|Undo</comment>
         <translation type="unfinished">Ctrl+Z</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1025"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1030"/>
         <source>Undo the last edit action</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1026"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1031"/>
         <source>&lt;b&gt;Undo&lt;/b&gt;&lt;p&gt;Undo the last edit action.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>Redo</source>
         <translation type="unfinished">重做</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>&amp;Redo</source>
         <translation type="unfinished">重做(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1033"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1038"/>
         <source>Ctrl+Shift+Z</source>
         <comment>Edit|Redo</comment>
         <translation type="unfinished">Ctrl+Shift+Z</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1039"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1044"/>
         <source>Redo the last edit action</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1040"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1045"/>
         <source>&lt;b&gt;Redo&lt;/b&gt;&lt;p&gt;Redo the last edit action.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>Select All</source>
         <translation type="unfinished">全选</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>&amp;Select All</source>
         <translation type="unfinished">全选(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1047"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1052"/>
         <source>Ctrl+A</source>
         <comment>Edit|Select All</comment>
         <translation type="unfinished">Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1053"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1058"/>
         <source>Select all text</source>
         <translation type="unfinished">选择所有文本</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1054"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1059"/>
         <source>&lt;b&gt;Select All&lt;/b&gt;&lt;p&gt;Select all text of the current browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>Find...</source>
         <translation type="unfinished">查找…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>&amp;Find...</source>
         <translation type="unfinished">查找(&amp;F)…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1074"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1079"/>
         <source>Ctrl+F</source>
         <comment>Edit|Find</comment>
         <translation type="unfinished">Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1080"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1085"/>
         <source>Find text in page</source>
         <translation type="unfinished">在页面中查找文本</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1081"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1086"/>
         <source>&lt;b&gt;Find&lt;/b&gt;&lt;p&gt;Find text in the current page.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;查找&lt;/b&gt;&lt;p&gt;在页面中查找文本。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>Find next</source>
         <translation type="unfinished">查找下一个</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>Find &amp;next</source>
         <translation type="unfinished">查找下一个(&amp;N)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1088"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1093"/>
         <source>F3</source>
         <comment>Edit|Find next</comment>
         <translation type="unfinished">F3</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1094"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1099"/>
         <source>Find next occurrence of text in page</source>
         <translation type="unfinished">在页面中查找文本的下一个出现位置</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1096"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1101"/>
         <source>&lt;b&gt;Find next&lt;/b&gt;&lt;p&gt;Find the next occurrence of text in the current page.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;查找下一个&lt;/b&gt;&lt;p&gt;在页面中查找文本的下一个出现位置。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Find previous</source>
         <translation type="unfinished">查找上一个</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Find &amp;previous</source>
         <translation type="unfinished">查找上一个(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1103"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1108"/>
         <source>Shift+F3</source>
         <comment>Edit|Find previous</comment>
         <translation type="unfinished">Shift+F3</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1109"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1114"/>
         <source>Find previous occurrence of text in page</source>
         <translation type="unfinished">在页面中查找文本的上一个出现位置</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1111"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1116"/>
         <source>&lt;b&gt;Find previous&lt;/b&gt;&lt;p&gt;Find the previous occurrence of text in the current page.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;查找上一个&lt;/b&gt;&lt;p&gt;在页面中查找文本的上一个出现位置。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
         <source>Manage Bookmarks</source>
         <translation type="unfinished">管理书签</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
         <source>&amp;Manage Bookmarks...</source>
         <translation type="unfinished">管理书签(&amp;M)…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1120"/>
-        <source>Ctrl+Shift+B</source>
-        <comment>Help|Manage bookmarks</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1125"/>
+        <source>Ctrl+Shift+B</source>
+        <comment>Help|Manage bookmarks</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1130"/>
         <source>Open a dialog to manage the bookmarks.</source>
         <translation type="unfinished">打开一个对话框来管理书签。</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1127"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1132"/>
         <source>&lt;b&gt;Manage Bookmarks...&lt;/b&gt;&lt;p&gt;Open a dialog to manage the bookmarks.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Add Bookmark</source>
         <translation type="unfinished">添加书签</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Add &amp;Bookmark...</source>
         <translation type="unfinished">添加书签(&amp;B)…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1140"/>
         <source>Ctrl+D</source>
         <comment>Help|Add bookmark</comment>
         <translation type="unfinished">Ctrl+D</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1142"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1147"/>
         <source>Open a dialog to add a bookmark.</source>
         <translation type="unfinished">打开一个对话框来添加书签。</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1144"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1149"/>
         <source>&lt;b&gt;Add Bookmark&lt;/b&gt;&lt;p&gt;Open a dialog to add the current URL as a bookmark.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;管理书签&lt;/b&gt;&lt;p&gt;打开对话框以将当前的 URL 添加成为书签。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1151"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1156"/>
         <source>Add Folder</source>
         <translation type="unfinished">添加文件夹</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1151"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1156"/>
         <source>Add &amp;Folder...</source>
         <translation type="unfinished">添加文件夹(&amp;F)…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1155"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1160"/>
         <source>Open a dialog to add a new bookmarks folder.</source>
         <translation type="unfinished">打开一个对话框来添加新的书签文件夹。</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1157"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1162"/>
         <source>&lt;b&gt;Add Folder...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;添加文件夹…&lt;/b&gt;&lt;p&gt;打开一个对话框来添加新的书签文件夹。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1165"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1170"/>
         <source>Bookmark All Tabs</source>
         <translation type="unfinished">将所有选项卡加入书签</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1165"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1170"/>
         <source>Bookmark All Tabs...</source>
         <translation type="unfinished">将所有选项卡加入书签…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1169"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1174"/>
         <source>Bookmark all open tabs.</source>
         <translation type="unfinished">将所有打开的选项卡加入书签。</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1171"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1176"/>
         <source>&lt;b&gt;Bookmark All Tabs...&lt;/b&gt;&lt;p&gt;Open a dialog to add a new bookmarks folder for all open tabs.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;将所有选项卡加入书签…&lt;/b&gt;&lt;p&gt;打开一个对话框来将所有打开的选项卡加入一个新的书签文件夹。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>What&apos;s This?</source>
         <translation type="unfinished">这是什么?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>&amp;What&apos;s This?</source>
         <translation type="unfinished">这是什么(&amp;W)?</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1184"/>
         <source>Shift+F1</source>
         <comment>Help|What&apos;s This?&apos;</comment>
         <translation type="unfinished">Shift+F1</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1185"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1190"/>
         <source>Context sensitive help</source>
         <translation type="unfinished">背景帮助</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1186"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1191"/>
         <source>&lt;b&gt;Display context sensitive help&lt;/b&gt;&lt;p&gt;In What&apos;s This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;显示背景帮助&lt;/b&gt;&lt;p&gt;在“这是什么?”模式中,鼠标光标显示为带问号的箭头,通过点击界面元素你可以获得“在做什么”和“怎样使用”的简短描述。使用标题栏中的上下文帮助按钮可以获得此功能。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1197"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1202"/>
         <source>About</source>
         <translation type="unfinished">关于</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1197"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1202"/>
         <source>&amp;About</source>
         <translation type="unfinished">关于(&amp;A)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1201"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1206"/>
         <source>Display information about this software</source>
         <translation type="unfinished">显示软件信息</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1203"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1208"/>
         <source>&lt;b&gt;About&lt;/b&gt;&lt;p&gt;Display some information about this software.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;关于&lt;/b&gt;&lt;p&gt;显示与本软件有关的部分信息。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1210"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1215"/>
         <source>About Qt</source>
         <translation type="unfinished">关于 Qt</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1210"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1215"/>
         <source>About &amp;Qt</source>
         <translation type="unfinished">关于 &amp;Qt</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1214"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1219"/>
         <source>Display information about the Qt toolkit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1216"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1221"/>
         <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="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom in</source>
         <translation type="unfinished">放大</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom &amp;in</source>
         <translation type="unfinished">放大(&amp;I)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished">Ctrl++</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1223"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1228"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished">放大</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1230"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1235"/>
         <source>Zoom in on the web page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1231"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1236"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the web page. This makes the web page bigger.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom out</source>
         <translation type="unfinished">缩小</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom &amp;out</source>
         <translation type="unfinished">缩小(&amp;O)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished">Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1239"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1244"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished">缩小</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1246"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1251"/>
         <source>Zoom out on the web page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1247"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1252"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the web page. This makes the web page smaller.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Zoom reset</source>
         <translation type="unfinished">重置缩放</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished">重置缩放(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1255"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1260"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation type="unfinished">Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1261"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1266"/>
         <source>Reset the zoom of the web page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1263"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1268"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the web page. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1271"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1276"/>
         <source>Show page source</source>
         <translation type="unfinished">显示页面源代码</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1271"/>
-        <source>Ctrl+U</source>
-        <translation type="unfinished">Ctrl+U</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1276"/>
+        <source>Ctrl+U</source>
+        <translation type="unfinished">Ctrl+U</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1281"/>
         <source>Show the page source in an editor</source>
         <translation type="unfinished">在编辑器中显示页面源代码</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1278"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1283"/>
         <source>&lt;b&gt;Show page source&lt;/b&gt;&lt;p&gt;Show the page source in an editor.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;显示页面源代码&lt;/b&gt;&lt;p&gt;在编辑器中显示页面源代码。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1286"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1291"/>
         <source>Full Screen</source>
         <translation type="unfinished">全屏幕</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1286"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1291"/>
         <source>&amp;Full Screen</source>
         <translation type="unfinished">全屏幕(&amp;F)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1296"/>
-        <source>F11</source>
-        <translation type="unfinished">F11</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1301"/>
-        <source>Show next tab</source>
-        <translation type="unfinished">显示下一个选项卡</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1301"/>
+        <source>F11</source>
+        <translation type="unfinished">F11</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1306"/>
+        <source>Show next tab</source>
+        <translation type="unfinished">显示下一个选项卡</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1306"/>
         <source>Ctrl+Alt+Tab</source>
         <translation type="unfinished">Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1310"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1315"/>
         <source>Show previous tab</source>
         <translation type="unfinished">显示上一个选项卡</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1310"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1315"/>
         <source>Shift+Ctrl+Alt+Tab</source>
         <translation type="unfinished">Shift+Ctrl+Alt+Tab</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1319"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1324"/>
         <source>Switch between tabs</source>
         <translation type="unfinished">在选项卡间切换</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1319"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1324"/>
         <source>Ctrl+1</source>
         <translation type="unfinished">Ctrl+1</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1328"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1333"/>
         <source>Preferences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1328"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1333"/>
         <source>&amp;Preferences...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1332"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1337"/>
         <source>Set the prefered configuration</source>
         <translation type="unfinished">设定偏好配置</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1334"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1339"/>
         <source>&lt;b&gt;Preferences&lt;/b&gt;&lt;p&gt;Set the configuration items of the application with your prefered values.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1342"/>
-        <source>Languages</source>
-        <translation type="unfinished">语言</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1342"/>
-        <source>&amp;Languages...</source>
-        <translation type="unfinished">语言(&amp;L)…</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1347"/>
+        <source>Languages</source>
+        <translation type="unfinished">语言</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1347"/>
+        <source>&amp;Languages...</source>
+        <translation type="unfinished">语言(&amp;L)…</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1352"/>
         <source>Configure the accepted languages for web pages</source>
         <translation type="unfinished">配置显示网页时能接受的语言</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1349"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1354"/>
         <source>&lt;b&gt;Languages&lt;/b&gt;&lt;p&gt;Configure the accepted languages for web pages.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;语言&lt;/b&gt;&lt;p&gt;配置显示网页时接受的语言。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1357"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1362"/>
         <source>Cookies</source>
         <translation type="unfinished">Cookies</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1357"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1362"/>
         <source>C&amp;ookies...</source>
         <translation type="unfinished">C&amp;ookies...</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1361"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1366"/>
         <source>Configure cookies handling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1363"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1368"/>
         <source>&lt;b&gt;Cookies&lt;/b&gt;&lt;p&gt;Configure cookies handling.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -92199,903 +92199,903 @@
         <translation type="obsolete">管理 flash cookies</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1371"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1376"/>
         <source>Personal Information</source>
         <translation type="unfinished">个人信息</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1371"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1376"/>
         <source>Personal Information...</source>
         <translation type="unfinished">个人信息…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1377"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1382"/>
         <source>Configure personal information for completing form fields</source>
         <translation type="unfinished">配置用于自动补全表格字段的个人信息</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1379"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1384"/>
         <source>&lt;b&gt;Personal Information...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the personal information used for completing form fields.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;个人信息…&lt;/b&gt;&lt;p&gt;打开一个对话框来配置用于自动补全表格字段的个人信息。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1388"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1393"/>
         <source>GreaseMonkey Scripts</source>
         <translation type="unfinished">清空隐私数据(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1388"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1393"/>
         <source>GreaseMonkey Scripts...</source>
         <translation type="unfinished">GreaseMonkey 脚本…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1394"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1399"/>
         <source>Configure the GreaseMonkey Scripts</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1396"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1401"/>
         <source>&lt;b&gt;GreaseMonkey Scripts...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available GreaseMonkey Scripts.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1405"/>
-        <source>Edit Message Filters</source>
-        <translation type="unfinished">编辑消息过滤器</translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1405"/>
-        <source>Edit Message Filters...</source>
-        <translation type="unfinished">编辑消息过滤器…</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1410"/>
+        <source>Edit Message Filters</source>
+        <translation type="unfinished">编辑消息过滤器</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1410"/>
+        <source>Edit Message Filters...</source>
+        <translation type="unfinished">编辑消息过滤器…</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1415"/>
         <source>Edit the message filters used to suppress unwanted messages</source>
         <translation type="unfinished">编辑消息过滤器使得不期望的消息不显示</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1412"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1417"/>
         <source>&lt;b&gt;Edit Message Filters&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the message filters used to suppress unwanted messages been shown in an error window.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;编辑消息过滤器&lt;/b&gt;&lt;p&gt;打开对话框来编辑消息过滤器,使得不期望的错误信息不再在错误窗口中显示。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1422"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1427"/>
         <source>Edit HTML5 Feature Permissions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1422"/>
-        <source>Edit HTML5 Feature Permissions...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1427"/>
+        <source>Edit HTML5 Feature Permissions...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1432"/>
         <source>Edit the remembered HTML5 feature permissions</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1429"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1434"/>
         <source>&lt;b&gt;Edit HTML5 Feature Permissions&lt;/b&gt;&lt;p&gt;Opens a dialog to edit the remembered HTML5 feature permissions.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1439"/>
-        <source>Sync with Table of Contents</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1444"/>
+        <source>Sync with Table of Contents</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1449"/>
         <source>Synchronizes the table of contents with current page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1446"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1451"/>
         <source>&lt;b&gt;Sync with Table of Contents&lt;/b&gt;&lt;p&gt;Synchronizes the table of contents with current page.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1454"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1459"/>
         <source>Table of Contents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1458"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1463"/>
         <source>Shows the table of contents window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1460"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1465"/>
         <source>&lt;b&gt;Table of Contents&lt;/b&gt;&lt;p&gt;Shows the table of contents window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1471"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1476"/>
         <source>Shows the index window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1473"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1478"/>
         <source>&lt;b&gt;Index&lt;/b&gt;&lt;p&gt;Shows the index window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1484"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1489"/>
         <source>Shows the search window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1486"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1491"/>
         <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Shows the search window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1494"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1499"/>
         <source>Manage QtHelp Documents</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1494"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1499"/>
         <source>Manage QtHelp &amp;Documents</source>
         <translation type="unfinished">管理 QtHelp 文档(&amp;D)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1498"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1503"/>
         <source>Shows a dialog to manage the QtHelp documentation set</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1500"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1505"/>
         <source>&lt;b&gt;Manage QtHelp Documents&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the QtHelp documentation set.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1509"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1514"/>
         <source>Reindex Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1509"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1514"/>
         <source>&amp;Reindex Documentation</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1513"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1518"/>
         <source>Reindexes the documentation set</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1515"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1520"/>
         <source>&lt;b&gt;Reindex Documentation&lt;/b&gt;&lt;p&gt;Reindexes the documentation set.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1529"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1534"/>
         <source>Clear private data</source>
         <translation type="unfinished">清空隐私数据</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1531"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1536"/>
         <source>&lt;b&gt;Clear private data&lt;/b&gt;&lt;p&gt;Clears the private data like browsing history, search history or the favicons database.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;清空隐私数据&lt;/b&gt;&lt;p&gt;清空隐私数据,例如浏览历史、搜索历史或 favicon 数据库。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1545"/>
         <source>Clear icons database</source>
         <translation type="unfinished">清除图标数据库</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1540"/>
-        <source>Clear &amp;icons database</source>
-        <translation type="unfinished">清空图标数据库(&amp;I)</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1545"/>
+        <source>Clear &amp;icons database</source>
+        <translation type="unfinished">清空图标数据库(&amp;I)</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1550"/>
         <source>Clear the database of favicons</source>
         <translation type="unfinished">清除喜好图标数据库</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1547"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1552"/>
         <source>&lt;b&gt;Clear icons database&lt;/b&gt;&lt;p&gt;Clears the database of favicons of previously visited URLs.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;清除图标数据库&lt;/b&gt;&lt;p&gt;清除以前访问过的 URL 的喜好图标的数据库。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1555"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1560"/>
         <source>Manage saved Favicons</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1561"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1566"/>
         <source>Show a dialog to manage the saved favicons</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1563"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1568"/>
         <source>&lt;b&gt;Manage saved Favicons&lt;/b&gt;&lt;p&gt;This shows a dialog to manage the saved favicons of previously visited URLs.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1576"/>
         <source>Configure Search Engines</source>
         <translation type="unfinished">配置搜索引擎</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1571"/>
-        <source>Configure Search &amp;Engines...</source>
-        <translation type="unfinished">配置搜索引擎(&amp;E)…</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1576"/>
+        <source>Configure Search &amp;Engines...</source>
+        <translation type="unfinished">配置搜索引擎(&amp;E)…</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1581"/>
         <source>Configure the available search engines</source>
         <translation type="unfinished">配置可用的搜索引擎</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1578"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1583"/>
         <source>&lt;b&gt;Configure Search Engines...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure the available search engines.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1592"/>
         <source>Manage Saved Passwords</source>
         <translation type="unfinished">管理已保存的密码</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1587"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1592"/>
         <source>Manage Saved Passwords...</source>
         <translation type="unfinished">管理已保存的密码…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1593"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1598"/>
         <source>Manage the saved passwords</source>
         <translation type="unfinished">管理已保存的密码</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1595"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1600"/>
         <source>&lt;b&gt;Manage Saved Passwords...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved passwords.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;管理已保存的密码…&lt;/b&gt;&lt;p&gt;打开一个对话框以管理已保存的密码。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1602"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/>
         <source>Ad Block</source>
         <translation type="unfinished">Ad Block</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1602"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1607"/>
         <source>&amp;Ad Block...</source>
         <translation type="unfinished">&amp;Ad Block…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1608"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1613"/>
         <source>Configure AdBlock subscriptions and rules</source>
         <translation type="unfinished">配置 AdBlock 订阅组和规则</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1610"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1615"/>
         <source>&lt;b&gt;Ad Block...&lt;/b&gt;&lt;p&gt;Opens a dialog to configure AdBlock subscriptions and rules.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Ad Block…&lt;/b&gt;&lt;p&gt;打开一个对话框以配置 AdBlock 订阅组和规则。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1618"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/>
         <source>Manage SSL Certificate Errors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1618"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1623"/>
         <source>Manage SSL Certificate Errors...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1624"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1629"/>
         <source>Manage the accepted SSL certificate Errors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1626"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1631"/>
         <source>&lt;b&gt;Manage SSL Certificate Errors...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the accepted SSL certificate errors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1651"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1656"/>
         <source>Downloads</source>
         <translation type="unfinished">下载</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1655"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1660"/>
         <source>Shows the downloads window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1657"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1662"/>
         <source>&lt;b&gt;Downloads&lt;/b&gt;&lt;p&gt;Shows the downloads window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>RSS Feeds Dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>&amp;RSS Feeds Dialog...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1665"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1670"/>
         <source>Ctrl+Shift+F</source>
         <comment>Help|RSS Feeds Dialog</comment>
         <translation type="unfinished">Ctrl+Shift+F</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1671"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1676"/>
         <source>Open a dialog showing the configured RSS feeds.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1673"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1678"/>
         <source>&lt;b&gt;RSS Feeds Dialog...&lt;/b&gt;&lt;p&gt;Open a dialog to show the configured RSS feeds. It can be used to mange the feeds and to show their contents.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>Siteinfo Dialog</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>&amp;Siteinfo Dialog...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1682"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1687"/>
         <source>Ctrl+Shift+I</source>
         <comment>Help|Siteinfo Dialog</comment>
         <translation type="unfinished">Ctrl+Shift+I</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1688"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1693"/>
         <source>Open a dialog showing some information about the current site.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1690"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1695"/>
         <source>&lt;b&gt;Siteinfo Dialog...&lt;/b&gt;&lt;p&gt;Opens a dialog showing some information about the current site.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1703"/>
         <source>Manage User Agent Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1698"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1703"/>
         <source>Manage &amp;User Agent Settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1702"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1707"/>
         <source>Shows a dialog to manage the User Agent settings</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1704"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1709"/>
         <source>&lt;b&gt;Manage User Agent Settings&lt;/b&gt;&lt;p&gt;Shows a dialog to manage the User Agent settings.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1712"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1717"/>
         <source>Synchronize data</source>
         <translation type="unfinished">同步数据</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1712"/>
-        <source>&amp;Synchronize Data...</source>
-        <translation type="unfinished">同步数据(&amp;S)…</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1717"/>
+        <source>&amp;Synchronize Data...</source>
+        <translation type="unfinished">同步数据(&amp;S)…</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1722"/>
         <source>Shows a dialog to synchronize data via the network</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1719"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1724"/>
         <source>&lt;b&gt;Synchronize Data...&lt;/b&gt;&lt;p&gt;This shows a dialog to synchronize data via the network.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/>
         <source>Manage Saved Zoom Values</source>
         <translation type="unfinished">管理保存的缩放值</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1728"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1733"/>
         <source>Manage Saved Zoom Values...</source>
         <translation type="unfinished">管理保存的缩放值…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1734"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1739"/>
         <source>Manage the saved zoom values</source>
         <translation type="unfinished">管理保存的缩放值</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1736"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1741"/>
         <source>&lt;b&gt;Manage Saved Zoom Values...&lt;/b&gt;&lt;p&gt;Opens a dialog to manage the saved zoom values.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;管理保存的缩放值…&lt;/b&gt;&lt;p&gt;打开一个对话框来管理已保存的缩放值。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1747"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1752"/>
         <source>Toggle the JavaScript console window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1749"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1754"/>
         <source>&lt;b&gt;JavaScript Console&lt;/b&gt;&lt;p&gt;This toggles the JavaScript console window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1910"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1915"/>
         <source>&amp;File</source>
         <translation type="unfinished">文件(&amp;F)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1942"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1947"/>
         <source>&amp;Edit</source>
         <translation type="unfinished">编辑(&amp;E)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2181"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2186"/>
         <source>&amp;View</source>
         <translation type="unfinished">视图(&amp;V)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1969"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1974"/>
         <source>Text Encoding</source>
         <translation type="unfinished">文本编码</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1981"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1986"/>
         <source>H&amp;istory</source>
         <translation type="unfinished">历史(&amp;I)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1998"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2003"/>
         <source>&amp;Bookmarks</source>
         <translation type="unfinished">书签(&amp;B)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2014"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2019"/>
         <source>&amp;Settings</source>
         <translation type="unfinished">设置(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2046"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2051"/>
         <source>Global User Agent</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2212"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2217"/>
         <source>&amp;Tools</source>
         <translation type="unfinished">工具(&amp;T)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2087"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2092"/>
         <source>&amp;Help</source>
         <translation type="unfinished">帮助(&amp;H)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2236"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2241"/>
         <source>File</source>
         <translation type="unfinished">文件</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2261"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2266"/>
         <source>Edit</source>
         <translation type="unfinished">编辑</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2274"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2279"/>
         <source>View</source>
         <translation type="unfinished">视图</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2284"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2289"/>
         <source>Find</source>
         <translation type="unfinished">查找</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2293"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2298"/>
         <source>Filter</source>
         <translation type="unfinished">过滤器</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2303"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2308"/>
         <source>Filtered by: </source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2311"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2316"/>
         <source>Settings</source>
         <translation type="unfinished">设置</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2323"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2328"/>
         <source>Tools</source>
         <translation type="unfinished">工具</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2332"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2337"/>
         <source>Help</source>
         <translation type="unfinished">帮助</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2339"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2344"/>
         <source>VirusTotal</source>
         <translation type="unfinished">VirusTotal</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1785"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1790"/>
         <source>Scan current site</source>
         <translation type="unfinished">扫描当前站点</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4613"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4626"/>
         <source>IP Address Report</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4623"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4636"/>
         <source>Domain Report</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>&lt;p&gt;Could not start the process.&lt;br&gt;Ensure that it is available as &lt;b&gt;{0}&lt;/b&gt;.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;p&gt;无法启动进程。&lt;br&gt;请确保它作为 &lt;b&gt;{0}&lt;/b&gt; 可用。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2470"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2475"/>
         <source>OK</source>
         <translation type="unfinished">确定</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2667"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2672"/>
         <source>Saved Tabs</source>
         <translation type="unfinished">已保存的选项卡</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3392"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3399"/>
         <source>Could not find an associated content.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3486"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3493"/>
         <source>Updating search index</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3560"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3567"/>
         <source>Looking for Documentation...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3590"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3597"/>
         <source>Unfiltered</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3607"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3614"/>
         <source>Help Engine</source>
         <translation type="unfinished">帮助引擎</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4144"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4151"/>
         <source>ISO</source>
         <translation type="unfinished">ISO</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4148"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4155"/>
         <source>Windows</source>
         <translation type="unfinished">Windows</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4146"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4153"/>
         <source>Unicode</source>
         <translation type="unfinished">Unicode</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4154"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4161"/>
         <source>Other</source>
         <translation type="unfinished">其它</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4150"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4157"/>
         <source>IBM</source>
         <translation type="unfinished">IBM</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4578"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4591"/>
         <source>VirusTotal Scan</source>
         <translation type="unfinished">VirusTotal 扫描</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4578"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4591"/>
         <source>&lt;p&gt;The VirusTotal scan could not be scheduled.&lt;p&gt;
 &lt;p&gt;Reason: {0}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4604"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4617"/>
         <source>Enter a valid IPv4 address in dotted quad notation:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4613"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4626"/>
         <source>The given IP address is not in dotted quad notation.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4623"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4636"/>
         <source>Enter a valid domain name:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1757"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1762"/>
         <source>Tab Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1761"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1766"/>
         <source>Shows the tab manager window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1763"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1768"/>
         <source>&lt;b&gt;Tab Manager&lt;/b&gt;&lt;p&gt;Shows the tab manager window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
         <source>Save As</source>
         <translation type="unfinished">另存为</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
         <source>&amp;Save As...</source>
         <translation type="unfinished">另存为(&amp;S)…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="737"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="742"/>
         <source>Shift+Ctrl+S</source>
         <comment>File|Save As</comment>
         <translation type="unfinished">Shift+Ctrl+S</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="743"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="748"/>
         <source>Save the current page to disk</source>
         <translation type="unfinished">将当前页面保存至磁盘</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="745"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="750"/>
         <source>&lt;b&gt;Save As...&lt;/b&gt;&lt;p&gt;Saves the current page to disk.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;另存为…&lt;/b&gt;&lt;p&gt;将当前页面保存至磁盘。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1061"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1066"/>
         <source>Unselect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1071"/>
+        <source>Clear current selection</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1072"/>
+        <source>&lt;b&gt;Unselect&lt;/b&gt;&lt;p&gt;Clear the selection of the current browser.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1066"/>
-        <source>Clear current selection</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1067"/>
-        <source>&lt;b&gt;Unselect&lt;/b&gt;&lt;p&gt;Clear the selection of the current browser.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1061"/>
         <source>Alt+Ctrl+A</source>
         <comment>Edit|Unselect</comment>
         <translation type="unfinished">Alt+Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2503"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2508"/>
         <source>HTML Files (*.html *.htm *.mhtml *.mht);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="937"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="942"/>
         <source>Move to the initial screen</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1293"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1298"/>
         <source>Meta+Ctrl+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2218"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2223"/>
         <source>&amp;VirusTotal</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2183"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2188"/>
         <source>&amp;Windows</source>
         <translation type="unfinished">窗口(&amp;W)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2081"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2086"/>
         <source>&amp;Toolbars</source>
         <translation type="unfinished">工具栏(&amp;T)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2116"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2121"/>
         <source>Save</source>
         <translation type="unfinished">保存</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2135"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2140"/>
         <source>Show All History...</source>
         <translation type="unfinished">显示所有历史记录…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4179"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4186"/>
         <source>Menu Bar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4184"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4191"/>
         <source>Bookmarks</source>
         <translation type="unfinished">书签</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4189"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4196"/>
         <source>Status Bar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4203"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4210"/>
         <source>&amp;Show all</source>
         <translation type="unfinished">全部显示(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4205"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4212"/>
         <source>&amp;Hide all</source>
         <translation type="unfinished">全部隐藏(&amp;H)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="844"/>
-        <source>Send Page Link</source>
-        <translation type="unfinished">发送页面链接</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="849"/>
+        <source>Send Page Link</source>
+        <translation type="unfinished">发送页面链接</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="854"/>
         <source>Send the link of the current page via email</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="851"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="856"/>
         <source>&lt;b&gt;Send Page Link&lt;/b&gt;&lt;p&gt;Send the link of the current page via email.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1771"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1776"/>
         <source>Session Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1771"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1776"/>
         <source>Session Manager...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1775"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1780"/>
         <source>Shows the session manager window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1777"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1782"/>
         <source>&lt;b&gt;Session Manager&lt;/b&gt;&lt;p&gt;Shows the session manager window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2109"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2114"/>
         <source>Sessions</source>
         <translation type="unfinished">会话</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2845"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2850"/>
         <source>Are you sure you want to close the web browser?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2845"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2850"/>
         <source>Are you sure you want to close the web browser?
 You have {0} windows with {1} tabs open.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1635"/>
-        <source>Manage Safe Browsing</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1635"/>
-        <source>Manage Safe Browsing...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1642"/>
-        <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/>
+        <source>Manage Safe Browsing</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1640"/>
+        <source>Manage Safe Browsing...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1647"/>
+        <source>&lt;b&gt;Manage Safe Browsing&lt;/b&gt;&lt;p&gt;This opens a dialog to configure Safe Browsing and to manage the local cache.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1645"/>
         <source>Configure Safe Browsing and manage local cache</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="762"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="767"/>
         <source>&lt;b&gt;Save Page Screen...&lt;/b&gt;&lt;p&gt;Saves the visible part of the current page as a screen shot.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1823"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1828"/>
         <source>Keyboard Shortcuts</source>
         <translation type="unfinished">键盘快捷键</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1823"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1828"/>
         <source>Keyboard &amp;Shortcuts...</source>
         <translation type="unfinished">键盘快捷键(&amp;S)…</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1829"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1834"/>
         <source>Set the keyboard shortcuts</source>
         <translation type="unfinished">设置键盘快捷键</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1831"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1836"/>
         <source>&lt;b&gt;Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Set the keyboard shortcuts of the application with your prefered values.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;键盘快捷键&lt;/b&gt;&lt;p&gt;将程序的键盘快捷键设置成你喜欢的按键。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5009"/>
         <source>Export Keyboard Shortcuts</source>
         <translation type="unfinished">导出键盘快捷键</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1839"/>
-        <source>&amp;Export Keyboard Shortcuts...</source>
-        <translation type="unfinished">导出键盘快捷键(&amp;E)…</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1844"/>
+        <source>&amp;Export Keyboard Shortcuts...</source>
+        <translation type="unfinished">导出键盘快捷键(&amp;E)…</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1849"/>
         <source>Export the keyboard shortcuts</source>
         <translation type="unfinished">导出键盘快捷键</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1846"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1851"/>
         <source>&lt;b&gt;Export Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Export the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;导出键盘快捷键&lt;/b&gt;&lt;p&gt;导出程序的键盘快捷键。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5007"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5025"/>
         <source>Import Keyboard Shortcuts</source>
         <translation type="unfinished">导入键盘快捷键</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1853"/>
-        <source>&amp;Import Keyboard Shortcuts...</source>
-        <translation type="unfinished">导入键盘快捷键(&amp;I)…</translation>
-    </message>
-    <message>
         <location filename="../WebBrowser/WebBrowserWindow.py" line="1858"/>
+        <source>&amp;Import Keyboard Shortcuts...</source>
+        <translation type="unfinished">导入键盘快捷键(&amp;I)…</translation>
+    </message>
+    <message>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1863"/>
         <source>Import the keyboard shortcuts</source>
         <translation type="unfinished">导入键盘快捷键</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1860"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1865"/>
         <source>&lt;b&gt;Import Keyboard Shortcuts&lt;/b&gt;&lt;p&gt;Import the keyboard shortcuts of the application.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;导入键盘快捷键&lt;/b&gt;&lt;p&gt;导入程序的键盘快捷键。&lt;/p&gt;</translation>
     </message>
@@ -93105,37 +93105,37 @@
         <translation type="obsolete">键盘快捷键文件 (*.e4k)</translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1867"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1872"/>
         <source>Protocol Handler Manager</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1867"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1872"/>
         <source>Protocol Handler Manager...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1871"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1876"/>
         <source>Shows the protocol handler manager window</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="1873"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="1878"/>
         <source>&lt;b&gt;Protocol Handler Manager&lt;/b&gt;&lt;p&gt;Shows the protocol handler manager window.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4141"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4148"/>
         <source>System</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4152"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4159"/>
         <source>Apple</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2189"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2194"/>
         <source>QtHelp</source>
         <translation type="unfinished">QtHelp</translation>
     </message>
@@ -93145,37 +93145,37 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="3570"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="3577"/>
         <source>eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="892"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="897"/>
         <source>Quit the eric Web Browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="893"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="898"/>
         <source>&lt;b&gt;Quit&lt;/b&gt;&lt;p&gt;Quit the eric Web Browser.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="2544"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="2549"/>
         <source>&lt;b&gt;eric Web Browser - {0}&lt;/b&gt;&lt;p&gt;The eric Web Browser is a combined help file and HTML browser. It is part of the eric development toolset.&lt;/p&gt;&lt;p&gt;It is based on QtWebEngine {1} and Chrome {2}.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4972"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="4990"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard Shortcuts File (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="4991"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5009"/>
         <source>&lt;p&gt;The keyboard shortcuts file &lt;b&gt;{0}&lt;/b&gt; exists already. Overwrite it?&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../WebBrowser/WebBrowserWindow.py" line="5007"/>
+        <location filename="../WebBrowser/WebBrowserWindow.py" line="5025"/>
         <source>Keyboard Shortcuts File (*.ekj);;XML Keyboard shortcut file (*.e4k)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -93592,12 +93592,12 @@
 <context>
     <name>eric6</name>
     <message>
-        <location filename="../eric6.py" line="397"/>
+        <location filename="../eric6.py" line="398"/>
         <source>Starting...</source>
         <translation>正在启动…</translation>
     </message>
     <message>
-        <location filename="../eric6.py" line="402"/>
+        <location filename="../eric6.py" line="403"/>
         <source>Generating Main Window...</source>
         <translation>正在产生主窗口…</translation>
     </message>

eric ide

mercurial